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.
 
 
 

66625 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. "wholphin": {
  2431. name: "Wholphin",
  2432. parents: ["whale", "dolphin"]
  2433. },
  2434. }
  2435. //species
  2436. function getSpeciesInfo(speciesList) {
  2437. let result = new Set();
  2438. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2439. result.add(entry)
  2440. });
  2441. return Array.from(result);
  2442. };
  2443. function getSpeciesInfoHelper(species) {
  2444. if (!speciesData[species]) {
  2445. console.warn(species + " doesn't exist");
  2446. return [];
  2447. }
  2448. if (speciesData[species].parents) {
  2449. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2450. } else {
  2451. return [species];
  2452. }
  2453. }
  2454. characterMakers.push(() => makeCharacter(
  2455. {
  2456. name: "Fen",
  2457. species: ["crux"],
  2458. description: {
  2459. title: "Bio",
  2460. text: "Very furry. Sheds on everything."
  2461. },
  2462. tags: [
  2463. "anthro",
  2464. "goo"
  2465. ]
  2466. },
  2467. {
  2468. front: {
  2469. height: math.unit(12, "feet"),
  2470. weight: math.unit(2400, "lb"),
  2471. preyCapacity: math.unit(1, "people"),
  2472. name: "Front",
  2473. image: {
  2474. source: "./media/characters/fen/front.svg",
  2475. extra: 1804/1562,
  2476. bottom: 205/2009
  2477. },
  2478. extraAttributes: {
  2479. pawSize: {
  2480. name: "Paw Size",
  2481. power: 2,
  2482. type: "area",
  2483. base: math.unit(0.35, "m^2")
  2484. }
  2485. }
  2486. },
  2487. diving: {
  2488. height: math.unit(4.9, "meters"),
  2489. weight: math.unit(2400, "lb"),
  2490. name: "Diving",
  2491. image: {
  2492. source: "./media/characters/fen/diving.svg"
  2493. }
  2494. },
  2495. sleeby: {
  2496. height: math.unit(3.45, "meters"),
  2497. weight: math.unit(2400, "lb"),
  2498. name: "Sleeby",
  2499. image: {
  2500. source: "./media/characters/fen/sleeby.svg"
  2501. }
  2502. },
  2503. goo: {
  2504. height: math.unit(12, "feet"),
  2505. weight: math.unit(3600, "lb"),
  2506. volume: math.unit(1000, "liters"),
  2507. preyCapacity: math.unit(6, "people"),
  2508. name: "Goo",
  2509. image: {
  2510. source: "./media/characters/fen/goo.svg",
  2511. extra: 1307/1071,
  2512. bottom: 134/1441
  2513. }
  2514. },
  2515. horror: {
  2516. height: math.unit(13.6, "feet"),
  2517. weight: math.unit(2400, "lb"),
  2518. preyCapacity: math.unit(1, "people"),
  2519. name: "Horror",
  2520. image: {
  2521. source: "./media/characters/fen/horror.svg",
  2522. extra: 893/797,
  2523. bottom: 0/893
  2524. }
  2525. },
  2526. gooNsfw: {
  2527. height: math.unit(12, "feet"),
  2528. weight: math.unit(3750, "lb"),
  2529. volume: math.unit(1000, "liters"),
  2530. preyCapacity: math.unit(6, "people"),
  2531. name: "Goo (NSFW)",
  2532. image: {
  2533. source: "./media/characters/fen/goo-nsfw.svg",
  2534. extra: 1875/1734,
  2535. bottom: 122/1997
  2536. }
  2537. },
  2538. maw: {
  2539. height: math.unit(5.03, "feet"),
  2540. name: "Maw",
  2541. image: {
  2542. source: "./media/characters/fen/maw.svg"
  2543. }
  2544. },
  2545. gooCeiling: {
  2546. height: math.unit(6.6, "feet"),
  2547. weight: math.unit(3000, "lb"),
  2548. volume: math.unit(1000, "liters"),
  2549. preyCapacity: math.unit(6, "people"),
  2550. name: "Maw (Goo)",
  2551. image: {
  2552. source: "./media/characters/fen/goo-maw.svg"
  2553. }
  2554. },
  2555. paw: {
  2556. height: math.unit(3.77, "feet"),
  2557. name: "Paw",
  2558. image: {
  2559. source: "./media/characters/fen/paw.svg"
  2560. },
  2561. extraAttributes: {
  2562. "toeSize": {
  2563. name: "Toe Size",
  2564. power: 2,
  2565. type: "area",
  2566. base: math.unit(0.02875, "m^2")
  2567. },
  2568. "pawSize": {
  2569. name: "Paw Size",
  2570. power: 2,
  2571. type: "area",
  2572. base: math.unit(0.378, "m^2")
  2573. },
  2574. }
  2575. },
  2576. tail: {
  2577. height: math.unit(12.1, "feet"),
  2578. name: "Tail",
  2579. image: {
  2580. source: "./media/characters/fen/tail.svg"
  2581. }
  2582. },
  2583. tailFull: {
  2584. height: math.unit(12.1, "feet"),
  2585. name: "Full Tail",
  2586. image: {
  2587. source: "./media/characters/fen/tail-full.svg"
  2588. }
  2589. },
  2590. back: {
  2591. height: math.unit(12, "feet"),
  2592. weight: math.unit(2400, "lb"),
  2593. name: "Back",
  2594. image: {
  2595. source: "./media/characters/fen/back.svg",
  2596. },
  2597. info: {
  2598. description: {
  2599. mode: "append",
  2600. text: "\n\nHe is not currently looking at you."
  2601. }
  2602. }
  2603. },
  2604. full: {
  2605. height: math.unit(1.85, "meter"),
  2606. weight: math.unit(3200, "lb"),
  2607. preyCapacity: math.unit(3, "people"),
  2608. name: "Full",
  2609. image: {
  2610. source: "./media/characters/fen/full.svg",
  2611. extra: 1133/859,
  2612. bottom: 145/1278
  2613. },
  2614. info: {
  2615. description: {
  2616. mode: "append",
  2617. text: "\n\nMunch."
  2618. }
  2619. }
  2620. },
  2621. gooLounging: {
  2622. height: math.unit(4.53, "feet"),
  2623. weight: math.unit(3000, "lb"),
  2624. preyCapacity: math.unit(6, "people"),
  2625. name: "Goo (Lounging)",
  2626. image: {
  2627. source: "./media/characters/fen/goo-lounging.svg",
  2628. bottom: 116 / 613
  2629. }
  2630. },
  2631. lounging: {
  2632. height: math.unit(10.52, "feet"),
  2633. weight: math.unit(2400, "lb"),
  2634. name: "Lounging",
  2635. image: {
  2636. source: "./media/characters/fen/lounging.svg"
  2637. }
  2638. },
  2639. },
  2640. [
  2641. {
  2642. name: "Small",
  2643. height: math.unit(2.2428, "meter")
  2644. },
  2645. {
  2646. name: "Normal",
  2647. height: math.unit(12, "feet"),
  2648. default: true,
  2649. },
  2650. {
  2651. name: "Big",
  2652. height: math.unit(20, "feet")
  2653. },
  2654. {
  2655. name: "Minimacro",
  2656. height: math.unit(40, "feet"),
  2657. info: {
  2658. description: {
  2659. mode: "append",
  2660. text: "\n\nTOO DAMN BIG"
  2661. }
  2662. }
  2663. },
  2664. {
  2665. name: "Macro",
  2666. height: math.unit(100, "feet"),
  2667. info: {
  2668. description: {
  2669. mode: "append",
  2670. text: "\n\nTOO DAMN BIG"
  2671. }
  2672. }
  2673. },
  2674. {
  2675. name: "Megamacro",
  2676. height: math.unit(2, "miles")
  2677. },
  2678. {
  2679. name: "Gigamacro",
  2680. height: math.unit(10, "earths")
  2681. },
  2682. ]
  2683. ))
  2684. characterMakers.push(() => makeCharacter(
  2685. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2686. {
  2687. front: {
  2688. height: math.unit(183, "cm"),
  2689. weight: math.unit(80, "kg"),
  2690. name: "Front",
  2691. image: {
  2692. source: "./media/characters/sofia-fluttertail/front.svg",
  2693. bottom: 0.01,
  2694. extra: 2154 / 2081
  2695. }
  2696. },
  2697. frontAlt: {
  2698. height: math.unit(183, "cm"),
  2699. weight: math.unit(80, "kg"),
  2700. name: "Front (alt)",
  2701. image: {
  2702. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2703. }
  2704. },
  2705. back: {
  2706. height: math.unit(183, "cm"),
  2707. weight: math.unit(80, "kg"),
  2708. name: "Back",
  2709. image: {
  2710. source: "./media/characters/sofia-fluttertail/back.svg"
  2711. }
  2712. },
  2713. kneeling: {
  2714. height: math.unit(125, "cm"),
  2715. weight: math.unit(80, "kg"),
  2716. name: "Kneeling",
  2717. image: {
  2718. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2719. extra: 1033 / 977,
  2720. bottom: 23.7 / 1057
  2721. }
  2722. },
  2723. maw: {
  2724. height: math.unit(183 / 5, "cm"),
  2725. name: "Maw",
  2726. image: {
  2727. source: "./media/characters/sofia-fluttertail/maw.svg"
  2728. }
  2729. },
  2730. mawcloseup: {
  2731. height: math.unit(183 / 5 * 0.41, "cm"),
  2732. name: "Maw (Closeup)",
  2733. image: {
  2734. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2735. }
  2736. },
  2737. paws: {
  2738. height: math.unit(1.17, "feet"),
  2739. name: "Paws",
  2740. image: {
  2741. source: "./media/characters/sofia-fluttertail/paws.svg",
  2742. extra: 851 / 851,
  2743. bottom: 17 / 868
  2744. }
  2745. },
  2746. },
  2747. [
  2748. {
  2749. name: "Normal",
  2750. height: math.unit(1.83, "meter")
  2751. },
  2752. {
  2753. name: "Size Thief",
  2754. height: math.unit(18, "feet")
  2755. },
  2756. {
  2757. name: "50 Foot Collie",
  2758. height: math.unit(50, "feet")
  2759. },
  2760. {
  2761. name: "Macro",
  2762. height: math.unit(96, "feet"),
  2763. default: true
  2764. },
  2765. {
  2766. name: "Megamerger",
  2767. height: math.unit(650, "feet")
  2768. },
  2769. ]
  2770. ))
  2771. characterMakers.push(() => makeCharacter(
  2772. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2773. {
  2774. front: {
  2775. height: math.unit(7, "feet"),
  2776. weight: math.unit(100, "kg"),
  2777. name: "Front",
  2778. image: {
  2779. source: "./media/characters/march/front.svg",
  2780. extra: 1992/1851,
  2781. bottom: 39/2031
  2782. }
  2783. },
  2784. foot: {
  2785. height: math.unit(0.9, "feet"),
  2786. name: "Foot",
  2787. image: {
  2788. source: "./media/characters/march/foot.svg"
  2789. }
  2790. },
  2791. },
  2792. [
  2793. {
  2794. name: "Normal",
  2795. height: math.unit(7.9, "feet")
  2796. },
  2797. {
  2798. name: "Macro",
  2799. height: math.unit(220, "meters")
  2800. },
  2801. {
  2802. name: "Megamacro",
  2803. height: math.unit(2.98, "km"),
  2804. default: true
  2805. },
  2806. {
  2807. name: "Gigamacro",
  2808. height: math.unit(15963, "km")
  2809. },
  2810. {
  2811. name: "Teramacro",
  2812. height: math.unit(2980000000, "km")
  2813. },
  2814. {
  2815. name: "Examacro",
  2816. height: math.unit(250, "parsecs")
  2817. },
  2818. ]
  2819. ))
  2820. characterMakers.push(() => makeCharacter(
  2821. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2822. {
  2823. front: {
  2824. height: math.unit(6, "feet"),
  2825. weight: math.unit(60, "kg"),
  2826. name: "Front",
  2827. image: {
  2828. source: "./media/characters/noir/front.svg",
  2829. extra: 1,
  2830. bottom: 0.032
  2831. }
  2832. },
  2833. },
  2834. [
  2835. {
  2836. name: "Normal",
  2837. height: math.unit(6.6, "feet")
  2838. },
  2839. {
  2840. name: "Macro",
  2841. height: math.unit(500, "feet")
  2842. },
  2843. {
  2844. name: "Megamacro",
  2845. height: math.unit(2.5, "km"),
  2846. default: true
  2847. },
  2848. {
  2849. name: "Gigamacro",
  2850. height: math.unit(22500, "km")
  2851. },
  2852. {
  2853. name: "Teramacro",
  2854. height: math.unit(2500000000, "km")
  2855. },
  2856. {
  2857. name: "Examacro",
  2858. height: math.unit(200, "parsecs")
  2859. },
  2860. ]
  2861. ))
  2862. characterMakers.push(() => makeCharacter(
  2863. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2864. {
  2865. front: {
  2866. height: math.unit(7, "feet"),
  2867. weight: math.unit(100, "kg"),
  2868. name: "Front",
  2869. image: {
  2870. source: "./media/characters/okuri/front.svg",
  2871. extra: 739/665,
  2872. bottom: 39/778
  2873. }
  2874. },
  2875. back: {
  2876. height: math.unit(7, "feet"),
  2877. weight: math.unit(100, "kg"),
  2878. name: "Back",
  2879. image: {
  2880. source: "./media/characters/okuri/back.svg",
  2881. extra: 734/653,
  2882. bottom: 13/747
  2883. }
  2884. },
  2885. sitting: {
  2886. height: math.unit(2.95, "feet"),
  2887. weight: math.unit(100, "kg"),
  2888. name: "Sitting",
  2889. image: {
  2890. source: "./media/characters/okuri/sitting.svg",
  2891. extra: 370/318,
  2892. bottom: 99/469
  2893. }
  2894. },
  2895. },
  2896. [
  2897. {
  2898. name: "Smallest",
  2899. height: math.unit(5 + 2/12, "feet")
  2900. },
  2901. {
  2902. name: "Smaller",
  2903. height: math.unit(300, "feet")
  2904. },
  2905. {
  2906. name: "Small",
  2907. height: math.unit(1000, "feet")
  2908. },
  2909. {
  2910. name: "Macro",
  2911. height: math.unit(1, "mile")
  2912. },
  2913. {
  2914. name: "Mega Macro (Small)",
  2915. height: math.unit(20, "km")
  2916. },
  2917. {
  2918. name: "Mega Macro (Large)",
  2919. height: math.unit(600, "km")
  2920. },
  2921. {
  2922. name: "Giga Macro",
  2923. height: math.unit(10000, "km")
  2924. },
  2925. {
  2926. name: "Normal",
  2927. height: math.unit(577560, "km"),
  2928. default: true
  2929. },
  2930. {
  2931. name: "Large",
  2932. height: math.unit(4, "galaxies")
  2933. },
  2934. {
  2935. name: "Largest",
  2936. height: math.unit(15, "multiverses")
  2937. },
  2938. ]
  2939. ))
  2940. characterMakers.push(() => makeCharacter(
  2941. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2942. {
  2943. front: {
  2944. height: math.unit(7, "feet"),
  2945. weight: math.unit(100, "kg"),
  2946. name: "Front",
  2947. image: {
  2948. source: "./media/characters/manny/front.svg",
  2949. extra: 1,
  2950. bottom: 0.06
  2951. }
  2952. },
  2953. back: {
  2954. height: math.unit(7, "feet"),
  2955. weight: math.unit(100, "kg"),
  2956. name: "Back",
  2957. image: {
  2958. source: "./media/characters/manny/back.svg",
  2959. extra: 1,
  2960. bottom: 0.014
  2961. }
  2962. },
  2963. },
  2964. [
  2965. {
  2966. name: "Normal",
  2967. height: math.unit(7, "feet"),
  2968. },
  2969. {
  2970. name: "Macro",
  2971. height: math.unit(78, "feet"),
  2972. default: true
  2973. },
  2974. {
  2975. name: "Macro+",
  2976. height: math.unit(300, "meters")
  2977. },
  2978. {
  2979. name: "Macro++",
  2980. height: math.unit(2400, "meters")
  2981. },
  2982. {
  2983. name: "Megamacro",
  2984. height: math.unit(5167, "meters")
  2985. },
  2986. {
  2987. name: "Gigamacro",
  2988. height: math.unit(41769, "miles")
  2989. },
  2990. ]
  2991. ))
  2992. characterMakers.push(() => makeCharacter(
  2993. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2994. {
  2995. front: {
  2996. height: math.unit(7, "feet"),
  2997. weight: math.unit(100, "kg"),
  2998. name: "Front",
  2999. image: {
  3000. source: "./media/characters/adake/front-1.svg"
  3001. }
  3002. },
  3003. frontAlt: {
  3004. height: math.unit(7, "feet"),
  3005. weight: math.unit(100, "kg"),
  3006. name: "Front (Alt)",
  3007. image: {
  3008. source: "./media/characters/adake/front-2.svg",
  3009. extra: 1,
  3010. bottom: 0.01
  3011. }
  3012. },
  3013. back: {
  3014. height: math.unit(7, "feet"),
  3015. weight: math.unit(100, "kg"),
  3016. name: "Back",
  3017. image: {
  3018. source: "./media/characters/adake/back.svg",
  3019. }
  3020. },
  3021. kneel: {
  3022. height: math.unit(5.385, "feet"),
  3023. weight: math.unit(100, "kg"),
  3024. name: "Kneeling",
  3025. image: {
  3026. source: "./media/characters/adake/kneel.svg",
  3027. bottom: 0.052
  3028. }
  3029. },
  3030. },
  3031. [
  3032. {
  3033. name: "Normal",
  3034. height: math.unit(7, "feet"),
  3035. },
  3036. {
  3037. name: "Macro",
  3038. height: math.unit(78, "feet"),
  3039. default: true
  3040. },
  3041. {
  3042. name: "Macro+",
  3043. height: math.unit(300, "meters")
  3044. },
  3045. {
  3046. name: "Macro++",
  3047. height: math.unit(2400, "meters")
  3048. },
  3049. {
  3050. name: "Megamacro",
  3051. height: math.unit(5167, "meters")
  3052. },
  3053. {
  3054. name: "Gigamacro",
  3055. height: math.unit(41769, "miles")
  3056. },
  3057. ]
  3058. ))
  3059. characterMakers.push(() => makeCharacter(
  3060. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3061. {
  3062. front: {
  3063. height: math.unit(1.65, "meters"),
  3064. weight: math.unit(50, "kg"),
  3065. name: "Front",
  3066. image: {
  3067. source: "./media/characters/elijah/front.svg",
  3068. extra: 858 / 830,
  3069. bottom: 95.5 / 953.8559
  3070. }
  3071. },
  3072. back: {
  3073. height: math.unit(1.65, "meters"),
  3074. weight: math.unit(50, "kg"),
  3075. name: "Back",
  3076. image: {
  3077. source: "./media/characters/elijah/back.svg",
  3078. extra: 895 / 850,
  3079. bottom: 5.3 / 897.956
  3080. }
  3081. },
  3082. frontNsfw: {
  3083. height: math.unit(1.65, "meters"),
  3084. weight: math.unit(50, "kg"),
  3085. name: "Front (NSFW)",
  3086. image: {
  3087. source: "./media/characters/elijah/front-nsfw.svg",
  3088. extra: 858 / 830,
  3089. bottom: 95.5 / 953.8559
  3090. }
  3091. },
  3092. backNsfw: {
  3093. height: math.unit(1.65, "meters"),
  3094. weight: math.unit(50, "kg"),
  3095. name: "Back (NSFW)",
  3096. image: {
  3097. source: "./media/characters/elijah/back-nsfw.svg",
  3098. extra: 895 / 850,
  3099. bottom: 5.3 / 897.956
  3100. }
  3101. },
  3102. dick: {
  3103. height: math.unit(1, "feet"),
  3104. name: "Dick",
  3105. image: {
  3106. source: "./media/characters/elijah/dick.svg"
  3107. }
  3108. },
  3109. beakOpen: {
  3110. height: math.unit(1.25, "feet"),
  3111. name: "Beak (Open)",
  3112. image: {
  3113. source: "./media/characters/elijah/beak-open.svg"
  3114. }
  3115. },
  3116. beakShut: {
  3117. height: math.unit(1.25, "feet"),
  3118. name: "Beak (Shut)",
  3119. image: {
  3120. source: "./media/characters/elijah/beak-shut.svg"
  3121. }
  3122. },
  3123. footFlexing: {
  3124. height: math.unit(1.61, "feet"),
  3125. name: "Foot (Flexing)",
  3126. image: {
  3127. source: "./media/characters/elijah/foot-flexing.svg"
  3128. }
  3129. },
  3130. footStepping: {
  3131. height: math.unit(1.44, "feet"),
  3132. name: "Foot (Stepping)",
  3133. image: {
  3134. source: "./media/characters/elijah/foot-stepping.svg"
  3135. }
  3136. },
  3137. plantigradeLeg: {
  3138. height: math.unit(2.34, "feet"),
  3139. name: "Plantigrade Leg",
  3140. image: {
  3141. source: "./media/characters/elijah/plantigrade-leg.svg"
  3142. }
  3143. },
  3144. plantigradeFootLeft: {
  3145. height: math.unit(0.9, "feet"),
  3146. name: "Plantigrade Foot (Left)",
  3147. image: {
  3148. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3149. }
  3150. },
  3151. plantigradeFootRight: {
  3152. height: math.unit(0.9, "feet"),
  3153. name: "Plantigrade Foot (Right)",
  3154. image: {
  3155. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3156. }
  3157. },
  3158. },
  3159. [
  3160. {
  3161. name: "Normal",
  3162. height: math.unit(1.65, "meters")
  3163. },
  3164. {
  3165. name: "Macro",
  3166. height: math.unit(55, "meters"),
  3167. default: true
  3168. },
  3169. {
  3170. name: "Macro+",
  3171. height: math.unit(105, "meters")
  3172. },
  3173. ]
  3174. ))
  3175. characterMakers.push(() => makeCharacter(
  3176. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3177. {
  3178. front: {
  3179. height: math.unit(7 + 2/12, "feet"),
  3180. weight: math.unit(320, "kg"),
  3181. preyCapacity: math.unit(0.276549935, "people"),
  3182. name: "Front",
  3183. image: {
  3184. source: "./media/characters/rai/front.svg",
  3185. extra: 1802/1696,
  3186. bottom: 68/1870
  3187. },
  3188. form: "anthro",
  3189. default: true
  3190. },
  3191. frontDressed: {
  3192. height: math.unit(7 + 2/12, "feet"),
  3193. weight: math.unit(320, "kg"),
  3194. preyCapacity: math.unit(0.276549935, "people"),
  3195. name: "Front (Dressed)",
  3196. image: {
  3197. source: "./media/characters/rai/front-dressed.svg",
  3198. extra: 1802/1696,
  3199. bottom: 68/1870
  3200. },
  3201. form: "anthro"
  3202. },
  3203. side: {
  3204. height: math.unit(7 + 2/12, "feet"),
  3205. weight: math.unit(320, "kg"),
  3206. preyCapacity: math.unit(0.276549935, "people"),
  3207. name: "Side",
  3208. image: {
  3209. source: "./media/characters/rai/side.svg",
  3210. extra: 1789/1710,
  3211. bottom: 115/1904
  3212. },
  3213. form: "anthro"
  3214. },
  3215. back: {
  3216. height: math.unit(7 + 2/12, "feet"),
  3217. weight: math.unit(320, "kg"),
  3218. preyCapacity: math.unit(0.276549935, "people"),
  3219. name: "Back",
  3220. image: {
  3221. source: "./media/characters/rai/back.svg",
  3222. extra: 1770/1707,
  3223. bottom: 28/1798
  3224. },
  3225. form: "anthro"
  3226. },
  3227. feral: {
  3228. height: math.unit(9.5, "feet"),
  3229. weight: math.unit(640, "kg"),
  3230. preyCapacity: math.unit(4, "people"),
  3231. name: "Feral",
  3232. image: {
  3233. source: "./media/characters/rai/feral.svg",
  3234. extra: 945/553,
  3235. bottom: 176/1121
  3236. },
  3237. form: "feral",
  3238. default: true
  3239. },
  3240. dragon: {
  3241. height: math.unit(23, "feet"),
  3242. weight: math.unit(50000, "lb"),
  3243. name: "Dragon",
  3244. image: {
  3245. source: "./media/characters/rai/dragon.svg",
  3246. extra: 2498 / 2030,
  3247. bottom: 85.2 / 2584
  3248. },
  3249. form: "dragon",
  3250. default: true
  3251. },
  3252. maw: {
  3253. height: math.unit(1.69, "feet"),
  3254. name: "Maw",
  3255. image: {
  3256. source: "./media/characters/rai/maw.svg"
  3257. },
  3258. form: "anthro"
  3259. },
  3260. },
  3261. [
  3262. {
  3263. name: "Normal",
  3264. height: math.unit(7 + 2/12, "feet"),
  3265. form: "anthro"
  3266. },
  3267. {
  3268. name: "Big",
  3269. height: math.unit(11, "feet"),
  3270. form: "anthro"
  3271. },
  3272. {
  3273. name: "Minimacro",
  3274. height: math.unit(77, "feet"),
  3275. form: "anthro"
  3276. },
  3277. {
  3278. name: "Macro",
  3279. height: math.unit(302, "feet"),
  3280. default: true,
  3281. form: "anthro"
  3282. },
  3283. {
  3284. name: "Normal",
  3285. height: math.unit(9.5, "feet"),
  3286. form: "feral",
  3287. default: true
  3288. },
  3289. {
  3290. name: "Normal",
  3291. height: math.unit(23, "feet"),
  3292. form: "dragon",
  3293. default: true
  3294. }
  3295. ],
  3296. {
  3297. "anthro": {
  3298. name: "Anthro",
  3299. default: true
  3300. },
  3301. "feral": {
  3302. name: "Feral",
  3303. },
  3304. "dragon": {
  3305. name: "Dragon",
  3306. },
  3307. }
  3308. ))
  3309. characterMakers.push(() => makeCharacter(
  3310. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3311. {
  3312. frontDressed: {
  3313. height: math.unit(216, "feet"),
  3314. weight: math.unit(7000000, "lb"),
  3315. preyCapacity: math.unit(1321, "people"),
  3316. name: "Front (Dressed)",
  3317. image: {
  3318. source: "./media/characters/jazzy/front-dressed.svg",
  3319. extra: 2738 / 2651,
  3320. bottom: 41.8 / 2786
  3321. }
  3322. },
  3323. backDressed: {
  3324. height: math.unit(216, "feet"),
  3325. weight: math.unit(7000000, "lb"),
  3326. preyCapacity: math.unit(1321, "people"),
  3327. name: "Back (Dressed)",
  3328. image: {
  3329. source: "./media/characters/jazzy/back-dressed.svg",
  3330. extra: 2775 / 2673,
  3331. bottom: 36.8 / 2817
  3332. }
  3333. },
  3334. front: {
  3335. height: math.unit(216, "feet"),
  3336. weight: math.unit(7000000, "lb"),
  3337. preyCapacity: math.unit(1321, "people"),
  3338. name: "Front",
  3339. image: {
  3340. source: "./media/characters/jazzy/front.svg",
  3341. extra: 2738 / 2651,
  3342. bottom: 41.8 / 2786
  3343. }
  3344. },
  3345. back: {
  3346. height: math.unit(216, "feet"),
  3347. weight: math.unit(7000000, "lb"),
  3348. preyCapacity: math.unit(1321, "people"),
  3349. name: "Back",
  3350. image: {
  3351. source: "./media/characters/jazzy/back.svg",
  3352. extra: 2775 / 2673,
  3353. bottom: 36.8 / 2817
  3354. }
  3355. },
  3356. maw: {
  3357. height: math.unit(20, "feet"),
  3358. name: "Maw",
  3359. image: {
  3360. source: "./media/characters/jazzy/maw.svg"
  3361. }
  3362. },
  3363. paws: {
  3364. height: math.unit(27.5, "feet"),
  3365. name: "Paws",
  3366. image: {
  3367. source: "./media/characters/jazzy/paws.svg"
  3368. }
  3369. },
  3370. eye: {
  3371. height: math.unit(4.4, "feet"),
  3372. name: "Eye",
  3373. image: {
  3374. source: "./media/characters/jazzy/eye.svg"
  3375. }
  3376. },
  3377. droneOffense: {
  3378. height: math.unit(9.5, "inches"),
  3379. name: "Drone (Offense)",
  3380. image: {
  3381. source: "./media/characters/jazzy/drone-offense.svg"
  3382. }
  3383. },
  3384. droneRecon: {
  3385. height: math.unit(9.5, "inches"),
  3386. name: "Drone (Recon)",
  3387. image: {
  3388. source: "./media/characters/jazzy/drone-recon.svg"
  3389. }
  3390. },
  3391. droneDefense: {
  3392. height: math.unit(9.5, "inches"),
  3393. name: "Drone (Defense)",
  3394. image: {
  3395. source: "./media/characters/jazzy/drone-defense.svg"
  3396. }
  3397. },
  3398. },
  3399. [
  3400. {
  3401. name: "Macro",
  3402. height: math.unit(216, "feet"),
  3403. default: true
  3404. },
  3405. ]
  3406. ))
  3407. characterMakers.push(() => makeCharacter(
  3408. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3409. {
  3410. front: {
  3411. height: math.unit(9 + 6/12, "feet"),
  3412. weight: math.unit(700, "lb"),
  3413. name: "Front",
  3414. image: {
  3415. source: "./media/characters/flamm/front.svg",
  3416. extra: 1736/1596,
  3417. bottom: 93/1829
  3418. }
  3419. },
  3420. buff: {
  3421. height: math.unit(9 + 6/12, "feet"),
  3422. weight: math.unit(950, "lb"),
  3423. name: "Buff",
  3424. image: {
  3425. source: "./media/characters/flamm/buff.svg",
  3426. extra: 3018/2874,
  3427. bottom: 221/3239
  3428. }
  3429. },
  3430. },
  3431. [
  3432. {
  3433. name: "Normal",
  3434. height: math.unit(9.5, "feet")
  3435. },
  3436. {
  3437. name: "Macro",
  3438. height: math.unit(200, "feet"),
  3439. default: true
  3440. },
  3441. ]
  3442. ))
  3443. characterMakers.push(() => makeCharacter(
  3444. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3445. {
  3446. front: {
  3447. height: math.unit(5 + 3/12, "feet"),
  3448. weight: math.unit(60, "kg"),
  3449. name: "Front",
  3450. image: {
  3451. source: "./media/characters/zephiro/front.svg",
  3452. extra: 1873/1761,
  3453. bottom: 147/2020
  3454. }
  3455. },
  3456. side: {
  3457. height: math.unit(5 + 3/12, "feet"),
  3458. weight: math.unit(60, "kg"),
  3459. name: "Side",
  3460. image: {
  3461. source: "./media/characters/zephiro/side.svg",
  3462. extra: 1929/1827,
  3463. bottom: 65/1994
  3464. }
  3465. },
  3466. back: {
  3467. height: math.unit(5 + 3/12, "feet"),
  3468. weight: math.unit(60, "kg"),
  3469. name: "Back",
  3470. image: {
  3471. source: "./media/characters/zephiro/back.svg",
  3472. extra: 1926/1816,
  3473. bottom: 41/1967
  3474. }
  3475. },
  3476. hand: {
  3477. height: math.unit(0.68, "feet"),
  3478. name: "Hand",
  3479. image: {
  3480. source: "./media/characters/zephiro/hand.svg"
  3481. }
  3482. },
  3483. paw: {
  3484. height: math.unit(1, "feet"),
  3485. name: "Paw",
  3486. image: {
  3487. source: "./media/characters/zephiro/paw.svg"
  3488. }
  3489. },
  3490. beans: {
  3491. height: math.unit(0.93, "feet"),
  3492. name: "Beans",
  3493. image: {
  3494. source: "./media/characters/zephiro/beans.svg"
  3495. }
  3496. },
  3497. },
  3498. [
  3499. {
  3500. name: "Micro",
  3501. height: math.unit(3, "inches")
  3502. },
  3503. {
  3504. name: "Normal",
  3505. height: math.unit(5 + 3 / 12, "feet"),
  3506. default: true
  3507. },
  3508. {
  3509. name: "Macro",
  3510. height: math.unit(118, "feet")
  3511. },
  3512. ]
  3513. ))
  3514. characterMakers.push(() => makeCharacter(
  3515. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3516. {
  3517. front: {
  3518. height: math.unit(5, "feet"),
  3519. weight: math.unit(90, "kg"),
  3520. preyCapacity: math.unit(14, "people"),
  3521. name: "Front",
  3522. image: {
  3523. source: "./media/characters/fory/front.svg",
  3524. extra: 2862 / 2674,
  3525. bottom: 180 / 3043.8
  3526. },
  3527. form: "weaselbun",
  3528. default: true,
  3529. extraAttributes: {
  3530. "pawSize": {
  3531. name: "Paw Size",
  3532. power: 2,
  3533. type: "area",
  3534. base: math.unit(0.1596, "m^2")
  3535. },
  3536. "pawLength": {
  3537. name: "Paw Length",
  3538. power: 1,
  3539. type: "length",
  3540. base: math.unit(0.7, "m")
  3541. }
  3542. }
  3543. },
  3544. back: {
  3545. height: math.unit(5, "feet"),
  3546. weight: math.unit(90, "kg"),
  3547. preyCapacity: math.unit(14, "people"),
  3548. name: "Back",
  3549. image: {
  3550. source: "./media/characters/fory/back.svg",
  3551. extra: 1790/1672,
  3552. bottom: 84/1874
  3553. },
  3554. form: "weaselbun",
  3555. extraAttributes: {
  3556. "pawSize": {
  3557. name: "Paw Size",
  3558. power: 2,
  3559. type: "area",
  3560. base: math.unit(0.1596, "m^2")
  3561. },
  3562. "pawLength": {
  3563. name: "Paw Length",
  3564. power: 1,
  3565. type: "length",
  3566. base: math.unit(0.7, "m")
  3567. }
  3568. }
  3569. },
  3570. paw: {
  3571. height: math.unit(2.14, "feet"),
  3572. name: "Paw",
  3573. image: {
  3574. source: "./media/characters/fory/paw.svg"
  3575. },
  3576. form: "weaselbun",
  3577. extraAttributes: {
  3578. "pawSize": {
  3579. name: "Paw Size",
  3580. power: 2,
  3581. type: "area",
  3582. base: math.unit(0.1596, "m^2")
  3583. },
  3584. "pawLength": {
  3585. name: "Paw Length",
  3586. power: 1,
  3587. type: "length",
  3588. base: math.unit(0.48, "m")
  3589. }
  3590. }
  3591. },
  3592. bunBack: {
  3593. height: math.unit(3, "feet"),
  3594. weight: math.unit(20, "kg"),
  3595. preyCapacity: math.unit(3, "people"),
  3596. name: "Back",
  3597. image: {
  3598. source: "./media/characters/fory/bun-back.svg",
  3599. extra: 1749/1564,
  3600. bottom: 246/1995
  3601. },
  3602. form: "bun",
  3603. default: true,
  3604. extraAttributes: {
  3605. "pawSize": {
  3606. name: "Paw Size",
  3607. power: 2,
  3608. type: "area",
  3609. base: math.unit(0.072, "m^2")
  3610. },
  3611. "pawLength": {
  3612. name: "Paw Length",
  3613. power: 1,
  3614. type: "length",
  3615. base: math.unit(0.45, "m")
  3616. }
  3617. }
  3618. },
  3619. },
  3620. [
  3621. {
  3622. name: "Normal",
  3623. height: math.unit(5, "feet"),
  3624. form: "weaselbun"
  3625. },
  3626. {
  3627. name: "Macro",
  3628. height: math.unit(50, "feet"),
  3629. default: true,
  3630. form: "weaselbun"
  3631. },
  3632. {
  3633. name: "Megamacro",
  3634. height: math.unit(10, "miles"),
  3635. form: "weaselbun"
  3636. },
  3637. {
  3638. name: "Gigamacro",
  3639. height: math.unit(5, "earths"),
  3640. form: "weaselbun"
  3641. },
  3642. {
  3643. name: "Normal",
  3644. height: math.unit(3, "feet"),
  3645. default: true,
  3646. form: "bun"
  3647. },
  3648. {
  3649. name: "Fun-Size",
  3650. height: math.unit(12, "feet"),
  3651. form: "bun"
  3652. },
  3653. {
  3654. name: "Macro",
  3655. height: math.unit(100, "feet"),
  3656. form: "bun"
  3657. },
  3658. {
  3659. name: "Planetary",
  3660. height: math.unit(3, "earths"),
  3661. form: "bun"
  3662. },
  3663. ],
  3664. {
  3665. "weaselbun": {
  3666. name: "Weaselbun",
  3667. default: true
  3668. },
  3669. "bun": {
  3670. name: "Bun",
  3671. },
  3672. }
  3673. ))
  3674. characterMakers.push(() => makeCharacter(
  3675. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3676. {
  3677. front: {
  3678. height: math.unit(7, "feet"),
  3679. weight: math.unit(90, "kg"),
  3680. name: "Front",
  3681. image: {
  3682. source: "./media/characters/kurrikage/front.svg",
  3683. extra: 1845/1733,
  3684. bottom: 119/1964
  3685. }
  3686. },
  3687. back: {
  3688. height: math.unit(7, "feet"),
  3689. weight: math.unit(90, "kg"),
  3690. name: "Back",
  3691. image: {
  3692. source: "./media/characters/kurrikage/back.svg",
  3693. extra: 1790/1677,
  3694. bottom: 61/1851
  3695. }
  3696. },
  3697. dressed: {
  3698. height: math.unit(7, "feet"),
  3699. weight: math.unit(90, "kg"),
  3700. name: "Dressed",
  3701. image: {
  3702. source: "./media/characters/kurrikage/dressed.svg",
  3703. extra: 1845/1733,
  3704. bottom: 119/1964
  3705. }
  3706. },
  3707. foot: {
  3708. height: math.unit(1.5, "feet"),
  3709. name: "Foot",
  3710. image: {
  3711. source: "./media/characters/kurrikage/foot.svg"
  3712. }
  3713. },
  3714. staff: {
  3715. height: math.unit(6.7, "feet"),
  3716. name: "Staff",
  3717. image: {
  3718. source: "./media/characters/kurrikage/staff.svg"
  3719. }
  3720. },
  3721. peek: {
  3722. height: math.unit(1.05, "feet"),
  3723. name: "Peeking",
  3724. image: {
  3725. source: "./media/characters/kurrikage/peek.svg",
  3726. bottom: 0.08
  3727. }
  3728. },
  3729. },
  3730. [
  3731. {
  3732. name: "Normal",
  3733. height: math.unit(12, "feet"),
  3734. default: true
  3735. },
  3736. {
  3737. name: "Big",
  3738. height: math.unit(20, "feet")
  3739. },
  3740. {
  3741. name: "Macro",
  3742. height: math.unit(500, "feet")
  3743. },
  3744. {
  3745. name: "Megamacro",
  3746. height: math.unit(20, "miles")
  3747. },
  3748. ]
  3749. ))
  3750. characterMakers.push(() => makeCharacter(
  3751. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3752. {
  3753. front: {
  3754. height: math.unit(6, "feet"),
  3755. weight: math.unit(75, "kg"),
  3756. name: "Front",
  3757. image: {
  3758. source: "./media/characters/shingo/front.svg",
  3759. extra: 1900/1825,
  3760. bottom: 82/1982
  3761. }
  3762. },
  3763. side: {
  3764. height: math.unit(6, "feet"),
  3765. weight: math.unit(75, "kg"),
  3766. name: "Side",
  3767. image: {
  3768. source: "./media/characters/shingo/side.svg",
  3769. extra: 1930/1865,
  3770. bottom: 16/1946
  3771. }
  3772. },
  3773. back: {
  3774. height: math.unit(6, "feet"),
  3775. weight: math.unit(75, "kg"),
  3776. name: "Back",
  3777. image: {
  3778. source: "./media/characters/shingo/back.svg",
  3779. extra: 1922/1852,
  3780. bottom: 16/1938
  3781. }
  3782. },
  3783. frontDressed: {
  3784. height: math.unit(6, "feet"),
  3785. weight: math.unit(150, "lb"),
  3786. name: "Front-dressed",
  3787. image: {
  3788. source: "./media/characters/shingo/front-dressed.svg",
  3789. extra: 1900/1825,
  3790. bottom: 82/1982
  3791. }
  3792. },
  3793. paw: {
  3794. height: math.unit(1.29, "feet"),
  3795. name: "Paw",
  3796. image: {
  3797. source: "./media/characters/shingo/paw.svg"
  3798. }
  3799. },
  3800. hand: {
  3801. height: math.unit(1.07, "feet"),
  3802. name: "Hand",
  3803. image: {
  3804. source: "./media/characters/shingo/hand.svg"
  3805. }
  3806. },
  3807. frontAlt: {
  3808. height: math.unit(6, "feet"),
  3809. weight: math.unit(75, "kg"),
  3810. name: "Front (Alt)",
  3811. image: {
  3812. source: "./media/characters/shingo/front-alt.svg",
  3813. extra: 3511 / 3338,
  3814. bottom: 0.005
  3815. }
  3816. },
  3817. frontAlt2: {
  3818. height: math.unit(6, "feet"),
  3819. weight: math.unit(75, "kg"),
  3820. name: "Front (Alt 2)",
  3821. image: {
  3822. source: "./media/characters/shingo/front-alt-2.svg",
  3823. extra: 706/681,
  3824. bottom: 11/717
  3825. }
  3826. },
  3827. pawAlt: {
  3828. height: math.unit(1, "feet"),
  3829. name: "Paw (Alt)",
  3830. image: {
  3831. source: "./media/characters/shingo/paw-alt.svg"
  3832. }
  3833. },
  3834. },
  3835. [
  3836. {
  3837. name: "Micro",
  3838. height: math.unit(4, "inches")
  3839. },
  3840. {
  3841. name: "Normal",
  3842. height: math.unit(6, "feet"),
  3843. default: true
  3844. },
  3845. {
  3846. name: "Macro",
  3847. height: math.unit(108, "feet")
  3848. },
  3849. {
  3850. name: "Macro+",
  3851. height: math.unit(1500, "feet")
  3852. },
  3853. ]
  3854. ))
  3855. characterMakers.push(() => makeCharacter(
  3856. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3857. {
  3858. side: {
  3859. height: math.unit(6, "feet"),
  3860. weight: math.unit(75, "kg"),
  3861. name: "Side",
  3862. image: {
  3863. source: "./media/characters/aigey/side.svg"
  3864. }
  3865. },
  3866. },
  3867. [
  3868. {
  3869. name: "Macro",
  3870. height: math.unit(200, "feet"),
  3871. default: true
  3872. },
  3873. {
  3874. name: "Megamacro",
  3875. height: math.unit(100, "miles")
  3876. },
  3877. ]
  3878. )
  3879. )
  3880. characterMakers.push(() => makeCharacter(
  3881. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3882. {
  3883. front: {
  3884. height: math.unit(13, "feet"),
  3885. weight: math.unit(1036.80, "kg"),
  3886. name: "Front",
  3887. image: {
  3888. source: "./media/characters/natasha/front.svg",
  3889. extra: 1301/1210,
  3890. bottom: 39/1340
  3891. }
  3892. },
  3893. back: {
  3894. height: math.unit(13, "feet"),
  3895. weight: math.unit(1036.80, "kg"),
  3896. name: "Back",
  3897. image: {
  3898. source: "./media/characters/natasha/back.svg",
  3899. extra: 1342/1252,
  3900. bottom: 20/1362
  3901. }
  3902. },
  3903. head: {
  3904. height: math.unit(3.48, "feet"),
  3905. name: "Head",
  3906. image: {
  3907. source: "./media/characters/natasha/head.svg"
  3908. }
  3909. },
  3910. jaws: {
  3911. height: math.unit(3.52, "feet"),
  3912. name: "Jaws",
  3913. image: {
  3914. source: "./media/characters/natasha/jaws.svg"
  3915. }
  3916. },
  3917. paws: {
  3918. height: math.unit(2.7, "feet"),
  3919. name: "Paws",
  3920. image: {
  3921. source: "./media/characters/natasha/paws.svg"
  3922. }
  3923. },
  3924. collar: {
  3925. height: math.unit(0.89, "feet"),
  3926. name: "Collar",
  3927. image: {
  3928. source: "./media/characters/natasha/collar.svg"
  3929. }
  3930. },
  3931. gauge: {
  3932. height: math.unit(0.36, "feet"),
  3933. name: "Gauge",
  3934. image: {
  3935. source: "./media/characters/natasha/gauge.svg"
  3936. }
  3937. },
  3938. },
  3939. [
  3940. {
  3941. name: "Shortstack",
  3942. height: math.unit(3, "feet")
  3943. },
  3944. {
  3945. name: "Normal",
  3946. height: math.unit(13, "feet"),
  3947. default: true
  3948. },
  3949. {
  3950. name: "Macro",
  3951. height: math.unit(100, "feet")
  3952. },
  3953. {
  3954. name: "Macro+",
  3955. height: math.unit(260, "feet")
  3956. },
  3957. {
  3958. name: "Macro++",
  3959. height: math.unit(1, "mile")
  3960. },
  3961. ]
  3962. ))
  3963. characterMakers.push(() => makeCharacter(
  3964. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3965. {
  3966. front: {
  3967. height: math.unit(6, "feet"),
  3968. weight: math.unit(75, "kg"),
  3969. name: "Front",
  3970. image: {
  3971. source: "./media/characters/malik/front.svg",
  3972. extra: 1750/1561,
  3973. bottom: 80/1830
  3974. },
  3975. extraAttributes: {
  3976. "toeSize": {
  3977. name: "Toe Size",
  3978. power: 2,
  3979. type: "area",
  3980. base: math.unit(0.0159, "m^2")
  3981. },
  3982. "pawSize": {
  3983. name: "Paw Size",
  3984. power: 2,
  3985. type: "area",
  3986. base: math.unit(0.09834, "m^2")
  3987. },
  3988. }
  3989. },
  3990. side: {
  3991. height: math.unit(6, "feet"),
  3992. weight: math.unit(75, "kg"),
  3993. name: "Side",
  3994. image: {
  3995. source: "./media/characters/malik/side.svg",
  3996. extra: 1802/1685,
  3997. bottom: 42/1844
  3998. },
  3999. extraAttributes: {
  4000. "toeSize": {
  4001. name: "Toe Size",
  4002. power: 2,
  4003. type: "area",
  4004. base: math.unit(0.0159, "m^2")
  4005. },
  4006. "pawSize": {
  4007. name: "Paw Size",
  4008. power: 2,
  4009. type: "area",
  4010. base: math.unit(0.09834, "m^2")
  4011. },
  4012. }
  4013. },
  4014. back: {
  4015. height: math.unit(6, "feet"),
  4016. weight: math.unit(75, "kg"),
  4017. name: "Back",
  4018. image: {
  4019. source: "./media/characters/malik/back.svg",
  4020. extra: 1803/1607,
  4021. bottom: 33/1836
  4022. },
  4023. extraAttributes: {
  4024. "toeSize": {
  4025. name: "Toe Size",
  4026. power: 2,
  4027. type: "area",
  4028. base: math.unit(0.0159, "m^2")
  4029. },
  4030. "pawSize": {
  4031. name: "Paw Size",
  4032. power: 2,
  4033. type: "area",
  4034. base: math.unit(0.09834, "m^2")
  4035. },
  4036. }
  4037. },
  4038. },
  4039. [
  4040. {
  4041. name: "Macro",
  4042. height: math.unit(156, "feet"),
  4043. default: true
  4044. },
  4045. {
  4046. name: "Macro+",
  4047. height: math.unit(1188, "feet")
  4048. },
  4049. ]
  4050. ))
  4051. characterMakers.push(() => makeCharacter(
  4052. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4053. {
  4054. front: {
  4055. height: math.unit(6, "feet"),
  4056. weight: math.unit(75, "kg"),
  4057. name: "Front",
  4058. image: {
  4059. source: "./media/characters/sefer/front.svg",
  4060. extra: 848 / 659,
  4061. bottom: 28.3 / 876.442
  4062. }
  4063. },
  4064. back: {
  4065. height: math.unit(6, "feet"),
  4066. weight: math.unit(75, "kg"),
  4067. name: "Back",
  4068. image: {
  4069. source: "./media/characters/sefer/back.svg",
  4070. extra: 864 / 695,
  4071. bottom: 10 / 871
  4072. }
  4073. },
  4074. frontDressed: {
  4075. height: math.unit(6, "feet"),
  4076. weight: math.unit(75, "kg"),
  4077. name: "Dressed",
  4078. image: {
  4079. source: "./media/characters/sefer/dressed.svg",
  4080. extra: 839 / 653,
  4081. bottom: 37.6 / 878
  4082. }
  4083. },
  4084. },
  4085. [
  4086. {
  4087. name: "Normal",
  4088. height: math.unit(6, "feet"),
  4089. default: true
  4090. },
  4091. {
  4092. name: "Big",
  4093. height: math.unit(8, "meters")
  4094. },
  4095. ]
  4096. ))
  4097. characterMakers.push(() => makeCharacter(
  4098. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4099. {
  4100. body: {
  4101. height: math.unit(2.2428, "meter"),
  4102. weight: math.unit(124.738, "kg"),
  4103. name: "Body",
  4104. image: {
  4105. extra: 1225 / 1050,
  4106. source: "./media/characters/north/front.svg"
  4107. }
  4108. }
  4109. },
  4110. [
  4111. {
  4112. name: "Micro",
  4113. height: math.unit(4, "inches")
  4114. },
  4115. {
  4116. name: "Macro",
  4117. height: math.unit(63, "meters")
  4118. },
  4119. {
  4120. name: "Megamacro",
  4121. height: math.unit(101, "miles"),
  4122. default: true
  4123. }
  4124. ]
  4125. ))
  4126. characterMakers.push(() => makeCharacter(
  4127. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4128. {
  4129. angled: {
  4130. height: math.unit(4, "meter"),
  4131. weight: math.unit(150, "kg"),
  4132. name: "Angled",
  4133. image: {
  4134. source: "./media/characters/talan/angled-sfw.svg",
  4135. bottom: 29 / 3734
  4136. }
  4137. },
  4138. angledNsfw: {
  4139. height: math.unit(4, "meter"),
  4140. weight: math.unit(150, "kg"),
  4141. name: "Angled (NSFW)",
  4142. image: {
  4143. source: "./media/characters/talan/angled-nsfw.svg",
  4144. bottom: 29 / 3734
  4145. }
  4146. },
  4147. frontNsfw: {
  4148. height: math.unit(4, "meter"),
  4149. weight: math.unit(150, "kg"),
  4150. name: "Front (NSFW)",
  4151. image: {
  4152. source: "./media/characters/talan/front-nsfw.svg",
  4153. bottom: 29 / 3734
  4154. }
  4155. },
  4156. sideNsfw: {
  4157. height: math.unit(4, "meter"),
  4158. weight: math.unit(150, "kg"),
  4159. name: "Side (NSFW)",
  4160. image: {
  4161. source: "./media/characters/talan/side-nsfw.svg",
  4162. bottom: 29 / 3734
  4163. }
  4164. },
  4165. back: {
  4166. height: math.unit(4, "meter"),
  4167. weight: math.unit(150, "kg"),
  4168. name: "Back",
  4169. image: {
  4170. source: "./media/characters/talan/back.svg"
  4171. }
  4172. },
  4173. dickBottom: {
  4174. height: math.unit(0.621, "meter"),
  4175. name: "Dick (Bottom)",
  4176. image: {
  4177. source: "./media/characters/talan/dick-bottom.svg"
  4178. }
  4179. },
  4180. dickTop: {
  4181. height: math.unit(0.621, "meter"),
  4182. name: "Dick (Top)",
  4183. image: {
  4184. source: "./media/characters/talan/dick-top.svg"
  4185. }
  4186. },
  4187. dickSide: {
  4188. height: math.unit(0.305, "meter"),
  4189. name: "Dick (Side)",
  4190. image: {
  4191. source: "./media/characters/talan/dick-side.svg"
  4192. }
  4193. },
  4194. dickFront: {
  4195. height: math.unit(0.305, "meter"),
  4196. name: "Dick (Front)",
  4197. image: {
  4198. source: "./media/characters/talan/dick-front.svg"
  4199. }
  4200. },
  4201. },
  4202. [
  4203. {
  4204. name: "Normal",
  4205. height: math.unit(4, "meters")
  4206. },
  4207. {
  4208. name: "Macro",
  4209. height: math.unit(100, "meters")
  4210. },
  4211. {
  4212. name: "Megamacro",
  4213. height: math.unit(2, "miles"),
  4214. default: true
  4215. },
  4216. {
  4217. name: "Gigamacro",
  4218. height: math.unit(5000, "miles")
  4219. },
  4220. {
  4221. name: "Teramacro",
  4222. height: math.unit(100, "parsecs")
  4223. }
  4224. ]
  4225. ))
  4226. characterMakers.push(() => makeCharacter(
  4227. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4228. {
  4229. front: {
  4230. height: math.unit(2, "meter"),
  4231. weight: math.unit(90, "kg"),
  4232. name: "Front",
  4233. image: {
  4234. source: "./media/characters/gael'rathus/front.svg"
  4235. }
  4236. },
  4237. frontAlt: {
  4238. height: math.unit(2, "meter"),
  4239. weight: math.unit(90, "kg"),
  4240. name: "Front (alt)",
  4241. image: {
  4242. source: "./media/characters/gael'rathus/front-alt.svg"
  4243. }
  4244. },
  4245. frontAlt2: {
  4246. height: math.unit(2, "meter"),
  4247. weight: math.unit(90, "kg"),
  4248. name: "Front (alt 2)",
  4249. image: {
  4250. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4251. }
  4252. }
  4253. },
  4254. [
  4255. {
  4256. name: "Normal",
  4257. height: math.unit(9, "feet"),
  4258. default: true
  4259. },
  4260. {
  4261. name: "Large",
  4262. height: math.unit(25, "feet")
  4263. },
  4264. {
  4265. name: "Macro",
  4266. height: math.unit(0.25, "miles")
  4267. },
  4268. {
  4269. name: "Megamacro",
  4270. height: math.unit(10, "miles")
  4271. }
  4272. ]
  4273. ))
  4274. characterMakers.push(() => makeCharacter(
  4275. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4276. {
  4277. side: {
  4278. height: math.unit(2, "meter"),
  4279. weight: math.unit(140, "kg"),
  4280. name: "Side",
  4281. image: {
  4282. source: "./media/characters/sosha/side.svg",
  4283. extra: 1170/1006,
  4284. bottom: 94/1264
  4285. }
  4286. },
  4287. maw: {
  4288. height: math.unit(2.87, "feet"),
  4289. name: "Maw",
  4290. image: {
  4291. source: "./media/characters/sosha/maw.svg",
  4292. extra: 966/865,
  4293. bottom: 0/966
  4294. }
  4295. },
  4296. cooch: {
  4297. height: math.unit(5.6, "feet"),
  4298. name: "Cooch",
  4299. image: {
  4300. source: "./media/characters/sosha/cooch.svg"
  4301. }
  4302. },
  4303. },
  4304. [
  4305. {
  4306. name: "Normal",
  4307. height: math.unit(12, "feet"),
  4308. default: true
  4309. }
  4310. ]
  4311. ))
  4312. characterMakers.push(() => makeCharacter(
  4313. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4314. {
  4315. side: {
  4316. height: math.unit(5 + 5 / 12, "feet"),
  4317. weight: math.unit(170, "kg"),
  4318. name: "Side",
  4319. image: {
  4320. source: "./media/characters/runnola/side.svg",
  4321. extra: 741 / 448,
  4322. bottom: 0.05
  4323. }
  4324. },
  4325. },
  4326. [
  4327. {
  4328. name: "Small",
  4329. height: math.unit(3, "feet")
  4330. },
  4331. {
  4332. name: "Normal",
  4333. height: math.unit(5 + 5 / 12, "feet"),
  4334. default: true
  4335. },
  4336. {
  4337. name: "Big",
  4338. height: math.unit(10, "feet")
  4339. },
  4340. ]
  4341. ))
  4342. characterMakers.push(() => makeCharacter(
  4343. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4344. {
  4345. front: {
  4346. height: math.unit(2, "meter"),
  4347. weight: math.unit(50, "kg"),
  4348. name: "Front",
  4349. image: {
  4350. source: "./media/characters/kurribird/front.svg",
  4351. bottom: 0.015
  4352. }
  4353. },
  4354. frontAlt: {
  4355. height: math.unit(1.5, "meter"),
  4356. weight: math.unit(50, "kg"),
  4357. name: "Front (Alt)",
  4358. image: {
  4359. source: "./media/characters/kurribird/front-alt.svg",
  4360. extra: 1.45
  4361. }
  4362. },
  4363. },
  4364. [
  4365. {
  4366. name: "Normal",
  4367. height: math.unit(7, "feet")
  4368. },
  4369. {
  4370. name: "Big",
  4371. height: math.unit(12, "feet"),
  4372. default: true
  4373. },
  4374. {
  4375. name: "Macro",
  4376. height: math.unit(1500, "feet")
  4377. },
  4378. {
  4379. name: "Megamacro",
  4380. height: math.unit(2, "miles")
  4381. }
  4382. ]
  4383. ))
  4384. characterMakers.push(() => makeCharacter(
  4385. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4386. {
  4387. front: {
  4388. height: math.unit(2, "meter"),
  4389. weight: math.unit(80, "kg"),
  4390. name: "Front",
  4391. image: {
  4392. source: "./media/characters/elbial/front.svg",
  4393. extra: 1643 / 1556,
  4394. bottom: 60.2 / 1696
  4395. }
  4396. },
  4397. side: {
  4398. height: math.unit(2, "meter"),
  4399. weight: math.unit(80, "kg"),
  4400. name: "Side",
  4401. image: {
  4402. source: "./media/characters/elbial/side.svg",
  4403. extra: 1601/1528,
  4404. bottom: 97/1698
  4405. }
  4406. },
  4407. back: {
  4408. height: math.unit(2, "meter"),
  4409. weight: math.unit(80, "kg"),
  4410. name: "Back",
  4411. image: {
  4412. source: "./media/characters/elbial/back.svg",
  4413. extra: 1653/1569,
  4414. bottom: 20/1673
  4415. }
  4416. },
  4417. frontDressed: {
  4418. height: math.unit(2, "meter"),
  4419. weight: math.unit(80, "kg"),
  4420. name: "Front (Dressed)",
  4421. image: {
  4422. source: "./media/characters/elbial/front-dressed.svg",
  4423. extra: 1638/1569,
  4424. bottom: 70/1708
  4425. }
  4426. },
  4427. genitals: {
  4428. height: math.unit(2 / 3.367, "meter"),
  4429. name: "Genitals",
  4430. image: {
  4431. source: "./media/characters/elbial/genitals.svg"
  4432. }
  4433. },
  4434. },
  4435. [
  4436. {
  4437. name: "Large",
  4438. height: math.unit(100, "feet")
  4439. },
  4440. {
  4441. name: "Macro",
  4442. height: math.unit(500, "feet"),
  4443. default: true
  4444. },
  4445. {
  4446. name: "Megamacro",
  4447. height: math.unit(10, "miles")
  4448. },
  4449. {
  4450. name: "Gigamacro",
  4451. height: math.unit(25000, "miles")
  4452. },
  4453. {
  4454. name: "Full-Size",
  4455. height: math.unit(8000000, "gigaparsecs")
  4456. }
  4457. ]
  4458. ))
  4459. characterMakers.push(() => makeCharacter(
  4460. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4461. {
  4462. front: {
  4463. height: math.unit(2, "meter"),
  4464. weight: math.unit(60, "kg"),
  4465. name: "Front",
  4466. image: {
  4467. source: "./media/characters/noah/front.svg",
  4468. extra: 1383/1313,
  4469. bottom: 104/1487
  4470. }
  4471. },
  4472. hand: {
  4473. height: math.unit(0.6, "feet"),
  4474. name: "Hand",
  4475. image: {
  4476. source: "./media/characters/noah/hand.svg"
  4477. }
  4478. },
  4479. talons: {
  4480. height: math.unit(1.385, "feet"),
  4481. name: "Talons",
  4482. image: {
  4483. source: "./media/characters/noah/talons.svg"
  4484. }
  4485. },
  4486. beak: {
  4487. height: math.unit(0.43, "feet"),
  4488. name: "Beak",
  4489. image: {
  4490. source: "./media/characters/noah/beak.svg"
  4491. }
  4492. },
  4493. collar: {
  4494. height: math.unit(0.88, "feet"),
  4495. name: "Collar",
  4496. image: {
  4497. source: "./media/characters/noah/collar.svg"
  4498. }
  4499. },
  4500. eyeNarrow: {
  4501. height: math.unit(0.18, "feet"),
  4502. name: "Eye (Narrow)",
  4503. image: {
  4504. source: "./media/characters/noah/eye-narrow.svg"
  4505. }
  4506. },
  4507. eyeNormal: {
  4508. height: math.unit(0.18, "feet"),
  4509. name: "Eye (Normal)",
  4510. image: {
  4511. source: "./media/characters/noah/eye-normal.svg"
  4512. }
  4513. },
  4514. eyeWide: {
  4515. height: math.unit(0.18, "feet"),
  4516. name: "Eye (Wide)",
  4517. image: {
  4518. source: "./media/characters/noah/eye-wide.svg"
  4519. }
  4520. },
  4521. ear: {
  4522. height: math.unit(0.64, "feet"),
  4523. name: "Ear",
  4524. image: {
  4525. source: "./media/characters/noah/ear.svg"
  4526. }
  4527. },
  4528. },
  4529. [
  4530. {
  4531. name: "Large",
  4532. height: math.unit(50, "feet")
  4533. },
  4534. {
  4535. name: "Macro",
  4536. height: math.unit(750, "feet"),
  4537. default: true
  4538. },
  4539. {
  4540. name: "Megamacro",
  4541. height: math.unit(50, "miles")
  4542. },
  4543. {
  4544. name: "Gigamacro",
  4545. height: math.unit(100000, "miles")
  4546. },
  4547. {
  4548. name: "Full-Size",
  4549. height: math.unit(3000000000, "miles")
  4550. }
  4551. ]
  4552. ))
  4553. characterMakers.push(() => makeCharacter(
  4554. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4555. {
  4556. front: {
  4557. height: math.unit(2, "meter"),
  4558. weight: math.unit(80, "kg"),
  4559. name: "Front",
  4560. image: {
  4561. source: "./media/characters/natalya/front.svg"
  4562. }
  4563. },
  4564. back: {
  4565. height: math.unit(2, "meter"),
  4566. weight: math.unit(80, "kg"),
  4567. name: "Back",
  4568. image: {
  4569. source: "./media/characters/natalya/back.svg"
  4570. }
  4571. }
  4572. },
  4573. [
  4574. {
  4575. name: "Normal",
  4576. height: math.unit(150, "feet"),
  4577. default: true
  4578. },
  4579. {
  4580. name: "Megamacro",
  4581. height: math.unit(5, "miles")
  4582. },
  4583. {
  4584. name: "Full-Size",
  4585. height: math.unit(600, "kiloparsecs")
  4586. }
  4587. ]
  4588. ))
  4589. characterMakers.push(() => makeCharacter(
  4590. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4591. {
  4592. front: {
  4593. height: math.unit(2, "meter"),
  4594. weight: math.unit(50, "kg"),
  4595. name: "Front",
  4596. image: {
  4597. source: "./media/characters/erestrebah/front.svg",
  4598. extra: 1262/1162,
  4599. bottom: 96/1358
  4600. }
  4601. },
  4602. back: {
  4603. height: math.unit(2, "meter"),
  4604. weight: math.unit(50, "kg"),
  4605. name: "Back",
  4606. image: {
  4607. source: "./media/characters/erestrebah/back.svg",
  4608. extra: 1257/1139,
  4609. bottom: 13/1270
  4610. }
  4611. },
  4612. wing: {
  4613. height: math.unit(2, "meter"),
  4614. weight: math.unit(50, "kg"),
  4615. name: "Wing",
  4616. image: {
  4617. source: "./media/characters/erestrebah/wing.svg",
  4618. extra: 1262/1162,
  4619. bottom: 96/1358
  4620. }
  4621. },
  4622. mouth: {
  4623. height: math.unit(0.39, "feet"),
  4624. name: "Mouth",
  4625. image: {
  4626. source: "./media/characters/erestrebah/mouth.svg"
  4627. }
  4628. }
  4629. },
  4630. [
  4631. {
  4632. name: "Normal",
  4633. height: math.unit(10, "feet")
  4634. },
  4635. {
  4636. name: "Large",
  4637. height: math.unit(50, "feet"),
  4638. default: true
  4639. },
  4640. {
  4641. name: "Macro",
  4642. height: math.unit(300, "feet")
  4643. },
  4644. {
  4645. name: "Macro+",
  4646. height: math.unit(750, "feet")
  4647. },
  4648. {
  4649. name: "Megamacro",
  4650. height: math.unit(3, "miles")
  4651. }
  4652. ]
  4653. ))
  4654. characterMakers.push(() => makeCharacter(
  4655. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4656. {
  4657. front: {
  4658. height: math.unit(2, "meter"),
  4659. weight: math.unit(80, "kg"),
  4660. name: "Front",
  4661. image: {
  4662. source: "./media/characters/jennifer/front.svg",
  4663. bottom: 0.11,
  4664. extra: 1.16
  4665. }
  4666. },
  4667. frontAlt: {
  4668. height: math.unit(2, "meter"),
  4669. weight: math.unit(80, "kg"),
  4670. name: "Front (Alt)",
  4671. image: {
  4672. source: "./media/characters/jennifer/front-alt.svg"
  4673. }
  4674. }
  4675. },
  4676. [
  4677. {
  4678. name: "Canon Height",
  4679. height: math.unit(120, "feet"),
  4680. default: true
  4681. },
  4682. {
  4683. name: "Macro+",
  4684. height: math.unit(300, "feet")
  4685. },
  4686. {
  4687. name: "Megamacro",
  4688. height: math.unit(20000, "feet")
  4689. }
  4690. ]
  4691. ))
  4692. characterMakers.push(() => makeCharacter(
  4693. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4694. {
  4695. front: {
  4696. height: math.unit(2, "meter"),
  4697. weight: math.unit(50, "kg"),
  4698. name: "Front",
  4699. image: {
  4700. source: "./media/characters/kalista/front.svg",
  4701. extra: 1314/1145,
  4702. bottom: 101/1415
  4703. }
  4704. },
  4705. back: {
  4706. height: math.unit(2, "meter"),
  4707. weight: math.unit(50, "kg"),
  4708. name: "Back",
  4709. image: {
  4710. source: "./media/characters/kalista/back.svg",
  4711. extra: 1366 / 1156,
  4712. bottom: 33.9 / 1362.78
  4713. }
  4714. }
  4715. },
  4716. [
  4717. {
  4718. name: "Uncomfortably Small",
  4719. height: math.unit(10, "feet")
  4720. },
  4721. {
  4722. name: "Small",
  4723. height: math.unit(30, "feet")
  4724. },
  4725. {
  4726. name: "Macro",
  4727. height: math.unit(100, "feet"),
  4728. default: true
  4729. },
  4730. {
  4731. name: "Macro+",
  4732. height: math.unit(2000, "feet")
  4733. },
  4734. {
  4735. name: "True Form",
  4736. height: math.unit(8924, "miles")
  4737. }
  4738. ]
  4739. ))
  4740. characterMakers.push(() => makeCharacter(
  4741. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4742. {
  4743. front: {
  4744. height: math.unit(2, "meter"),
  4745. weight: math.unit(120, "kg"),
  4746. name: "Front",
  4747. image: {
  4748. source: "./media/characters/ggv/front.svg"
  4749. }
  4750. },
  4751. side: {
  4752. height: math.unit(2, "meter"),
  4753. weight: math.unit(120, "kg"),
  4754. name: "Side",
  4755. image: {
  4756. source: "./media/characters/ggv/side.svg"
  4757. }
  4758. }
  4759. },
  4760. [
  4761. {
  4762. name: "Extremely Puny",
  4763. height: math.unit(9 + 5 / 12, "feet")
  4764. },
  4765. {
  4766. name: "Horribly Small",
  4767. height: math.unit(47.7, "miles"),
  4768. default: true
  4769. },
  4770. {
  4771. name: "Reasonably Sized",
  4772. height: math.unit(25000, "parsecs")
  4773. },
  4774. {
  4775. name: "Slightly Uncompressed",
  4776. height: math.unit(7.77e31, "parsecs")
  4777. },
  4778. {
  4779. name: "Omniversal",
  4780. height: math.unit(1e300, "meters")
  4781. },
  4782. ]
  4783. ))
  4784. characterMakers.push(() => makeCharacter(
  4785. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4786. {
  4787. front: {
  4788. height: math.unit(2, "meter"),
  4789. weight: math.unit(75, "lb"),
  4790. name: "Front",
  4791. image: {
  4792. source: "./media/characters/napalm/front.svg"
  4793. }
  4794. },
  4795. back: {
  4796. height: math.unit(2, "meter"),
  4797. weight: math.unit(75, "lb"),
  4798. name: "Back",
  4799. image: {
  4800. source: "./media/characters/napalm/back.svg"
  4801. }
  4802. }
  4803. },
  4804. [
  4805. {
  4806. name: "Standard",
  4807. height: math.unit(55, "feet"),
  4808. default: true
  4809. }
  4810. ]
  4811. ))
  4812. characterMakers.push(() => makeCharacter(
  4813. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4814. {
  4815. front: {
  4816. height: math.unit(7 + 5 / 6, "feet"),
  4817. weight: math.unit(325, "lb"),
  4818. name: "Front",
  4819. image: {
  4820. source: "./media/characters/asana/front.svg",
  4821. extra: 1133 / 1060,
  4822. bottom: 15.2 / 1148.6
  4823. }
  4824. },
  4825. back: {
  4826. height: math.unit(7 + 5 / 6, "feet"),
  4827. weight: math.unit(325, "lb"),
  4828. name: "Back",
  4829. image: {
  4830. source: "./media/characters/asana/back.svg",
  4831. extra: 1114 / 1043,
  4832. bottom: 5 / 1120
  4833. }
  4834. },
  4835. dressedDark: {
  4836. height: math.unit(7 + 5 / 6, "feet"),
  4837. weight: math.unit(325, "lb"),
  4838. name: "Dressed (Dark)",
  4839. image: {
  4840. source: "./media/characters/asana/dressed-dark.svg",
  4841. extra: 1133 / 1060,
  4842. bottom: 15.2 / 1148.6
  4843. }
  4844. },
  4845. dressedLight: {
  4846. height: math.unit(7 + 5 / 6, "feet"),
  4847. weight: math.unit(325, "lb"),
  4848. name: "Dressed (Light)",
  4849. image: {
  4850. source: "./media/characters/asana/dressed-light.svg",
  4851. extra: 1133 / 1060,
  4852. bottom: 15.2 / 1148.6
  4853. }
  4854. },
  4855. },
  4856. [
  4857. {
  4858. name: "Standard",
  4859. height: math.unit(7 + 5 / 6, "feet"),
  4860. default: true
  4861. },
  4862. {
  4863. name: "Large",
  4864. height: math.unit(10, "meters")
  4865. },
  4866. {
  4867. name: "Macro",
  4868. height: math.unit(2500, "meters")
  4869. },
  4870. {
  4871. name: "Megamacro",
  4872. height: math.unit(5e6, "meters")
  4873. },
  4874. {
  4875. name: "Examacro",
  4876. height: math.unit(5e12, "lightyears")
  4877. },
  4878. {
  4879. name: "Max Size",
  4880. height: math.unit(1e31, "lightyears")
  4881. }
  4882. ]
  4883. ))
  4884. characterMakers.push(() => makeCharacter(
  4885. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4886. {
  4887. front: {
  4888. height: math.unit(2, "meter"),
  4889. weight: math.unit(60, "kg"),
  4890. name: "Front",
  4891. image: {
  4892. source: "./media/characters/ebony/front.svg",
  4893. bottom: 0.03,
  4894. extra: 1045 / 810 + 0.03
  4895. }
  4896. },
  4897. side: {
  4898. height: math.unit(2, "meter"),
  4899. weight: math.unit(60, "kg"),
  4900. name: "Side",
  4901. image: {
  4902. source: "./media/characters/ebony/side.svg",
  4903. bottom: 0.03,
  4904. extra: 1045 / 810 + 0.03
  4905. }
  4906. },
  4907. back: {
  4908. height: math.unit(2, "meter"),
  4909. weight: math.unit(60, "kg"),
  4910. name: "Back",
  4911. image: {
  4912. source: "./media/characters/ebony/back.svg",
  4913. bottom: 0.01,
  4914. extra: 1045 / 810 + 0.01
  4915. }
  4916. },
  4917. },
  4918. [
  4919. // TODO check why I did this lol
  4920. {
  4921. name: "Standard",
  4922. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4923. default: true
  4924. },
  4925. {
  4926. name: "Macro",
  4927. height: math.unit(200, "feet")
  4928. },
  4929. {
  4930. name: "Gigamacro",
  4931. height: math.unit(13000, "km")
  4932. }
  4933. ]
  4934. ))
  4935. characterMakers.push(() => makeCharacter(
  4936. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4937. {
  4938. front: {
  4939. height: math.unit(6, "feet"),
  4940. weight: math.unit(175, "lb"),
  4941. name: "Front",
  4942. image: {
  4943. source: "./media/characters/mountain/front.svg",
  4944. extra: 972 / 955,
  4945. bottom: 64 / 1036.6
  4946. }
  4947. },
  4948. back: {
  4949. height: math.unit(6, "feet"),
  4950. weight: math.unit(175, "lb"),
  4951. name: "Back",
  4952. image: {
  4953. source: "./media/characters/mountain/back.svg",
  4954. extra: 970 / 950,
  4955. bottom: 28.25 / 999
  4956. }
  4957. },
  4958. },
  4959. [
  4960. {
  4961. name: "Large",
  4962. height: math.unit(20, "meters")
  4963. },
  4964. {
  4965. name: "Macro",
  4966. height: math.unit(300, "meters")
  4967. },
  4968. {
  4969. name: "Gigamacro",
  4970. height: math.unit(10000, "km"),
  4971. default: true
  4972. },
  4973. {
  4974. name: "Examacro",
  4975. height: math.unit(10e9, "lightyears")
  4976. }
  4977. ]
  4978. ))
  4979. characterMakers.push(() => makeCharacter(
  4980. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4981. {
  4982. front: {
  4983. height: math.unit(8, "feet"),
  4984. weight: math.unit(500, "lb"),
  4985. name: "Front",
  4986. image: {
  4987. source: "./media/characters/rick/front.svg"
  4988. }
  4989. }
  4990. },
  4991. [
  4992. {
  4993. name: "Normal",
  4994. height: math.unit(8, "feet"),
  4995. default: true
  4996. },
  4997. {
  4998. name: "Macro",
  4999. height: math.unit(5, "km")
  5000. }
  5001. ]
  5002. ))
  5003. characterMakers.push(() => makeCharacter(
  5004. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  5005. {
  5006. front: {
  5007. height: math.unit(8, "feet"),
  5008. weight: math.unit(120, "lb"),
  5009. name: "Front",
  5010. image: {
  5011. source: "./media/characters/ona/front.svg"
  5012. }
  5013. },
  5014. frontAlt: {
  5015. height: math.unit(8, "feet"),
  5016. weight: math.unit(120, "lb"),
  5017. name: "Front (Alt)",
  5018. image: {
  5019. source: "./media/characters/ona/front-alt.svg"
  5020. }
  5021. },
  5022. back: {
  5023. height: math.unit(8, "feet"),
  5024. weight: math.unit(120, "lb"),
  5025. name: "Back",
  5026. image: {
  5027. source: "./media/characters/ona/back.svg"
  5028. }
  5029. },
  5030. foot: {
  5031. height: math.unit(1.1, "feet"),
  5032. name: "Foot",
  5033. image: {
  5034. source: "./media/characters/ona/foot.svg"
  5035. }
  5036. }
  5037. },
  5038. [
  5039. {
  5040. name: "Megamacro",
  5041. height: math.unit(70, "km"),
  5042. default: true
  5043. },
  5044. {
  5045. name: "Gigamacro",
  5046. height: math.unit(681818, "miles")
  5047. },
  5048. {
  5049. name: "Examacro",
  5050. height: math.unit(3800000, "lightyears")
  5051. },
  5052. ]
  5053. ))
  5054. characterMakers.push(() => makeCharacter(
  5055. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5056. {
  5057. front: {
  5058. height: math.unit(12, "feet"),
  5059. weight: math.unit(3000, "lb"),
  5060. name: "Front",
  5061. image: {
  5062. source: "./media/characters/mech/front.svg",
  5063. extra: 2900 / 2770,
  5064. bottom: 110 / 3010
  5065. }
  5066. },
  5067. back: {
  5068. height: math.unit(12, "feet"),
  5069. weight: math.unit(3000, "lb"),
  5070. name: "Back",
  5071. image: {
  5072. source: "./media/characters/mech/back.svg",
  5073. extra: 3011 / 2890,
  5074. bottom: 94 / 3105
  5075. }
  5076. },
  5077. maw: {
  5078. height: math.unit(3.07, "feet"),
  5079. name: "Maw",
  5080. image: {
  5081. source: "./media/characters/mech/maw.svg"
  5082. }
  5083. },
  5084. head: {
  5085. height: math.unit(3.07, "feet"),
  5086. name: "Head",
  5087. image: {
  5088. source: "./media/characters/mech/head.svg"
  5089. }
  5090. },
  5091. dick: {
  5092. height: math.unit(1.43, "feet"),
  5093. name: "Dick",
  5094. image: {
  5095. source: "./media/characters/mech/dick.svg"
  5096. }
  5097. },
  5098. },
  5099. [
  5100. {
  5101. name: "Normal",
  5102. height: math.unit(12, "feet")
  5103. },
  5104. {
  5105. name: "Macro",
  5106. height: math.unit(300, "feet"),
  5107. default: true
  5108. },
  5109. {
  5110. name: "Macro+",
  5111. height: math.unit(1500, "feet")
  5112. },
  5113. ]
  5114. ))
  5115. characterMakers.push(() => makeCharacter(
  5116. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5117. {
  5118. front: {
  5119. height: math.unit(1.3, "meter"),
  5120. weight: math.unit(30, "kg"),
  5121. name: "Front",
  5122. image: {
  5123. source: "./media/characters/gregory/front.svg",
  5124. }
  5125. }
  5126. },
  5127. [
  5128. {
  5129. name: "Normal",
  5130. height: math.unit(1.3, "meter"),
  5131. default: true
  5132. },
  5133. {
  5134. name: "Macro",
  5135. height: math.unit(20, "meter")
  5136. }
  5137. ]
  5138. ))
  5139. characterMakers.push(() => makeCharacter(
  5140. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5141. {
  5142. front: {
  5143. height: math.unit(2.8, "meter"),
  5144. weight: math.unit(200, "kg"),
  5145. name: "Front",
  5146. image: {
  5147. source: "./media/characters/elory/front.svg",
  5148. }
  5149. }
  5150. },
  5151. [
  5152. {
  5153. name: "Normal",
  5154. height: math.unit(2.8, "meter"),
  5155. default: true
  5156. },
  5157. {
  5158. name: "Macro",
  5159. height: math.unit(38, "meter")
  5160. }
  5161. ]
  5162. ))
  5163. characterMakers.push(() => makeCharacter(
  5164. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5165. {
  5166. front: {
  5167. height: math.unit(470, "feet"),
  5168. weight: math.unit(924, "tons"),
  5169. name: "Front",
  5170. image: {
  5171. source: "./media/characters/angelpatamon/front.svg",
  5172. }
  5173. }
  5174. },
  5175. [
  5176. {
  5177. name: "Normal",
  5178. height: math.unit(470, "feet"),
  5179. default: true
  5180. },
  5181. {
  5182. name: "Deity Size I",
  5183. height: math.unit(28651.2, "km")
  5184. },
  5185. {
  5186. name: "Deity Size II",
  5187. height: math.unit(171907.2, "km")
  5188. }
  5189. ]
  5190. ))
  5191. characterMakers.push(() => makeCharacter(
  5192. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5193. {
  5194. side: {
  5195. height: math.unit(7.2, "meter"),
  5196. weight: math.unit(8.2, "tons"),
  5197. name: "Side",
  5198. image: {
  5199. source: "./media/characters/cryae/side.svg",
  5200. extra: 3500 / 1500
  5201. }
  5202. }
  5203. },
  5204. [
  5205. {
  5206. name: "Normal",
  5207. height: math.unit(7.2, "meter"),
  5208. default: true
  5209. }
  5210. ]
  5211. ))
  5212. characterMakers.push(() => makeCharacter(
  5213. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5214. {
  5215. front: {
  5216. height: math.unit(6, "feet"),
  5217. weight: math.unit(175, "lb"),
  5218. name: "Front",
  5219. image: {
  5220. source: "./media/characters/xera/front.svg",
  5221. extra: 2377 / 1972,
  5222. bottom: 75.5 / 2452
  5223. }
  5224. },
  5225. side: {
  5226. height: math.unit(6, "feet"),
  5227. weight: math.unit(175, "lb"),
  5228. name: "Side",
  5229. image: {
  5230. source: "./media/characters/xera/side.svg",
  5231. extra: 2345 / 2019,
  5232. bottom: 39.7 / 2384
  5233. }
  5234. },
  5235. back: {
  5236. height: math.unit(6, "feet"),
  5237. weight: math.unit(175, "lb"),
  5238. name: "Back",
  5239. image: {
  5240. source: "./media/characters/xera/back.svg",
  5241. extra: 2095 / 1984,
  5242. bottom: 67 / 2166
  5243. }
  5244. },
  5245. },
  5246. [
  5247. {
  5248. name: "Small",
  5249. height: math.unit(10, "feet")
  5250. },
  5251. {
  5252. name: "Macro",
  5253. height: math.unit(500, "meters"),
  5254. default: true
  5255. },
  5256. {
  5257. name: "Macro+",
  5258. height: math.unit(10, "km")
  5259. },
  5260. {
  5261. name: "Gigamacro",
  5262. height: math.unit(25000, "km")
  5263. },
  5264. {
  5265. name: "Teramacro",
  5266. height: math.unit(3e6, "km")
  5267. }
  5268. ]
  5269. ))
  5270. characterMakers.push(() => makeCharacter(
  5271. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5272. {
  5273. front: {
  5274. height: math.unit(6, "feet"),
  5275. weight: math.unit(175, "lb"),
  5276. name: "Front",
  5277. image: {
  5278. source: "./media/characters/nebula/front.svg",
  5279. extra: 2566 / 2362,
  5280. bottom: 81 / 2644
  5281. }
  5282. }
  5283. },
  5284. [
  5285. {
  5286. name: "Small",
  5287. height: math.unit(4.5, "meters")
  5288. },
  5289. {
  5290. name: "Macro",
  5291. height: math.unit(1500, "meters"),
  5292. default: true
  5293. },
  5294. {
  5295. name: "Megamacro",
  5296. height: math.unit(150, "km")
  5297. },
  5298. {
  5299. name: "Gigamacro",
  5300. height: math.unit(27000, "km")
  5301. }
  5302. ]
  5303. ))
  5304. characterMakers.push(() => makeCharacter(
  5305. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5306. {
  5307. front: {
  5308. height: math.unit(6, "feet"),
  5309. weight: math.unit(225, "lb"),
  5310. name: "Front",
  5311. image: {
  5312. source: "./media/characters/abysgar/front.svg",
  5313. extra: 1739/1614,
  5314. bottom: 71/1810
  5315. }
  5316. },
  5317. frontNsfw: {
  5318. height: math.unit(6, "feet"),
  5319. weight: math.unit(225, "lb"),
  5320. name: "Front (NSFW)",
  5321. image: {
  5322. source: "./media/characters/abysgar/front-nsfw.svg",
  5323. extra: 1739/1614,
  5324. bottom: 71/1810
  5325. }
  5326. },
  5327. back: {
  5328. height: math.unit(4.6, "feet"),
  5329. weight: math.unit(225, "lb"),
  5330. name: "Back",
  5331. image: {
  5332. source: "./media/characters/abysgar/back.svg",
  5333. extra: 1384/1327,
  5334. bottom: 0/1384
  5335. }
  5336. },
  5337. head: {
  5338. height: math.unit(1.25, "feet"),
  5339. name: "Head",
  5340. image: {
  5341. source: "./media/characters/abysgar/head.svg",
  5342. extra: 669/569,
  5343. bottom: 0/669
  5344. }
  5345. },
  5346. },
  5347. [
  5348. {
  5349. name: "Small",
  5350. height: math.unit(4.5, "meters")
  5351. },
  5352. {
  5353. name: "Macro",
  5354. height: math.unit(1250, "meters"),
  5355. default: true
  5356. },
  5357. {
  5358. name: "Megamacro",
  5359. height: math.unit(125, "km")
  5360. },
  5361. {
  5362. name: "Gigamacro",
  5363. height: math.unit(26000, "km")
  5364. }
  5365. ]
  5366. ))
  5367. characterMakers.push(() => makeCharacter(
  5368. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5369. {
  5370. front: {
  5371. height: math.unit(6, "feet"),
  5372. weight: math.unit(180, "lb"),
  5373. name: "Front",
  5374. image: {
  5375. source: "./media/characters/yakuz/front.svg"
  5376. }
  5377. }
  5378. },
  5379. [
  5380. {
  5381. name: "Small",
  5382. height: math.unit(5, "meters")
  5383. },
  5384. {
  5385. name: "Macro",
  5386. height: math.unit(1500, "meters"),
  5387. default: true
  5388. },
  5389. {
  5390. name: "Megamacro",
  5391. height: math.unit(200, "km")
  5392. },
  5393. {
  5394. name: "Gigamacro",
  5395. height: math.unit(100000, "km")
  5396. }
  5397. ]
  5398. ))
  5399. characterMakers.push(() => makeCharacter(
  5400. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5401. {
  5402. front: {
  5403. height: math.unit(6, "feet"),
  5404. weight: math.unit(175, "lb"),
  5405. name: "Front",
  5406. image: {
  5407. source: "./media/characters/mirova/front.svg",
  5408. extra: 3334 / 3071,
  5409. bottom: 42 / 3375.6
  5410. }
  5411. }
  5412. },
  5413. [
  5414. {
  5415. name: "Small",
  5416. height: math.unit(5, "meters")
  5417. },
  5418. {
  5419. name: "Macro",
  5420. height: math.unit(900, "meters"),
  5421. default: true
  5422. },
  5423. {
  5424. name: "Megamacro",
  5425. height: math.unit(135, "km")
  5426. },
  5427. {
  5428. name: "Gigamacro",
  5429. height: math.unit(20000, "km")
  5430. }
  5431. ]
  5432. ))
  5433. characterMakers.push(() => makeCharacter(
  5434. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5435. {
  5436. side: {
  5437. height: math.unit(28.35, "feet"),
  5438. weight: math.unit(99.75, "tons"),
  5439. name: "Side",
  5440. image: {
  5441. source: "./media/characters/asana-mech/side.svg",
  5442. extra: 923 / 699,
  5443. bottom: 50 / 975
  5444. }
  5445. },
  5446. chaingun: {
  5447. height: math.unit(7, "feet"),
  5448. weight: math.unit(2400, "lb"),
  5449. name: "Chaingun",
  5450. image: {
  5451. source: "./media/characters/asana-mech/chaingun.svg"
  5452. }
  5453. },
  5454. laser: {
  5455. height: math.unit(7.12, "feet"),
  5456. weight: math.unit(2000, "lb"),
  5457. name: "Laser",
  5458. image: {
  5459. source: "./media/characters/asana-mech/laser.svg"
  5460. }
  5461. },
  5462. },
  5463. [
  5464. {
  5465. name: "Normal",
  5466. height: math.unit(28.35, "feet"),
  5467. default: true
  5468. },
  5469. {
  5470. name: "Macro",
  5471. height: math.unit(2500, "feet")
  5472. },
  5473. {
  5474. name: "Megamacro",
  5475. height: math.unit(25, "miles")
  5476. },
  5477. {
  5478. name: "Examacro",
  5479. height: math.unit(6e8, "lightyears")
  5480. },
  5481. ]
  5482. ))
  5483. characterMakers.push(() => makeCharacter(
  5484. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5485. {
  5486. front: {
  5487. height: math.unit(5, "meters"),
  5488. weight: math.unit(1000, "kg"),
  5489. name: "Front",
  5490. image: {
  5491. source: "./media/characters/asche/front.svg",
  5492. extra: 1258 / 1190,
  5493. bottom: 47 / 1305
  5494. }
  5495. },
  5496. frontUnderwear: {
  5497. height: math.unit(5, "meters"),
  5498. weight: math.unit(1000, "kg"),
  5499. name: "Front (Underwear)",
  5500. image: {
  5501. source: "./media/characters/asche/front-underwear.svg",
  5502. extra: 1258 / 1190,
  5503. bottom: 47 / 1305
  5504. }
  5505. },
  5506. frontDressed: {
  5507. height: math.unit(5, "meters"),
  5508. weight: math.unit(1000, "kg"),
  5509. name: "Front (Dressed)",
  5510. image: {
  5511. source: "./media/characters/asche/front-dressed.svg",
  5512. extra: 1258 / 1190,
  5513. bottom: 47 / 1305
  5514. }
  5515. },
  5516. frontArmor: {
  5517. height: math.unit(5, "meters"),
  5518. weight: math.unit(1000, "kg"),
  5519. name: "Front (Armored)",
  5520. image: {
  5521. source: "./media/characters/asche/front-armored.svg",
  5522. extra: 1374 / 1308,
  5523. bottom: 23 / 1397
  5524. }
  5525. },
  5526. mp724: {
  5527. height: math.unit(0.96, "meters"),
  5528. weight: math.unit(38, "kg"),
  5529. name: "H&K MP724",
  5530. image: {
  5531. source: "./media/characters/asche/h&k-mp724.svg"
  5532. }
  5533. },
  5534. side: {
  5535. height: math.unit(5, "meters"),
  5536. weight: math.unit(1000, "kg"),
  5537. name: "Side",
  5538. image: {
  5539. source: "./media/characters/asche/side.svg",
  5540. extra: 1717 / 1609,
  5541. bottom: 0.005
  5542. }
  5543. },
  5544. back: {
  5545. height: math.unit(5, "meters"),
  5546. weight: math.unit(1000, "kg"),
  5547. name: "Back",
  5548. image: {
  5549. source: "./media/characters/asche/back.svg",
  5550. extra: 1570 / 1501
  5551. }
  5552. },
  5553. },
  5554. [
  5555. {
  5556. name: "DEFCON 5",
  5557. height: math.unit(5, "meters")
  5558. },
  5559. {
  5560. name: "DEFCON 4",
  5561. height: math.unit(500, "meters"),
  5562. default: true
  5563. },
  5564. {
  5565. name: "DEFCON 3",
  5566. height: math.unit(5, "km")
  5567. },
  5568. {
  5569. name: "DEFCON 2",
  5570. height: math.unit(500, "km")
  5571. },
  5572. {
  5573. name: "DEFCON 1",
  5574. height: math.unit(500000, "km")
  5575. },
  5576. {
  5577. name: "DEFCON 0",
  5578. height: math.unit(3, "gigaparsecs")
  5579. },
  5580. ]
  5581. ))
  5582. characterMakers.push(() => makeCharacter(
  5583. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5584. {
  5585. front: {
  5586. height: math.unit(7, "feet"),
  5587. weight: math.unit(92.7, "kg"),
  5588. name: "Front",
  5589. image: {
  5590. source: "./media/characters/gale/front.svg",
  5591. extra: 977/919,
  5592. bottom: 105/1082
  5593. }
  5594. },
  5595. side: {
  5596. height: math.unit(6.7, "feet"),
  5597. weight: math.unit(92.7, "kg"),
  5598. name: "Side",
  5599. image: {
  5600. source: "./media/characters/gale/side.svg",
  5601. extra: 978/922,
  5602. bottom: 140/1118
  5603. }
  5604. },
  5605. back: {
  5606. height: math.unit(7, "feet"),
  5607. weight: math.unit(92.7, "kg"),
  5608. name: "Back",
  5609. image: {
  5610. source: "./media/characters/gale/back.svg",
  5611. extra: 966/920,
  5612. bottom: 61/1027
  5613. }
  5614. },
  5615. maw: {
  5616. height: math.unit(2.23, "feet"),
  5617. name: "Maw",
  5618. image: {
  5619. source: "./media/characters/gale/maw.svg"
  5620. }
  5621. },
  5622. foot: {
  5623. height: math.unit(2.1, "feet"),
  5624. name: "Foot",
  5625. image: {
  5626. source: "./media/characters/gale/foot.svg"
  5627. }
  5628. },
  5629. },
  5630. [
  5631. {
  5632. name: "Normal",
  5633. height: math.unit(7, "feet")
  5634. },
  5635. {
  5636. name: "Macro",
  5637. height: math.unit(150, "feet"),
  5638. default: true
  5639. },
  5640. {
  5641. name: "Macro+",
  5642. height: math.unit(300, "feet")
  5643. },
  5644. ]
  5645. ))
  5646. characterMakers.push(() => makeCharacter(
  5647. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5648. {
  5649. front: {
  5650. height: math.unit(5 + 10/12, "feet"),
  5651. weight: math.unit(67, "kg"),
  5652. name: "Front",
  5653. image: {
  5654. source: "./media/characters/draylen/front.svg",
  5655. extra: 832/777,
  5656. bottom: 85/917
  5657. }
  5658. }
  5659. },
  5660. [
  5661. {
  5662. name: "Normal",
  5663. height: math.unit(5 + 10/12, "feet")
  5664. },
  5665. {
  5666. name: "Macro",
  5667. height: math.unit(150, "feet"),
  5668. default: true
  5669. }
  5670. ]
  5671. ))
  5672. characterMakers.push(() => makeCharacter(
  5673. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5674. {
  5675. front: {
  5676. height: math.unit(7 + 9 / 12, "feet"),
  5677. weight: math.unit(379, "lbs"),
  5678. name: "Front",
  5679. image: {
  5680. source: "./media/characters/chez/front.svg"
  5681. }
  5682. },
  5683. side: {
  5684. height: math.unit(7 + 9 / 12, "feet"),
  5685. weight: math.unit(379, "lbs"),
  5686. name: "Side",
  5687. image: {
  5688. source: "./media/characters/chez/side.svg"
  5689. }
  5690. }
  5691. },
  5692. [
  5693. {
  5694. name: "Normal",
  5695. height: math.unit(7 + 9 / 12, "feet"),
  5696. default: true
  5697. },
  5698. {
  5699. name: "God King",
  5700. height: math.unit(9750000, "meters")
  5701. }
  5702. ]
  5703. ))
  5704. characterMakers.push(() => makeCharacter(
  5705. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5706. {
  5707. front: {
  5708. height: math.unit(6, "feet"),
  5709. weight: math.unit(275, "lbs"),
  5710. name: "Front",
  5711. image: {
  5712. source: "./media/characters/kaylum/front.svg",
  5713. bottom: 0.01,
  5714. extra: 1166 / 1031
  5715. }
  5716. },
  5717. frontWingless: {
  5718. height: math.unit(6, "feet"),
  5719. weight: math.unit(275, "lbs"),
  5720. name: "Front (Wingless)",
  5721. image: {
  5722. source: "./media/characters/kaylum/front-wingless.svg",
  5723. bottom: 0.01,
  5724. extra: 1117 / 1031
  5725. }
  5726. }
  5727. },
  5728. [
  5729. {
  5730. name: "Normal",
  5731. height: math.unit(3.05, "meters")
  5732. },
  5733. {
  5734. name: "Master",
  5735. height: math.unit(5.5, "meters")
  5736. },
  5737. {
  5738. name: "Rampage",
  5739. height: math.unit(19, "meters")
  5740. },
  5741. {
  5742. name: "Macro Lite",
  5743. height: math.unit(37, "meters")
  5744. },
  5745. {
  5746. name: "Hyper Predator",
  5747. height: math.unit(61, "meters")
  5748. },
  5749. {
  5750. name: "Macro",
  5751. height: math.unit(138, "meters"),
  5752. default: true
  5753. }
  5754. ]
  5755. ))
  5756. characterMakers.push(() => makeCharacter(
  5757. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5758. {
  5759. front: {
  5760. height: math.unit(5 + 5 / 12, "feet"),
  5761. weight: math.unit(120, "lbs"),
  5762. name: "Front",
  5763. image: {
  5764. source: "./media/characters/geta/front.svg",
  5765. extra: 1003/933,
  5766. bottom: 21/1024
  5767. }
  5768. },
  5769. paw: {
  5770. height: math.unit(0.35, "feet"),
  5771. name: "Paw",
  5772. image: {
  5773. source: "./media/characters/geta/paw.svg"
  5774. }
  5775. },
  5776. },
  5777. [
  5778. {
  5779. name: "Micro",
  5780. height: math.unit(3, "inches"),
  5781. default: true
  5782. },
  5783. {
  5784. name: "Normal",
  5785. height: math.unit(5 + 5 / 12, "feet")
  5786. }
  5787. ]
  5788. ))
  5789. characterMakers.push(() => makeCharacter(
  5790. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5791. {
  5792. front: {
  5793. height: math.unit(6, "feet"),
  5794. weight: math.unit(300, "lbs"),
  5795. name: "Front",
  5796. image: {
  5797. source: "./media/characters/tyrnn/front.svg"
  5798. }
  5799. }
  5800. },
  5801. [
  5802. {
  5803. name: "Main Height",
  5804. height: math.unit(355, "feet"),
  5805. default: true
  5806. },
  5807. {
  5808. name: "Fave. Height",
  5809. height: math.unit(2400, "feet")
  5810. }
  5811. ]
  5812. ))
  5813. characterMakers.push(() => makeCharacter(
  5814. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5815. {
  5816. front: {
  5817. height: math.unit(6, "feet"),
  5818. weight: math.unit(300, "lbs"),
  5819. name: "Front",
  5820. image: {
  5821. source: "./media/characters/appledectomy/front.svg"
  5822. }
  5823. }
  5824. },
  5825. [
  5826. {
  5827. name: "Macro",
  5828. height: math.unit(2500, "feet")
  5829. },
  5830. {
  5831. name: "Megamacro",
  5832. height: math.unit(50, "miles"),
  5833. default: true
  5834. },
  5835. {
  5836. name: "Gigamacro",
  5837. height: math.unit(5000, "miles")
  5838. },
  5839. {
  5840. name: "Teramacro",
  5841. height: math.unit(250000, "miles")
  5842. },
  5843. ]
  5844. ))
  5845. characterMakers.push(() => makeCharacter(
  5846. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5847. {
  5848. front: {
  5849. height: math.unit(6, "feet"),
  5850. weight: math.unit(200, "lbs"),
  5851. name: "Front",
  5852. image: {
  5853. source: "./media/characters/vulpes/front.svg",
  5854. extra: 573 / 543,
  5855. bottom: 0.033
  5856. }
  5857. },
  5858. side: {
  5859. height: math.unit(6, "feet"),
  5860. weight: math.unit(200, "lbs"),
  5861. name: "Side",
  5862. image: {
  5863. source: "./media/characters/vulpes/side.svg",
  5864. extra: 577 / 549,
  5865. bottom: 11 / 588
  5866. }
  5867. },
  5868. back: {
  5869. height: math.unit(6, "feet"),
  5870. weight: math.unit(200, "lbs"),
  5871. name: "Back",
  5872. image: {
  5873. source: "./media/characters/vulpes/back.svg",
  5874. extra: 573 / 549,
  5875. bottom: 20 / 593
  5876. }
  5877. },
  5878. feet: {
  5879. height: math.unit(1.276, "feet"),
  5880. name: "Feet",
  5881. image: {
  5882. source: "./media/characters/vulpes/feet.svg"
  5883. }
  5884. },
  5885. maw: {
  5886. height: math.unit(1.18, "feet"),
  5887. name: "Maw",
  5888. image: {
  5889. source: "./media/characters/vulpes/maw.svg"
  5890. }
  5891. },
  5892. },
  5893. [
  5894. {
  5895. name: "Micro",
  5896. height: math.unit(2, "inches")
  5897. },
  5898. {
  5899. name: "Normal",
  5900. height: math.unit(6.3, "feet")
  5901. },
  5902. {
  5903. name: "Macro",
  5904. height: math.unit(850, "feet")
  5905. },
  5906. {
  5907. name: "Megamacro",
  5908. height: math.unit(7500, "feet"),
  5909. default: true
  5910. },
  5911. {
  5912. name: "Gigamacro",
  5913. height: math.unit(570000, "miles")
  5914. }
  5915. ]
  5916. ))
  5917. characterMakers.push(() => makeCharacter(
  5918. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5919. {
  5920. front: {
  5921. height: math.unit(6, "feet"),
  5922. weight: math.unit(210, "lbs"),
  5923. name: "Front",
  5924. image: {
  5925. source: "./media/characters/rain-fallen/front.svg"
  5926. }
  5927. },
  5928. side: {
  5929. height: math.unit(6, "feet"),
  5930. weight: math.unit(210, "lbs"),
  5931. name: "Side",
  5932. image: {
  5933. source: "./media/characters/rain-fallen/side.svg"
  5934. }
  5935. },
  5936. back: {
  5937. height: math.unit(6, "feet"),
  5938. weight: math.unit(210, "lbs"),
  5939. name: "Back",
  5940. image: {
  5941. source: "./media/characters/rain-fallen/back.svg"
  5942. }
  5943. },
  5944. feral: {
  5945. height: math.unit(9, "feet"),
  5946. weight: math.unit(700, "lbs"),
  5947. name: "Feral",
  5948. image: {
  5949. source: "./media/characters/rain-fallen/feral.svg"
  5950. }
  5951. },
  5952. },
  5953. [
  5954. {
  5955. name: "Meddling with Mortals",
  5956. height: math.unit(8 + 8/12, "feet")
  5957. },
  5958. {
  5959. name: "Normal",
  5960. height: math.unit(5, "meter")
  5961. },
  5962. {
  5963. name: "Macro",
  5964. height: math.unit(150, "meter"),
  5965. default: true
  5966. },
  5967. {
  5968. name: "Megamacro",
  5969. height: math.unit(278e6, "meter")
  5970. },
  5971. {
  5972. name: "Gigamacro",
  5973. height: math.unit(2e9, "meter")
  5974. },
  5975. {
  5976. name: "Teramacro",
  5977. height: math.unit(8e12, "meter")
  5978. },
  5979. {
  5980. name: "Devourer",
  5981. height: math.unit(14, "zettameters")
  5982. },
  5983. {
  5984. name: "Scarlet King",
  5985. height: math.unit(18, "yottameters")
  5986. },
  5987. {
  5988. name: "Void",
  5989. height: math.unit(1e88, "yottameters")
  5990. }
  5991. ]
  5992. ))
  5993. characterMakers.push(() => makeCharacter(
  5994. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5995. {
  5996. standing: {
  5997. height: math.unit(6, "feet"),
  5998. weight: math.unit(180, "lbs"),
  5999. name: "Standing",
  6000. image: {
  6001. source: "./media/characters/zaakira/standing.svg",
  6002. extra: 1599/1504,
  6003. bottom: 39/1638
  6004. }
  6005. },
  6006. laying: {
  6007. height: math.unit(3.3, "feet"),
  6008. weight: math.unit(180, "lbs"),
  6009. name: "Laying",
  6010. image: {
  6011. source: "./media/characters/zaakira/laying.svg"
  6012. }
  6013. },
  6014. },
  6015. [
  6016. {
  6017. name: "Normal",
  6018. height: math.unit(12, "feet")
  6019. },
  6020. {
  6021. name: "Macro",
  6022. height: math.unit(279, "feet"),
  6023. default: true
  6024. }
  6025. ]
  6026. ))
  6027. characterMakers.push(() => makeCharacter(
  6028. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6029. {
  6030. femSfw: {
  6031. height: math.unit(8, "feet"),
  6032. weight: math.unit(350, "lb"),
  6033. name: "Fem",
  6034. image: {
  6035. source: "./media/characters/sigvald/fem-sfw.svg",
  6036. extra: 182 / 164,
  6037. bottom: 8.7 / 190.5
  6038. }
  6039. },
  6040. femNsfw: {
  6041. height: math.unit(8, "feet"),
  6042. weight: math.unit(350, "lb"),
  6043. name: "Fem (NSFW)",
  6044. image: {
  6045. source: "./media/characters/sigvald/fem-nsfw.svg",
  6046. extra: 182 / 164,
  6047. bottom: 8.7 / 190.5
  6048. }
  6049. },
  6050. maleNsfw: {
  6051. height: math.unit(8, "feet"),
  6052. weight: math.unit(350, "lb"),
  6053. name: "Male (NSFW)",
  6054. image: {
  6055. source: "./media/characters/sigvald/male-nsfw.svg",
  6056. extra: 182 / 164,
  6057. bottom: 8.7 / 190.5
  6058. }
  6059. },
  6060. hermNsfw: {
  6061. height: math.unit(8, "feet"),
  6062. weight: math.unit(350, "lb"),
  6063. name: "Herm (NSFW)",
  6064. image: {
  6065. source: "./media/characters/sigvald/herm-nsfw.svg",
  6066. extra: 182 / 164,
  6067. bottom: 8.7 / 190.5
  6068. }
  6069. },
  6070. dick: {
  6071. height: math.unit(2.36, "feet"),
  6072. name: "Dick",
  6073. image: {
  6074. source: "./media/characters/sigvald/dick.svg"
  6075. }
  6076. },
  6077. eye: {
  6078. height: math.unit(0.31, "feet"),
  6079. name: "Eye",
  6080. image: {
  6081. source: "./media/characters/sigvald/eye.svg"
  6082. }
  6083. },
  6084. mouth: {
  6085. height: math.unit(0.92, "feet"),
  6086. name: "Mouth",
  6087. image: {
  6088. source: "./media/characters/sigvald/mouth.svg"
  6089. }
  6090. },
  6091. paws: {
  6092. height: math.unit(2.2, "feet"),
  6093. name: "Paws",
  6094. image: {
  6095. source: "./media/characters/sigvald/paws.svg"
  6096. }
  6097. }
  6098. },
  6099. [
  6100. {
  6101. name: "Normal",
  6102. height: math.unit(8, "feet")
  6103. },
  6104. {
  6105. name: "Large",
  6106. height: math.unit(12, "feet")
  6107. },
  6108. {
  6109. name: "Larger",
  6110. height: math.unit(20, "feet")
  6111. },
  6112. {
  6113. name: "Macro",
  6114. height: math.unit(150, "feet")
  6115. },
  6116. {
  6117. name: "Macro+",
  6118. height: math.unit(200, "feet"),
  6119. default: true
  6120. },
  6121. ]
  6122. ))
  6123. characterMakers.push(() => makeCharacter(
  6124. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6125. {
  6126. side: {
  6127. height: math.unit(12, "feet"),
  6128. weight: math.unit(2000, "kg"),
  6129. name: "Side",
  6130. image: {
  6131. source: "./media/characters/scott/side.svg",
  6132. extra: 754 / 724,
  6133. bottom: 0.069
  6134. }
  6135. },
  6136. upright: {
  6137. height: math.unit(12, "feet"),
  6138. weight: math.unit(2000, "kg"),
  6139. name: "Upright",
  6140. image: {
  6141. source: "./media/characters/scott/upright.svg",
  6142. extra: 3881 / 3722,
  6143. bottom: 0.05
  6144. }
  6145. },
  6146. },
  6147. [
  6148. {
  6149. name: "Normal",
  6150. height: math.unit(12, "feet"),
  6151. default: true
  6152. },
  6153. ]
  6154. ))
  6155. characterMakers.push(() => makeCharacter(
  6156. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6157. {
  6158. side: {
  6159. height: math.unit(8, "meters"),
  6160. weight: math.unit(84755, "lbs"),
  6161. name: "Side",
  6162. image: {
  6163. source: "./media/characters/tobias/side.svg",
  6164. extra: 1474 / 1096,
  6165. bottom: 38.9 / 1513.1235
  6166. }
  6167. },
  6168. maw: {
  6169. height: math.unit(2.3, "meters"),
  6170. name: "Maw",
  6171. image: {
  6172. source: "./media/characters/tobias/maw.svg"
  6173. }
  6174. },
  6175. burp: {
  6176. height: math.unit(2.85, "meters"),
  6177. name: "Burp",
  6178. image: {
  6179. source: "./media/characters/tobias/burp.svg"
  6180. }
  6181. },
  6182. },
  6183. [
  6184. {
  6185. name: "Normal",
  6186. height: math.unit(8, "meters"),
  6187. default: true
  6188. },
  6189. ]
  6190. ))
  6191. characterMakers.push(() => makeCharacter(
  6192. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6193. {
  6194. front: {
  6195. height: math.unit(5.5, "feet"),
  6196. weight: math.unit(400, "lbs"),
  6197. name: "Front",
  6198. image: {
  6199. source: "./media/characters/kieran/front.svg",
  6200. extra: 2694 / 2364,
  6201. bottom: 217 / 2908
  6202. }
  6203. },
  6204. side: {
  6205. height: math.unit(5.5, "feet"),
  6206. weight: math.unit(400, "lbs"),
  6207. name: "Side",
  6208. image: {
  6209. source: "./media/characters/kieran/side.svg",
  6210. extra: 875 / 777,
  6211. bottom: 84.6 / 959
  6212. }
  6213. },
  6214. },
  6215. [
  6216. {
  6217. name: "Normal",
  6218. height: math.unit(5.5, "feet"),
  6219. default: true
  6220. },
  6221. ]
  6222. ))
  6223. characterMakers.push(() => makeCharacter(
  6224. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6225. {
  6226. side: {
  6227. height: math.unit(2, "meters"),
  6228. weight: math.unit(70, "kg"),
  6229. name: "Side",
  6230. image: {
  6231. source: "./media/characters/sanya/side.svg",
  6232. bottom: 0.02,
  6233. extra: 1.02
  6234. }
  6235. },
  6236. },
  6237. [
  6238. {
  6239. name: "Small",
  6240. height: math.unit(2, "meters")
  6241. },
  6242. {
  6243. name: "Normal",
  6244. height: math.unit(3, "meters")
  6245. },
  6246. {
  6247. name: "Macro",
  6248. height: math.unit(16, "meters"),
  6249. default: true
  6250. },
  6251. ]
  6252. ))
  6253. characterMakers.push(() => makeCharacter(
  6254. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6255. {
  6256. front: {
  6257. height: math.unit(2, "meters"),
  6258. weight: math.unit(120, "kg"),
  6259. name: "Front",
  6260. image: {
  6261. source: "./media/characters/miranda/front.svg",
  6262. extra: 195 / 185,
  6263. bottom: 10.9 / 206.5
  6264. }
  6265. },
  6266. back: {
  6267. height: math.unit(2, "meters"),
  6268. weight: math.unit(120, "kg"),
  6269. name: "Back",
  6270. image: {
  6271. source: "./media/characters/miranda/back.svg",
  6272. extra: 201 / 193,
  6273. bottom: 2.3 / 203.7
  6274. }
  6275. },
  6276. },
  6277. [
  6278. {
  6279. name: "Normal",
  6280. height: math.unit(10, "feet"),
  6281. default: true
  6282. }
  6283. ]
  6284. ))
  6285. characterMakers.push(() => makeCharacter(
  6286. { name: "James", species: ["deer"], tags: ["anthro"] },
  6287. {
  6288. side: {
  6289. height: math.unit(2, "meters"),
  6290. weight: math.unit(100, "kg"),
  6291. name: "Front",
  6292. image: {
  6293. source: "./media/characters/james/front.svg",
  6294. extra: 10 / 8.5
  6295. }
  6296. },
  6297. },
  6298. [
  6299. {
  6300. name: "Normal",
  6301. height: math.unit(8.5, "feet"),
  6302. default: true
  6303. }
  6304. ]
  6305. ))
  6306. characterMakers.push(() => makeCharacter(
  6307. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6308. {
  6309. side: {
  6310. height: math.unit(9.5, "feet"),
  6311. weight: math.unit(2500, "lbs"),
  6312. name: "Side",
  6313. image: {
  6314. source: "./media/characters/heather/side.svg"
  6315. }
  6316. },
  6317. },
  6318. [
  6319. {
  6320. name: "Normal",
  6321. height: math.unit(9.5, "feet"),
  6322. default: true
  6323. }
  6324. ]
  6325. ))
  6326. characterMakers.push(() => makeCharacter(
  6327. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6328. {
  6329. side: {
  6330. height: math.unit(6.5, "feet"),
  6331. weight: math.unit(400, "lbs"),
  6332. name: "Side",
  6333. image: {
  6334. source: "./media/characters/lukas/side.svg",
  6335. extra: 7.25 / 6.5
  6336. }
  6337. },
  6338. },
  6339. [
  6340. {
  6341. name: "Normal",
  6342. height: math.unit(6.5, "feet"),
  6343. default: true
  6344. }
  6345. ]
  6346. ))
  6347. characterMakers.push(() => makeCharacter(
  6348. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6349. {
  6350. side: {
  6351. height: math.unit(5, "feet"),
  6352. weight: math.unit(3000, "lbs"),
  6353. name: "Side",
  6354. image: {
  6355. source: "./media/characters/louise/side.svg"
  6356. }
  6357. },
  6358. },
  6359. [
  6360. {
  6361. name: "Normal",
  6362. height: math.unit(5, "feet"),
  6363. default: true
  6364. }
  6365. ]
  6366. ))
  6367. characterMakers.push(() => makeCharacter(
  6368. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6369. {
  6370. side: {
  6371. height: math.unit(6, "feet"),
  6372. weight: math.unit(150, "lbs"),
  6373. name: "Side",
  6374. image: {
  6375. source: "./media/characters/ramona/side.svg",
  6376. extra: 871/854,
  6377. bottom: 41/912
  6378. }
  6379. },
  6380. },
  6381. [
  6382. {
  6383. name: "Normal",
  6384. height: math.unit(6 + 4/12, "feet")
  6385. },
  6386. {
  6387. name: "Minimacro",
  6388. height: math.unit(5.3, "meters"),
  6389. default: true
  6390. },
  6391. {
  6392. name: "Macro",
  6393. height: math.unit(20, "stories")
  6394. },
  6395. {
  6396. name: "Macro+",
  6397. height: math.unit(50, "stories")
  6398. },
  6399. ]
  6400. ))
  6401. characterMakers.push(() => makeCharacter(
  6402. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6403. {
  6404. standing: {
  6405. height: math.unit(5.75, "feet"),
  6406. weight: math.unit(160, "lbs"),
  6407. name: "Standing",
  6408. image: {
  6409. source: "./media/characters/deerpuff/standing.svg",
  6410. extra: 682 / 624
  6411. }
  6412. },
  6413. sitting: {
  6414. height: math.unit(5.75 / 1.79, "feet"),
  6415. weight: math.unit(160, "lbs"),
  6416. name: "Sitting",
  6417. image: {
  6418. source: "./media/characters/deerpuff/sitting.svg",
  6419. bottom: 44 / 400,
  6420. extra: 1
  6421. }
  6422. },
  6423. taurLaying: {
  6424. height: math.unit(6, "feet"),
  6425. weight: math.unit(400, "lbs"),
  6426. name: "Taur (Laying)",
  6427. image: {
  6428. source: "./media/characters/deerpuff/taur-laying.svg"
  6429. }
  6430. },
  6431. },
  6432. [
  6433. {
  6434. name: "Puffball",
  6435. height: math.unit(6, "inches")
  6436. },
  6437. {
  6438. name: "Normalpuff",
  6439. height: math.unit(5.75, "feet")
  6440. },
  6441. {
  6442. name: "Macropuff",
  6443. height: math.unit(1500, "feet"),
  6444. default: true
  6445. },
  6446. {
  6447. name: "Megapuff",
  6448. height: math.unit(500, "miles")
  6449. },
  6450. {
  6451. name: "Gigapuff",
  6452. height: math.unit(250000, "miles")
  6453. },
  6454. {
  6455. name: "Omegapuff",
  6456. height: math.unit(1000, "lightyears")
  6457. },
  6458. ]
  6459. ))
  6460. characterMakers.push(() => makeCharacter(
  6461. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6462. {
  6463. stomping: {
  6464. height: math.unit(6, "feet"),
  6465. weight: math.unit(170, "lbs"),
  6466. name: "Stomping",
  6467. image: {
  6468. source: "./media/characters/vivian/stomping.svg"
  6469. }
  6470. },
  6471. sitting: {
  6472. height: math.unit(6 / 1.75, "feet"),
  6473. weight: math.unit(170, "lbs"),
  6474. name: "Sitting",
  6475. image: {
  6476. source: "./media/characters/vivian/sitting.svg",
  6477. bottom: 1 / 6.4,
  6478. extra: 1,
  6479. }
  6480. },
  6481. },
  6482. [
  6483. {
  6484. name: "Normal",
  6485. height: math.unit(7, "feet"),
  6486. default: true
  6487. },
  6488. {
  6489. name: "Macro",
  6490. height: math.unit(10, "stories")
  6491. },
  6492. {
  6493. name: "Macro+",
  6494. height: math.unit(30, "stories")
  6495. },
  6496. {
  6497. name: "Megamacro",
  6498. height: math.unit(10, "miles")
  6499. },
  6500. {
  6501. name: "Megamacro+",
  6502. height: math.unit(2750000, "meters")
  6503. },
  6504. ]
  6505. ))
  6506. characterMakers.push(() => makeCharacter(
  6507. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6508. {
  6509. front: {
  6510. height: math.unit(6, "feet"),
  6511. weight: math.unit(160, "lbs"),
  6512. name: "Front",
  6513. image: {
  6514. source: "./media/characters/prince/front.svg",
  6515. extra: 1938/1682,
  6516. bottom: 45/1983
  6517. }
  6518. },
  6519. back: {
  6520. height: math.unit(6, "feet"),
  6521. weight: math.unit(160, "lbs"),
  6522. name: "Back",
  6523. image: {
  6524. source: "./media/characters/prince/back.svg",
  6525. extra: 1955/1726,
  6526. bottom: 6/1961
  6527. }
  6528. },
  6529. },
  6530. [
  6531. {
  6532. name: "Normal",
  6533. height: math.unit(7.75, "feet"),
  6534. default: true
  6535. },
  6536. {
  6537. name: "Not cute",
  6538. height: math.unit(17, "feet")
  6539. },
  6540. {
  6541. name: "I said NOT",
  6542. height: math.unit(91, "feet")
  6543. },
  6544. {
  6545. name: "Please stop",
  6546. height: math.unit(560, "feet")
  6547. },
  6548. {
  6549. name: "What have you done",
  6550. height: math.unit(2200, "feet")
  6551. },
  6552. {
  6553. name: "Deer God",
  6554. height: math.unit(3.6, "miles")
  6555. },
  6556. ]
  6557. ))
  6558. characterMakers.push(() => makeCharacter(
  6559. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6560. {
  6561. standing: {
  6562. height: math.unit(6, "feet"),
  6563. weight: math.unit(300, "lbs"),
  6564. name: "Standing",
  6565. image: {
  6566. source: "./media/characters/psymon/standing.svg",
  6567. extra: 1888 / 1810,
  6568. bottom: 0.05
  6569. }
  6570. },
  6571. slithering: {
  6572. height: math.unit(6, "feet"),
  6573. weight: math.unit(300, "lbs"),
  6574. name: "Slithering",
  6575. image: {
  6576. source: "./media/characters/psymon/slithering.svg",
  6577. extra: 1330 / 1224
  6578. }
  6579. },
  6580. slitheringAlt: {
  6581. height: math.unit(6, "feet"),
  6582. weight: math.unit(300, "lbs"),
  6583. name: "Slithering (Alt)",
  6584. image: {
  6585. source: "./media/characters/psymon/slithering-alt.svg",
  6586. extra: 1330 / 1224
  6587. }
  6588. },
  6589. },
  6590. [
  6591. {
  6592. name: "Normal",
  6593. height: math.unit(11.25, "feet"),
  6594. default: true
  6595. },
  6596. {
  6597. name: "Large",
  6598. height: math.unit(27, "feet")
  6599. },
  6600. {
  6601. name: "Giant",
  6602. height: math.unit(87, "feet")
  6603. },
  6604. {
  6605. name: "Macro",
  6606. height: math.unit(365, "feet")
  6607. },
  6608. {
  6609. name: "Megamacro",
  6610. height: math.unit(3, "miles")
  6611. },
  6612. {
  6613. name: "World Serpent",
  6614. height: math.unit(8000, "miles")
  6615. },
  6616. ]
  6617. ))
  6618. characterMakers.push(() => makeCharacter(
  6619. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6620. {
  6621. front: {
  6622. height: math.unit(6, "feet"),
  6623. weight: math.unit(180, "lbs"),
  6624. name: "Front",
  6625. image: {
  6626. source: "./media/characters/daimos/front.svg",
  6627. extra: 4160 / 3897,
  6628. bottom: 0.021
  6629. }
  6630. }
  6631. },
  6632. [
  6633. {
  6634. name: "Normal",
  6635. height: math.unit(8, "feet"),
  6636. default: true
  6637. },
  6638. {
  6639. name: "Big Dog",
  6640. height: math.unit(22, "feet")
  6641. },
  6642. {
  6643. name: "Macro",
  6644. height: math.unit(127, "feet")
  6645. },
  6646. {
  6647. name: "Megamacro",
  6648. height: math.unit(3600, "feet")
  6649. },
  6650. ]
  6651. ))
  6652. characterMakers.push(() => makeCharacter(
  6653. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6654. {
  6655. side: {
  6656. height: math.unit(6, "feet"),
  6657. weight: math.unit(180, "lbs"),
  6658. name: "Side",
  6659. image: {
  6660. source: "./media/characters/blake/side.svg",
  6661. extra: 1212 / 1120,
  6662. bottom: 0.05
  6663. }
  6664. },
  6665. crouched: {
  6666. height: math.unit(6 * 0.57, "feet"),
  6667. weight: math.unit(180, "lbs"),
  6668. name: "Crouched",
  6669. image: {
  6670. source: "./media/characters/blake/crouched.svg",
  6671. extra: 840 / 587,
  6672. bottom: 0.04
  6673. }
  6674. },
  6675. bent: {
  6676. height: math.unit(6 * 0.75, "feet"),
  6677. weight: math.unit(180, "lbs"),
  6678. name: "Bent",
  6679. image: {
  6680. source: "./media/characters/blake/bent.svg",
  6681. extra: 592 / 544,
  6682. bottom: 0.035
  6683. }
  6684. },
  6685. },
  6686. [
  6687. {
  6688. name: "Normal",
  6689. height: math.unit(8 + 1 / 6, "feet"),
  6690. default: true
  6691. },
  6692. {
  6693. name: "Big Backside",
  6694. height: math.unit(37, "feet")
  6695. },
  6696. {
  6697. name: "Subway Shredder",
  6698. height: math.unit(72, "feet")
  6699. },
  6700. {
  6701. name: "City Carver",
  6702. height: math.unit(1675, "feet")
  6703. },
  6704. {
  6705. name: "Tectonic Tweaker",
  6706. height: math.unit(2300, "miles")
  6707. },
  6708. ]
  6709. ))
  6710. characterMakers.push(() => makeCharacter(
  6711. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6712. {
  6713. front: {
  6714. height: math.unit(6, "feet"),
  6715. weight: math.unit(180, "lbs"),
  6716. name: "Front",
  6717. image: {
  6718. source: "./media/characters/guisetto/front.svg",
  6719. extra: 856 / 817,
  6720. bottom: 0.06
  6721. }
  6722. },
  6723. airborne: {
  6724. height: math.unit(6, "feet"),
  6725. weight: math.unit(180, "lbs"),
  6726. name: "Airborne",
  6727. image: {
  6728. source: "./media/characters/guisetto/airborne.svg",
  6729. extra: 584 / 525
  6730. }
  6731. },
  6732. },
  6733. [
  6734. {
  6735. name: "Normal",
  6736. height: math.unit(10 + 11 / 12, "feet"),
  6737. default: true
  6738. },
  6739. {
  6740. name: "Large",
  6741. height: math.unit(35, "feet")
  6742. },
  6743. {
  6744. name: "Macro",
  6745. height: math.unit(475, "feet")
  6746. },
  6747. ]
  6748. ))
  6749. characterMakers.push(() => makeCharacter(
  6750. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6751. {
  6752. front: {
  6753. height: math.unit(6, "feet"),
  6754. weight: math.unit(180, "lbs"),
  6755. name: "Front",
  6756. image: {
  6757. source: "./media/characters/luxor/front.svg",
  6758. extra: 2940 / 2152
  6759. }
  6760. },
  6761. back: {
  6762. height: math.unit(6, "feet"),
  6763. weight: math.unit(180, "lbs"),
  6764. name: "Back",
  6765. image: {
  6766. source: "./media/characters/luxor/back.svg",
  6767. extra: 1083 / 960
  6768. }
  6769. },
  6770. },
  6771. [
  6772. {
  6773. name: "Normal",
  6774. height: math.unit(5 + 5 / 6, "feet"),
  6775. default: true
  6776. },
  6777. {
  6778. name: "Lamp",
  6779. height: math.unit(50, "feet")
  6780. },
  6781. {
  6782. name: "Lämp",
  6783. height: math.unit(300, "feet")
  6784. },
  6785. {
  6786. name: "The sun is a lamp",
  6787. height: math.unit(250000, "miles")
  6788. },
  6789. ]
  6790. ))
  6791. characterMakers.push(() => makeCharacter(
  6792. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6793. {
  6794. front: {
  6795. height: math.unit(6, "feet"),
  6796. weight: math.unit(50, "lbs"),
  6797. name: "Front",
  6798. image: {
  6799. source: "./media/characters/huoyan/front.svg"
  6800. }
  6801. },
  6802. side: {
  6803. height: math.unit(6, "feet"),
  6804. weight: math.unit(180, "lbs"),
  6805. name: "Side",
  6806. image: {
  6807. source: "./media/characters/huoyan/side.svg"
  6808. }
  6809. },
  6810. },
  6811. [
  6812. {
  6813. name: "Chef",
  6814. height: math.unit(9, "feet")
  6815. },
  6816. {
  6817. name: "Normal",
  6818. height: math.unit(65, "feet"),
  6819. default: true
  6820. },
  6821. {
  6822. name: "Macro",
  6823. height: math.unit(780, "feet")
  6824. },
  6825. {
  6826. name: "Flaming Mountain",
  6827. height: math.unit(4.8, "miles")
  6828. },
  6829. {
  6830. name: "Celestial",
  6831. height: math.unit(765000, "miles")
  6832. },
  6833. ]
  6834. ))
  6835. characterMakers.push(() => makeCharacter(
  6836. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6837. {
  6838. front: {
  6839. height: math.unit(5 + 3 / 4, "feet"),
  6840. weight: math.unit(120, "lbs"),
  6841. name: "Front",
  6842. image: {
  6843. source: "./media/characters/tails/front.svg"
  6844. }
  6845. }
  6846. },
  6847. [
  6848. {
  6849. name: "Normal",
  6850. height: math.unit(5 + 3 / 4, "feet"),
  6851. default: true
  6852. }
  6853. ]
  6854. ))
  6855. characterMakers.push(() => makeCharacter(
  6856. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6857. {
  6858. front: {
  6859. height: math.unit(4, "feet"),
  6860. weight: math.unit(50, "lbs"),
  6861. name: "Front",
  6862. image: {
  6863. source: "./media/characters/rainy/front.svg"
  6864. }
  6865. }
  6866. },
  6867. [
  6868. {
  6869. name: "Macro",
  6870. height: math.unit(800, "feet"),
  6871. default: true
  6872. }
  6873. ]
  6874. ))
  6875. characterMakers.push(() => makeCharacter(
  6876. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6877. {
  6878. front: {
  6879. height: math.unit(6, "feet"),
  6880. weight: math.unit(150, "lbs"),
  6881. name: "Front",
  6882. image: {
  6883. source: "./media/characters/rainier/front.svg"
  6884. }
  6885. }
  6886. },
  6887. [
  6888. {
  6889. name: "Micro",
  6890. height: math.unit(2, "mm"),
  6891. default: true
  6892. }
  6893. ]
  6894. ))
  6895. characterMakers.push(() => makeCharacter(
  6896. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6897. {
  6898. front: {
  6899. height: math.unit(8 + 4/12, "feet"),
  6900. weight: math.unit(450, "kilograms"),
  6901. name: "Front",
  6902. image: {
  6903. source: "./media/characters/andy-renard/front.svg",
  6904. extra: 862/809,
  6905. bottom: 85/947
  6906. },
  6907. extraAttributes: {
  6908. "pawSize": {
  6909. name: "Paw Size",
  6910. power: 2,
  6911. type: "area",
  6912. base: math.unit(0.45*0.3, "meters^2")
  6913. },
  6914. "handSize": {
  6915. name: "Hand Size",
  6916. power: 2,
  6917. type: "area",
  6918. base: math.unit(0.4 * 0.3, "meters^2")
  6919. },
  6920. "cockSize": {
  6921. name: "Cock Length",
  6922. power: 1,
  6923. type: "length",
  6924. base: math.unit(0.75, "meters")
  6925. },
  6926. "ballDiameter": {
  6927. name: "Ball Diameter",
  6928. power: 1,
  6929. type: "length",
  6930. base: math.unit(0.3, "meters")
  6931. },
  6932. "ballVolume": {
  6933. name: "Ball Volume",
  6934. power: 3,
  6935. type: "volume",
  6936. base: math.unit(0.01413716694, "meters^3")
  6937. },
  6938. }
  6939. },
  6940. back: {
  6941. height: math.unit(8 + 4/12, "feet"),
  6942. weight: math.unit(450, "kilograms"),
  6943. name: "Back",
  6944. image: {
  6945. source: "./media/characters/andy-renard/back.svg",
  6946. extra: 1112/1033,
  6947. bottom: 64/1176
  6948. },
  6949. extraAttributes: {
  6950. "pawSize": {
  6951. name: "Paw Size",
  6952. power: 2,
  6953. type: "area",
  6954. base: math.unit(0.45*0.3, "meters^2")
  6955. },
  6956. "handSize": {
  6957. name: "Hand Size",
  6958. power: 2,
  6959. type: "area",
  6960. base: math.unit(0.4 * 0.3, "meters^2")
  6961. },
  6962. "cockSize": {
  6963. name: "Cock Length",
  6964. power: 1,
  6965. type: "length",
  6966. base: math.unit(0.75, "meters")
  6967. },
  6968. "ballDiameter": {
  6969. name: "Ball Diameter",
  6970. power: 1,
  6971. type: "length",
  6972. base: math.unit(0.3, "meters")
  6973. },
  6974. "ballVolume": {
  6975. name: "Ball Volume",
  6976. power: 3,
  6977. type: "volume",
  6978. base: math.unit(0.01413716694, "meters^3")
  6979. },
  6980. }
  6981. },
  6982. },
  6983. [
  6984. {
  6985. name: "Tall",
  6986. height: math.unit(6 + 8/12, "feet")
  6987. },
  6988. {
  6989. name: "Very Tall",
  6990. height: math.unit(8 + 4/12, "feet")
  6991. },
  6992. {
  6993. name: "Mini Macro",
  6994. height: math.unit(15, "feet"),
  6995. default: true
  6996. },
  6997. {
  6998. name: "Giant",
  6999. height: math.unit(50, "feet")
  7000. },
  7001. {
  7002. name: "Nice",
  7003. height: math.unit(69, "feet")
  7004. },
  7005. {
  7006. name: "Macro",
  7007. height: math.unit(100, "feet")
  7008. },
  7009. {
  7010. name: "Enormous",
  7011. height: math.unit(500, "feet")
  7012. },
  7013. {
  7014. name: "Gargantuan",
  7015. height: math.unit(1000, "feet")
  7016. },
  7017. {
  7018. name: "Mega",
  7019. height: math.unit(1, "mile")
  7020. },
  7021. {
  7022. name: "Giga",
  7023. height: math.unit(50, "miles")
  7024. },
  7025. {
  7026. name: "Tera",
  7027. height: math.unit(1000, "miles")
  7028. },
  7029. {
  7030. name: "Cosmic",
  7031. height: math.unit(1.5, "galaxies")
  7032. },
  7033. {
  7034. name: "God",
  7035. height: math.unit(1.5, "universes")
  7036. },
  7037. {
  7038. name: "Chief Execute God",
  7039. height: math.unit(1.5, "multiverses")
  7040. },
  7041. ]
  7042. ))
  7043. characterMakers.push(() => makeCharacter(
  7044. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7045. {
  7046. front: {
  7047. height: math.unit(6, "feet"),
  7048. weight: math.unit(210, "lbs"),
  7049. name: "Front",
  7050. image: {
  7051. source: "./media/characters/cimmaron/front-sfw.svg",
  7052. extra: 701 / 676,
  7053. bottom: 0.046
  7054. }
  7055. },
  7056. back: {
  7057. height: math.unit(6, "feet"),
  7058. weight: math.unit(210, "lbs"),
  7059. name: "Back",
  7060. image: {
  7061. source: "./media/characters/cimmaron/back-sfw.svg",
  7062. extra: 701 / 676,
  7063. bottom: 0.046
  7064. }
  7065. },
  7066. frontNsfw: {
  7067. height: math.unit(6, "feet"),
  7068. weight: math.unit(210, "lbs"),
  7069. name: "Front (NSFW)",
  7070. image: {
  7071. source: "./media/characters/cimmaron/front-nsfw.svg",
  7072. extra: 701 / 676,
  7073. bottom: 0.046
  7074. }
  7075. },
  7076. backNsfw: {
  7077. height: math.unit(6, "feet"),
  7078. weight: math.unit(210, "lbs"),
  7079. name: "Back (NSFW)",
  7080. image: {
  7081. source: "./media/characters/cimmaron/back-nsfw.svg",
  7082. extra: 701 / 676,
  7083. bottom: 0.046
  7084. }
  7085. },
  7086. dick: {
  7087. height: math.unit(1.714, "feet"),
  7088. name: "Dick",
  7089. image: {
  7090. source: "./media/characters/cimmaron/dick.svg"
  7091. }
  7092. },
  7093. },
  7094. [
  7095. {
  7096. name: "Normal",
  7097. height: math.unit(6, "feet"),
  7098. default: true
  7099. },
  7100. {
  7101. name: "Macro Mayor",
  7102. height: math.unit(350, "meters")
  7103. },
  7104. ]
  7105. ))
  7106. characterMakers.push(() => makeCharacter(
  7107. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7108. {
  7109. front: {
  7110. height: math.unit(6, "feet"),
  7111. weight: math.unit(200, "lbs"),
  7112. name: "Front",
  7113. image: {
  7114. source: "./media/characters/akari/front.svg",
  7115. extra: 962 / 901,
  7116. bottom: 0.04
  7117. }
  7118. }
  7119. },
  7120. [
  7121. {
  7122. name: "Micro",
  7123. height: math.unit(5, "inches"),
  7124. default: true
  7125. },
  7126. {
  7127. name: "Normal",
  7128. height: math.unit(7, "feet")
  7129. },
  7130. ]
  7131. ))
  7132. characterMakers.push(() => makeCharacter(
  7133. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7134. {
  7135. front: {
  7136. height: math.unit(6, "feet"),
  7137. weight: math.unit(140, "lbs"),
  7138. name: "Front",
  7139. image: {
  7140. source: "./media/characters/cynosura/front.svg",
  7141. extra: 437/410,
  7142. bottom: 9/446
  7143. }
  7144. },
  7145. back: {
  7146. height: math.unit(6, "feet"),
  7147. weight: math.unit(140, "lbs"),
  7148. name: "Back",
  7149. image: {
  7150. source: "./media/characters/cynosura/back.svg",
  7151. extra: 1304/1160,
  7152. bottom: 71/1375
  7153. }
  7154. },
  7155. },
  7156. [
  7157. {
  7158. name: "Micro",
  7159. height: math.unit(4, "inches")
  7160. },
  7161. {
  7162. name: "Normal",
  7163. height: math.unit(5.75, "feet"),
  7164. default: true
  7165. },
  7166. {
  7167. name: "Tall",
  7168. height: math.unit(10, "feet")
  7169. },
  7170. {
  7171. name: "Big",
  7172. height: math.unit(20, "feet")
  7173. },
  7174. {
  7175. name: "Macro",
  7176. height: math.unit(50, "feet")
  7177. },
  7178. ]
  7179. ))
  7180. characterMakers.push(() => makeCharacter(
  7181. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7182. {
  7183. front: {
  7184. height: math.unit(13 + 2/12, "feet"),
  7185. weight: math.unit(800, "kg"),
  7186. name: "Front",
  7187. image: {
  7188. source: "./media/characters/gin/front.svg",
  7189. extra: 1312/1191,
  7190. bottom: 45/1357
  7191. }
  7192. },
  7193. mouth: {
  7194. height: math.unit(2.39 * 1.8, "feet"),
  7195. name: "Mouth",
  7196. image: {
  7197. source: "./media/characters/gin/mouth.svg"
  7198. }
  7199. },
  7200. hand: {
  7201. height: math.unit(1.57 * 2.19, "feet"),
  7202. name: "Hand",
  7203. image: {
  7204. source: "./media/characters/gin/hand.svg"
  7205. }
  7206. },
  7207. foot: {
  7208. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7209. name: "Foot",
  7210. image: {
  7211. source: "./media/characters/gin/foot.svg"
  7212. }
  7213. },
  7214. sole: {
  7215. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7216. name: "Sole",
  7217. image: {
  7218. source: "./media/characters/gin/sole.svg"
  7219. }
  7220. },
  7221. },
  7222. [
  7223. {
  7224. name: "Very Small",
  7225. height: math.unit(13 + 2 / 12, "feet")
  7226. },
  7227. {
  7228. name: "Micro",
  7229. height: math.unit(600, "miles")
  7230. },
  7231. {
  7232. name: "Regular",
  7233. height: math.unit(20, "earths"),
  7234. default: true
  7235. },
  7236. {
  7237. name: "Macro",
  7238. height: math.unit(2.2, "solarradii")
  7239. },
  7240. {
  7241. name: "Teramacro",
  7242. height: math.unit(1.2, "galaxies")
  7243. },
  7244. {
  7245. name: "Omegamacro",
  7246. height: math.unit(200, "universes")
  7247. },
  7248. ]
  7249. ))
  7250. characterMakers.push(() => makeCharacter(
  7251. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7252. {
  7253. front: {
  7254. height: math.unit(6 + 1 / 6, "feet"),
  7255. weight: math.unit(178, "lbs"),
  7256. name: "Front",
  7257. image: {
  7258. source: "./media/characters/guy/front.svg"
  7259. }
  7260. }
  7261. },
  7262. [
  7263. {
  7264. name: "Normal",
  7265. height: math.unit(6 + 1 / 6, "feet"),
  7266. default: true
  7267. },
  7268. {
  7269. name: "Large",
  7270. height: math.unit(25 + 7 / 12, "feet")
  7271. },
  7272. {
  7273. name: "Macro",
  7274. height: math.unit(60 + 9 / 12, "feet")
  7275. },
  7276. {
  7277. name: "Macro+",
  7278. height: math.unit(246, "feet")
  7279. },
  7280. {
  7281. name: "Macro++",
  7282. height: math.unit(878, "feet")
  7283. }
  7284. ]
  7285. ))
  7286. characterMakers.push(() => makeCharacter(
  7287. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7288. {
  7289. front: {
  7290. height: math.unit(9, "feet"),
  7291. weight: math.unit(800, "lbs"),
  7292. name: "Front",
  7293. image: {
  7294. source: "./media/characters/tiberius/front.svg",
  7295. extra: 2295 / 2071
  7296. }
  7297. },
  7298. back: {
  7299. height: math.unit(9, "feet"),
  7300. weight: math.unit(800, "lbs"),
  7301. name: "Back",
  7302. image: {
  7303. source: "./media/characters/tiberius/back.svg",
  7304. extra: 2373 / 2160
  7305. }
  7306. },
  7307. },
  7308. [
  7309. {
  7310. name: "Normal",
  7311. height: math.unit(9, "feet"),
  7312. default: true
  7313. }
  7314. ]
  7315. ))
  7316. characterMakers.push(() => makeCharacter(
  7317. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7318. {
  7319. front: {
  7320. height: math.unit(6, "feet"),
  7321. weight: math.unit(600, "lbs"),
  7322. name: "Front",
  7323. image: {
  7324. source: "./media/characters/surgo/front.svg",
  7325. extra: 3591 / 2227
  7326. }
  7327. },
  7328. back: {
  7329. height: math.unit(6, "feet"),
  7330. weight: math.unit(600, "lbs"),
  7331. name: "Back",
  7332. image: {
  7333. source: "./media/characters/surgo/back.svg",
  7334. extra: 3557 / 2228
  7335. }
  7336. },
  7337. laying: {
  7338. height: math.unit(6 * 0.85, "feet"),
  7339. weight: math.unit(600, "lbs"),
  7340. name: "Laying",
  7341. image: {
  7342. source: "./media/characters/surgo/laying.svg"
  7343. }
  7344. },
  7345. },
  7346. [
  7347. {
  7348. name: "Normal",
  7349. height: math.unit(6, "feet"),
  7350. default: true
  7351. }
  7352. ]
  7353. ))
  7354. characterMakers.push(() => makeCharacter(
  7355. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7356. {
  7357. side: {
  7358. height: math.unit(6, "feet"),
  7359. weight: math.unit(150, "lbs"),
  7360. name: "Side",
  7361. image: {
  7362. source: "./media/characters/cibus/side.svg",
  7363. extra: 800 / 400
  7364. }
  7365. },
  7366. },
  7367. [
  7368. {
  7369. name: "Normal",
  7370. height: math.unit(6, "feet"),
  7371. default: true
  7372. }
  7373. ]
  7374. ))
  7375. characterMakers.push(() => makeCharacter(
  7376. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7377. {
  7378. front: {
  7379. height: math.unit(6, "feet"),
  7380. weight: math.unit(240, "lbs"),
  7381. name: "Front",
  7382. image: {
  7383. source: "./media/characters/nibbles/front.svg"
  7384. }
  7385. },
  7386. side: {
  7387. height: math.unit(6, "feet"),
  7388. weight: math.unit(240, "lbs"),
  7389. name: "Side",
  7390. image: {
  7391. source: "./media/characters/nibbles/side.svg"
  7392. }
  7393. },
  7394. },
  7395. [
  7396. {
  7397. name: "Normal",
  7398. height: math.unit(9, "feet"),
  7399. default: true
  7400. }
  7401. ]
  7402. ))
  7403. characterMakers.push(() => makeCharacter(
  7404. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7405. {
  7406. side: {
  7407. height: math.unit(5 + 1 / 6, "feet"),
  7408. weight: math.unit(130, "lbs"),
  7409. name: "Side",
  7410. image: {
  7411. source: "./media/characters/rikky/side.svg",
  7412. extra: 851 / 801
  7413. }
  7414. },
  7415. },
  7416. [
  7417. {
  7418. name: "Normal",
  7419. height: math.unit(5 + 1 / 6, "feet")
  7420. },
  7421. {
  7422. name: "Macro",
  7423. height: math.unit(152, "feet"),
  7424. default: true
  7425. },
  7426. {
  7427. name: "Megamacro",
  7428. height: math.unit(7, "miles")
  7429. }
  7430. ]
  7431. ))
  7432. characterMakers.push(() => makeCharacter(
  7433. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7434. {
  7435. side: {
  7436. height: math.unit(370, "cm"),
  7437. weight: math.unit(350, "lbs"),
  7438. name: "Side",
  7439. image: {
  7440. source: "./media/characters/malfressa/side.svg"
  7441. }
  7442. },
  7443. walking: {
  7444. height: math.unit(370, "cm"),
  7445. weight: math.unit(350, "lbs"),
  7446. name: "Walking",
  7447. image: {
  7448. source: "./media/characters/malfressa/walking.svg"
  7449. }
  7450. },
  7451. feral: {
  7452. height: math.unit(2500, "cm"),
  7453. weight: math.unit(100000, "lbs"),
  7454. name: "Feral",
  7455. image: {
  7456. source: "./media/characters/malfressa/feral.svg",
  7457. extra: 2108 / 837,
  7458. bottom: 0.02
  7459. }
  7460. },
  7461. },
  7462. [
  7463. {
  7464. name: "Normal",
  7465. height: math.unit(370, "cm")
  7466. },
  7467. {
  7468. name: "Macro",
  7469. height: math.unit(300, "meters"),
  7470. default: true
  7471. }
  7472. ]
  7473. ))
  7474. characterMakers.push(() => makeCharacter(
  7475. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7476. {
  7477. front: {
  7478. height: math.unit(6, "feet"),
  7479. weight: math.unit(60, "kg"),
  7480. name: "Front",
  7481. image: {
  7482. source: "./media/characters/jaro/front.svg",
  7483. extra: 845/817,
  7484. bottom: 45/890
  7485. }
  7486. },
  7487. back: {
  7488. height: math.unit(6, "feet"),
  7489. weight: math.unit(60, "kg"),
  7490. name: "Back",
  7491. image: {
  7492. source: "./media/characters/jaro/back.svg",
  7493. extra: 847/817,
  7494. bottom: 34/881
  7495. }
  7496. },
  7497. },
  7498. [
  7499. {
  7500. name: "Micro",
  7501. height: math.unit(7, "inches")
  7502. },
  7503. {
  7504. name: "Normal",
  7505. height: math.unit(5.5, "feet"),
  7506. default: true
  7507. },
  7508. {
  7509. name: "Minimacro",
  7510. height: math.unit(20, "feet")
  7511. },
  7512. {
  7513. name: "Macro",
  7514. height: math.unit(200, "meters")
  7515. }
  7516. ]
  7517. ))
  7518. characterMakers.push(() => makeCharacter(
  7519. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7520. {
  7521. front: {
  7522. height: math.unit(6, "feet"),
  7523. weight: math.unit(195, "lb"),
  7524. name: "Front",
  7525. image: {
  7526. source: "./media/characters/rogue/front.svg"
  7527. }
  7528. },
  7529. },
  7530. [
  7531. {
  7532. name: "Macro",
  7533. height: math.unit(90, "feet"),
  7534. default: true
  7535. },
  7536. ]
  7537. ))
  7538. characterMakers.push(() => makeCharacter(
  7539. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7540. {
  7541. standing: {
  7542. height: math.unit(5 + 8 / 12, "feet"),
  7543. weight: math.unit(140, "lb"),
  7544. name: "Standing",
  7545. image: {
  7546. source: "./media/characters/piper/standing.svg",
  7547. extra: 1440/1284,
  7548. bottom: 66/1506
  7549. }
  7550. },
  7551. running: {
  7552. height: math.unit(5 + 8 / 12, "feet"),
  7553. weight: math.unit(140, "lb"),
  7554. name: "Running",
  7555. image: {
  7556. source: "./media/characters/piper/running.svg",
  7557. extra: 3948/3655,
  7558. bottom: 0/3948
  7559. }
  7560. },
  7561. sole: {
  7562. height: math.unit(0.81, "feet"),
  7563. weight: math.unit(2, "kg"),
  7564. name: "Sole",
  7565. image: {
  7566. source: "./media/characters/piper/sole.svg"
  7567. }
  7568. },
  7569. nipple: {
  7570. height: math.unit(0.25, "feet"),
  7571. weight: math.unit(1.5, "lb"),
  7572. name: "Nipple",
  7573. image: {
  7574. source: "./media/characters/piper/nipple.svg"
  7575. }
  7576. },
  7577. head: {
  7578. height: math.unit(1.1, "feet"),
  7579. name: "Head",
  7580. image: {
  7581. source: "./media/characters/piper/head.svg"
  7582. }
  7583. },
  7584. },
  7585. [
  7586. {
  7587. name: "Micro",
  7588. height: math.unit(2, "inches")
  7589. },
  7590. {
  7591. name: "Normal",
  7592. height: math.unit(5 + 8 / 12, "feet")
  7593. },
  7594. {
  7595. name: "Macro",
  7596. height: math.unit(250, "feet"),
  7597. default: true
  7598. },
  7599. {
  7600. name: "Megamacro",
  7601. height: math.unit(7, "miles")
  7602. },
  7603. ]
  7604. ))
  7605. characterMakers.push(() => makeCharacter(
  7606. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7607. {
  7608. front: {
  7609. height: math.unit(6, "feet"),
  7610. weight: math.unit(220, "lb"),
  7611. name: "Front",
  7612. image: {
  7613. source: "./media/characters/gemini/front.svg"
  7614. }
  7615. },
  7616. back: {
  7617. height: math.unit(6, "feet"),
  7618. weight: math.unit(220, "lb"),
  7619. name: "Back",
  7620. image: {
  7621. source: "./media/characters/gemini/back.svg"
  7622. }
  7623. },
  7624. kneeling: {
  7625. height: math.unit(6 / 1.5, "feet"),
  7626. weight: math.unit(220, "lb"),
  7627. name: "Kneeling",
  7628. image: {
  7629. source: "./media/characters/gemini/kneeling.svg",
  7630. bottom: 0.02
  7631. }
  7632. },
  7633. },
  7634. [
  7635. {
  7636. name: "Macro",
  7637. height: math.unit(300, "meters"),
  7638. default: true
  7639. },
  7640. {
  7641. name: "Megamacro",
  7642. height: math.unit(6900, "meters")
  7643. },
  7644. ]
  7645. ))
  7646. characterMakers.push(() => makeCharacter(
  7647. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7648. {
  7649. anthro: {
  7650. height: math.unit(2.35, "meters"),
  7651. weight: math.unit(73, "kg"),
  7652. name: "Anthro",
  7653. image: {
  7654. source: "./media/characters/alicia/anthro.svg",
  7655. extra: 2571 / 2385,
  7656. bottom: 75 / 2648
  7657. }
  7658. },
  7659. paw: {
  7660. height: math.unit(1.32, "feet"),
  7661. name: "Paw",
  7662. image: {
  7663. source: "./media/characters/alicia/paw.svg"
  7664. }
  7665. },
  7666. feral: {
  7667. height: math.unit(1.69, "meters"),
  7668. weight: math.unit(73, "kg"),
  7669. name: "Feral",
  7670. image: {
  7671. source: "./media/characters/alicia/feral.svg",
  7672. extra: 2123 / 1715,
  7673. bottom: 222 / 2349
  7674. }
  7675. },
  7676. },
  7677. [
  7678. {
  7679. name: "Normal",
  7680. height: math.unit(2.35, "meters")
  7681. },
  7682. {
  7683. name: "Macro",
  7684. height: math.unit(60, "meters"),
  7685. default: true
  7686. },
  7687. {
  7688. name: "Megamacro",
  7689. height: math.unit(10000, "kilometers")
  7690. },
  7691. ]
  7692. ))
  7693. characterMakers.push(() => makeCharacter(
  7694. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7695. {
  7696. front: {
  7697. height: math.unit(7, "feet"),
  7698. weight: math.unit(250, "lbs"),
  7699. name: "Front",
  7700. image: {
  7701. source: "./media/characters/archy/front.svg"
  7702. }
  7703. }
  7704. },
  7705. [
  7706. {
  7707. name: "Micro",
  7708. height: math.unit(1, "inch")
  7709. },
  7710. {
  7711. name: "Shorty",
  7712. height: math.unit(5, "feet")
  7713. },
  7714. {
  7715. name: "Normal",
  7716. height: math.unit(7, "feet")
  7717. },
  7718. {
  7719. name: "Macro",
  7720. height: math.unit(600, "meters"),
  7721. default: true
  7722. },
  7723. {
  7724. name: "Megamacro",
  7725. height: math.unit(1, "mile")
  7726. },
  7727. ]
  7728. ))
  7729. characterMakers.push(() => makeCharacter(
  7730. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7731. {
  7732. front: {
  7733. height: math.unit(1.65, "meters"),
  7734. weight: math.unit(74, "kg"),
  7735. name: "Front",
  7736. image: {
  7737. source: "./media/characters/berri/front.svg",
  7738. extra: 857 / 837,
  7739. bottom: 18 / 877
  7740. }
  7741. },
  7742. bum: {
  7743. height: math.unit(1.46, "feet"),
  7744. name: "Bum",
  7745. image: {
  7746. source: "./media/characters/berri/bum.svg"
  7747. }
  7748. },
  7749. mouth: {
  7750. height: math.unit(0.44, "feet"),
  7751. name: "Mouth",
  7752. image: {
  7753. source: "./media/characters/berri/mouth.svg"
  7754. }
  7755. },
  7756. paw: {
  7757. height: math.unit(0.826, "feet"),
  7758. name: "Paw",
  7759. image: {
  7760. source: "./media/characters/berri/paw.svg"
  7761. }
  7762. },
  7763. },
  7764. [
  7765. {
  7766. name: "Normal",
  7767. height: math.unit(1.65, "meters")
  7768. },
  7769. {
  7770. name: "Macro",
  7771. height: math.unit(60, "m"),
  7772. default: true
  7773. },
  7774. {
  7775. name: "Megamacro",
  7776. height: math.unit(9.213, "km")
  7777. },
  7778. {
  7779. name: "Planet Eater",
  7780. height: math.unit(489, "megameters")
  7781. },
  7782. {
  7783. name: "Teramacro",
  7784. height: math.unit(2471635000000, "meters")
  7785. },
  7786. {
  7787. name: "Examacro",
  7788. height: math.unit(8.0624e+26, "meters")
  7789. }
  7790. ]
  7791. ))
  7792. characterMakers.push(() => makeCharacter(
  7793. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7794. {
  7795. front: {
  7796. height: math.unit(1.72, "meters"),
  7797. weight: math.unit(68, "kg"),
  7798. name: "Front",
  7799. image: {
  7800. source: "./media/characters/lexi/front.svg"
  7801. }
  7802. }
  7803. },
  7804. [
  7805. {
  7806. name: "Very Smol",
  7807. height: math.unit(10, "mm")
  7808. },
  7809. {
  7810. name: "Micro",
  7811. height: math.unit(6.8, "cm"),
  7812. default: true
  7813. },
  7814. {
  7815. name: "Normal",
  7816. height: math.unit(1.72, "m")
  7817. }
  7818. ]
  7819. ))
  7820. characterMakers.push(() => makeCharacter(
  7821. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7822. {
  7823. front: {
  7824. height: math.unit(1.69, "meters"),
  7825. weight: math.unit(68, "kg"),
  7826. name: "Front",
  7827. image: {
  7828. source: "./media/characters/martin/front.svg",
  7829. extra: 596 / 581
  7830. }
  7831. }
  7832. },
  7833. [
  7834. {
  7835. name: "Micro",
  7836. height: math.unit(6.85, "cm"),
  7837. default: true
  7838. },
  7839. {
  7840. name: "Normal",
  7841. height: math.unit(1.69, "m")
  7842. }
  7843. ]
  7844. ))
  7845. characterMakers.push(() => makeCharacter(
  7846. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7847. {
  7848. front: {
  7849. height: math.unit(1.69, "meters"),
  7850. weight: math.unit(68, "kg"),
  7851. name: "Front",
  7852. image: {
  7853. source: "./media/characters/juno/front.svg"
  7854. }
  7855. }
  7856. },
  7857. [
  7858. {
  7859. name: "Micro",
  7860. height: math.unit(7, "cm")
  7861. },
  7862. {
  7863. name: "Normal",
  7864. height: math.unit(1.89, "m")
  7865. },
  7866. {
  7867. name: "Macro",
  7868. height: math.unit(353, "meters"),
  7869. default: true
  7870. }
  7871. ]
  7872. ))
  7873. characterMakers.push(() => makeCharacter(
  7874. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7875. {
  7876. front: {
  7877. height: math.unit(1.93, "meters"),
  7878. weight: math.unit(83, "kg"),
  7879. name: "Front",
  7880. image: {
  7881. source: "./media/characters/samantha/front.svg"
  7882. }
  7883. },
  7884. frontClothed: {
  7885. height: math.unit(1.93, "meters"),
  7886. weight: math.unit(83, "kg"),
  7887. name: "Front (Clothed)",
  7888. image: {
  7889. source: "./media/characters/samantha/front-clothed.svg"
  7890. }
  7891. },
  7892. back: {
  7893. height: math.unit(1.93, "meters"),
  7894. weight: math.unit(83, "kg"),
  7895. name: "Back",
  7896. image: {
  7897. source: "./media/characters/samantha/back.svg"
  7898. }
  7899. },
  7900. },
  7901. [
  7902. {
  7903. name: "Normal",
  7904. height: math.unit(1.93, "m")
  7905. },
  7906. {
  7907. name: "Macro",
  7908. height: math.unit(74, "meters"),
  7909. default: true
  7910. },
  7911. {
  7912. name: "Macro+",
  7913. height: math.unit(223, "meters"),
  7914. },
  7915. {
  7916. name: "Megamacro",
  7917. height: math.unit(8381, "meters"),
  7918. },
  7919. {
  7920. name: "Megamacro+",
  7921. height: math.unit(12000, "kilometers")
  7922. },
  7923. ]
  7924. ))
  7925. characterMakers.push(() => makeCharacter(
  7926. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7927. {
  7928. front: {
  7929. height: math.unit(1.92, "meters"),
  7930. weight: math.unit(80, "kg"),
  7931. name: "Front",
  7932. image: {
  7933. source: "./media/characters/dr-clay/front.svg"
  7934. }
  7935. },
  7936. frontClothed: {
  7937. height: math.unit(1.92, "meters"),
  7938. weight: math.unit(80, "kg"),
  7939. name: "Front (Clothed)",
  7940. image: {
  7941. source: "./media/characters/dr-clay/front-clothed.svg"
  7942. }
  7943. }
  7944. },
  7945. [
  7946. {
  7947. name: "Normal",
  7948. height: math.unit(1.92, "m")
  7949. },
  7950. {
  7951. name: "Macro",
  7952. height: math.unit(214, "meters"),
  7953. default: true
  7954. },
  7955. {
  7956. name: "Macro+",
  7957. height: math.unit(12.237, "meters"),
  7958. },
  7959. {
  7960. name: "Megamacro",
  7961. height: math.unit(557, "megameters"),
  7962. },
  7963. {
  7964. name: "Unimaginable",
  7965. height: math.unit(120e9, "lightyears")
  7966. },
  7967. ]
  7968. ))
  7969. characterMakers.push(() => makeCharacter(
  7970. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7971. {
  7972. front: {
  7973. height: math.unit(2, "meters"),
  7974. weight: math.unit(80, "kg"),
  7975. name: "Front",
  7976. image: {
  7977. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7978. }
  7979. }
  7980. },
  7981. [
  7982. {
  7983. name: "Teramacro",
  7984. height: math.unit(500000, "lightyears"),
  7985. default: true
  7986. },
  7987. ]
  7988. ))
  7989. characterMakers.push(() => makeCharacter(
  7990. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7991. {
  7992. crux: {
  7993. height: math.unit(2, "meters"),
  7994. weight: math.unit(150, "kg"),
  7995. name: "Crux",
  7996. image: {
  7997. source: "./media/characters/vemus/crux.svg",
  7998. extra: 1074/936,
  7999. bottom: 23/1097
  8000. }
  8001. },
  8002. skunkTanuki: {
  8003. height: math.unit(2, "meters"),
  8004. weight: math.unit(150, "kg"),
  8005. name: "Skunk-Tanuki",
  8006. image: {
  8007. source: "./media/characters/vemus/skunk-tanuki.svg",
  8008. extra: 926/893,
  8009. bottom: 20/946
  8010. }
  8011. },
  8012. },
  8013. [
  8014. {
  8015. name: "Normal",
  8016. height: math.unit(4, "meters"),
  8017. default: true
  8018. },
  8019. {
  8020. name: "Big",
  8021. height: math.unit(8, "meters")
  8022. },
  8023. {
  8024. name: "Macro",
  8025. height: math.unit(100, "meters")
  8026. },
  8027. {
  8028. name: "Macro+",
  8029. height: math.unit(1500, "meters")
  8030. },
  8031. {
  8032. name: "Stellar",
  8033. height: math.unit(14e8, "meters")
  8034. },
  8035. ]
  8036. ))
  8037. characterMakers.push(() => makeCharacter(
  8038. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8039. {
  8040. front: {
  8041. height: math.unit(2, "meters"),
  8042. weight: math.unit(70, "kg"),
  8043. name: "Front",
  8044. image: {
  8045. source: "./media/characters/beherit/front.svg",
  8046. extra: 1234/1109,
  8047. bottom: 55/1289
  8048. }
  8049. }
  8050. },
  8051. [
  8052. {
  8053. name: "Normal",
  8054. height: math.unit(6, "feet")
  8055. },
  8056. {
  8057. name: "Lorg",
  8058. height: math.unit(25, "feet"),
  8059. default: true
  8060. },
  8061. {
  8062. name: "Lorger",
  8063. height: math.unit(75, "feet")
  8064. },
  8065. {
  8066. name: "Macro",
  8067. height: math.unit(200, "meters")
  8068. },
  8069. ]
  8070. ))
  8071. characterMakers.push(() => makeCharacter(
  8072. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8073. {
  8074. front: {
  8075. height: math.unit(2, "meters"),
  8076. weight: math.unit(150, "kg"),
  8077. name: "Front",
  8078. image: {
  8079. source: "./media/characters/everett/front.svg",
  8080. extra: 1017/866,
  8081. bottom: 86/1103
  8082. }
  8083. },
  8084. paw: {
  8085. height: math.unit(2 / 3.6, "meters"),
  8086. name: "Paw",
  8087. image: {
  8088. source: "./media/characters/everett/paw.svg"
  8089. }
  8090. },
  8091. },
  8092. [
  8093. {
  8094. name: "Normal",
  8095. height: math.unit(15, "feet"),
  8096. default: true
  8097. },
  8098. {
  8099. name: "Lorg",
  8100. height: math.unit(70, "feet"),
  8101. default: true
  8102. },
  8103. {
  8104. name: "Lorger",
  8105. height: math.unit(250, "feet")
  8106. },
  8107. {
  8108. name: "Macro",
  8109. height: math.unit(500, "meters")
  8110. },
  8111. ]
  8112. ))
  8113. characterMakers.push(() => makeCharacter(
  8114. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8115. {
  8116. front: {
  8117. height: math.unit(2, "meters"),
  8118. weight: math.unit(86, "kg"),
  8119. name: "Front",
  8120. image: {
  8121. source: "./media/characters/rose/front.svg",
  8122. extra: 1785/1636,
  8123. bottom: 30/1815
  8124. },
  8125. form: "liom",
  8126. default: true
  8127. },
  8128. frontSporty: {
  8129. height: math.unit(2, "meters"),
  8130. weight: math.unit(86, "kg"),
  8131. name: "Front (Sporty)",
  8132. image: {
  8133. source: "./media/characters/rose/front-sporty.svg",
  8134. extra: 350/335,
  8135. bottom: 10/360
  8136. },
  8137. form: "liom"
  8138. },
  8139. frontAlt: {
  8140. height: math.unit(1.6, "meters"),
  8141. weight: math.unit(86, "kg"),
  8142. name: "Front (Alt)",
  8143. image: {
  8144. source: "./media/characters/rose/front-alt.svg",
  8145. extra: 299/283,
  8146. bottom: 3/302
  8147. },
  8148. form: "liom"
  8149. },
  8150. plush: {
  8151. height: math.unit(2, "meters"),
  8152. weight: math.unit(86/3, "kg"),
  8153. name: "Plush",
  8154. image: {
  8155. source: "./media/characters/rose/plush.svg",
  8156. extra: 361/337,
  8157. bottom: 11/372
  8158. },
  8159. form: "plush",
  8160. default: true
  8161. },
  8162. faeStanding: {
  8163. height: math.unit(10, "cm"),
  8164. weight: math.unit(10, "grams"),
  8165. name: "Standing",
  8166. image: {
  8167. source: "./media/characters/rose/fae-standing.svg",
  8168. extra: 1189/1060,
  8169. bottom: 27/1216
  8170. },
  8171. form: "fae",
  8172. default: true
  8173. },
  8174. faeSitting: {
  8175. height: math.unit(5, "cm"),
  8176. weight: math.unit(10, "grams"),
  8177. name: "Sitting",
  8178. image: {
  8179. source: "./media/characters/rose/fae-sitting.svg",
  8180. extra: 737/577,
  8181. bottom: 356/1093
  8182. },
  8183. form: "fae"
  8184. },
  8185. faePaw: {
  8186. height: math.unit(1.35, "cm"),
  8187. name: "Paw",
  8188. image: {
  8189. source: "./media/characters/rose/fae-paw.svg"
  8190. },
  8191. form: "fae"
  8192. },
  8193. },
  8194. [
  8195. {
  8196. name: "True Micro",
  8197. height: math.unit(9, "cm"),
  8198. form: "liom"
  8199. },
  8200. {
  8201. name: "Micro",
  8202. height: math.unit(16, "cm"),
  8203. form: "liom"
  8204. },
  8205. {
  8206. name: "Normal",
  8207. height: math.unit(1.85, "meters"),
  8208. default: true,
  8209. form: "liom"
  8210. },
  8211. {
  8212. name: "Mini-Macro",
  8213. height: math.unit(5, "meters"),
  8214. form: "liom"
  8215. },
  8216. {
  8217. name: "Macro",
  8218. height: math.unit(15, "meters"),
  8219. form: "liom"
  8220. },
  8221. {
  8222. name: "True Macro",
  8223. height: math.unit(40, "meters"),
  8224. form: "liom"
  8225. },
  8226. {
  8227. name: "City Scale",
  8228. height: math.unit(1, "km"),
  8229. form: "liom"
  8230. },
  8231. {
  8232. name: "Plushie",
  8233. height: math.unit(9, "cm"),
  8234. form: "plush",
  8235. default: true
  8236. },
  8237. {
  8238. name: "Fae",
  8239. height: math.unit(10, "cm"),
  8240. form: "fae",
  8241. default: true
  8242. },
  8243. ],
  8244. {
  8245. "liom": {
  8246. name: "Liom"
  8247. },
  8248. "plush": {
  8249. name: "Plush"
  8250. },
  8251. "fae": {
  8252. name: "Fae Fox",
  8253. default: true
  8254. }
  8255. }
  8256. ))
  8257. characterMakers.push(() => makeCharacter(
  8258. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8259. {
  8260. front: {
  8261. height: math.unit(2, "meters"),
  8262. weight: math.unit(350, "lbs"),
  8263. name: "Front",
  8264. image: {
  8265. source: "./media/characters/regal/front.svg"
  8266. }
  8267. },
  8268. back: {
  8269. height: math.unit(2, "meters"),
  8270. weight: math.unit(350, "lbs"),
  8271. name: "Back",
  8272. image: {
  8273. source: "./media/characters/regal/back.svg"
  8274. }
  8275. },
  8276. },
  8277. [
  8278. {
  8279. name: "Macro",
  8280. height: math.unit(350, "feet"),
  8281. default: true
  8282. }
  8283. ]
  8284. ))
  8285. characterMakers.push(() => makeCharacter(
  8286. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8287. {
  8288. standing: {
  8289. height: math.unit(4 + 11/12, "feet"),
  8290. weight: math.unit(100, "lb"),
  8291. name: "Standing",
  8292. image: {
  8293. source: "./media/characters/opal/standing.svg",
  8294. extra: 1588/1513,
  8295. bottom: 23/1611
  8296. }
  8297. },
  8298. sitting: {
  8299. height: math.unit(2.3, "feet"),
  8300. weight: math.unit(100, "lb"),
  8301. name: "Sitting",
  8302. image: {
  8303. source: "./media/characters/opal/sitting.svg",
  8304. extra: 1031/892,
  8305. bottom: 142/1173
  8306. }
  8307. },
  8308. hand: {
  8309. height: math.unit(0.59, "feet"),
  8310. name: "Hand",
  8311. image: {
  8312. source: "./media/characters/opal/hand.svg"
  8313. }
  8314. },
  8315. foot: {
  8316. height: math.unit(0.61, "feet"),
  8317. name: "Foot",
  8318. image: {
  8319. source: "./media/characters/opal/foot.svg"
  8320. }
  8321. },
  8322. },
  8323. [
  8324. {
  8325. name: "Small",
  8326. height: math.unit(4 + 11 / 12, "feet")
  8327. },
  8328. {
  8329. name: "Normal",
  8330. height: math.unit(20, "feet"),
  8331. default: true
  8332. },
  8333. {
  8334. name: "Macro",
  8335. height: math.unit(120, "feet")
  8336. },
  8337. {
  8338. name: "Megamacro",
  8339. height: math.unit(80, "miles")
  8340. },
  8341. {
  8342. name: "True Size",
  8343. height: math.unit(100000, "lightyears")
  8344. },
  8345. ]
  8346. ))
  8347. characterMakers.push(() => makeCharacter(
  8348. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8349. {
  8350. front: {
  8351. height: math.unit(6, "feet"),
  8352. weight: math.unit(200, "lbs"),
  8353. name: "Front",
  8354. image: {
  8355. source: "./media/characters/vector-wuff/front.svg"
  8356. }
  8357. }
  8358. },
  8359. [
  8360. {
  8361. name: "Normal",
  8362. height: math.unit(2.8, "meters")
  8363. },
  8364. {
  8365. name: "Macro",
  8366. height: math.unit(450, "meters"),
  8367. default: true
  8368. },
  8369. {
  8370. name: "Megamacro",
  8371. height: math.unit(15, "kilometers")
  8372. }
  8373. ]
  8374. ))
  8375. characterMakers.push(() => makeCharacter(
  8376. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8377. {
  8378. front: {
  8379. height: math.unit(6, "feet"),
  8380. weight: math.unit(256, "lbs"),
  8381. name: "Front",
  8382. image: {
  8383. source: "./media/characters/dannik/front.svg"
  8384. }
  8385. }
  8386. },
  8387. [
  8388. {
  8389. name: "Macro",
  8390. height: math.unit(69.57, "meters"),
  8391. default: true
  8392. },
  8393. ]
  8394. ))
  8395. characterMakers.push(() => makeCharacter(
  8396. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8397. {
  8398. front: {
  8399. height: math.unit(6, "feet"),
  8400. weight: math.unit(120, "lbs"),
  8401. name: "Front",
  8402. image: {
  8403. source: "./media/characters/azura-saharah/front.svg"
  8404. }
  8405. },
  8406. back: {
  8407. height: math.unit(6, "feet"),
  8408. weight: math.unit(120, "lbs"),
  8409. name: "Back",
  8410. image: {
  8411. source: "./media/characters/azura-saharah/back.svg"
  8412. }
  8413. },
  8414. },
  8415. [
  8416. {
  8417. name: "Macro",
  8418. height: math.unit(100, "feet"),
  8419. default: true
  8420. },
  8421. ]
  8422. ))
  8423. characterMakers.push(() => makeCharacter(
  8424. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8425. {
  8426. side: {
  8427. height: math.unit(5 + 4 / 12, "feet"),
  8428. weight: math.unit(163, "lbs"),
  8429. name: "Side",
  8430. image: {
  8431. source: "./media/characters/kennedy/side.svg"
  8432. }
  8433. }
  8434. },
  8435. [
  8436. {
  8437. name: "Standard Doggo",
  8438. height: math.unit(5 + 4 / 12, "feet")
  8439. },
  8440. {
  8441. name: "Big Doggo",
  8442. height: math.unit(25 + 3 / 12, "feet"),
  8443. default: true
  8444. },
  8445. ]
  8446. ))
  8447. characterMakers.push(() => makeCharacter(
  8448. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8449. {
  8450. front: {
  8451. height: math.unit(5 + 5/12, "feet"),
  8452. weight: math.unit(100, "lbs"),
  8453. name: "Front",
  8454. image: {
  8455. source: "./media/characters/odios-de-lunar/front.svg",
  8456. extra: 1468/1323,
  8457. bottom: 22/1490
  8458. }
  8459. }
  8460. },
  8461. [
  8462. {
  8463. name: "Micro",
  8464. height: math.unit(3, "inches")
  8465. },
  8466. {
  8467. name: "Normal",
  8468. height: math.unit(5.5, "feet"),
  8469. default: true
  8470. },
  8471. {
  8472. name: "Macro",
  8473. height: math.unit(100, "feet")
  8474. },
  8475. ]
  8476. ))
  8477. characterMakers.push(() => makeCharacter(
  8478. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8479. {
  8480. back: {
  8481. height: math.unit(6, "feet"),
  8482. weight: math.unit(220, "lbs"),
  8483. name: "Back",
  8484. image: {
  8485. source: "./media/characters/mandake/back.svg"
  8486. }
  8487. }
  8488. },
  8489. [
  8490. {
  8491. name: "Normal",
  8492. height: math.unit(7, "feet"),
  8493. default: true
  8494. },
  8495. {
  8496. name: "Macro",
  8497. height: math.unit(78, "feet")
  8498. },
  8499. {
  8500. name: "Macro+",
  8501. height: math.unit(300, "meters")
  8502. },
  8503. {
  8504. name: "Macro++",
  8505. height: math.unit(2400, "feet")
  8506. },
  8507. {
  8508. name: "Megamacro",
  8509. height: math.unit(5167, "meters")
  8510. },
  8511. {
  8512. name: "Gigamacro",
  8513. height: math.unit(41769, "miles")
  8514. },
  8515. ]
  8516. ))
  8517. characterMakers.push(() => makeCharacter(
  8518. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8519. {
  8520. front: {
  8521. height: math.unit(6, "feet"),
  8522. weight: math.unit(120, "lbs"),
  8523. name: "Front",
  8524. image: {
  8525. source: "./media/characters/yozey/front.svg"
  8526. }
  8527. },
  8528. frontAlt: {
  8529. height: math.unit(6, "feet"),
  8530. weight: math.unit(120, "lbs"),
  8531. name: "Front (Alt)",
  8532. image: {
  8533. source: "./media/characters/yozey/front-alt.svg"
  8534. }
  8535. },
  8536. side: {
  8537. height: math.unit(6, "feet"),
  8538. weight: math.unit(120, "lbs"),
  8539. name: "Side",
  8540. image: {
  8541. source: "./media/characters/yozey/side.svg"
  8542. }
  8543. },
  8544. },
  8545. [
  8546. {
  8547. name: "Micro",
  8548. height: math.unit(3, "inches"),
  8549. default: true
  8550. },
  8551. {
  8552. name: "Normal",
  8553. height: math.unit(6, "feet")
  8554. }
  8555. ]
  8556. ))
  8557. characterMakers.push(() => makeCharacter(
  8558. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8559. {
  8560. front: {
  8561. height: math.unit(6, "feet"),
  8562. weight: math.unit(103, "lbs"),
  8563. name: "Front",
  8564. image: {
  8565. source: "./media/characters/valeska-voss/front.svg"
  8566. }
  8567. }
  8568. },
  8569. [
  8570. {
  8571. name: "Mini-Sized Sub",
  8572. height: math.unit(3.1, "inches")
  8573. },
  8574. {
  8575. name: "Mid-Sized Sub",
  8576. height: math.unit(6.2, "inches")
  8577. },
  8578. {
  8579. name: "Full-Sized Sub",
  8580. height: math.unit(9.3, "inches")
  8581. },
  8582. {
  8583. name: "Normal",
  8584. height: math.unit(5 + 2 / 12, "foot"),
  8585. default: true
  8586. },
  8587. ]
  8588. ))
  8589. characterMakers.push(() => makeCharacter(
  8590. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8591. {
  8592. front: {
  8593. height: math.unit(6, "feet"),
  8594. weight: math.unit(160, "lbs"),
  8595. name: "Front",
  8596. image: {
  8597. source: "./media/characters/gene-zeta/front.svg",
  8598. extra: 3006 / 2826,
  8599. bottom: 182 / 3188
  8600. }
  8601. }
  8602. },
  8603. [
  8604. {
  8605. name: "Micro",
  8606. height: math.unit(6, "inches")
  8607. },
  8608. {
  8609. name: "Normal",
  8610. height: math.unit(5 + 11 / 12, "foot"),
  8611. default: true
  8612. },
  8613. {
  8614. name: "Macro",
  8615. height: math.unit(140, "feet")
  8616. },
  8617. {
  8618. name: "Supercharged",
  8619. height: math.unit(2500, "feet")
  8620. },
  8621. ]
  8622. ))
  8623. characterMakers.push(() => makeCharacter(
  8624. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8625. {
  8626. front: {
  8627. height: math.unit(6, "feet"),
  8628. weight: math.unit(350, "lbs"),
  8629. name: "Front",
  8630. image: {
  8631. source: "./media/characters/razinox/front.svg",
  8632. extra: 1686 / 1548,
  8633. bottom: 28.2 / 1868
  8634. }
  8635. },
  8636. back: {
  8637. height: math.unit(6, "feet"),
  8638. weight: math.unit(350, "lbs"),
  8639. name: "Back",
  8640. image: {
  8641. source: "./media/characters/razinox/back.svg",
  8642. extra: 1660 / 1590,
  8643. bottom: 15 / 1665
  8644. }
  8645. },
  8646. },
  8647. [
  8648. {
  8649. name: "Normal",
  8650. height: math.unit(10 + 8 / 12, "foot")
  8651. },
  8652. {
  8653. name: "Minimacro",
  8654. height: math.unit(15, "foot")
  8655. },
  8656. {
  8657. name: "Macro",
  8658. height: math.unit(60, "foot"),
  8659. default: true
  8660. },
  8661. {
  8662. name: "Megamacro",
  8663. height: math.unit(5, "miles")
  8664. },
  8665. {
  8666. name: "Gigamacro",
  8667. height: math.unit(6000, "miles")
  8668. },
  8669. ]
  8670. ))
  8671. characterMakers.push(() => makeCharacter(
  8672. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8673. {
  8674. front: {
  8675. height: math.unit(6, "feet"),
  8676. weight: math.unit(150, "lbs"),
  8677. name: "Front",
  8678. image: {
  8679. source: "./media/characters/cobalt/front.svg"
  8680. }
  8681. }
  8682. },
  8683. [
  8684. {
  8685. name: "Normal",
  8686. height: math.unit(8 + 1 / 12, "foot")
  8687. },
  8688. {
  8689. name: "Macro",
  8690. height: math.unit(111, "foot"),
  8691. default: true
  8692. },
  8693. {
  8694. name: "Supracosmic",
  8695. height: math.unit(1e42, "feet")
  8696. },
  8697. ]
  8698. ))
  8699. characterMakers.push(() => makeCharacter(
  8700. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8701. {
  8702. front: {
  8703. height: math.unit(5, "inches"),
  8704. name: "Front",
  8705. image: {
  8706. source: "./media/characters/amanda/front.svg",
  8707. extra: 926/791,
  8708. bottom: 38/964
  8709. }
  8710. },
  8711. back: {
  8712. height: math.unit(5, "inches"),
  8713. name: "Back",
  8714. image: {
  8715. source: "./media/characters/amanda/back.svg",
  8716. extra: 909/805,
  8717. bottom: 43/952
  8718. }
  8719. },
  8720. },
  8721. [
  8722. {
  8723. name: "Micro",
  8724. height: math.unit(5, "inches"),
  8725. default: true
  8726. },
  8727. ]
  8728. ))
  8729. characterMakers.push(() => makeCharacter(
  8730. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8731. {
  8732. front: {
  8733. height: math.unit(2.75, "meters"),
  8734. weight: math.unit(1200, "lb"),
  8735. name: "Front",
  8736. image: {
  8737. source: "./media/characters/teal/front.svg",
  8738. extra: 2463 / 2320,
  8739. bottom: 166 / 2629
  8740. }
  8741. },
  8742. back: {
  8743. height: math.unit(2.75, "meters"),
  8744. weight: math.unit(1200, "lb"),
  8745. name: "Back",
  8746. image: {
  8747. source: "./media/characters/teal/back.svg",
  8748. extra: 2580 / 2489,
  8749. bottom: 151 / 2731
  8750. }
  8751. },
  8752. sitting: {
  8753. height: math.unit(1.9, "meters"),
  8754. weight: math.unit(1200, "lb"),
  8755. name: "Sitting",
  8756. image: {
  8757. source: "./media/characters/teal/sitting.svg",
  8758. extra: 623 / 590,
  8759. bottom: 121 / 744
  8760. }
  8761. },
  8762. standing: {
  8763. height: math.unit(2.75, "meters"),
  8764. weight: math.unit(1200, "lb"),
  8765. name: "Standing",
  8766. image: {
  8767. source: "./media/characters/teal/standing.svg",
  8768. extra: 923 / 893,
  8769. bottom: 60 / 983
  8770. }
  8771. },
  8772. stretching: {
  8773. height: math.unit(3.65, "meters"),
  8774. weight: math.unit(1200, "lb"),
  8775. name: "Stretching",
  8776. image: {
  8777. source: "./media/characters/teal/stretching.svg",
  8778. extra: 1276 / 1244,
  8779. bottom: 0 / 1276
  8780. }
  8781. },
  8782. legged: {
  8783. height: math.unit(1.3, "meters"),
  8784. weight: math.unit(100, "lb"),
  8785. name: "Legged",
  8786. image: {
  8787. source: "./media/characters/teal/legged.svg",
  8788. extra: 462 / 437,
  8789. bottom: 24 / 486
  8790. }
  8791. },
  8792. naga: {
  8793. height: math.unit(5.4, "meters"),
  8794. weight: math.unit(4000, "lb"),
  8795. name: "Naga",
  8796. image: {
  8797. source: "./media/characters/teal/naga.svg",
  8798. extra: 1902 / 1858,
  8799. bottom: 0 / 1902
  8800. }
  8801. },
  8802. hand: {
  8803. height: math.unit(0.52, "meters"),
  8804. name: "Hand",
  8805. image: {
  8806. source: "./media/characters/teal/hand.svg"
  8807. }
  8808. },
  8809. maw: {
  8810. height: math.unit(0.43, "meters"),
  8811. name: "Maw",
  8812. image: {
  8813. source: "./media/characters/teal/maw.svg"
  8814. }
  8815. },
  8816. slit: {
  8817. height: math.unit(0.25, "meters"),
  8818. name: "Slit",
  8819. image: {
  8820. source: "./media/characters/teal/slit.svg"
  8821. }
  8822. },
  8823. },
  8824. [
  8825. {
  8826. name: "Normal",
  8827. height: math.unit(2.75, "meters"),
  8828. default: true
  8829. },
  8830. {
  8831. name: "Macro",
  8832. height: math.unit(300, "feet")
  8833. },
  8834. {
  8835. name: "Macro+",
  8836. height: math.unit(2000, "feet")
  8837. },
  8838. ]
  8839. ))
  8840. characterMakers.push(() => makeCharacter(
  8841. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8842. {
  8843. frontCat: {
  8844. height: math.unit(6, "feet"),
  8845. weight: math.unit(180, "lbs"),
  8846. name: "Front (Cat)",
  8847. image: {
  8848. source: "./media/characters/ravin-amulet/front-cat.svg"
  8849. }
  8850. },
  8851. frontCatAlt: {
  8852. height: math.unit(6, "feet"),
  8853. weight: math.unit(180, "lbs"),
  8854. name: "Front (Alt, Cat)",
  8855. image: {
  8856. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8857. }
  8858. },
  8859. frontWerewolf: {
  8860. height: math.unit(6 * 1.2, "feet"),
  8861. weight: math.unit(225, "lbs"),
  8862. name: "Front (Werewolf)",
  8863. image: {
  8864. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8865. }
  8866. },
  8867. backWerewolf: {
  8868. height: math.unit(6 * 1.2, "feet"),
  8869. weight: math.unit(225, "lbs"),
  8870. name: "Back (Werewolf)",
  8871. image: {
  8872. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8873. }
  8874. },
  8875. },
  8876. [
  8877. {
  8878. name: "Nano",
  8879. height: math.unit(1, "micrometer")
  8880. },
  8881. {
  8882. name: "Micro",
  8883. height: math.unit(1, "inch")
  8884. },
  8885. {
  8886. name: "Normal",
  8887. height: math.unit(6, "feet"),
  8888. default: true
  8889. },
  8890. {
  8891. name: "Macro",
  8892. height: math.unit(60, "feet")
  8893. }
  8894. ]
  8895. ))
  8896. characterMakers.push(() => makeCharacter(
  8897. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8898. {
  8899. front: {
  8900. height: math.unit(6, "feet"),
  8901. weight: math.unit(165, "lbs"),
  8902. name: "Front",
  8903. image: {
  8904. source: "./media/characters/fluoresce/front.svg"
  8905. }
  8906. }
  8907. },
  8908. [
  8909. {
  8910. name: "Micro",
  8911. height: math.unit(6, "cm")
  8912. },
  8913. {
  8914. name: "Normal",
  8915. height: math.unit(5 + 7 / 12, "feet"),
  8916. default: true
  8917. },
  8918. {
  8919. name: "Macro",
  8920. height: math.unit(56, "feet")
  8921. },
  8922. {
  8923. name: "Megamacro",
  8924. height: math.unit(1.9, "miles")
  8925. },
  8926. ]
  8927. ))
  8928. characterMakers.push(() => makeCharacter(
  8929. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8930. {
  8931. front: {
  8932. height: math.unit(9 + 6 / 12, "feet"),
  8933. weight: math.unit(523, "lbs"),
  8934. name: "Side",
  8935. image: {
  8936. source: "./media/characters/aurora/side.svg",
  8937. extra: 474/393,
  8938. bottom: 5/479
  8939. }
  8940. }
  8941. },
  8942. [
  8943. {
  8944. name: "Normal",
  8945. height: math.unit(9 + 6 / 12, "feet")
  8946. },
  8947. {
  8948. name: "Macro",
  8949. height: math.unit(96, "feet"),
  8950. default: true
  8951. },
  8952. {
  8953. name: "Macro+",
  8954. height: math.unit(243, "feet")
  8955. },
  8956. ]
  8957. ))
  8958. characterMakers.push(() => makeCharacter(
  8959. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8960. {
  8961. front: {
  8962. height: math.unit(194, "cm"),
  8963. weight: math.unit(90, "kg"),
  8964. name: "Front",
  8965. image: {
  8966. source: "./media/characters/ranek/front.svg",
  8967. extra: 1862/1791,
  8968. bottom: 80/1942
  8969. }
  8970. },
  8971. back: {
  8972. height: math.unit(194, "cm"),
  8973. weight: math.unit(90, "kg"),
  8974. name: "Back",
  8975. image: {
  8976. source: "./media/characters/ranek/back.svg",
  8977. extra: 1853/1787,
  8978. bottom: 74/1927
  8979. }
  8980. },
  8981. feral: {
  8982. height: math.unit(30, "cm"),
  8983. weight: math.unit(1.6, "lbs"),
  8984. name: "Feral",
  8985. image: {
  8986. source: "./media/characters/ranek/feral.svg",
  8987. extra: 990/631,
  8988. bottom: 29/1019
  8989. }
  8990. },
  8991. },
  8992. [
  8993. {
  8994. name: "Normal",
  8995. height: math.unit(194, "cm"),
  8996. default: true
  8997. },
  8998. {
  8999. name: "Macro",
  9000. height: math.unit(100, "meters")
  9001. },
  9002. ]
  9003. ))
  9004. characterMakers.push(() => makeCharacter(
  9005. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  9006. {
  9007. front: {
  9008. height: math.unit(5 + 6 / 12, "feet"),
  9009. weight: math.unit(153, "lbs"),
  9010. name: "Front",
  9011. image: {
  9012. source: "./media/characters/andrew-cooper/front.svg"
  9013. }
  9014. },
  9015. },
  9016. [
  9017. {
  9018. name: "Nano",
  9019. height: math.unit(1, "mm")
  9020. },
  9021. {
  9022. name: "Micro",
  9023. height: math.unit(2, "inches")
  9024. },
  9025. {
  9026. name: "Normal",
  9027. height: math.unit(5 + 6 / 12, "feet"),
  9028. default: true
  9029. }
  9030. ]
  9031. ))
  9032. characterMakers.push(() => makeCharacter(
  9033. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9034. {
  9035. front: {
  9036. height: math.unit(6, "feet"),
  9037. weight: math.unit(180, "lbs"),
  9038. name: "Front",
  9039. image: {
  9040. source: "./media/characters/akane-sato/front.svg",
  9041. extra: 1219 / 1140
  9042. }
  9043. },
  9044. back: {
  9045. height: math.unit(6, "feet"),
  9046. weight: math.unit(180, "lbs"),
  9047. name: "Back",
  9048. image: {
  9049. source: "./media/characters/akane-sato/back.svg",
  9050. extra: 1219 / 1170
  9051. }
  9052. },
  9053. },
  9054. [
  9055. {
  9056. name: "Normal",
  9057. height: math.unit(2.5, "meters")
  9058. },
  9059. {
  9060. name: "Macro",
  9061. height: math.unit(250, "meters"),
  9062. default: true
  9063. },
  9064. {
  9065. name: "Megamacro",
  9066. height: math.unit(25, "km")
  9067. },
  9068. ]
  9069. ))
  9070. characterMakers.push(() => makeCharacter(
  9071. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9072. {
  9073. front: {
  9074. height: math.unit(6, "feet"),
  9075. weight: math.unit(65, "kg"),
  9076. name: "Front",
  9077. image: {
  9078. source: "./media/characters/rook/front.svg",
  9079. extra: 960 / 950
  9080. }
  9081. }
  9082. },
  9083. [
  9084. {
  9085. name: "Normal",
  9086. height: math.unit(8.8, "feet")
  9087. },
  9088. {
  9089. name: "Macro",
  9090. height: math.unit(88, "feet"),
  9091. default: true
  9092. },
  9093. {
  9094. name: "Megamacro",
  9095. height: math.unit(8, "miles")
  9096. },
  9097. ]
  9098. ))
  9099. characterMakers.push(() => makeCharacter(
  9100. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9101. {
  9102. front: {
  9103. height: math.unit(12 + 2 / 12, "feet"),
  9104. weight: math.unit(808, "lbs"),
  9105. name: "Front",
  9106. image: {
  9107. source: "./media/characters/prodigy/front.svg"
  9108. }
  9109. }
  9110. },
  9111. [
  9112. {
  9113. name: "Normal",
  9114. height: math.unit(12 + 2 / 12, "feet"),
  9115. default: true
  9116. },
  9117. {
  9118. name: "Macro",
  9119. height: math.unit(143, "feet")
  9120. },
  9121. {
  9122. name: "Macro+",
  9123. height: math.unit(400, "feet")
  9124. },
  9125. ]
  9126. ))
  9127. characterMakers.push(() => makeCharacter(
  9128. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9129. {
  9130. front: {
  9131. height: math.unit(6, "feet"),
  9132. weight: math.unit(225, "lbs"),
  9133. name: "Front",
  9134. image: {
  9135. source: "./media/characters/daniel/front.svg"
  9136. }
  9137. },
  9138. leaning: {
  9139. height: math.unit(6, "feet"),
  9140. weight: math.unit(225, "lbs"),
  9141. name: "Leaning",
  9142. image: {
  9143. source: "./media/characters/daniel/leaning.svg"
  9144. }
  9145. },
  9146. },
  9147. [
  9148. {
  9149. name: "Macro",
  9150. height: math.unit(1000, "feet"),
  9151. default: true
  9152. },
  9153. ]
  9154. ))
  9155. characterMakers.push(() => makeCharacter(
  9156. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9157. {
  9158. front: {
  9159. height: math.unit(6, "feet"),
  9160. weight: math.unit(88, "lbs"),
  9161. name: "Front",
  9162. image: {
  9163. source: "./media/characters/chiros/front.svg",
  9164. extra: 306 / 226
  9165. }
  9166. },
  9167. side: {
  9168. height: math.unit(6, "feet"),
  9169. weight: math.unit(88, "lbs"),
  9170. name: "Side",
  9171. image: {
  9172. source: "./media/characters/chiros/side.svg",
  9173. extra: 306 / 226
  9174. }
  9175. },
  9176. },
  9177. [
  9178. {
  9179. name: "Normal",
  9180. height: math.unit(6, "cm"),
  9181. default: true
  9182. },
  9183. ]
  9184. ))
  9185. characterMakers.push(() => makeCharacter(
  9186. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9187. {
  9188. front: {
  9189. height: math.unit(6, "feet"),
  9190. weight: math.unit(100, "lbs"),
  9191. name: "Front",
  9192. image: {
  9193. source: "./media/characters/selka/front.svg",
  9194. extra: 947 / 887
  9195. }
  9196. }
  9197. },
  9198. [
  9199. {
  9200. name: "Normal",
  9201. height: math.unit(5, "cm"),
  9202. default: true
  9203. },
  9204. ]
  9205. ))
  9206. characterMakers.push(() => makeCharacter(
  9207. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9208. {
  9209. front: {
  9210. height: math.unit(8 + 3 / 12, "feet"),
  9211. weight: math.unit(424, "lbs"),
  9212. name: "Front",
  9213. image: {
  9214. source: "./media/characters/verin/front.svg",
  9215. extra: 1845 / 1550
  9216. }
  9217. },
  9218. frontArmored: {
  9219. height: math.unit(8 + 3 / 12, "feet"),
  9220. weight: math.unit(424, "lbs"),
  9221. name: "Front (Armored)",
  9222. image: {
  9223. source: "./media/characters/verin/front-armor.svg",
  9224. extra: 1845 / 1550,
  9225. bottom: 0.01
  9226. }
  9227. },
  9228. back: {
  9229. height: math.unit(8 + 3 / 12, "feet"),
  9230. weight: math.unit(424, "lbs"),
  9231. name: "Back",
  9232. image: {
  9233. source: "./media/characters/verin/back.svg",
  9234. bottom: 0.1,
  9235. extra: 1
  9236. }
  9237. },
  9238. foot: {
  9239. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9240. name: "Foot",
  9241. image: {
  9242. source: "./media/characters/verin/foot.svg"
  9243. }
  9244. },
  9245. },
  9246. [
  9247. {
  9248. name: "Normal",
  9249. height: math.unit(8 + 3 / 12, "feet")
  9250. },
  9251. {
  9252. name: "Minimacro",
  9253. height: math.unit(21, "feet"),
  9254. default: true
  9255. },
  9256. {
  9257. name: "Macro",
  9258. height: math.unit(626, "feet")
  9259. },
  9260. ]
  9261. ))
  9262. characterMakers.push(() => makeCharacter(
  9263. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9264. {
  9265. front: {
  9266. height: math.unit(2.718, "meters"),
  9267. weight: math.unit(150, "lbs"),
  9268. name: "Front",
  9269. image: {
  9270. source: "./media/characters/sovrim-terraquian/front.svg",
  9271. extra: 1752/1689,
  9272. bottom: 36/1788
  9273. }
  9274. },
  9275. back: {
  9276. height: math.unit(2.718, "meters"),
  9277. weight: math.unit(150, "lbs"),
  9278. name: "Back",
  9279. image: {
  9280. source: "./media/characters/sovrim-terraquian/back.svg",
  9281. extra: 1698/1657,
  9282. bottom: 58/1756
  9283. }
  9284. },
  9285. tongue: {
  9286. height: math.unit(2.865, "feet"),
  9287. name: "Tongue",
  9288. image: {
  9289. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9290. }
  9291. },
  9292. hand: {
  9293. height: math.unit(1.61, "feet"),
  9294. name: "Hand",
  9295. image: {
  9296. source: "./media/characters/sovrim-terraquian/hand.svg"
  9297. }
  9298. },
  9299. foot: {
  9300. height: math.unit(1.05, "feet"),
  9301. name: "Foot",
  9302. image: {
  9303. source: "./media/characters/sovrim-terraquian/foot.svg"
  9304. }
  9305. },
  9306. footAlt: {
  9307. height: math.unit(0.88, "feet"),
  9308. name: "Foot (Alt)",
  9309. image: {
  9310. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9311. }
  9312. },
  9313. },
  9314. [
  9315. {
  9316. name: "Micro",
  9317. height: math.unit(2, "inches")
  9318. },
  9319. {
  9320. name: "Small",
  9321. height: math.unit(1, "meter")
  9322. },
  9323. {
  9324. name: "Normal",
  9325. height: math.unit(Math.E, "meters"),
  9326. default: true
  9327. },
  9328. {
  9329. name: "Macro",
  9330. height: math.unit(20, "meters")
  9331. },
  9332. {
  9333. name: "Macro+",
  9334. height: math.unit(400, "meters")
  9335. },
  9336. ]
  9337. ))
  9338. characterMakers.push(() => makeCharacter(
  9339. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9340. {
  9341. front: {
  9342. height: math.unit(7, "feet"),
  9343. weight: math.unit(489, "lbs"),
  9344. name: "Front",
  9345. image: {
  9346. source: "./media/characters/reece-silvermane/front.svg",
  9347. bottom: 0.02,
  9348. extra: 1
  9349. }
  9350. },
  9351. },
  9352. [
  9353. {
  9354. name: "Macro",
  9355. height: math.unit(1.5, "miles"),
  9356. default: true
  9357. },
  9358. ]
  9359. ))
  9360. characterMakers.push(() => makeCharacter(
  9361. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9362. {
  9363. front: {
  9364. height: math.unit(6, "feet"),
  9365. weight: math.unit(78, "kg"),
  9366. name: "Front",
  9367. image: {
  9368. source: "./media/characters/kane/front.svg",
  9369. extra: 978 / 899
  9370. }
  9371. },
  9372. back: {
  9373. height: math.unit(6, "feet"),
  9374. weight: math.unit(78, "kg"),
  9375. name: "Back",
  9376. image: {
  9377. source: "./media/characters/kane/back.svg",
  9378. extra: 1966/1800,
  9379. bottom: 0/1966
  9380. }
  9381. },
  9382. head: {
  9383. height: math.unit(1.4, "feet"),
  9384. name: "Head",
  9385. image: {
  9386. source: "./media/characters/kane/head.svg"
  9387. }
  9388. },
  9389. },
  9390. [
  9391. {
  9392. name: "Normal",
  9393. height: math.unit(2.1, "m"),
  9394. },
  9395. {
  9396. name: "Macro",
  9397. height: math.unit(1, "km"),
  9398. default: true
  9399. },
  9400. ]
  9401. ))
  9402. characterMakers.push(() => makeCharacter(
  9403. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9404. {
  9405. front: {
  9406. height: math.unit(6, "feet"),
  9407. weight: math.unit(200, "kg"),
  9408. name: "Front",
  9409. image: {
  9410. source: "./media/characters/tegon/front.svg",
  9411. bottom: 0.01,
  9412. extra: 1
  9413. }
  9414. },
  9415. },
  9416. [
  9417. {
  9418. name: "Micro",
  9419. height: math.unit(1, "inch")
  9420. },
  9421. {
  9422. name: "Normal",
  9423. height: math.unit(6 + 3 / 12, "feet"),
  9424. default: true
  9425. },
  9426. {
  9427. name: "Macro",
  9428. height: math.unit(300, "feet")
  9429. },
  9430. {
  9431. name: "Megamacro",
  9432. height: math.unit(69, "miles")
  9433. },
  9434. ]
  9435. ))
  9436. characterMakers.push(() => makeCharacter(
  9437. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9438. {
  9439. side: {
  9440. height: math.unit(6, "feet"),
  9441. weight: math.unit(2304, "lbs"),
  9442. name: "Side",
  9443. image: {
  9444. source: "./media/characters/arcturax/side.svg",
  9445. extra: 790 / 376,
  9446. bottom: 0.01
  9447. }
  9448. },
  9449. },
  9450. [
  9451. {
  9452. name: "Micro",
  9453. height: math.unit(2, "inch")
  9454. },
  9455. {
  9456. name: "Normal",
  9457. height: math.unit(6, "feet")
  9458. },
  9459. {
  9460. name: "Macro",
  9461. height: math.unit(39, "feet"),
  9462. default: true
  9463. },
  9464. {
  9465. name: "Megamacro",
  9466. height: math.unit(7, "miles")
  9467. },
  9468. ]
  9469. ))
  9470. characterMakers.push(() => makeCharacter(
  9471. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9472. {
  9473. front: {
  9474. height: math.unit(6, "feet"),
  9475. weight: math.unit(50, "lbs"),
  9476. name: "Front",
  9477. image: {
  9478. source: "./media/characters/sentri/front.svg",
  9479. extra: 1750 / 1570,
  9480. bottom: 0.025
  9481. }
  9482. },
  9483. frontAlt: {
  9484. height: math.unit(6, "feet"),
  9485. weight: math.unit(50, "lbs"),
  9486. name: "Front (Alt)",
  9487. image: {
  9488. source: "./media/characters/sentri/front-alt.svg",
  9489. extra: 1750 / 1570,
  9490. bottom: 0.025
  9491. }
  9492. },
  9493. },
  9494. [
  9495. {
  9496. name: "Normal",
  9497. height: math.unit(15, "feet"),
  9498. default: true
  9499. },
  9500. {
  9501. name: "Macro",
  9502. height: math.unit(2500, "feet")
  9503. }
  9504. ]
  9505. ))
  9506. characterMakers.push(() => makeCharacter(
  9507. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9508. {
  9509. front: {
  9510. height: math.unit(5 + 8 / 12, "feet"),
  9511. weight: math.unit(130, "lbs"),
  9512. name: "Front",
  9513. image: {
  9514. source: "./media/characters/corvin/front.svg",
  9515. extra: 1803 / 1629
  9516. }
  9517. },
  9518. frontShirt: {
  9519. height: math.unit(5 + 8 / 12, "feet"),
  9520. weight: math.unit(130, "lbs"),
  9521. name: "Front (Shirt)",
  9522. image: {
  9523. source: "./media/characters/corvin/front-shirt.svg",
  9524. extra: 1803 / 1629
  9525. }
  9526. },
  9527. frontPoncho: {
  9528. height: math.unit(5 + 8 / 12, "feet"),
  9529. weight: math.unit(130, "lbs"),
  9530. name: "Front (Poncho)",
  9531. image: {
  9532. source: "./media/characters/corvin/front-poncho.svg",
  9533. extra: 1803 / 1629
  9534. }
  9535. },
  9536. side: {
  9537. height: math.unit(5 + 8 / 12, "feet"),
  9538. weight: math.unit(130, "lbs"),
  9539. name: "Side",
  9540. image: {
  9541. source: "./media/characters/corvin/side.svg",
  9542. extra: 1012 / 945
  9543. }
  9544. },
  9545. back: {
  9546. height: math.unit(5 + 8 / 12, "feet"),
  9547. weight: math.unit(130, "lbs"),
  9548. name: "Back",
  9549. image: {
  9550. source: "./media/characters/corvin/back.svg",
  9551. extra: 1803 / 1629
  9552. }
  9553. },
  9554. },
  9555. [
  9556. {
  9557. name: "Micro",
  9558. height: math.unit(3, "inches")
  9559. },
  9560. {
  9561. name: "Normal",
  9562. height: math.unit(5 + 8 / 12, "feet")
  9563. },
  9564. {
  9565. name: "Macro",
  9566. height: math.unit(300, "feet"),
  9567. default: true
  9568. },
  9569. {
  9570. name: "Megamacro",
  9571. height: math.unit(500, "miles")
  9572. }
  9573. ]
  9574. ))
  9575. characterMakers.push(() => makeCharacter(
  9576. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9577. {
  9578. front: {
  9579. height: math.unit(6, "feet"),
  9580. weight: math.unit(135, "lbs"),
  9581. name: "Front",
  9582. image: {
  9583. source: "./media/characters/q/front.svg",
  9584. extra: 854 / 752,
  9585. bottom: 0.005
  9586. }
  9587. },
  9588. back: {
  9589. height: math.unit(6, "feet"),
  9590. weight: math.unit(130, "lbs"),
  9591. name: "Back",
  9592. image: {
  9593. source: "./media/characters/q/back.svg",
  9594. extra: 854 / 752
  9595. }
  9596. },
  9597. },
  9598. [
  9599. {
  9600. name: "Macro",
  9601. height: math.unit(90, "feet"),
  9602. default: true
  9603. },
  9604. {
  9605. name: "Extra Macro",
  9606. height: math.unit(300, "feet"),
  9607. },
  9608. {
  9609. name: "BIG WALF",
  9610. height: math.unit(750, "feet"),
  9611. },
  9612. ]
  9613. ))
  9614. characterMakers.push(() => makeCharacter(
  9615. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9616. {
  9617. front: {
  9618. height: math.unit(3, "feet"),
  9619. weight: math.unit(28, "lbs"),
  9620. name: "Front",
  9621. image: {
  9622. source: "./media/characters/citrine/front.svg"
  9623. }
  9624. }
  9625. },
  9626. [
  9627. {
  9628. name: "Normal",
  9629. height: math.unit(3, "feet"),
  9630. default: true
  9631. }
  9632. ]
  9633. ))
  9634. characterMakers.push(() => makeCharacter(
  9635. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9636. {
  9637. front: {
  9638. height: math.unit(14, "feet"),
  9639. weight: math.unit(1450, "kg"),
  9640. preyCapacity: math.unit(15, "people"),
  9641. name: "Front",
  9642. image: {
  9643. source: "./media/characters/aura-starwind/front.svg",
  9644. extra: 1440/1327,
  9645. bottom: 11/1451
  9646. }
  9647. },
  9648. side: {
  9649. height: math.unit(14, "feet"),
  9650. weight: math.unit(1450, "kg"),
  9651. preyCapacity: math.unit(15, "people"),
  9652. name: "Side",
  9653. image: {
  9654. source: "./media/characters/aura-starwind/side.svg",
  9655. extra: 1654 / 1497
  9656. }
  9657. },
  9658. taur: {
  9659. height: math.unit(18, "feet"),
  9660. weight: math.unit(5500, "kg"),
  9661. preyCapacity: math.unit(50, "people"),
  9662. name: "Taur",
  9663. image: {
  9664. source: "./media/characters/aura-starwind/taur.svg",
  9665. extra: 1760 / 1650
  9666. }
  9667. },
  9668. feral: {
  9669. height: math.unit(46, "feet"),
  9670. weight: math.unit(25000, "kg"),
  9671. preyCapacity: math.unit(120, "people"),
  9672. name: "Feral",
  9673. image: {
  9674. source: "./media/characters/aura-starwind/feral.svg"
  9675. }
  9676. },
  9677. },
  9678. [
  9679. {
  9680. name: "Normal",
  9681. height: math.unit(14, "feet"),
  9682. default: true
  9683. },
  9684. {
  9685. name: "Macro",
  9686. height: math.unit(50, "meters")
  9687. },
  9688. {
  9689. name: "Megamacro",
  9690. height: math.unit(5000, "meters")
  9691. },
  9692. {
  9693. name: "Gigamacro",
  9694. height: math.unit(100000, "kilometers")
  9695. },
  9696. ]
  9697. ))
  9698. characterMakers.push(() => makeCharacter(
  9699. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9700. {
  9701. front: {
  9702. height: math.unit(2 + 7 / 12, "feet"),
  9703. weight: math.unit(32, "lbs"),
  9704. name: "Front",
  9705. image: {
  9706. source: "./media/characters/rivet/front.svg",
  9707. extra: 1716 / 1658,
  9708. bottom: 0.03
  9709. }
  9710. },
  9711. foot: {
  9712. height: math.unit(0.551, "feet"),
  9713. name: "Rivet's Foot",
  9714. image: {
  9715. source: "./media/characters/rivet/foot.svg"
  9716. },
  9717. rename: true
  9718. }
  9719. },
  9720. [
  9721. {
  9722. name: "Micro",
  9723. height: math.unit(1.5, "inches"),
  9724. },
  9725. {
  9726. name: "Normal",
  9727. height: math.unit(2 + 7 / 12, "feet"),
  9728. default: true
  9729. },
  9730. {
  9731. name: "Macro",
  9732. height: math.unit(85, "feet")
  9733. },
  9734. {
  9735. name: "Megamacro",
  9736. height: math.unit(2.2, "km")
  9737. }
  9738. ]
  9739. ))
  9740. characterMakers.push(() => makeCharacter(
  9741. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9742. {
  9743. front: {
  9744. height: math.unit(5 + 9 / 12, "feet"),
  9745. weight: math.unit(150, "lbs"),
  9746. name: "Front",
  9747. image: {
  9748. source: "./media/characters/coffee/front.svg",
  9749. extra: 946/880,
  9750. bottom: 66/1012
  9751. }
  9752. },
  9753. foot: {
  9754. height: math.unit(1.29, "feet"),
  9755. name: "Foot",
  9756. image: {
  9757. source: "./media/characters/coffee/foot.svg"
  9758. }
  9759. },
  9760. },
  9761. [
  9762. {
  9763. name: "Micro",
  9764. height: math.unit(2, "inches"),
  9765. },
  9766. {
  9767. name: "Normal",
  9768. height: math.unit(5 + 9 / 12, "feet"),
  9769. default: true
  9770. },
  9771. {
  9772. name: "Macro",
  9773. height: math.unit(800, "feet")
  9774. },
  9775. {
  9776. name: "Megamacro",
  9777. height: math.unit(25, "miles")
  9778. }
  9779. ]
  9780. ))
  9781. characterMakers.push(() => makeCharacter(
  9782. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9783. {
  9784. front: {
  9785. height: math.unit(6, "feet"),
  9786. weight: math.unit(200, "lbs"),
  9787. name: "Front",
  9788. image: {
  9789. source: "./media/characters/chari-gal/front.svg",
  9790. extra: 735/649,
  9791. bottom: 55/790
  9792. },
  9793. form: "normal",
  9794. default: true
  9795. },
  9796. back: {
  9797. height: math.unit(6, "feet"),
  9798. weight: math.unit(200, "lb"),
  9799. name: "Back",
  9800. image: {
  9801. source: "./media/characters/chari-gal/back.svg",
  9802. extra: 762/666,
  9803. bottom: 31/793
  9804. },
  9805. form: "normal"
  9806. },
  9807. mouth: {
  9808. height: math.unit(1.35, "feet"),
  9809. name: "Mouth",
  9810. image: {
  9811. source: "./media/characters/chari-gal/mouth.svg"
  9812. },
  9813. form: "normal"
  9814. },
  9815. gigantamax: {
  9816. height: math.unit(6 * 16, "feet"),
  9817. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9818. name: "Gigantamax",
  9819. image: {
  9820. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9821. extra: 1507/1149,
  9822. bottom: 254/1761
  9823. },
  9824. form: "gigantamax",
  9825. default: true
  9826. },
  9827. },
  9828. [
  9829. {
  9830. name: "Normal",
  9831. height: math.unit(5 + 7 / 12, "feet"),
  9832. form: "normal",
  9833. },
  9834. {
  9835. name: "Macro",
  9836. height: math.unit(200, "feet"),
  9837. default: true,
  9838. form: "normal"
  9839. },
  9840. {
  9841. name: "Normal",
  9842. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9843. form: "gigantamax",
  9844. },
  9845. {
  9846. name: "Macro",
  9847. height: math.unit(16 * 200, "feet"),
  9848. default: true,
  9849. form: "gigantamax"
  9850. },
  9851. ],
  9852. {
  9853. "normal": {
  9854. name: "Normal",
  9855. default: true
  9856. },
  9857. "gigantamax": {
  9858. name: "Gigantamax",
  9859. },
  9860. }
  9861. ))
  9862. characterMakers.push(() => makeCharacter(
  9863. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9864. {
  9865. front: {
  9866. height: math.unit(6, "feet"),
  9867. weight: math.unit(150, "lbs"),
  9868. name: "Front",
  9869. image: {
  9870. source: "./media/characters/nova/front.svg",
  9871. extra: 5000 / 4722,
  9872. bottom: 0.02
  9873. }
  9874. }
  9875. },
  9876. [
  9877. {
  9878. name: "Micro-",
  9879. height: math.unit(0.8, "inches")
  9880. },
  9881. {
  9882. name: "Micro",
  9883. height: math.unit(2, "inches"),
  9884. default: true
  9885. },
  9886. ]
  9887. ))
  9888. characterMakers.push(() => makeCharacter(
  9889. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9890. {
  9891. koboldFront: {
  9892. height: math.unit(3 + 1 / 12, "feet"),
  9893. weight: math.unit(21.7, "lbs"),
  9894. name: "Front",
  9895. image: {
  9896. source: "./media/characters/argent/kobold-front.svg",
  9897. extra: 1471 / 1331,
  9898. bottom: 100.8 / 1575.5
  9899. },
  9900. form: "kobold",
  9901. default: true
  9902. },
  9903. dragonFront: {
  9904. height: math.unit(75, "inches"),
  9905. name: "Front",
  9906. image: {
  9907. source: "./media/characters/argent/dragon-front.svg",
  9908. extra: 1389/1248,
  9909. bottom: 54/1443
  9910. },
  9911. form: "dragon",
  9912. },
  9913. dragonBack: {
  9914. height: math.unit(75, "inches"),
  9915. name: "Back",
  9916. image: {
  9917. source: "./media/characters/argent/dragon-back.svg",
  9918. extra: 1399/1271,
  9919. bottom: 23/1422
  9920. },
  9921. form: "dragon",
  9922. },
  9923. dragonDressed: {
  9924. height: math.unit(75, "inches"),
  9925. name: "Dressed",
  9926. image: {
  9927. source: "./media/characters/argent/dragon-dressed.svg",
  9928. extra: 1350/1215,
  9929. bottom: 26/1376
  9930. },
  9931. form: "dragon"
  9932. },
  9933. dragonHead: {
  9934. height: math.unit(23.5, "inches"),
  9935. name: "Head",
  9936. image: {
  9937. source: "./media/characters/argent/dragon-head.svg"
  9938. },
  9939. form: "dragon",
  9940. },
  9941. },
  9942. [
  9943. {
  9944. name: "Micro",
  9945. height: math.unit(2, "inches"),
  9946. form: "kobold",
  9947. },
  9948. {
  9949. name: "Normal",
  9950. height: math.unit(3 + 1 / 12, "feet"),
  9951. form: "kobold",
  9952. default: true
  9953. },
  9954. {
  9955. name: "Macro",
  9956. height: math.unit(120, "feet"),
  9957. form: "kobold",
  9958. },
  9959. {
  9960. name: "Speck",
  9961. height: math.unit(1, "mm"),
  9962. form: "dragon",
  9963. },
  9964. {
  9965. name: "Tiny",
  9966. height: math.unit(1, "cm"),
  9967. form: "dragon",
  9968. },
  9969. {
  9970. name: "Micro",
  9971. height: math.unit(5, "cm"),
  9972. form: "dragon",
  9973. },
  9974. {
  9975. name: "Normal",
  9976. height: math.unit(75, "inches"),
  9977. form: "dragon",
  9978. default: true
  9979. },
  9980. {
  9981. name: "Extra Tall",
  9982. height: math.unit(9, "feet"),
  9983. form: "dragon",
  9984. },
  9985. {
  9986. name: "Inconvenient",
  9987. height: math.unit(5, "meters"),
  9988. form: "dragon",
  9989. },
  9990. {
  9991. name: "Macro",
  9992. height: math.unit(70, "meters"),
  9993. form: "dragon",
  9994. },
  9995. {
  9996. name: "Macro+",
  9997. height: math.unit(250, "meters"),
  9998. form: "dragon",
  9999. },
  10000. {
  10001. name: "Megamacro",
  10002. height: math.unit(20, "km"),
  10003. form: "dragon",
  10004. },
  10005. {
  10006. name: "Mountainous",
  10007. height: math.unit(100, "km"),
  10008. form: "dragon",
  10009. },
  10010. {
  10011. name: "Continental",
  10012. height: math.unit(2, "megameters"),
  10013. form: "dragon",
  10014. },
  10015. {
  10016. name: "Too Big",
  10017. height: math.unit(900, "megameters"),
  10018. form: "dragon",
  10019. },
  10020. ],
  10021. {
  10022. "kobold": {
  10023. name: "Kobold",
  10024. default: true
  10025. },
  10026. "dragon": {
  10027. name: "Dragon",
  10028. },
  10029. }
  10030. ))
  10031. characterMakers.push(() => makeCharacter(
  10032. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10033. {
  10034. lamp: {
  10035. height: math.unit(7 * 1559 / 989, "feet"),
  10036. name: "Magic Lamp",
  10037. image: {
  10038. source: "./media/characters/mira-al-cul/lamp.svg",
  10039. extra: 1617 / 1559
  10040. }
  10041. },
  10042. front: {
  10043. height: math.unit(7, "feet"),
  10044. name: "Front",
  10045. image: {
  10046. source: "./media/characters/mira-al-cul/front.svg",
  10047. extra: 1044 / 990
  10048. }
  10049. },
  10050. },
  10051. [
  10052. {
  10053. name: "Heavily Restricted",
  10054. height: math.unit(7 * 1559 / 989, "feet")
  10055. },
  10056. {
  10057. name: "Freshly Freed",
  10058. height: math.unit(50 * 1559 / 989, "feet")
  10059. },
  10060. {
  10061. name: "World Encompassing",
  10062. height: math.unit(10000 * 1559 / 989, "miles")
  10063. },
  10064. {
  10065. name: "Galactic",
  10066. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10067. },
  10068. {
  10069. name: "Palmed Universe",
  10070. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10071. default: true
  10072. },
  10073. {
  10074. name: "Multiversal Matriarch",
  10075. height: math.unit(8.87e10, "yottameters")
  10076. },
  10077. {
  10078. name: "Void Mother",
  10079. height: math.unit(3.14e110, "yottaparsecs")
  10080. },
  10081. {
  10082. name: "Toying with Transcendence",
  10083. height: math.unit(1e307, "meters")
  10084. },
  10085. ]
  10086. ))
  10087. characterMakers.push(() => makeCharacter(
  10088. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10089. {
  10090. front: {
  10091. height: math.unit(17 + 1 / 12, "feet"),
  10092. weight: math.unit(476.2 * 5, "lbs"),
  10093. name: "Front",
  10094. image: {
  10095. source: "./media/characters/kuro-shi-uchū/front.svg",
  10096. extra: 2329 / 1835,
  10097. bottom: 0.02
  10098. }
  10099. },
  10100. },
  10101. [
  10102. {
  10103. name: "Micro",
  10104. height: math.unit(2, "inches")
  10105. },
  10106. {
  10107. name: "Normal",
  10108. height: math.unit(12, "meters")
  10109. },
  10110. {
  10111. name: "Planetary",
  10112. height: math.unit(0.00929, "AU"),
  10113. default: true
  10114. },
  10115. {
  10116. name: "Universal",
  10117. height: math.unit(20, "gigaparsecs")
  10118. },
  10119. ]
  10120. ))
  10121. characterMakers.push(() => makeCharacter(
  10122. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10123. {
  10124. front: {
  10125. height: math.unit(5 + 2 / 12, "feet"),
  10126. weight: math.unit(120, "lbs"),
  10127. name: "Front",
  10128. image: {
  10129. source: "./media/characters/katherine/front.svg",
  10130. extra: 2075 / 1969
  10131. }
  10132. },
  10133. dress: {
  10134. height: math.unit(5 + 2 / 12, "feet"),
  10135. weight: math.unit(120, "lbs"),
  10136. name: "Dress",
  10137. image: {
  10138. source: "./media/characters/katherine/dress.svg",
  10139. extra: 2258 / 2064
  10140. }
  10141. },
  10142. },
  10143. [
  10144. {
  10145. name: "Micro",
  10146. height: math.unit(1, "inches"),
  10147. default: true
  10148. },
  10149. {
  10150. name: "Normal",
  10151. height: math.unit(5 + 2 / 12, "feet")
  10152. },
  10153. {
  10154. name: "Macro",
  10155. height: math.unit(100, "meters")
  10156. },
  10157. {
  10158. name: "Megamacro",
  10159. height: math.unit(80, "miles")
  10160. },
  10161. ]
  10162. ))
  10163. characterMakers.push(() => makeCharacter(
  10164. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10165. {
  10166. front: {
  10167. height: math.unit(7 + 8 / 12, "feet"),
  10168. weight: math.unit(250, "lbs"),
  10169. name: "Front",
  10170. image: {
  10171. source: "./media/characters/yevis/front.svg",
  10172. extra: 1938 / 1755
  10173. }
  10174. }
  10175. },
  10176. [
  10177. {
  10178. name: "Mortal",
  10179. height: math.unit(7 + 8 / 12, "feet")
  10180. },
  10181. {
  10182. name: "Battle",
  10183. height: math.unit(25 + 11 / 12, "feet")
  10184. },
  10185. {
  10186. name: "Wrath",
  10187. height: math.unit(1654 + 11 / 12, "feet")
  10188. },
  10189. {
  10190. name: "Planet Destroyer",
  10191. height: math.unit(12000, "miles")
  10192. },
  10193. {
  10194. name: "Galaxy Conqueror",
  10195. height: math.unit(1.45, "zettameters"),
  10196. default: true
  10197. },
  10198. {
  10199. name: "Universal War",
  10200. height: math.unit(184, "gigaparsecs")
  10201. },
  10202. {
  10203. name: "Eternity War",
  10204. height: math.unit(1.98e55, "yottaparsecs")
  10205. },
  10206. ]
  10207. ))
  10208. characterMakers.push(() => makeCharacter(
  10209. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10210. {
  10211. front: {
  10212. height: math.unit(5 + 8 / 12, "feet"),
  10213. weight: math.unit(63, "kg"),
  10214. name: "Front",
  10215. image: {
  10216. source: "./media/characters/xavier/front.svg",
  10217. extra: 944 / 883
  10218. }
  10219. },
  10220. frontStretch: {
  10221. height: math.unit(5 + 8 / 12, "feet"),
  10222. weight: math.unit(63, "kg"),
  10223. name: "Stretching",
  10224. image: {
  10225. source: "./media/characters/xavier/front-stretch.svg",
  10226. extra: 962 / 820
  10227. }
  10228. },
  10229. },
  10230. [
  10231. {
  10232. name: "Normal",
  10233. height: math.unit(5 + 8 / 12, "feet")
  10234. },
  10235. {
  10236. name: "Macro",
  10237. height: math.unit(100, "meters"),
  10238. default: true
  10239. },
  10240. {
  10241. name: "McLargeHuge",
  10242. height: math.unit(10, "miles")
  10243. },
  10244. ]
  10245. ))
  10246. characterMakers.push(() => makeCharacter(
  10247. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10248. {
  10249. front: {
  10250. height: math.unit(5 + 5 / 12, "feet"),
  10251. weight: math.unit(150, "lb"),
  10252. name: "Front",
  10253. image: {
  10254. source: "./media/characters/joshii/front.svg",
  10255. extra: 765 / 653,
  10256. bottom: 51 / 816
  10257. }
  10258. },
  10259. foot: {
  10260. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10261. name: "Foot",
  10262. image: {
  10263. source: "./media/characters/joshii/foot.svg"
  10264. }
  10265. },
  10266. },
  10267. [
  10268. {
  10269. name: "Micro",
  10270. height: math.unit(2, "inches")
  10271. },
  10272. {
  10273. name: "Normal",
  10274. height: math.unit(5 + 5 / 12, "feet")
  10275. },
  10276. {
  10277. name: "Macro",
  10278. height: math.unit(785, "feet"),
  10279. default: true
  10280. },
  10281. {
  10282. name: "Megamacro",
  10283. height: math.unit(24.5, "miles")
  10284. },
  10285. ]
  10286. ))
  10287. characterMakers.push(() => makeCharacter(
  10288. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10289. {
  10290. front: {
  10291. height: math.unit(6, "feet"),
  10292. weight: math.unit(150, "lb"),
  10293. name: "Front",
  10294. image: {
  10295. source: "./media/characters/goddess-elizabeth/front.svg",
  10296. extra: 1800 / 1525,
  10297. bottom: 0.005
  10298. }
  10299. },
  10300. foot: {
  10301. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10302. name: "Foot",
  10303. image: {
  10304. source: "./media/characters/goddess-elizabeth/foot.svg"
  10305. }
  10306. },
  10307. mouth: {
  10308. height: math.unit(6, "feet"),
  10309. name: "Mouth",
  10310. image: {
  10311. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10312. }
  10313. },
  10314. },
  10315. [
  10316. {
  10317. name: "Micro",
  10318. height: math.unit(12, "feet")
  10319. },
  10320. {
  10321. name: "Normal",
  10322. height: math.unit(80, "miles"),
  10323. default: true
  10324. },
  10325. {
  10326. name: "Macro",
  10327. height: math.unit(15000, "parsecs")
  10328. },
  10329. ]
  10330. ))
  10331. characterMakers.push(() => makeCharacter(
  10332. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10333. {
  10334. front: {
  10335. height: math.unit(5 + 9 / 12, "feet"),
  10336. weight: math.unit(144, "lb"),
  10337. name: "Front",
  10338. image: {
  10339. source: "./media/characters/kara/front.svg"
  10340. }
  10341. },
  10342. feet: {
  10343. height: math.unit(6 / 6.765, "feet"),
  10344. name: "Kara's Feet",
  10345. rename: true,
  10346. image: {
  10347. source: "./media/characters/kara/feet.svg"
  10348. }
  10349. },
  10350. },
  10351. [
  10352. {
  10353. name: "Normal",
  10354. height: math.unit(5 + 9 / 12, "feet")
  10355. },
  10356. {
  10357. name: "Macro",
  10358. height: math.unit(174, "feet"),
  10359. default: true
  10360. },
  10361. ]
  10362. ))
  10363. characterMakers.push(() => makeCharacter(
  10364. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10365. {
  10366. front: {
  10367. height: math.unit(18, "feet"),
  10368. weight: math.unit(4050, "lb"),
  10369. name: "Front",
  10370. image: {
  10371. source: "./media/characters/tyrone/front.svg",
  10372. extra: 2405 / 2270,
  10373. bottom: 182 / 2587
  10374. }
  10375. },
  10376. },
  10377. [
  10378. {
  10379. name: "Normal",
  10380. height: math.unit(18, "feet"),
  10381. default: true
  10382. },
  10383. {
  10384. name: "Macro",
  10385. height: math.unit(300, "feet")
  10386. },
  10387. {
  10388. name: "Megamacro",
  10389. height: math.unit(15, "km")
  10390. },
  10391. {
  10392. name: "Gigamacro",
  10393. height: math.unit(500, "km")
  10394. },
  10395. {
  10396. name: "Teramacro",
  10397. height: math.unit(0.5, "gigameters")
  10398. },
  10399. {
  10400. name: "Omnimacro",
  10401. height: math.unit(1e252, "yottauniverse")
  10402. },
  10403. ]
  10404. ))
  10405. characterMakers.push(() => makeCharacter(
  10406. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10407. {
  10408. front: {
  10409. height: math.unit(7 + 8 / 12, "feet"),
  10410. weight: math.unit(120, "lb"),
  10411. name: "Front",
  10412. image: {
  10413. source: "./media/characters/danny/front.svg",
  10414. extra: 1490 / 1350
  10415. }
  10416. },
  10417. back: {
  10418. height: math.unit(7 + 8 / 12, "feet"),
  10419. weight: math.unit(120, "lb"),
  10420. name: "Back",
  10421. image: {
  10422. source: "./media/characters/danny/back.svg",
  10423. extra: 1490 / 1350
  10424. }
  10425. },
  10426. },
  10427. [
  10428. {
  10429. name: "Normal",
  10430. height: math.unit(7 + 8 / 12, "feet"),
  10431. default: true
  10432. },
  10433. ]
  10434. ))
  10435. characterMakers.push(() => makeCharacter(
  10436. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10437. {
  10438. front: {
  10439. height: math.unit(3.5, "inches"),
  10440. weight: math.unit(19, "grams"),
  10441. name: "Front",
  10442. image: {
  10443. source: "./media/characters/mallow/front.svg",
  10444. extra: 471 / 431
  10445. }
  10446. },
  10447. back: {
  10448. height: math.unit(3.5, "inches"),
  10449. weight: math.unit(19, "grams"),
  10450. name: "Back",
  10451. image: {
  10452. source: "./media/characters/mallow/back.svg",
  10453. extra: 471 / 431
  10454. }
  10455. },
  10456. },
  10457. [
  10458. {
  10459. name: "Normal",
  10460. height: math.unit(3.5, "inches"),
  10461. default: true
  10462. },
  10463. ]
  10464. ))
  10465. characterMakers.push(() => makeCharacter(
  10466. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10467. {
  10468. front: {
  10469. height: math.unit(9, "feet"),
  10470. weight: math.unit(230, "kg"),
  10471. name: "Front",
  10472. image: {
  10473. source: "./media/characters/starry-aqua/front.svg"
  10474. }
  10475. },
  10476. back: {
  10477. height: math.unit(9, "feet"),
  10478. weight: math.unit(230, "kg"),
  10479. name: "Back",
  10480. image: {
  10481. source: "./media/characters/starry-aqua/back.svg"
  10482. }
  10483. },
  10484. hand: {
  10485. height: math.unit(9 * 0.1168, "feet"),
  10486. name: "Hand",
  10487. image: {
  10488. source: "./media/characters/starry-aqua/hand.svg"
  10489. }
  10490. },
  10491. foot: {
  10492. height: math.unit(9 * 0.18, "feet"),
  10493. name: "Foot",
  10494. image: {
  10495. source: "./media/characters/starry-aqua/foot.svg"
  10496. }
  10497. }
  10498. },
  10499. [
  10500. {
  10501. name: "Micro",
  10502. height: math.unit(3, "inches")
  10503. },
  10504. {
  10505. name: "Normal",
  10506. height: math.unit(9, "feet")
  10507. },
  10508. {
  10509. name: "Macro",
  10510. height: math.unit(300, "feet"),
  10511. default: true
  10512. },
  10513. {
  10514. name: "Megamacro",
  10515. height: math.unit(3200, "feet")
  10516. }
  10517. ]
  10518. ))
  10519. characterMakers.push(() => makeCharacter(
  10520. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10521. {
  10522. front: {
  10523. height: math.unit(15, "feet"),
  10524. weight: math.unit(5026, "lb"),
  10525. name: "Front",
  10526. image: {
  10527. source: "./media/characters/luka-towers/front.svg",
  10528. extra: 1269/1133,
  10529. bottom: 51/1320
  10530. }
  10531. },
  10532. },
  10533. [
  10534. {
  10535. name: "Normal",
  10536. height: math.unit(15, "feet"),
  10537. default: true
  10538. },
  10539. {
  10540. name: "Minimacro",
  10541. height: math.unit(25, "feet")
  10542. },
  10543. {
  10544. name: "Macro",
  10545. height: math.unit(320, "feet")
  10546. },
  10547. {
  10548. name: "Megamacro",
  10549. height: math.unit(35000, "feet")
  10550. },
  10551. {
  10552. name: "Gigamacro",
  10553. height: math.unit(4000, "miles")
  10554. },
  10555. {
  10556. name: "Teramacro",
  10557. height: math.unit(15000, "miles")
  10558. },
  10559. ]
  10560. ))
  10561. characterMakers.push(() => makeCharacter(
  10562. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10563. {
  10564. front: {
  10565. height: math.unit(6, "feet"),
  10566. weight: math.unit(150, "lb"),
  10567. name: "Front",
  10568. image: {
  10569. source: "./media/characters/natalie-nightring/front.svg",
  10570. extra: 1,
  10571. bottom: 0.06
  10572. }
  10573. },
  10574. },
  10575. [
  10576. {
  10577. name: "Uh Oh",
  10578. height: math.unit(0.1, "mm")
  10579. },
  10580. {
  10581. name: "Small",
  10582. height: math.unit(3, "inches")
  10583. },
  10584. {
  10585. name: "Human Scale",
  10586. height: math.unit(6, "feet")
  10587. },
  10588. {
  10589. name: "Librarian",
  10590. height: math.unit(50, "feet"),
  10591. default: true
  10592. },
  10593. {
  10594. name: "Immense",
  10595. height: math.unit(200, "miles")
  10596. },
  10597. ]
  10598. ))
  10599. characterMakers.push(() => makeCharacter(
  10600. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10601. {
  10602. front: {
  10603. height: math.unit(6, "feet"),
  10604. weight: math.unit(180, "lbs"),
  10605. name: "Front",
  10606. image: {
  10607. source: "./media/characters/danni-rosie/front.svg",
  10608. extra: 1260 / 1128,
  10609. bottom: 0.022
  10610. }
  10611. },
  10612. },
  10613. [
  10614. {
  10615. name: "Micro",
  10616. height: math.unit(2, "inches"),
  10617. default: true
  10618. },
  10619. ]
  10620. ))
  10621. characterMakers.push(() => makeCharacter(
  10622. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10623. {
  10624. front: {
  10625. height: math.unit(5 + 9 / 12, "feet"),
  10626. weight: math.unit(220, "lb"),
  10627. name: "Front",
  10628. image: {
  10629. source: "./media/characters/samantha-kruse/front.svg",
  10630. extra: (985 / 935),
  10631. bottom: 0.03
  10632. }
  10633. },
  10634. frontUndressed: {
  10635. height: math.unit(5 + 9 / 12, "feet"),
  10636. weight: math.unit(220, "lb"),
  10637. name: "Front (Undressed)",
  10638. image: {
  10639. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10640. extra: (973 / 923),
  10641. bottom: 0.025
  10642. }
  10643. },
  10644. fat: {
  10645. height: math.unit(5 + 9 / 12, "feet"),
  10646. weight: math.unit(900, "lb"),
  10647. name: "Front (Fat)",
  10648. image: {
  10649. source: "./media/characters/samantha-kruse/fat.svg",
  10650. extra: 2688 / 2561
  10651. }
  10652. },
  10653. },
  10654. [
  10655. {
  10656. name: "Normal",
  10657. height: math.unit(5 + 9 / 12, "feet"),
  10658. default: true
  10659. }
  10660. ]
  10661. ))
  10662. characterMakers.push(() => makeCharacter(
  10663. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10664. {
  10665. back: {
  10666. height: math.unit(5 + 4 / 12, "feet"),
  10667. weight: math.unit(4963, "lb"),
  10668. name: "Back",
  10669. image: {
  10670. source: "./media/characters/amelia-rosie/back.svg",
  10671. extra: 1113 / 963,
  10672. bottom: 0.01
  10673. }
  10674. },
  10675. },
  10676. [
  10677. {
  10678. name: "Level 0",
  10679. height: math.unit(5 + 4 / 12, "feet")
  10680. },
  10681. {
  10682. name: "Level 1",
  10683. height: math.unit(164597, "feet"),
  10684. default: true
  10685. },
  10686. {
  10687. name: "Level 2",
  10688. height: math.unit(956243, "miles")
  10689. },
  10690. {
  10691. name: "Level 3",
  10692. height: math.unit(29421709423, "miles")
  10693. },
  10694. {
  10695. name: "Level 4",
  10696. height: math.unit(154, "lightyears")
  10697. },
  10698. {
  10699. name: "Level 5",
  10700. height: math.unit(4738272, "lightyears")
  10701. },
  10702. {
  10703. name: "Level 6",
  10704. height: math.unit(145787152896, "lightyears")
  10705. },
  10706. ]
  10707. ))
  10708. characterMakers.push(() => makeCharacter(
  10709. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10710. {
  10711. front: {
  10712. height: math.unit(5 + 11 / 12, "feet"),
  10713. weight: math.unit(65, "kg"),
  10714. name: "Front",
  10715. image: {
  10716. source: "./media/characters/rook-kitara/front.svg",
  10717. extra: 1347 / 1274,
  10718. bottom: 0.005
  10719. }
  10720. },
  10721. },
  10722. [
  10723. {
  10724. name: "Totally Unfair",
  10725. height: math.unit(1.8, "mm")
  10726. },
  10727. {
  10728. name: "Lap Rookie",
  10729. height: math.unit(1.4, "feet")
  10730. },
  10731. {
  10732. name: "Normal",
  10733. height: math.unit(5 + 11 / 12, "feet"),
  10734. default: true
  10735. },
  10736. {
  10737. name: "How Did This Happen",
  10738. height: math.unit(80, "miles")
  10739. }
  10740. ]
  10741. ))
  10742. characterMakers.push(() => makeCharacter(
  10743. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10744. {
  10745. front: {
  10746. height: math.unit(7, "feet"),
  10747. weight: math.unit(300, "lb"),
  10748. name: "Front",
  10749. image: {
  10750. source: "./media/characters/pisces/front.svg",
  10751. extra: 2255 / 2115,
  10752. bottom: 0.03
  10753. }
  10754. },
  10755. back: {
  10756. height: math.unit(7, "feet"),
  10757. weight: math.unit(300, "lb"),
  10758. name: "Back",
  10759. image: {
  10760. source: "./media/characters/pisces/back.svg",
  10761. extra: 2146 / 2055,
  10762. bottom: 0.04
  10763. }
  10764. },
  10765. },
  10766. [
  10767. {
  10768. name: "Normal",
  10769. height: math.unit(7, "feet"),
  10770. default: true
  10771. },
  10772. {
  10773. name: "Swimming Pool",
  10774. height: math.unit(12.2, "meters")
  10775. },
  10776. {
  10777. name: "Olympic Swimming Pool",
  10778. height: math.unit(56.3, "meters")
  10779. },
  10780. {
  10781. name: "Lake Superior",
  10782. height: math.unit(93900, "meters")
  10783. },
  10784. {
  10785. name: "Mediterranean Sea",
  10786. height: math.unit(644457, "meters")
  10787. },
  10788. {
  10789. name: "World's Oceans",
  10790. height: math.unit(4567491, "meters")
  10791. },
  10792. ]
  10793. ))
  10794. characterMakers.push(() => makeCharacter(
  10795. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10796. {
  10797. front: {
  10798. height: math.unit(2.3, "meters"),
  10799. weight: math.unit(120, "kg"),
  10800. name: "Front",
  10801. image: {
  10802. source: "./media/characters/zelas/front.svg"
  10803. }
  10804. },
  10805. side: {
  10806. height: math.unit(2.3, "meters"),
  10807. weight: math.unit(120, "kg"),
  10808. name: "Side",
  10809. image: {
  10810. source: "./media/characters/zelas/side.svg"
  10811. }
  10812. },
  10813. back: {
  10814. height: math.unit(2.3, "meters"),
  10815. weight: math.unit(120, "kg"),
  10816. name: "Back",
  10817. image: {
  10818. source: "./media/characters/zelas/back.svg"
  10819. }
  10820. },
  10821. foot: {
  10822. height: math.unit(1.116, "feet"),
  10823. name: "Foot",
  10824. image: {
  10825. source: "./media/characters/zelas/foot.svg"
  10826. }
  10827. },
  10828. },
  10829. [
  10830. {
  10831. name: "Normal",
  10832. height: math.unit(2.3, "meters")
  10833. },
  10834. {
  10835. name: "Macro",
  10836. height: math.unit(30, "meters"),
  10837. default: true
  10838. },
  10839. ]
  10840. ))
  10841. characterMakers.push(() => makeCharacter(
  10842. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10843. {
  10844. front: {
  10845. height: math.unit(1, "inch"),
  10846. weight: math.unit(0.21, "grams"),
  10847. name: "Front",
  10848. image: {
  10849. source: "./media/characters/talbot/front.svg",
  10850. extra: 594 / 544
  10851. }
  10852. },
  10853. },
  10854. [
  10855. {
  10856. name: "Micro",
  10857. height: math.unit(1, "inch"),
  10858. default: true
  10859. },
  10860. ]
  10861. ))
  10862. characterMakers.push(() => makeCharacter(
  10863. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10864. {
  10865. front: {
  10866. height: math.unit(3 + 3 / 12, "feet"),
  10867. weight: math.unit(51.8, "lb"),
  10868. name: "Front",
  10869. image: {
  10870. source: "./media/characters/fliss/front.svg",
  10871. extra: 840 / 640
  10872. }
  10873. },
  10874. },
  10875. [
  10876. {
  10877. name: "Teeny Tiny",
  10878. height: math.unit(1, "mm")
  10879. },
  10880. {
  10881. name: "Small",
  10882. height: math.unit(1, "inch"),
  10883. default: true
  10884. },
  10885. {
  10886. name: "Standard Sylveon",
  10887. height: math.unit(3 + 3 / 12, "feet")
  10888. },
  10889. {
  10890. name: "Large Nuisance",
  10891. height: math.unit(33, "feet")
  10892. },
  10893. {
  10894. name: "City Filler",
  10895. height: math.unit(3000, "feet")
  10896. },
  10897. {
  10898. name: "New Horizon",
  10899. height: math.unit(6000, "miles")
  10900. },
  10901. ]
  10902. ))
  10903. characterMakers.push(() => makeCharacter(
  10904. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10905. {
  10906. front: {
  10907. height: math.unit(5, "cm"),
  10908. weight: math.unit(1.94, "g"),
  10909. name: "Front",
  10910. image: {
  10911. source: "./media/characters/fleta/front.svg",
  10912. extra: 835 / 803
  10913. }
  10914. },
  10915. back: {
  10916. height: math.unit(5, "cm"),
  10917. weight: math.unit(1.94, "g"),
  10918. name: "Back",
  10919. image: {
  10920. source: "./media/characters/fleta/back.svg",
  10921. extra: 835 / 803
  10922. }
  10923. },
  10924. },
  10925. [
  10926. {
  10927. name: "Micro",
  10928. height: math.unit(5, "cm"),
  10929. default: true
  10930. },
  10931. ]
  10932. ))
  10933. characterMakers.push(() => makeCharacter(
  10934. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10935. {
  10936. front: {
  10937. height: math.unit(6, "feet"),
  10938. weight: math.unit(225, "lb"),
  10939. name: "Front",
  10940. image: {
  10941. source: "./media/characters/dominic/front.svg",
  10942. extra: 1770 / 1620,
  10943. bottom: 0.025
  10944. }
  10945. },
  10946. back: {
  10947. height: math.unit(6, "feet"),
  10948. weight: math.unit(225, "lb"),
  10949. name: "Back",
  10950. image: {
  10951. source: "./media/characters/dominic/back.svg",
  10952. extra: 1745 / 1620,
  10953. bottom: 0.065
  10954. }
  10955. },
  10956. },
  10957. [
  10958. {
  10959. name: "Nano",
  10960. height: math.unit(0.1, "mm")
  10961. },
  10962. {
  10963. name: "Micro-",
  10964. height: math.unit(1, "mm")
  10965. },
  10966. {
  10967. name: "Micro",
  10968. height: math.unit(4, "inches")
  10969. },
  10970. {
  10971. name: "Normal",
  10972. height: math.unit(6 + 4 / 12, "feet"),
  10973. default: true
  10974. },
  10975. {
  10976. name: "Macro",
  10977. height: math.unit(115, "feet")
  10978. },
  10979. {
  10980. name: "Macro+",
  10981. height: math.unit(955, "feet")
  10982. },
  10983. {
  10984. name: "Megamacro",
  10985. height: math.unit(8990, "feet")
  10986. },
  10987. {
  10988. name: "Gigmacro",
  10989. height: math.unit(9310, "miles")
  10990. },
  10991. {
  10992. name: "Teramacro",
  10993. height: math.unit(1567005010, "miles")
  10994. },
  10995. {
  10996. name: "Examacro",
  10997. height: math.unit(1425, "parsecs")
  10998. },
  10999. ]
  11000. ))
  11001. characterMakers.push(() => makeCharacter(
  11002. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  11003. {
  11004. front: {
  11005. height: math.unit(400, "feet"),
  11006. weight: math.unit(44444444, "lb"),
  11007. name: "Front",
  11008. image: {
  11009. source: "./media/characters/major-colonel/front.svg"
  11010. }
  11011. },
  11012. back: {
  11013. height: math.unit(400, "feet"),
  11014. weight: math.unit(44444444, "lb"),
  11015. name: "Back",
  11016. image: {
  11017. source: "./media/characters/major-colonel/back.svg"
  11018. }
  11019. },
  11020. },
  11021. [
  11022. {
  11023. name: "Macro",
  11024. height: math.unit(400, "feet"),
  11025. default: true
  11026. },
  11027. ]
  11028. ))
  11029. characterMakers.push(() => makeCharacter(
  11030. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11031. {
  11032. catFront: {
  11033. height: math.unit(6, "feet"),
  11034. weight: math.unit(120, "lb"),
  11035. name: "Front (Cat Side)",
  11036. image: {
  11037. source: "./media/characters/axel-lycan/cat-front.svg",
  11038. extra: 430 / 402,
  11039. bottom: 43 / 472.35
  11040. }
  11041. },
  11042. catBack: {
  11043. height: math.unit(6, "feet"),
  11044. weight: math.unit(120, "lb"),
  11045. name: "Back (Cat Side)",
  11046. image: {
  11047. source: "./media/characters/axel-lycan/cat-back.svg",
  11048. extra: 447 / 419,
  11049. bottom: 23.3 / 469
  11050. }
  11051. },
  11052. wolfFront: {
  11053. height: math.unit(6, "feet"),
  11054. weight: math.unit(120, "lb"),
  11055. name: "Front (Wolf Side)",
  11056. image: {
  11057. source: "./media/characters/axel-lycan/wolf-front.svg",
  11058. extra: 485 / 456,
  11059. bottom: 19 / 504
  11060. }
  11061. },
  11062. wolfBack: {
  11063. height: math.unit(6, "feet"),
  11064. weight: math.unit(120, "lb"),
  11065. name: "Back (Wolf Side)",
  11066. image: {
  11067. source: "./media/characters/axel-lycan/wolf-back.svg",
  11068. extra: 475 / 438,
  11069. bottom: 39.2 / 514
  11070. }
  11071. },
  11072. },
  11073. [
  11074. {
  11075. name: "Macro",
  11076. height: math.unit(1, "km"),
  11077. default: true
  11078. },
  11079. ]
  11080. ))
  11081. characterMakers.push(() => makeCharacter(
  11082. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11083. {
  11084. front: {
  11085. height: math.unit(5 + 9 / 12, "feet"),
  11086. weight: math.unit(175, "lb"),
  11087. name: "Front",
  11088. image: {
  11089. source: "./media/characters/vanrel-hyena/front.svg",
  11090. extra: 1086 / 1010,
  11091. bottom: 0.04
  11092. }
  11093. },
  11094. },
  11095. [
  11096. {
  11097. name: "Normal",
  11098. height: math.unit(5 + 9 / 12, "feet"),
  11099. default: true
  11100. },
  11101. ]
  11102. ))
  11103. characterMakers.push(() => makeCharacter(
  11104. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11105. {
  11106. front: {
  11107. height: math.unit(6, "feet"),
  11108. weight: math.unit(103, "lb"),
  11109. name: "Front",
  11110. image: {
  11111. source: "./media/characters/abbott-absol/front.svg",
  11112. extra: 765/694,
  11113. bottom: 47/812
  11114. }
  11115. },
  11116. },
  11117. [
  11118. {
  11119. name: "Megamicro",
  11120. height: math.unit(0.1, "mm")
  11121. },
  11122. {
  11123. name: "Micro",
  11124. height: math.unit(1, "inch")
  11125. },
  11126. {
  11127. name: "Normal",
  11128. height: math.unit(6, "feet"),
  11129. default: true
  11130. },
  11131. ]
  11132. ))
  11133. characterMakers.push(() => makeCharacter(
  11134. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11135. {
  11136. front: {
  11137. height: math.unit(6, "feet"),
  11138. weight: math.unit(264, "lb"),
  11139. name: "Front",
  11140. image: {
  11141. source: "./media/characters/hector/front.svg",
  11142. extra: 2280 / 2130,
  11143. bottom: 0.07
  11144. }
  11145. },
  11146. },
  11147. [
  11148. {
  11149. name: "Normal",
  11150. height: math.unit(12.25, "foot"),
  11151. default: true
  11152. },
  11153. {
  11154. name: "Macro",
  11155. height: math.unit(160, "feet")
  11156. },
  11157. ]
  11158. ))
  11159. characterMakers.push(() => makeCharacter(
  11160. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11161. {
  11162. front: {
  11163. height: math.unit(6, "feet"),
  11164. weight: math.unit(150, "lb"),
  11165. name: "Front",
  11166. image: {
  11167. source: "./media/characters/sal/front.svg",
  11168. extra: 1846 / 1699,
  11169. bottom: 0.04
  11170. }
  11171. },
  11172. },
  11173. [
  11174. {
  11175. name: "Megamacro",
  11176. height: math.unit(10, "miles"),
  11177. default: true
  11178. },
  11179. ]
  11180. ))
  11181. characterMakers.push(() => makeCharacter(
  11182. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11183. {
  11184. front: {
  11185. height: math.unit(3, "meters"),
  11186. weight: math.unit(450, "kg"),
  11187. name: "front",
  11188. image: {
  11189. source: "./media/characters/ranger/front.svg",
  11190. extra: 2401 / 2243,
  11191. bottom: 0.05
  11192. }
  11193. },
  11194. },
  11195. [
  11196. {
  11197. name: "Normal",
  11198. height: math.unit(3, "meters"),
  11199. default: true
  11200. },
  11201. ]
  11202. ))
  11203. characterMakers.push(() => makeCharacter(
  11204. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11205. {
  11206. front: {
  11207. height: math.unit(14, "feet"),
  11208. weight: math.unit(800, "kg"),
  11209. name: "Front",
  11210. image: {
  11211. source: "./media/characters/theresa/front.svg",
  11212. extra: 3575 / 3346,
  11213. bottom: 0.03
  11214. }
  11215. },
  11216. },
  11217. [
  11218. {
  11219. name: "Normal",
  11220. height: math.unit(14, "feet"),
  11221. default: true
  11222. },
  11223. ]
  11224. ))
  11225. characterMakers.push(() => makeCharacter(
  11226. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11227. {
  11228. front: {
  11229. height: math.unit(6, "feet"),
  11230. weight: math.unit(3, "kg"),
  11231. name: "Front",
  11232. image: {
  11233. source: "./media/characters/ine/front.svg",
  11234. extra: 678 / 539,
  11235. bottom: 0.023
  11236. }
  11237. },
  11238. },
  11239. [
  11240. {
  11241. name: "Normal",
  11242. height: math.unit(2.265, "feet"),
  11243. default: true
  11244. },
  11245. ]
  11246. ))
  11247. characterMakers.push(() => makeCharacter(
  11248. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11249. {
  11250. front: {
  11251. height: math.unit(5, "feet"),
  11252. weight: math.unit(30, "kg"),
  11253. name: "Front",
  11254. image: {
  11255. source: "./media/characters/vial/front.svg",
  11256. extra: 1365 / 1277,
  11257. bottom: 0.04
  11258. }
  11259. },
  11260. },
  11261. [
  11262. {
  11263. name: "Normal",
  11264. height: math.unit(5, "feet"),
  11265. default: true
  11266. },
  11267. ]
  11268. ))
  11269. characterMakers.push(() => makeCharacter(
  11270. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11271. {
  11272. side: {
  11273. height: math.unit(3.4, "meters"),
  11274. weight: math.unit(1000, "lb"),
  11275. name: "Side",
  11276. image: {
  11277. source: "./media/characters/rovoska/side.svg",
  11278. extra: 4403 / 1515
  11279. }
  11280. },
  11281. },
  11282. [
  11283. {
  11284. name: "Normal",
  11285. height: math.unit(3.4, "meters"),
  11286. default: true
  11287. },
  11288. ]
  11289. ))
  11290. characterMakers.push(() => makeCharacter(
  11291. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11292. {
  11293. front: {
  11294. height: math.unit(8, "feet"),
  11295. weight: math.unit(315, "lb"),
  11296. name: "Front",
  11297. image: {
  11298. source: "./media/characters/gunner-rotthbauer/front.svg"
  11299. }
  11300. },
  11301. back: {
  11302. height: math.unit(8, "feet"),
  11303. weight: math.unit(315, "lb"),
  11304. name: "Back",
  11305. image: {
  11306. source: "./media/characters/gunner-rotthbauer/back.svg"
  11307. }
  11308. },
  11309. },
  11310. [
  11311. {
  11312. name: "Micro",
  11313. height: math.unit(3.5, "inches")
  11314. },
  11315. {
  11316. name: "Normal",
  11317. height: math.unit(8, "feet"),
  11318. default: true
  11319. },
  11320. {
  11321. name: "Macro",
  11322. height: math.unit(250, "feet")
  11323. },
  11324. {
  11325. name: "Megamacro",
  11326. height: math.unit(1, "AU")
  11327. },
  11328. ]
  11329. ))
  11330. characterMakers.push(() => makeCharacter(
  11331. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11332. {
  11333. front: {
  11334. height: math.unit(5 + 5 / 12, "feet"),
  11335. weight: math.unit(140, "lb"),
  11336. name: "Front",
  11337. image: {
  11338. source: "./media/characters/allatia/front.svg",
  11339. extra: 1227 / 1180,
  11340. bottom: 0.027
  11341. }
  11342. },
  11343. },
  11344. [
  11345. {
  11346. name: "Normal",
  11347. height: math.unit(5 + 5 / 12, "feet")
  11348. },
  11349. {
  11350. name: "Macro",
  11351. height: math.unit(250, "feet"),
  11352. default: true
  11353. },
  11354. {
  11355. name: "Megamacro",
  11356. height: math.unit(8, "miles")
  11357. }
  11358. ]
  11359. ))
  11360. characterMakers.push(() => makeCharacter(
  11361. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11362. {
  11363. front: {
  11364. height: math.unit(6, "feet"),
  11365. weight: math.unit(120, "lb"),
  11366. name: "Front",
  11367. image: {
  11368. source: "./media/characters/tene/front.svg",
  11369. extra: 814/750,
  11370. bottom: 36/850
  11371. }
  11372. },
  11373. stomping: {
  11374. height: math.unit(2.025, "meters"),
  11375. weight: math.unit(120, "lb"),
  11376. name: "Stomping",
  11377. image: {
  11378. source: "./media/characters/tene/stomping.svg",
  11379. extra: 885/821,
  11380. bottom: 15/900
  11381. }
  11382. },
  11383. sitting: {
  11384. height: math.unit(1, "meter"),
  11385. weight: math.unit(120, "lb"),
  11386. name: "Sitting",
  11387. image: {
  11388. source: "./media/characters/tene/sitting.svg",
  11389. extra: 396/366,
  11390. bottom: 79/475
  11391. }
  11392. },
  11393. smiling: {
  11394. height: math.unit(1.2, "feet"),
  11395. name: "Smiling",
  11396. image: {
  11397. source: "./media/characters/tene/smiling.svg",
  11398. extra: 1364/1071,
  11399. bottom: 0/1364
  11400. }
  11401. },
  11402. smug: {
  11403. height: math.unit(1.3, "feet"),
  11404. name: "Smug",
  11405. image: {
  11406. source: "./media/characters/tene/smug.svg",
  11407. extra: 1323/1082,
  11408. bottom: 0/1323
  11409. }
  11410. },
  11411. feral: {
  11412. height: math.unit(3.9, "feet"),
  11413. weight: math.unit(250, "lb"),
  11414. name: "Feral",
  11415. image: {
  11416. source: "./media/characters/tene/feral.svg",
  11417. extra: 717 / 458,
  11418. bottom: 0.179
  11419. }
  11420. },
  11421. },
  11422. [
  11423. {
  11424. name: "Normal",
  11425. height: math.unit(6, "feet")
  11426. },
  11427. {
  11428. name: "Macro",
  11429. height: math.unit(300, "feet"),
  11430. default: true
  11431. },
  11432. {
  11433. name: "Megamacro",
  11434. height: math.unit(5, "miles")
  11435. },
  11436. ]
  11437. ))
  11438. characterMakers.push(() => makeCharacter(
  11439. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11440. {
  11441. side: {
  11442. height: math.unit(6, "feet"),
  11443. name: "Side",
  11444. image: {
  11445. source: "./media/characters/evander/side.svg",
  11446. extra: 877 / 477
  11447. }
  11448. },
  11449. },
  11450. [
  11451. {
  11452. name: "Normal",
  11453. height: math.unit(0.83, "meters"),
  11454. default: true
  11455. },
  11456. ]
  11457. ))
  11458. characterMakers.push(() => makeCharacter(
  11459. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11460. {
  11461. front: {
  11462. height: math.unit(12, "feet"),
  11463. weight: math.unit(1000, "lb"),
  11464. name: "Front",
  11465. image: {
  11466. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11467. extra: 1762 / 1611
  11468. }
  11469. },
  11470. back: {
  11471. height: math.unit(12, "feet"),
  11472. weight: math.unit(1000, "lb"),
  11473. name: "Back",
  11474. image: {
  11475. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11476. extra: 1762 / 1611
  11477. }
  11478. },
  11479. },
  11480. [
  11481. {
  11482. name: "Normal",
  11483. height: math.unit(12, "feet"),
  11484. default: true
  11485. },
  11486. {
  11487. name: "Kaiju",
  11488. height: math.unit(150, "feet")
  11489. },
  11490. ]
  11491. ))
  11492. characterMakers.push(() => makeCharacter(
  11493. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11494. {
  11495. front: {
  11496. height: math.unit(5 + 11/12, "feet"),
  11497. weight: math.unit(180, "lb"),
  11498. name: "Front",
  11499. image: {
  11500. source: "./media/characters/zero-alurus/front.svg",
  11501. extra: 1032/957,
  11502. bottom: 10/1042
  11503. }
  11504. },
  11505. back: {
  11506. height: math.unit(5 + 11/12, "feet"),
  11507. weight: math.unit(180, "lb"),
  11508. name: "Back",
  11509. image: {
  11510. source: "./media/characters/zero-alurus/back.svg",
  11511. extra: 1027/950,
  11512. bottom: 12/1039
  11513. }
  11514. },
  11515. },
  11516. [
  11517. {
  11518. name: "Normal",
  11519. height: math.unit(5 + 11 / 12, "feet")
  11520. },
  11521. {
  11522. name: "Mini-Macro",
  11523. height: math.unit(25, "feet")
  11524. },
  11525. {
  11526. name: "Macro",
  11527. height: math.unit(90, "feet"),
  11528. default: true
  11529. },
  11530. {
  11531. name: "Macro+",
  11532. height: math.unit(500, "feet")
  11533. },
  11534. {
  11535. name: "Megamacro",
  11536. height: math.unit(1200, "feet")
  11537. },
  11538. ]
  11539. ))
  11540. characterMakers.push(() => makeCharacter(
  11541. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11542. {
  11543. front: {
  11544. height: math.unit(6, "feet"),
  11545. weight: math.unit(200, "lb"),
  11546. name: "Front",
  11547. image: {
  11548. source: "./media/characters/mega-shi/front.svg",
  11549. extra: 1279 / 1250,
  11550. bottom: 0.02
  11551. }
  11552. },
  11553. back: {
  11554. height: math.unit(6, "feet"),
  11555. weight: math.unit(200, "lb"),
  11556. name: "Back",
  11557. image: {
  11558. source: "./media/characters/mega-shi/back.svg",
  11559. extra: 1279 / 1250,
  11560. bottom: 0.02
  11561. }
  11562. },
  11563. },
  11564. [
  11565. {
  11566. name: "Micro",
  11567. height: math.unit(16 + 6 / 12, "feet")
  11568. },
  11569. {
  11570. name: "Third Dimension",
  11571. height: math.unit(40, "meters")
  11572. },
  11573. {
  11574. name: "Normal",
  11575. height: math.unit(660, "feet"),
  11576. default: true
  11577. },
  11578. {
  11579. name: "Megamacro",
  11580. height: math.unit(10, "miles")
  11581. },
  11582. {
  11583. name: "Planetary Launch",
  11584. height: math.unit(500, "miles")
  11585. },
  11586. {
  11587. name: "Interstellar",
  11588. height: math.unit(1e9, "miles")
  11589. },
  11590. {
  11591. name: "Leaving the Universe",
  11592. height: math.unit(1, "gigaparsec")
  11593. },
  11594. {
  11595. name: "Travelling Universes",
  11596. height: math.unit(30e15, "parsecs")
  11597. },
  11598. ]
  11599. ))
  11600. characterMakers.push(() => makeCharacter(
  11601. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11602. {
  11603. front: {
  11604. height: math.unit(5 + 4/12, "feet"),
  11605. weight: math.unit(120, "lb"),
  11606. name: "Front",
  11607. image: {
  11608. source: "./media/characters/odyssey/front.svg",
  11609. extra: 1747/1571,
  11610. bottom: 47/1794
  11611. }
  11612. },
  11613. side: {
  11614. height: math.unit(5.1, "feet"),
  11615. weight: math.unit(120, "lb"),
  11616. name: "Side",
  11617. image: {
  11618. source: "./media/characters/odyssey/side.svg",
  11619. extra: 1847/1619,
  11620. bottom: 47/1894
  11621. }
  11622. },
  11623. lounging: {
  11624. height: math.unit(1.464, "feet"),
  11625. weight: math.unit(120, "lb"),
  11626. name: "Lounging",
  11627. image: {
  11628. source: "./media/characters/odyssey/lounging.svg",
  11629. extra: 1235/837,
  11630. bottom: 551/1786
  11631. }
  11632. },
  11633. },
  11634. [
  11635. {
  11636. name: "Normal",
  11637. height: math.unit(5 + 4 / 12, "feet")
  11638. },
  11639. {
  11640. name: "Macro",
  11641. height: math.unit(1, "km")
  11642. },
  11643. {
  11644. name: "Megamacro",
  11645. height: math.unit(3000, "km")
  11646. },
  11647. {
  11648. name: "Gigamacro",
  11649. height: math.unit(1, "AU"),
  11650. default: true
  11651. },
  11652. {
  11653. name: "Omniversal",
  11654. height: math.unit(100e14, "lightyears")
  11655. },
  11656. ]
  11657. ))
  11658. characterMakers.push(() => makeCharacter(
  11659. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11660. {
  11661. front: {
  11662. height: math.unit(5 + 10/12, "feet"),
  11663. name: "Front",
  11664. image: {
  11665. source: "./media/characters/mekuto/front.svg",
  11666. extra: 875/835,
  11667. bottom: 46/921
  11668. }
  11669. },
  11670. },
  11671. [
  11672. {
  11673. name: "Minimicro",
  11674. height: math.unit(0.2, "inches")
  11675. },
  11676. {
  11677. name: "Micro",
  11678. height: math.unit(1.5, "inches")
  11679. },
  11680. {
  11681. name: "Normal",
  11682. height: math.unit(5 + 10 / 12, "feet"),
  11683. default: true
  11684. },
  11685. {
  11686. name: "Minimacro",
  11687. height: math.unit(17 + 9 / 12, "feet")
  11688. },
  11689. {
  11690. name: "Macro",
  11691. height: math.unit(177.5, "feet")
  11692. },
  11693. {
  11694. name: "Megamacro",
  11695. height: math.unit(152, "miles")
  11696. },
  11697. ]
  11698. ))
  11699. characterMakers.push(() => makeCharacter(
  11700. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11701. {
  11702. front: {
  11703. height: math.unit(6.5, "inches"),
  11704. weight: math.unit(13, "oz"),
  11705. name: "Front",
  11706. image: {
  11707. source: "./media/characters/dafydd-tomos/front.svg",
  11708. extra: 2990 / 2603,
  11709. bottom: 0.03
  11710. }
  11711. },
  11712. },
  11713. [
  11714. {
  11715. name: "Micro",
  11716. height: math.unit(6.5, "inches"),
  11717. default: true
  11718. },
  11719. ]
  11720. ))
  11721. characterMakers.push(() => makeCharacter(
  11722. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11723. {
  11724. front: {
  11725. height: math.unit(6, "feet"),
  11726. weight: math.unit(150, "lb"),
  11727. name: "Front",
  11728. image: {
  11729. source: "./media/characters/splinter/front.svg",
  11730. extra: 2990 / 2882,
  11731. bottom: 0.04
  11732. }
  11733. },
  11734. back: {
  11735. height: math.unit(6, "feet"),
  11736. weight: math.unit(150, "lb"),
  11737. name: "Back",
  11738. image: {
  11739. source: "./media/characters/splinter/back.svg",
  11740. extra: 2990 / 2882,
  11741. bottom: 0.04
  11742. }
  11743. },
  11744. },
  11745. [
  11746. {
  11747. name: "Normal",
  11748. height: math.unit(6, "feet")
  11749. },
  11750. {
  11751. name: "Macro",
  11752. height: math.unit(230, "meters"),
  11753. default: true
  11754. },
  11755. ]
  11756. ))
  11757. characterMakers.push(() => makeCharacter(
  11758. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11759. {
  11760. front: {
  11761. height: math.unit(4 + 10 / 12, "feet"),
  11762. weight: math.unit(480, "lb"),
  11763. name: "Front",
  11764. image: {
  11765. source: "./media/characters/snow-gabumon/front.svg",
  11766. extra: 1140 / 963,
  11767. bottom: 0.058
  11768. }
  11769. },
  11770. back: {
  11771. height: math.unit(4 + 10 / 12, "feet"),
  11772. weight: math.unit(480, "lb"),
  11773. name: "Back",
  11774. image: {
  11775. source: "./media/characters/snow-gabumon/back.svg",
  11776. extra: 1115 / 962,
  11777. bottom: 0.041
  11778. }
  11779. },
  11780. frontUndresed: {
  11781. height: math.unit(4 + 10 / 12, "feet"),
  11782. weight: math.unit(480, "lb"),
  11783. name: "Front (Undressed)",
  11784. image: {
  11785. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11786. extra: 1061 / 960,
  11787. bottom: 0.045
  11788. }
  11789. },
  11790. },
  11791. [
  11792. {
  11793. name: "Micro",
  11794. height: math.unit(1, "inch")
  11795. },
  11796. {
  11797. name: "Normal",
  11798. height: math.unit(4 + 10 / 12, "feet"),
  11799. default: true
  11800. },
  11801. {
  11802. name: "Macro",
  11803. height: math.unit(200, "feet")
  11804. },
  11805. {
  11806. name: "Megamacro",
  11807. height: math.unit(120, "miles")
  11808. },
  11809. {
  11810. name: "Gigamacro",
  11811. height: math.unit(9800, "miles")
  11812. },
  11813. ]
  11814. ))
  11815. characterMakers.push(() => makeCharacter(
  11816. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11817. {
  11818. front: {
  11819. height: math.unit(1.7, "meters"),
  11820. weight: math.unit(140, "lb"),
  11821. name: "Front",
  11822. image: {
  11823. source: "./media/characters/moody/front.svg",
  11824. extra: 3226 / 3007,
  11825. bottom: 0.087
  11826. }
  11827. },
  11828. },
  11829. [
  11830. {
  11831. name: "Micro",
  11832. height: math.unit(1, "mm")
  11833. },
  11834. {
  11835. name: "Normal",
  11836. height: math.unit(1.7, "meters"),
  11837. default: true
  11838. },
  11839. {
  11840. name: "Macro",
  11841. height: math.unit(80, "meters")
  11842. },
  11843. {
  11844. name: "Macro+",
  11845. height: math.unit(500, "meters")
  11846. },
  11847. ]
  11848. ))
  11849. characterMakers.push(() => makeCharacter(
  11850. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11851. {
  11852. front: {
  11853. height: math.unit(6, "feet"),
  11854. weight: math.unit(150, "lb"),
  11855. name: "Front",
  11856. image: {
  11857. source: "./media/characters/zyas/front.svg",
  11858. extra: 1180 / 1120,
  11859. bottom: 0.045
  11860. }
  11861. },
  11862. },
  11863. [
  11864. {
  11865. name: "Normal",
  11866. height: math.unit(10, "feet"),
  11867. default: true
  11868. },
  11869. {
  11870. name: "Macro",
  11871. height: math.unit(500, "feet")
  11872. },
  11873. {
  11874. name: "Megamacro",
  11875. height: math.unit(5, "miles")
  11876. },
  11877. {
  11878. name: "Teramacro",
  11879. height: math.unit(150000, "miles")
  11880. },
  11881. ]
  11882. ))
  11883. characterMakers.push(() => makeCharacter(
  11884. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11885. {
  11886. front: {
  11887. height: math.unit(6, "feet"),
  11888. weight: math.unit(150, "lb"),
  11889. name: "Front",
  11890. image: {
  11891. source: "./media/characters/cuon/front.svg",
  11892. extra: 1390 / 1320,
  11893. bottom: 0.008
  11894. }
  11895. },
  11896. },
  11897. [
  11898. {
  11899. name: "Micro",
  11900. height: math.unit(3, "inches")
  11901. },
  11902. {
  11903. name: "Normal",
  11904. height: math.unit(18 + 9 / 12, "feet"),
  11905. default: true
  11906. },
  11907. {
  11908. name: "Macro",
  11909. height: math.unit(360, "feet")
  11910. },
  11911. {
  11912. name: "Megamacro",
  11913. height: math.unit(360, "miles")
  11914. },
  11915. ]
  11916. ))
  11917. characterMakers.push(() => makeCharacter(
  11918. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11919. {
  11920. front: {
  11921. height: math.unit(2.4, "meters"),
  11922. weight: math.unit(70, "kg"),
  11923. name: "Front",
  11924. image: {
  11925. source: "./media/characters/nyanuxk/front.svg",
  11926. extra: 1172 / 1084,
  11927. bottom: 0.065
  11928. }
  11929. },
  11930. side: {
  11931. height: math.unit(2.4, "meters"),
  11932. weight: math.unit(70, "kg"),
  11933. name: "Side",
  11934. image: {
  11935. source: "./media/characters/nyanuxk/side.svg",
  11936. extra: 1190 / 1132,
  11937. bottom: 0.007
  11938. }
  11939. },
  11940. back: {
  11941. height: math.unit(2.4, "meters"),
  11942. weight: math.unit(70, "kg"),
  11943. name: "Back",
  11944. image: {
  11945. source: "./media/characters/nyanuxk/back.svg",
  11946. extra: 1200 / 1141,
  11947. bottom: 0.015
  11948. }
  11949. },
  11950. foot: {
  11951. height: math.unit(0.52, "meters"),
  11952. name: "Foot",
  11953. image: {
  11954. source: "./media/characters/nyanuxk/foot.svg"
  11955. }
  11956. },
  11957. },
  11958. [
  11959. {
  11960. name: "Micro",
  11961. height: math.unit(2, "cm")
  11962. },
  11963. {
  11964. name: "Normal",
  11965. height: math.unit(2.4, "meters"),
  11966. default: true
  11967. },
  11968. {
  11969. name: "Smaller Macro",
  11970. height: math.unit(120, "meters")
  11971. },
  11972. {
  11973. name: "Bigger Macro",
  11974. height: math.unit(1.2, "km")
  11975. },
  11976. {
  11977. name: "Megamacro",
  11978. height: math.unit(15, "kilometers")
  11979. },
  11980. {
  11981. name: "Gigamacro",
  11982. height: math.unit(2000, "km")
  11983. },
  11984. {
  11985. name: "Teramacro",
  11986. height: math.unit(500000, "km")
  11987. },
  11988. ]
  11989. ))
  11990. characterMakers.push(() => makeCharacter(
  11991. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11992. {
  11993. side: {
  11994. height: math.unit(6, "feet"),
  11995. name: "Side",
  11996. image: {
  11997. source: "./media/characters/ailbhe/side.svg",
  11998. extra: 757 / 464,
  11999. bottom: 0.041
  12000. }
  12001. },
  12002. },
  12003. [
  12004. {
  12005. name: "Normal",
  12006. height: math.unit(1.07, "meters"),
  12007. default: true
  12008. },
  12009. ]
  12010. ))
  12011. characterMakers.push(() => makeCharacter(
  12012. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  12013. {
  12014. front: {
  12015. height: math.unit(6, "feet"),
  12016. weight: math.unit(120, "kg"),
  12017. name: "Front",
  12018. image: {
  12019. source: "./media/characters/zevulfius/front.svg",
  12020. extra: 965 / 903
  12021. }
  12022. },
  12023. side: {
  12024. height: math.unit(6, "feet"),
  12025. weight: math.unit(120, "kg"),
  12026. name: "Side",
  12027. image: {
  12028. source: "./media/characters/zevulfius/side.svg",
  12029. extra: 939 / 900
  12030. }
  12031. },
  12032. back: {
  12033. height: math.unit(6, "feet"),
  12034. weight: math.unit(120, "kg"),
  12035. name: "Back",
  12036. image: {
  12037. source: "./media/characters/zevulfius/back.svg",
  12038. extra: 918 / 854,
  12039. bottom: 0.005
  12040. }
  12041. },
  12042. foot: {
  12043. height: math.unit(6 / 3.72, "feet"),
  12044. name: "Foot",
  12045. image: {
  12046. source: "./media/characters/zevulfius/foot.svg"
  12047. }
  12048. },
  12049. },
  12050. [
  12051. {
  12052. name: "Macro",
  12053. height: math.unit(750, "meters")
  12054. },
  12055. {
  12056. name: "Megamacro",
  12057. height: math.unit(20, "km"),
  12058. default: true
  12059. },
  12060. {
  12061. name: "Gigamacro",
  12062. height: math.unit(2000, "km")
  12063. },
  12064. {
  12065. name: "Teramacro",
  12066. height: math.unit(250000, "km")
  12067. },
  12068. ]
  12069. ))
  12070. characterMakers.push(() => makeCharacter(
  12071. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12072. {
  12073. front: {
  12074. height: math.unit(100, "feet"),
  12075. weight: math.unit(350, "kg"),
  12076. name: "Front",
  12077. image: {
  12078. source: "./media/characters/rikes/front.svg",
  12079. extra: 1565 / 1483,
  12080. bottom: 0.017
  12081. }
  12082. },
  12083. },
  12084. [
  12085. {
  12086. name: "Macro",
  12087. height: math.unit(100, "feet"),
  12088. default: true
  12089. },
  12090. ]
  12091. ))
  12092. characterMakers.push(() => makeCharacter(
  12093. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12094. {
  12095. front: {
  12096. height: math.unit(8, "feet"),
  12097. weight: math.unit(356, "lb"),
  12098. name: "Front",
  12099. image: {
  12100. source: "./media/characters/adam-silver-mane/front.svg",
  12101. extra: 1036/937,
  12102. bottom: 63/1099
  12103. }
  12104. },
  12105. side: {
  12106. height: math.unit(8, "feet"),
  12107. weight: math.unit(356, "lb"),
  12108. name: "Side",
  12109. image: {
  12110. source: "./media/characters/adam-silver-mane/side.svg",
  12111. extra: 997/901,
  12112. bottom: 59/1056
  12113. }
  12114. },
  12115. frontNsfw: {
  12116. height: math.unit(8, "feet"),
  12117. weight: math.unit(356, "lb"),
  12118. name: "Front (NSFW)",
  12119. image: {
  12120. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12121. extra: 1036/937,
  12122. bottom: 63/1099
  12123. }
  12124. },
  12125. sideNsfw: {
  12126. height: math.unit(8, "feet"),
  12127. weight: math.unit(356, "lb"),
  12128. name: "Side (NSFW)",
  12129. image: {
  12130. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12131. extra: 997/901,
  12132. bottom: 59/1056
  12133. }
  12134. },
  12135. dick: {
  12136. height: math.unit(2.1, "feet"),
  12137. name: "Dick",
  12138. image: {
  12139. source: "./media/characters/adam-silver-mane/dick.svg"
  12140. }
  12141. },
  12142. taur: {
  12143. height: math.unit(16, "feet"),
  12144. weight: math.unit(1500, "kg"),
  12145. name: "Taur",
  12146. image: {
  12147. source: "./media/characters/adam-silver-mane/taur.svg",
  12148. extra: 1713 / 1571,
  12149. bottom: 0.01
  12150. }
  12151. },
  12152. },
  12153. [
  12154. {
  12155. name: "Normal",
  12156. height: math.unit(8, "feet")
  12157. },
  12158. {
  12159. name: "Minimacro",
  12160. height: math.unit(80, "feet")
  12161. },
  12162. {
  12163. name: "MDA",
  12164. height: math.unit(80, "meters")
  12165. },
  12166. {
  12167. name: "Macro",
  12168. height: math.unit(800, "feet"),
  12169. default: true
  12170. },
  12171. {
  12172. name: "Megamacro",
  12173. height: math.unit(8000, "feet")
  12174. },
  12175. {
  12176. name: "Gigamacro",
  12177. height: math.unit(800, "miles")
  12178. },
  12179. {
  12180. name: "Teramacro",
  12181. height: math.unit(80000, "miles")
  12182. },
  12183. {
  12184. name: "Celestial",
  12185. height: math.unit(8e6, "miles")
  12186. },
  12187. {
  12188. name: "Star Dragon",
  12189. height: math.unit(800000, "parsecs")
  12190. },
  12191. {
  12192. name: "Godly",
  12193. height: math.unit(800, "teraparsecs")
  12194. },
  12195. ]
  12196. ))
  12197. characterMakers.push(() => makeCharacter(
  12198. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12199. {
  12200. front: {
  12201. height: math.unit(6, "feet"),
  12202. weight: math.unit(150, "lb"),
  12203. name: "Front",
  12204. image: {
  12205. source: "./media/characters/ky'owin/front.svg",
  12206. extra: 3862/3053,
  12207. bottom: 74/3936
  12208. }
  12209. },
  12210. },
  12211. [
  12212. {
  12213. name: "Normal",
  12214. height: math.unit(6 + 8 / 12, "feet")
  12215. },
  12216. {
  12217. name: "Large",
  12218. height: math.unit(68, "feet")
  12219. },
  12220. {
  12221. name: "Macro",
  12222. height: math.unit(132, "feet")
  12223. },
  12224. {
  12225. name: "Macro+",
  12226. height: math.unit(340, "feet")
  12227. },
  12228. {
  12229. name: "Macro++",
  12230. height: math.unit(680, "feet"),
  12231. default: true
  12232. },
  12233. {
  12234. name: "Megamacro",
  12235. height: math.unit(1, "mile")
  12236. },
  12237. {
  12238. name: "Megamacro+",
  12239. height: math.unit(10, "miles")
  12240. },
  12241. ]
  12242. ))
  12243. characterMakers.push(() => makeCharacter(
  12244. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12245. {
  12246. front: {
  12247. height: math.unit(4, "feet"),
  12248. weight: math.unit(50, "lb"),
  12249. name: "Front",
  12250. image: {
  12251. source: "./media/characters/mal/front.svg",
  12252. extra: 785 / 724,
  12253. bottom: 0.07
  12254. }
  12255. },
  12256. },
  12257. [
  12258. {
  12259. name: "Micro",
  12260. height: math.unit(4, "inches")
  12261. },
  12262. {
  12263. name: "Normal",
  12264. height: math.unit(4, "feet"),
  12265. default: true
  12266. },
  12267. {
  12268. name: "Macro",
  12269. height: math.unit(200, "feet")
  12270. },
  12271. ]
  12272. ))
  12273. characterMakers.push(() => makeCharacter(
  12274. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12275. {
  12276. front: {
  12277. height: math.unit(6, "feet"),
  12278. weight: math.unit(150, "lb"),
  12279. name: "Front",
  12280. image: {
  12281. source: "./media/characters/jordan-deware/front.svg",
  12282. extra: 1191 / 1012
  12283. }
  12284. },
  12285. },
  12286. [
  12287. {
  12288. name: "Nano",
  12289. height: math.unit(0.01, "mm")
  12290. },
  12291. {
  12292. name: "Minimicro",
  12293. height: math.unit(1, "mm")
  12294. },
  12295. {
  12296. name: "Micro",
  12297. height: math.unit(0.5, "inches")
  12298. },
  12299. {
  12300. name: "Normal",
  12301. height: math.unit(4, "feet"),
  12302. default: true
  12303. },
  12304. {
  12305. name: "Minimacro",
  12306. height: math.unit(40, "meters")
  12307. },
  12308. {
  12309. name: "Small Macro",
  12310. height: math.unit(400, "meters")
  12311. },
  12312. {
  12313. name: "Macro",
  12314. height: math.unit(4, "miles")
  12315. },
  12316. {
  12317. name: "Megamacro",
  12318. height: math.unit(40, "miles")
  12319. },
  12320. {
  12321. name: "Megamacro+",
  12322. height: math.unit(400, "miles")
  12323. },
  12324. {
  12325. name: "Gigamacro",
  12326. height: math.unit(400000, "miles")
  12327. },
  12328. ]
  12329. ))
  12330. characterMakers.push(() => makeCharacter(
  12331. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12332. {
  12333. front: {
  12334. height: math.unit(6, "feet"),
  12335. weight: math.unit(150, "lb"),
  12336. name: "Front",
  12337. image: {
  12338. source: "./media/characters/kimiko/front.svg",
  12339. extra: 875/832,
  12340. bottom: 36/911
  12341. }
  12342. },
  12343. side: {
  12344. height: math.unit(6, "feet"),
  12345. weight: math.unit(150, "lb"),
  12346. name: "Side",
  12347. image: {
  12348. source: "./media/characters/kimiko/side.svg",
  12349. extra: 448/270,
  12350. bottom: 7/455
  12351. }
  12352. },
  12353. maw: {
  12354. height: math.unit(0.81 / 15 * 6, "feet"),
  12355. name: "Maw",
  12356. image: {
  12357. source: "./media/characters/kimiko/maw.svg"
  12358. }
  12359. },
  12360. },
  12361. [
  12362. {
  12363. name: "Normal",
  12364. height: math.unit(15, "feet"),
  12365. default: true
  12366. },
  12367. {
  12368. name: "Macro",
  12369. height: math.unit(220, "feet")
  12370. },
  12371. {
  12372. name: "Macro+",
  12373. height: math.unit(1450, "feet")
  12374. },
  12375. {
  12376. name: "Megamacro",
  12377. height: math.unit(11500, "feet")
  12378. },
  12379. {
  12380. name: "Gigamacro",
  12381. height: math.unit(9500, "miles")
  12382. },
  12383. {
  12384. name: "Teramacro",
  12385. height: math.unit(2208005005, "miles")
  12386. },
  12387. {
  12388. name: "Examacro",
  12389. height: math.unit(2750, "parsecs")
  12390. },
  12391. {
  12392. name: "Zettamacro",
  12393. height: math.unit(101500, "parsecs")
  12394. },
  12395. ]
  12396. ))
  12397. characterMakers.push(() => makeCharacter(
  12398. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12399. {
  12400. front: {
  12401. height: math.unit(6, "feet"),
  12402. weight: math.unit(70, "kg"),
  12403. name: "Front",
  12404. image: {
  12405. source: "./media/characters/andrew-sleepy/front.svg"
  12406. }
  12407. },
  12408. side: {
  12409. height: math.unit(6, "feet"),
  12410. weight: math.unit(70, "kg"),
  12411. name: "Side",
  12412. image: {
  12413. source: "./media/characters/andrew-sleepy/side.svg"
  12414. }
  12415. },
  12416. },
  12417. [
  12418. {
  12419. name: "Micro",
  12420. height: math.unit(1, "mm"),
  12421. default: true
  12422. },
  12423. ]
  12424. ))
  12425. characterMakers.push(() => makeCharacter(
  12426. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12427. {
  12428. front: {
  12429. height: math.unit(6, "feet"),
  12430. weight: math.unit(150, "lb"),
  12431. name: "Front",
  12432. image: {
  12433. source: "./media/characters/judio/front.svg",
  12434. extra: 1258 / 1110
  12435. }
  12436. },
  12437. },
  12438. [
  12439. {
  12440. name: "Normal",
  12441. height: math.unit(5 + 6 / 12, "feet")
  12442. },
  12443. {
  12444. name: "Macro",
  12445. height: math.unit(1000, "feet"),
  12446. default: true
  12447. },
  12448. {
  12449. name: "Megamacro",
  12450. height: math.unit(10, "miles")
  12451. },
  12452. ]
  12453. ))
  12454. characterMakers.push(() => makeCharacter(
  12455. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12456. {
  12457. frontDressed: {
  12458. height: math.unit(6, "feet"),
  12459. weight: math.unit(68, "kg"),
  12460. name: "Front (Dressed)",
  12461. image: {
  12462. source: "./media/characters/nomaxice/front-dressed.svg",
  12463. extra: 1137/824,
  12464. bottom: 74/1211
  12465. }
  12466. },
  12467. frontShorts: {
  12468. height: math.unit(6, "feet"),
  12469. weight: math.unit(68, "kg"),
  12470. name: "Front (Shorts)",
  12471. image: {
  12472. source: "./media/characters/nomaxice/front-shorts.svg",
  12473. extra: 1137/824,
  12474. bottom: 74/1211
  12475. }
  12476. },
  12477. back: {
  12478. height: math.unit(6, "feet"),
  12479. weight: math.unit(68, "kg"),
  12480. name: "Back",
  12481. image: {
  12482. source: "./media/characters/nomaxice/back.svg",
  12483. extra: 822/786,
  12484. bottom: 39/861
  12485. }
  12486. },
  12487. hand: {
  12488. height: math.unit(0.565, "feet"),
  12489. name: "Hand",
  12490. image: {
  12491. source: "./media/characters/nomaxice/hand.svg"
  12492. }
  12493. },
  12494. foot: {
  12495. height: math.unit(1, "feet"),
  12496. name: "Foot",
  12497. image: {
  12498. source: "./media/characters/nomaxice/foot.svg"
  12499. }
  12500. },
  12501. },
  12502. [
  12503. {
  12504. name: "Micro",
  12505. height: math.unit(8, "cm")
  12506. },
  12507. {
  12508. name: "Norm",
  12509. height: math.unit(1.82, "m")
  12510. },
  12511. {
  12512. name: "Norm+",
  12513. height: math.unit(8.8, "feet"),
  12514. default: true
  12515. },
  12516. {
  12517. name: "Big",
  12518. height: math.unit(8, "meters")
  12519. },
  12520. {
  12521. name: "Macro",
  12522. height: math.unit(18, "meters")
  12523. },
  12524. {
  12525. name: "Macro+",
  12526. height: math.unit(88, "meters")
  12527. },
  12528. ]
  12529. ))
  12530. characterMakers.push(() => makeCharacter(
  12531. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12532. {
  12533. front: {
  12534. height: math.unit(12, "feet"),
  12535. weight: math.unit(1.5, "tons"),
  12536. name: "Front",
  12537. image: {
  12538. source: "./media/characters/dydros/front.svg",
  12539. extra: 863 / 800,
  12540. bottom: 0.015
  12541. }
  12542. },
  12543. back: {
  12544. height: math.unit(12, "feet"),
  12545. weight: math.unit(1.5, "tons"),
  12546. name: "Back",
  12547. image: {
  12548. source: "./media/characters/dydros/back.svg",
  12549. extra: 900 / 843,
  12550. bottom: 0.005
  12551. }
  12552. },
  12553. },
  12554. [
  12555. {
  12556. name: "Normal",
  12557. height: math.unit(12, "feet"),
  12558. default: true
  12559. },
  12560. ]
  12561. ))
  12562. characterMakers.push(() => makeCharacter(
  12563. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12564. {
  12565. front: {
  12566. height: math.unit(6, "feet"),
  12567. weight: math.unit(100, "kg"),
  12568. name: "Front",
  12569. image: {
  12570. source: "./media/characters/riggi/front.svg",
  12571. extra: 5787 / 5303
  12572. }
  12573. },
  12574. hyper: {
  12575. height: math.unit(6 * 5 / 3, "feet"),
  12576. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12577. name: "Hyper",
  12578. image: {
  12579. source: "./media/characters/riggi/hyper.svg",
  12580. extra: 3595 / 3485
  12581. }
  12582. },
  12583. },
  12584. [
  12585. {
  12586. name: "Small Macro",
  12587. height: math.unit(50, "feet")
  12588. },
  12589. {
  12590. name: "Default",
  12591. height: math.unit(200, "feet"),
  12592. default: true
  12593. },
  12594. {
  12595. name: "Loom",
  12596. height: math.unit(10000, "feet")
  12597. },
  12598. {
  12599. name: "Cruising Altitude",
  12600. height: math.unit(30000, "feet")
  12601. },
  12602. {
  12603. name: "Megamacro",
  12604. height: math.unit(100, "miles")
  12605. },
  12606. {
  12607. name: "Continent Sized",
  12608. height: math.unit(2800, "miles")
  12609. },
  12610. {
  12611. name: "Earth Sized",
  12612. height: math.unit(8000, "miles")
  12613. },
  12614. ]
  12615. ))
  12616. characterMakers.push(() => makeCharacter(
  12617. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12618. {
  12619. front: {
  12620. height: math.unit(6, "feet"),
  12621. weight: math.unit(250, "lb"),
  12622. name: "Front",
  12623. image: {
  12624. source: "./media/characters/alexi/front.svg",
  12625. extra: 3483 / 3291,
  12626. bottom: 0.04
  12627. }
  12628. },
  12629. back: {
  12630. height: math.unit(6, "feet"),
  12631. weight: math.unit(250, "lb"),
  12632. name: "Back",
  12633. image: {
  12634. source: "./media/characters/alexi/back.svg",
  12635. extra: 3533 / 3356,
  12636. bottom: 0.021
  12637. }
  12638. },
  12639. frontTransforming: {
  12640. height: math.unit(8.58, "feet"),
  12641. weight: math.unit(1300, "lb"),
  12642. name: "Transforming",
  12643. image: {
  12644. source: "./media/characters/alexi/front-transforming.svg",
  12645. extra: 437 / 409,
  12646. bottom: 19 / 458.66
  12647. }
  12648. },
  12649. frontTransformed: {
  12650. height: math.unit(12.5, "feet"),
  12651. weight: math.unit(4000, "lb"),
  12652. name: "Transformed",
  12653. image: {
  12654. source: "./media/characters/alexi/front-transformed.svg",
  12655. extra: 639 / 614,
  12656. bottom: 30.55 / 671
  12657. }
  12658. },
  12659. },
  12660. [
  12661. {
  12662. name: "Normal",
  12663. height: math.unit(14, "feet"),
  12664. default: true
  12665. },
  12666. {
  12667. name: "Minimacro",
  12668. height: math.unit(30, "meters")
  12669. },
  12670. {
  12671. name: "Macro",
  12672. height: math.unit(500, "meters")
  12673. },
  12674. {
  12675. name: "Megamacro",
  12676. height: math.unit(9000, "km")
  12677. },
  12678. {
  12679. name: "Teramacro",
  12680. height: math.unit(384000, "km")
  12681. },
  12682. ]
  12683. ))
  12684. characterMakers.push(() => makeCharacter(
  12685. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12686. {
  12687. front: {
  12688. height: math.unit(6, "feet"),
  12689. weight: math.unit(150, "lb"),
  12690. name: "Front",
  12691. image: {
  12692. source: "./media/characters/kayroo/front.svg",
  12693. extra: 1153 / 1038,
  12694. bottom: 0.06
  12695. }
  12696. },
  12697. foot: {
  12698. height: math.unit(6, "feet"),
  12699. weight: math.unit(150, "lb"),
  12700. name: "Foot",
  12701. image: {
  12702. source: "./media/characters/kayroo/foot.svg"
  12703. }
  12704. },
  12705. },
  12706. [
  12707. {
  12708. name: "Normal",
  12709. height: math.unit(8, "feet"),
  12710. default: true
  12711. },
  12712. {
  12713. name: "Minimacro",
  12714. height: math.unit(250, "feet")
  12715. },
  12716. {
  12717. name: "Macro",
  12718. height: math.unit(2800, "feet")
  12719. },
  12720. {
  12721. name: "Megamacro",
  12722. height: math.unit(5200, "feet")
  12723. },
  12724. {
  12725. name: "Gigamacro",
  12726. height: math.unit(27000, "feet")
  12727. },
  12728. {
  12729. name: "Omega",
  12730. height: math.unit(45000, "feet")
  12731. },
  12732. ]
  12733. ))
  12734. characterMakers.push(() => makeCharacter(
  12735. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12736. {
  12737. front: {
  12738. height: math.unit(18, "feet"),
  12739. weight: math.unit(5800, "lb"),
  12740. name: "Front",
  12741. image: {
  12742. source: "./media/characters/rhys/front.svg",
  12743. extra: 3386 / 3090,
  12744. bottom: 0.07
  12745. }
  12746. },
  12747. },
  12748. [
  12749. {
  12750. name: "Normal",
  12751. height: math.unit(18, "feet"),
  12752. default: true
  12753. },
  12754. {
  12755. name: "Working Size",
  12756. height: math.unit(200, "feet")
  12757. },
  12758. {
  12759. name: "Demolition Size",
  12760. height: math.unit(2000, "feet")
  12761. },
  12762. {
  12763. name: "Maximum Licensed Size",
  12764. height: math.unit(5, "miles")
  12765. },
  12766. {
  12767. name: "Maximum Observed Size",
  12768. height: math.unit(10, "yottameters")
  12769. },
  12770. ]
  12771. ))
  12772. characterMakers.push(() => makeCharacter(
  12773. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12774. {
  12775. front: {
  12776. height: math.unit(6, "feet"),
  12777. weight: math.unit(250, "lb"),
  12778. name: "Front",
  12779. image: {
  12780. source: "./media/characters/toto/front.svg",
  12781. extra: 527 / 479,
  12782. bottom: 0.05
  12783. }
  12784. },
  12785. },
  12786. [
  12787. {
  12788. name: "Micro",
  12789. height: math.unit(3, "feet")
  12790. },
  12791. {
  12792. name: "Normal",
  12793. height: math.unit(10, "feet")
  12794. },
  12795. {
  12796. name: "Macro",
  12797. height: math.unit(150, "feet"),
  12798. default: true
  12799. },
  12800. {
  12801. name: "Megamacro",
  12802. height: math.unit(1200, "feet")
  12803. },
  12804. ]
  12805. ))
  12806. characterMakers.push(() => makeCharacter(
  12807. { name: "King", species: ["lion"], tags: ["anthro"] },
  12808. {
  12809. back: {
  12810. height: math.unit(6, "feet"),
  12811. weight: math.unit(150, "lb"),
  12812. name: "Back",
  12813. image: {
  12814. source: "./media/characters/king/back.svg"
  12815. }
  12816. },
  12817. },
  12818. [
  12819. {
  12820. name: "Micro",
  12821. height: math.unit(2, "inches")
  12822. },
  12823. {
  12824. name: "Normal",
  12825. height: math.unit(8, "feet")
  12826. },
  12827. {
  12828. name: "Macro",
  12829. height: math.unit(200, "feet"),
  12830. default: true
  12831. },
  12832. {
  12833. name: "Megamacro",
  12834. height: math.unit(50, "miles")
  12835. },
  12836. ]
  12837. ))
  12838. characterMakers.push(() => makeCharacter(
  12839. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12840. {
  12841. front: {
  12842. height: math.unit(11, "feet"),
  12843. weight: math.unit(1400, "lb"),
  12844. name: "Front",
  12845. image: {
  12846. source: "./media/characters/cordite/front.svg",
  12847. extra: 1919/1827,
  12848. bottom: 40/1959
  12849. }
  12850. },
  12851. side: {
  12852. height: math.unit(11, "feet"),
  12853. weight: math.unit(1400, "lb"),
  12854. name: "Side",
  12855. image: {
  12856. source: "./media/characters/cordite/side.svg",
  12857. extra: 1908/1793,
  12858. bottom: 38/1946
  12859. }
  12860. },
  12861. back: {
  12862. height: math.unit(11, "feet"),
  12863. weight: math.unit(1400, "lb"),
  12864. name: "Back",
  12865. image: {
  12866. source: "./media/characters/cordite/back.svg",
  12867. extra: 1938/1837,
  12868. bottom: 10/1948
  12869. }
  12870. },
  12871. feral: {
  12872. height: math.unit(2, "feet"),
  12873. weight: math.unit(90, "lb"),
  12874. name: "Feral",
  12875. image: {
  12876. source: "./media/characters/cordite/feral.svg",
  12877. extra: 1260 / 755,
  12878. bottom: 0.05
  12879. }
  12880. },
  12881. },
  12882. [
  12883. {
  12884. name: "Normal",
  12885. height: math.unit(11, "feet"),
  12886. default: true
  12887. },
  12888. ]
  12889. ))
  12890. characterMakers.push(() => makeCharacter(
  12891. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12892. {
  12893. front: {
  12894. height: math.unit(6, "feet"),
  12895. weight: math.unit(150, "lb"),
  12896. name: "Front",
  12897. image: {
  12898. source: "./media/characters/pianostrong/front.svg",
  12899. extra: 6577 / 6254,
  12900. bottom: 0.02
  12901. }
  12902. },
  12903. side: {
  12904. height: math.unit(6, "feet"),
  12905. weight: math.unit(150, "lb"),
  12906. name: "Side",
  12907. image: {
  12908. source: "./media/characters/pianostrong/side.svg",
  12909. extra: 6106 / 5730
  12910. }
  12911. },
  12912. back: {
  12913. height: math.unit(6, "feet"),
  12914. weight: math.unit(150, "lb"),
  12915. name: "Back",
  12916. image: {
  12917. source: "./media/characters/pianostrong/back.svg",
  12918. extra: 6085 / 5733,
  12919. bottom: 0.01
  12920. }
  12921. },
  12922. },
  12923. [
  12924. {
  12925. name: "Macro",
  12926. height: math.unit(100, "feet")
  12927. },
  12928. {
  12929. name: "Macro+",
  12930. height: math.unit(300, "feet"),
  12931. default: true
  12932. },
  12933. {
  12934. name: "Macro++",
  12935. height: math.unit(1000, "feet")
  12936. },
  12937. ]
  12938. ))
  12939. characterMakers.push(() => makeCharacter(
  12940. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12941. {
  12942. front: {
  12943. height: math.unit(6, "feet"),
  12944. weight: math.unit(150, "lb"),
  12945. name: "Front",
  12946. image: {
  12947. source: "./media/characters/kona/front.svg",
  12948. extra: 2960 / 2629,
  12949. bottom: 0.005
  12950. }
  12951. },
  12952. },
  12953. [
  12954. {
  12955. name: "Normal",
  12956. height: math.unit(11 + 8 / 12, "feet")
  12957. },
  12958. {
  12959. name: "Macro",
  12960. height: math.unit(850, "feet"),
  12961. default: true
  12962. },
  12963. {
  12964. name: "Macro+",
  12965. height: math.unit(1.5, "km"),
  12966. default: true
  12967. },
  12968. {
  12969. name: "Megamacro",
  12970. height: math.unit(80, "miles")
  12971. },
  12972. {
  12973. name: "Gigamacro",
  12974. height: math.unit(3500, "miles")
  12975. },
  12976. ]
  12977. ))
  12978. characterMakers.push(() => makeCharacter(
  12979. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12980. {
  12981. side: {
  12982. height: math.unit(1.9, "meters"),
  12983. weight: math.unit(326, "kg"),
  12984. name: "Side",
  12985. image: {
  12986. source: "./media/characters/levi/side.svg",
  12987. extra: 1704 / 1334,
  12988. bottom: 0.02
  12989. }
  12990. },
  12991. },
  12992. [
  12993. {
  12994. name: "Normal",
  12995. height: math.unit(1.9, "meters"),
  12996. default: true
  12997. },
  12998. {
  12999. name: "Macro",
  13000. height: math.unit(20, "meters")
  13001. },
  13002. {
  13003. name: "Macro+",
  13004. height: math.unit(200, "meters")
  13005. },
  13006. {
  13007. name: "Megamacro",
  13008. height: math.unit(2, "km")
  13009. },
  13010. {
  13011. name: "Megamacro+",
  13012. height: math.unit(20, "km")
  13013. },
  13014. {
  13015. name: "Gigamacro",
  13016. height: math.unit(2500, "km")
  13017. },
  13018. {
  13019. name: "Gigamacro+",
  13020. height: math.unit(120000, "km")
  13021. },
  13022. {
  13023. name: "Teramacro",
  13024. height: math.unit(7.77e6, "km")
  13025. },
  13026. ]
  13027. ))
  13028. characterMakers.push(() => makeCharacter(
  13029. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  13030. {
  13031. front: {
  13032. height: math.unit(6 + 4/12, "feet"),
  13033. weight: math.unit(190, "lb"),
  13034. name: "Front",
  13035. image: {
  13036. source: "./media/characters/bmc/front.svg",
  13037. extra: 1626/1472,
  13038. bottom: 79/1705
  13039. }
  13040. },
  13041. back: {
  13042. height: math.unit(6 + 4/12, "feet"),
  13043. weight: math.unit(190, "lb"),
  13044. name: "Back",
  13045. image: {
  13046. source: "./media/characters/bmc/back.svg",
  13047. extra: 1640/1479,
  13048. bottom: 45/1685
  13049. }
  13050. },
  13051. frontArmor: {
  13052. height: math.unit(6 + 4/12, "feet"),
  13053. weight: math.unit(190, "lb"),
  13054. name: "Front-armor",
  13055. image: {
  13056. source: "./media/characters/bmc/front-armor.svg",
  13057. extra: 1538/1468,
  13058. bottom: 79/1617
  13059. }
  13060. },
  13061. },
  13062. [
  13063. {
  13064. name: "Human-sized",
  13065. height: math.unit(6 + 4 / 12, "feet")
  13066. },
  13067. {
  13068. name: "Interactive Size",
  13069. height: math.unit(25, "feet")
  13070. },
  13071. {
  13072. name: "Small",
  13073. height: math.unit(250, "feet")
  13074. },
  13075. {
  13076. name: "Normal",
  13077. height: math.unit(1250, "feet"),
  13078. default: true
  13079. },
  13080. {
  13081. name: "Good Day",
  13082. height: math.unit(88, "miles")
  13083. },
  13084. {
  13085. name: "Largest Measured Size",
  13086. height: math.unit(105.960, "galaxies")
  13087. },
  13088. ]
  13089. ))
  13090. characterMakers.push(() => makeCharacter(
  13091. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13092. {
  13093. front: {
  13094. height: math.unit(20, "feet"),
  13095. weight: math.unit(2016, "kg"),
  13096. name: "Front",
  13097. image: {
  13098. source: "./media/characters/sven-the-kaiju/front.svg",
  13099. extra: 1277/1250,
  13100. bottom: 35/1312
  13101. }
  13102. },
  13103. mouth: {
  13104. height: math.unit(1.85, "feet"),
  13105. name: "Mouth",
  13106. image: {
  13107. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13108. }
  13109. },
  13110. },
  13111. [
  13112. {
  13113. name: "Fairy",
  13114. height: math.unit(6, "inches")
  13115. },
  13116. {
  13117. name: "Normal",
  13118. height: math.unit(20, "feet"),
  13119. default: true
  13120. },
  13121. {
  13122. name: "Rampage",
  13123. height: math.unit(200, "feet")
  13124. },
  13125. {
  13126. name: "Archfey Forest Guardian",
  13127. height: math.unit(1, "mile")
  13128. },
  13129. ]
  13130. ))
  13131. characterMakers.push(() => makeCharacter(
  13132. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13133. {
  13134. front: {
  13135. height: math.unit(4, "meters"),
  13136. weight: math.unit(2, "tons"),
  13137. name: "Front",
  13138. image: {
  13139. source: "./media/characters/marik/front.svg",
  13140. extra: 1057 / 1003,
  13141. bottom: 0.08
  13142. }
  13143. },
  13144. },
  13145. [
  13146. {
  13147. name: "Normal",
  13148. height: math.unit(4, "meters"),
  13149. default: true
  13150. },
  13151. {
  13152. name: "Macro",
  13153. height: math.unit(20, "meters")
  13154. },
  13155. {
  13156. name: "Megamacro",
  13157. height: math.unit(50, "km")
  13158. },
  13159. {
  13160. name: "Gigamacro",
  13161. height: math.unit(100, "km")
  13162. },
  13163. {
  13164. name: "Alpha Macro",
  13165. height: math.unit(7.88e7, "yottameters")
  13166. },
  13167. ]
  13168. ))
  13169. characterMakers.push(() => makeCharacter(
  13170. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13171. {
  13172. front: {
  13173. height: math.unit(6, "feet"),
  13174. weight: math.unit(110, "lb"),
  13175. name: "Front",
  13176. image: {
  13177. source: "./media/characters/mel/front.svg",
  13178. extra: 736 / 617,
  13179. bottom: 0.017
  13180. }
  13181. },
  13182. },
  13183. [
  13184. {
  13185. name: "Pico",
  13186. height: math.unit(3, "pm")
  13187. },
  13188. {
  13189. name: "Nano",
  13190. height: math.unit(3, "nm")
  13191. },
  13192. {
  13193. name: "Micro",
  13194. height: math.unit(0.3, "mm"),
  13195. default: true
  13196. },
  13197. {
  13198. name: "Micro+",
  13199. height: math.unit(3, "mm")
  13200. },
  13201. {
  13202. name: "Normal",
  13203. height: math.unit(5 + 10.5 / 12, "feet")
  13204. },
  13205. ]
  13206. ))
  13207. characterMakers.push(() => makeCharacter(
  13208. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13209. {
  13210. kaiju: {
  13211. height: math.unit(1.75, "meters"),
  13212. weight: math.unit(55, "kg"),
  13213. name: "Kaiju",
  13214. image: {
  13215. source: "./media/characters/lykonous/kaiju.svg",
  13216. extra: 1055 / 946,
  13217. bottom: 0.135
  13218. }
  13219. },
  13220. },
  13221. [
  13222. {
  13223. name: "Normal",
  13224. height: math.unit(2.5, "meters"),
  13225. default: true
  13226. },
  13227. {
  13228. name: "Kaiju Dragon",
  13229. height: math.unit(60, "meters")
  13230. },
  13231. {
  13232. name: "Mega Kaiju",
  13233. height: math.unit(120, "km")
  13234. },
  13235. {
  13236. name: "Giga Kaiju",
  13237. height: math.unit(200, "megameters")
  13238. },
  13239. {
  13240. name: "Terra Kaiju",
  13241. height: math.unit(400, "gigameters")
  13242. },
  13243. {
  13244. name: "Kaiju Dragon God",
  13245. height: math.unit(13000, "exaparsecs")
  13246. },
  13247. ]
  13248. ))
  13249. characterMakers.push(() => makeCharacter(
  13250. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13251. {
  13252. front: {
  13253. height: math.unit(6, "feet"),
  13254. weight: math.unit(150, "lb"),
  13255. name: "Front",
  13256. image: {
  13257. source: "./media/characters/blü/front.svg",
  13258. extra: 1883 / 1564,
  13259. bottom: 0.031
  13260. }
  13261. },
  13262. },
  13263. [
  13264. {
  13265. name: "Normal",
  13266. height: math.unit(13, "feet"),
  13267. default: true
  13268. },
  13269. {
  13270. name: "Big Boi",
  13271. height: math.unit(150, "meters")
  13272. },
  13273. {
  13274. name: "Mini Stomper",
  13275. height: math.unit(300, "meters")
  13276. },
  13277. {
  13278. name: "Macro",
  13279. height: math.unit(1000, "meters")
  13280. },
  13281. {
  13282. name: "Megamacro",
  13283. height: math.unit(11000, "meters")
  13284. },
  13285. {
  13286. name: "Gigamacro",
  13287. height: math.unit(11000, "km")
  13288. },
  13289. {
  13290. name: "Teramacro",
  13291. height: math.unit(420000, "km")
  13292. },
  13293. {
  13294. name: "Examacro",
  13295. height: math.unit(120, "parsecs")
  13296. },
  13297. {
  13298. name: "God Tho",
  13299. height: math.unit(98000000000, "parsecs")
  13300. },
  13301. ]
  13302. ))
  13303. characterMakers.push(() => makeCharacter(
  13304. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13305. {
  13306. taurFront: {
  13307. height: math.unit(6, "feet"),
  13308. weight: math.unit(200, "lb"),
  13309. name: "Taur (Front)",
  13310. image: {
  13311. source: "./media/characters/scales/taur-front.svg",
  13312. extra: 1,
  13313. bottom: 0.05
  13314. }
  13315. },
  13316. taurBack: {
  13317. height: math.unit(6, "feet"),
  13318. weight: math.unit(200, "lb"),
  13319. name: "Taur (Back)",
  13320. image: {
  13321. source: "./media/characters/scales/taur-back.svg",
  13322. extra: 1,
  13323. bottom: 0.08
  13324. }
  13325. },
  13326. anthro: {
  13327. height: math.unit(6 * 7 / 12, "feet"),
  13328. weight: math.unit(100, "lb"),
  13329. name: "Anthro",
  13330. image: {
  13331. source: "./media/characters/scales/anthro.svg",
  13332. extra: 1,
  13333. bottom: 0.06
  13334. }
  13335. },
  13336. },
  13337. [
  13338. {
  13339. name: "Normal",
  13340. height: math.unit(12, "feet"),
  13341. default: true
  13342. },
  13343. ]
  13344. ))
  13345. characterMakers.push(() => makeCharacter(
  13346. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13347. {
  13348. front: {
  13349. height: math.unit(6, "feet"),
  13350. weight: math.unit(150, "lb"),
  13351. name: "Front",
  13352. image: {
  13353. source: "./media/characters/koragos/front.svg",
  13354. extra: 841 / 794,
  13355. bottom: 0.035
  13356. }
  13357. },
  13358. back: {
  13359. height: math.unit(6, "feet"),
  13360. weight: math.unit(150, "lb"),
  13361. name: "Back",
  13362. image: {
  13363. source: "./media/characters/koragos/back.svg",
  13364. extra: 841 / 810,
  13365. bottom: 0.022
  13366. }
  13367. },
  13368. },
  13369. [
  13370. {
  13371. name: "Normal",
  13372. height: math.unit(6 + 11 / 12, "feet"),
  13373. default: true
  13374. },
  13375. {
  13376. name: "Macro",
  13377. height: math.unit(490, "feet")
  13378. },
  13379. {
  13380. name: "Megamacro",
  13381. height: math.unit(10, "miles")
  13382. },
  13383. {
  13384. name: "Gigamacro",
  13385. height: math.unit(50, "miles")
  13386. },
  13387. ]
  13388. ))
  13389. characterMakers.push(() => makeCharacter(
  13390. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13391. {
  13392. front: {
  13393. height: math.unit(6, "feet"),
  13394. weight: math.unit(250, "lb"),
  13395. name: "Front",
  13396. image: {
  13397. source: "./media/characters/xylrem/front.svg",
  13398. extra: 3323 / 3050,
  13399. bottom: 0.065
  13400. }
  13401. },
  13402. },
  13403. [
  13404. {
  13405. name: "Micro",
  13406. height: math.unit(4, "feet")
  13407. },
  13408. {
  13409. name: "Normal",
  13410. height: math.unit(16, "feet"),
  13411. default: true
  13412. },
  13413. {
  13414. name: "Macro",
  13415. height: math.unit(2720, "feet")
  13416. },
  13417. {
  13418. name: "Megamacro",
  13419. height: math.unit(25000, "miles")
  13420. },
  13421. ]
  13422. ))
  13423. characterMakers.push(() => makeCharacter(
  13424. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13425. {
  13426. front: {
  13427. height: math.unit(8, "feet"),
  13428. weight: math.unit(250, "kg"),
  13429. name: "Front",
  13430. image: {
  13431. source: "./media/characters/ikideru/front.svg",
  13432. extra: 930 / 870,
  13433. bottom: 0.087
  13434. }
  13435. },
  13436. back: {
  13437. height: math.unit(8, "feet"),
  13438. weight: math.unit(250, "kg"),
  13439. name: "Back",
  13440. image: {
  13441. source: "./media/characters/ikideru/back.svg",
  13442. extra: 919 / 852,
  13443. bottom: 0.055
  13444. }
  13445. },
  13446. },
  13447. [
  13448. {
  13449. name: "Rare",
  13450. height: math.unit(8, "feet"),
  13451. default: true
  13452. },
  13453. {
  13454. name: "Playful Loom",
  13455. height: math.unit(80, "feet")
  13456. },
  13457. {
  13458. name: "City Leaner",
  13459. height: math.unit(230, "feet")
  13460. },
  13461. {
  13462. name: "Megamacro",
  13463. height: math.unit(2500, "feet")
  13464. },
  13465. {
  13466. name: "Gigamacro",
  13467. height: math.unit(26400, "feet")
  13468. },
  13469. {
  13470. name: "Tectonic Shifter",
  13471. height: math.unit(1.7, "megameters")
  13472. },
  13473. {
  13474. name: "Planet Carer",
  13475. height: math.unit(21, "megameters")
  13476. },
  13477. {
  13478. name: "God",
  13479. height: math.unit(11157.22, "parsecs")
  13480. },
  13481. ]
  13482. ))
  13483. characterMakers.push(() => makeCharacter(
  13484. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13485. {
  13486. front: {
  13487. height: math.unit(6, "feet"),
  13488. weight: math.unit(120, "lb"),
  13489. name: "Front",
  13490. image: {
  13491. source: "./media/characters/neo/front.svg"
  13492. }
  13493. },
  13494. },
  13495. [
  13496. {
  13497. name: "Micro",
  13498. height: math.unit(2, "inches"),
  13499. default: true
  13500. },
  13501. {
  13502. name: "Human Size",
  13503. height: math.unit(5 + 8 / 12, "feet")
  13504. },
  13505. ]
  13506. ))
  13507. characterMakers.push(() => makeCharacter(
  13508. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13509. {
  13510. front: {
  13511. height: math.unit(13 + 10 / 12, "feet"),
  13512. weight: math.unit(5320, "lb"),
  13513. name: "Front",
  13514. image: {
  13515. source: "./media/characters/chauncey-chantz/front.svg",
  13516. extra: 1587 / 1435,
  13517. bottom: 0.02
  13518. }
  13519. },
  13520. },
  13521. [
  13522. {
  13523. name: "Normal",
  13524. height: math.unit(13 + 10 / 12, "feet"),
  13525. default: true
  13526. },
  13527. {
  13528. name: "Macro",
  13529. height: math.unit(45, "feet")
  13530. },
  13531. {
  13532. name: "Megamacro",
  13533. height: math.unit(250, "miles")
  13534. },
  13535. {
  13536. name: "Planetary",
  13537. height: math.unit(10000, "miles")
  13538. },
  13539. {
  13540. name: "Galactic",
  13541. height: math.unit(40000, "parsecs")
  13542. },
  13543. {
  13544. name: "Universal",
  13545. height: math.unit(1, "yottameter")
  13546. },
  13547. ]
  13548. ))
  13549. characterMakers.push(() => makeCharacter(
  13550. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13551. {
  13552. front: {
  13553. height: math.unit(6, "feet"),
  13554. weight: math.unit(150, "lb"),
  13555. name: "Front",
  13556. image: {
  13557. source: "./media/characters/epifox/front.svg",
  13558. extra: 1,
  13559. bottom: 0.075
  13560. }
  13561. },
  13562. },
  13563. [
  13564. {
  13565. name: "Micro",
  13566. height: math.unit(6, "inches")
  13567. },
  13568. {
  13569. name: "Normal",
  13570. height: math.unit(12, "feet"),
  13571. default: true
  13572. },
  13573. {
  13574. name: "Macro",
  13575. height: math.unit(3810, "feet")
  13576. },
  13577. {
  13578. name: "Megamacro",
  13579. height: math.unit(500, "miles")
  13580. },
  13581. ]
  13582. ))
  13583. characterMakers.push(() => makeCharacter(
  13584. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13585. {
  13586. front: {
  13587. height: math.unit(1.8796, "m"),
  13588. weight: math.unit(230, "lb"),
  13589. name: "Front",
  13590. image: {
  13591. source: "./media/characters/colin-t/front.svg",
  13592. extra: 1272 / 1193,
  13593. bottom: 0.07
  13594. }
  13595. },
  13596. },
  13597. [
  13598. {
  13599. name: "Micro",
  13600. height: math.unit(0.571, "meters")
  13601. },
  13602. {
  13603. name: "Normal",
  13604. height: math.unit(1.8796, "meters"),
  13605. default: true
  13606. },
  13607. {
  13608. name: "Tall",
  13609. height: math.unit(4, "meters")
  13610. },
  13611. {
  13612. name: "Macro",
  13613. height: math.unit(67.241, "meters")
  13614. },
  13615. {
  13616. name: "Megamacro",
  13617. height: math.unit(371.856, "meters")
  13618. },
  13619. {
  13620. name: "Planetary",
  13621. height: math.unit(12631.5689, "km")
  13622. },
  13623. ]
  13624. ))
  13625. characterMakers.push(() => makeCharacter(
  13626. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13627. {
  13628. front: {
  13629. height: math.unit(1.85, "meters"),
  13630. weight: math.unit(80, "kg"),
  13631. name: "Front",
  13632. image: {
  13633. source: "./media/characters/matvei/front.svg",
  13634. extra: 456/447,
  13635. bottom: 8/464
  13636. }
  13637. },
  13638. back: {
  13639. height: math.unit(1.85, "meters"),
  13640. weight: math.unit(80, "kg"),
  13641. name: "Back",
  13642. image: {
  13643. source: "./media/characters/matvei/back.svg",
  13644. extra: 434/427,
  13645. bottom: 11/445
  13646. }
  13647. },
  13648. },
  13649. [
  13650. {
  13651. name: "Normal",
  13652. height: math.unit(1.85, "meters"),
  13653. default: true
  13654. },
  13655. ]
  13656. ))
  13657. characterMakers.push(() => makeCharacter(
  13658. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13659. {
  13660. front: {
  13661. height: math.unit(5 + 9 / 12, "feet"),
  13662. weight: math.unit(70, "lb"),
  13663. name: "Front",
  13664. image: {
  13665. source: "./media/characters/quincy/front.svg",
  13666. extra: 3041 / 2751
  13667. }
  13668. },
  13669. back: {
  13670. height: math.unit(5 + 9 / 12, "feet"),
  13671. weight: math.unit(70, "lb"),
  13672. name: "Back",
  13673. image: {
  13674. source: "./media/characters/quincy/back.svg",
  13675. extra: 3041 / 2751
  13676. }
  13677. },
  13678. flying: {
  13679. height: math.unit(5 + 4 / 12, "feet"),
  13680. weight: math.unit(70, "lb"),
  13681. name: "Flying",
  13682. image: {
  13683. source: "./media/characters/quincy/flying.svg",
  13684. extra: 1044 / 930
  13685. }
  13686. },
  13687. },
  13688. [
  13689. {
  13690. name: "Micro",
  13691. height: math.unit(3, "cm")
  13692. },
  13693. {
  13694. name: "Normal",
  13695. height: math.unit(5 + 9 / 12, "feet")
  13696. },
  13697. {
  13698. name: "Macro",
  13699. height: math.unit(200, "meters"),
  13700. default: true
  13701. },
  13702. {
  13703. name: "Megamacro",
  13704. height: math.unit(1000, "meters")
  13705. },
  13706. ]
  13707. ))
  13708. characterMakers.push(() => makeCharacter(
  13709. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13710. {
  13711. front: {
  13712. height: math.unit(3 + 11/12, "feet"),
  13713. weight: math.unit(50, "lb"),
  13714. name: "Front",
  13715. image: {
  13716. source: "./media/characters/vanrel/front.svg",
  13717. extra: 1104/949,
  13718. bottom: 52/1156
  13719. }
  13720. },
  13721. back: {
  13722. height: math.unit(3 + 11/12, "feet"),
  13723. weight: math.unit(50, "lb"),
  13724. name: "Back",
  13725. image: {
  13726. source: "./media/characters/vanrel/back.svg",
  13727. extra: 1119/976,
  13728. bottom: 37/1156
  13729. }
  13730. },
  13731. tome: {
  13732. height: math.unit(1.35, "feet"),
  13733. weight: math.unit(10, "lb"),
  13734. name: "Vanrel's Tome",
  13735. rename: true,
  13736. image: {
  13737. source: "./media/characters/vanrel/tome.svg"
  13738. }
  13739. },
  13740. beans: {
  13741. height: math.unit(0.89, "feet"),
  13742. name: "Beans",
  13743. image: {
  13744. source: "./media/characters/vanrel/beans.svg"
  13745. }
  13746. },
  13747. },
  13748. [
  13749. {
  13750. name: "Normal",
  13751. height: math.unit(3 + 11/12, "feet"),
  13752. default: true
  13753. },
  13754. ]
  13755. ))
  13756. characterMakers.push(() => makeCharacter(
  13757. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13758. {
  13759. front: {
  13760. height: math.unit(7 + 5 / 12, "feet"),
  13761. name: "Front",
  13762. image: {
  13763. source: "./media/characters/kuiper-vanrel/front.svg",
  13764. extra: 1219/1169,
  13765. bottom: 69/1288
  13766. }
  13767. },
  13768. back: {
  13769. height: math.unit(7 + 5 / 12, "feet"),
  13770. name: "Back",
  13771. image: {
  13772. source: "./media/characters/kuiper-vanrel/back.svg",
  13773. extra: 1236/1193,
  13774. bottom: 27/1263
  13775. }
  13776. },
  13777. foot: {
  13778. height: math.unit(0.55, "meters"),
  13779. name: "Foot",
  13780. image: {
  13781. source: "./media/characters/kuiper-vanrel/foot.svg",
  13782. }
  13783. },
  13784. battle: {
  13785. height: math.unit(6.824, "feet"),
  13786. name: "Battle",
  13787. image: {
  13788. source: "./media/characters/kuiper-vanrel/battle.svg",
  13789. extra: 1466 / 1327,
  13790. bottom: 29 / 1492.5
  13791. }
  13792. },
  13793. meerkui: {
  13794. height: math.unit(18, "inches"),
  13795. name: "Meerkui",
  13796. image: {
  13797. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13798. extra: 1354/1289,
  13799. bottom: 69/1423
  13800. }
  13801. },
  13802. },
  13803. [
  13804. {
  13805. name: "Normal",
  13806. height: math.unit(7 + 5 / 12, "feet"),
  13807. default: true
  13808. },
  13809. ]
  13810. ))
  13811. characterMakers.push(() => makeCharacter(
  13812. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13813. {
  13814. front: {
  13815. height: math.unit(8 + 5 / 12, "feet"),
  13816. name: "Front",
  13817. image: {
  13818. source: "./media/characters/keset-vanrel/front.svg",
  13819. extra: 1231/1148,
  13820. bottom: 82/1313
  13821. }
  13822. },
  13823. back: {
  13824. height: math.unit(8 + 5 / 12, "feet"),
  13825. name: "Back",
  13826. image: {
  13827. source: "./media/characters/keset-vanrel/back.svg",
  13828. extra: 1240/1174,
  13829. bottom: 33/1273
  13830. }
  13831. },
  13832. hand: {
  13833. height: math.unit(0.6, "meters"),
  13834. name: "Hand",
  13835. image: {
  13836. source: "./media/characters/keset-vanrel/hand.svg"
  13837. }
  13838. },
  13839. foot: {
  13840. height: math.unit(0.94978, "meters"),
  13841. name: "Foot",
  13842. image: {
  13843. source: "./media/characters/keset-vanrel/foot.svg"
  13844. }
  13845. },
  13846. battle: {
  13847. height: math.unit(7.408, "feet"),
  13848. name: "Battle",
  13849. image: {
  13850. source: "./media/characters/keset-vanrel/battle.svg",
  13851. extra: 1890 / 1386,
  13852. bottom: 73.28 / 1970
  13853. }
  13854. },
  13855. },
  13856. [
  13857. {
  13858. name: "Normal",
  13859. height: math.unit(8 + 5 / 12, "feet"),
  13860. default: true
  13861. },
  13862. ]
  13863. ))
  13864. characterMakers.push(() => makeCharacter(
  13865. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13866. {
  13867. front: {
  13868. height: math.unit(6, "feet"),
  13869. weight: math.unit(150, "lb"),
  13870. name: "Front",
  13871. image: {
  13872. source: "./media/characters/neos/front.svg",
  13873. extra: 1696 / 992,
  13874. bottom: 0.14
  13875. }
  13876. },
  13877. },
  13878. [
  13879. {
  13880. name: "Normal",
  13881. height: math.unit(54, "cm"),
  13882. default: true
  13883. },
  13884. {
  13885. name: "Macro",
  13886. height: math.unit(100, "m")
  13887. },
  13888. {
  13889. name: "Megamacro",
  13890. height: math.unit(10, "km")
  13891. },
  13892. {
  13893. name: "Megamacro+",
  13894. height: math.unit(100, "km")
  13895. },
  13896. {
  13897. name: "Gigamacro",
  13898. height: math.unit(100, "Mm")
  13899. },
  13900. {
  13901. name: "Teramacro",
  13902. height: math.unit(100, "Gm")
  13903. },
  13904. {
  13905. name: "Examacro",
  13906. height: math.unit(100, "Em")
  13907. },
  13908. {
  13909. name: "Godly",
  13910. height: math.unit(10000, "Ym")
  13911. },
  13912. {
  13913. name: "Beyond Godly",
  13914. height: math.unit(25, "multiverses")
  13915. },
  13916. ]
  13917. ))
  13918. characterMakers.push(() => makeCharacter(
  13919. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13920. {
  13921. fluide_tame: {
  13922. height: math.unit(5, "feet"),
  13923. name: "Tame",
  13924. image: {
  13925. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  13926. extra: 1655/1574,
  13927. bottom: 231/1886
  13928. },
  13929. form: "fluide",
  13930. default: true
  13931. },
  13932. fluide_nude: {
  13933. height: math.unit(5, "feet"),
  13934. name: "Nude",
  13935. image: {
  13936. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  13937. extra: 1655/1574,
  13938. bottom: 231/1886
  13939. },
  13940. form: "fluide",
  13941. },
  13942. male_tame: {
  13943. height: math.unit(5, "feet"),
  13944. name: "Tame",
  13945. image: {
  13946. source: "./media/characters/sammy-mouse/male-tame.svg",
  13947. extra: 1655/1574,
  13948. bottom: 231/1886
  13949. },
  13950. form: "male",
  13951. default: true
  13952. },
  13953. male_nude: {
  13954. height: math.unit(5, "feet"),
  13955. name: "Nude",
  13956. image: {
  13957. source: "./media/characters/sammy-mouse/male-nude.svg",
  13958. extra: 1655/1574,
  13959. bottom: 231/1886
  13960. },
  13961. form: "male",
  13962. },
  13963. female_nude: {
  13964. height: math.unit(5, "feet"),
  13965. name: "Nude",
  13966. image: {
  13967. source: "./media/characters/sammy-mouse/female-nude.svg",
  13968. extra: 1655/1574,
  13969. bottom: 231/1886
  13970. },
  13971. form: "female",
  13972. default: true
  13973. },
  13974. mouth: {
  13975. height: math.unit(0.32, "feet"),
  13976. name: "Mouth",
  13977. image: {
  13978. source: "./media/characters/sammy-mouse/mouth.svg"
  13979. },
  13980. allForms: true
  13981. },
  13982. paw: {
  13983. height: math.unit(0.42, "feet"),
  13984. name: "Paw",
  13985. image: {
  13986. source: "./media/characters/sammy-mouse/paw.svg"
  13987. },
  13988. allForms: true
  13989. },
  13990. },
  13991. [
  13992. {
  13993. name: "Micro",
  13994. height: math.unit(5, "inches"),
  13995. allForms: true
  13996. },
  13997. {
  13998. name: "Normal",
  13999. height: math.unit(5, "feet"),
  14000. default: true,
  14001. allForms: true
  14002. },
  14003. {
  14004. name: "Macro",
  14005. height: math.unit(60, "feet"),
  14006. allForms: true
  14007. },
  14008. ],
  14009. {
  14010. "fluide": {
  14011. name: "Fluide",
  14012. default: true
  14013. },
  14014. "male": {
  14015. name: "Male",
  14016. },
  14017. "female": {
  14018. name: "Female",
  14019. },
  14020. }
  14021. ))
  14022. characterMakers.push(() => makeCharacter(
  14023. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  14024. {
  14025. front: {
  14026. height: math.unit(4, "feet"),
  14027. weight: math.unit(50, "lb"),
  14028. name: "Front",
  14029. image: {
  14030. source: "./media/characters/kole/front.svg",
  14031. extra: 1423 / 1303,
  14032. bottom: 0.025
  14033. }
  14034. },
  14035. back: {
  14036. height: math.unit(4, "feet"),
  14037. weight: math.unit(50, "lb"),
  14038. name: "Back",
  14039. image: {
  14040. source: "./media/characters/kole/back.svg",
  14041. extra: 1426 / 1280,
  14042. bottom: 0.02
  14043. }
  14044. },
  14045. },
  14046. [
  14047. {
  14048. name: "Normal",
  14049. height: math.unit(4, "feet"),
  14050. default: true
  14051. },
  14052. ]
  14053. ))
  14054. characterMakers.push(() => makeCharacter(
  14055. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14056. {
  14057. front: {
  14058. height: math.unit(2.5, "feet"),
  14059. weight: math.unit(32, "lb"),
  14060. name: "Front",
  14061. image: {
  14062. source: "./media/characters/rufran/front.svg",
  14063. extra: 1313/885,
  14064. bottom: 94/1407
  14065. }
  14066. },
  14067. side: {
  14068. height: math.unit(2.5, "feet"),
  14069. weight: math.unit(32, "lb"),
  14070. name: "Side",
  14071. image: {
  14072. source: "./media/characters/rufran/side.svg",
  14073. extra: 1109/852,
  14074. bottom: 118/1227
  14075. }
  14076. },
  14077. back: {
  14078. height: math.unit(2.5, "feet"),
  14079. weight: math.unit(32, "lb"),
  14080. name: "Back",
  14081. image: {
  14082. source: "./media/characters/rufran/back.svg",
  14083. extra: 1280/878,
  14084. bottom: 131/1411
  14085. }
  14086. },
  14087. mouth: {
  14088. height: math.unit(1.13, "feet"),
  14089. name: "Mouth",
  14090. image: {
  14091. source: "./media/characters/rufran/mouth.svg"
  14092. }
  14093. },
  14094. foot: {
  14095. height: math.unit(1.33, "feet"),
  14096. name: "Foot",
  14097. image: {
  14098. source: "./media/characters/rufran/foot.svg"
  14099. }
  14100. },
  14101. koboldFront: {
  14102. height: math.unit(2 + 6 / 12, "feet"),
  14103. weight: math.unit(20, "lb"),
  14104. name: "Front (Kobold)",
  14105. image: {
  14106. source: "./media/characters/rufran/kobold-front.svg",
  14107. extra: 2041 / 1839,
  14108. bottom: 0.055
  14109. }
  14110. },
  14111. koboldBack: {
  14112. height: math.unit(2 + 6 / 12, "feet"),
  14113. weight: math.unit(20, "lb"),
  14114. name: "Back (Kobold)",
  14115. image: {
  14116. source: "./media/characters/rufran/kobold-back.svg",
  14117. extra: 2054 / 1839,
  14118. bottom: 0.01
  14119. }
  14120. },
  14121. koboldHand: {
  14122. height: math.unit(0.2166, "meters"),
  14123. name: "Hand (Kobold)",
  14124. image: {
  14125. source: "./media/characters/rufran/kobold-hand.svg"
  14126. }
  14127. },
  14128. koboldFoot: {
  14129. height: math.unit(0.185, "meters"),
  14130. name: "Foot (Kobold)",
  14131. image: {
  14132. source: "./media/characters/rufran/kobold-foot.svg"
  14133. }
  14134. },
  14135. },
  14136. [
  14137. {
  14138. name: "Micro",
  14139. height: math.unit(1, "inch")
  14140. },
  14141. {
  14142. name: "Normal",
  14143. height: math.unit(2 + 6 / 12, "feet"),
  14144. default: true
  14145. },
  14146. {
  14147. name: "Big",
  14148. height: math.unit(60, "feet")
  14149. },
  14150. {
  14151. name: "Macro",
  14152. height: math.unit(325, "feet")
  14153. },
  14154. ]
  14155. ))
  14156. characterMakers.push(() => makeCharacter(
  14157. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14158. {
  14159. front: {
  14160. height: math.unit(0.3, "meters"),
  14161. weight: math.unit(3.5, "kg"),
  14162. name: "Front",
  14163. image: {
  14164. source: "./media/characters/chip/front.svg",
  14165. extra: 748 / 674
  14166. }
  14167. },
  14168. },
  14169. [
  14170. {
  14171. name: "Micro",
  14172. height: math.unit(1, "inch"),
  14173. default: true
  14174. },
  14175. ]
  14176. ))
  14177. characterMakers.push(() => makeCharacter(
  14178. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14179. {
  14180. side: {
  14181. height: math.unit(2.3, "meters"),
  14182. weight: math.unit(3500, "lb"),
  14183. name: "Side",
  14184. image: {
  14185. source: "./media/characters/torvid/side.svg",
  14186. extra: 1972 / 722,
  14187. bottom: 0.035
  14188. }
  14189. },
  14190. },
  14191. [
  14192. {
  14193. name: "Normal",
  14194. height: math.unit(2.3, "meters"),
  14195. default: true
  14196. },
  14197. ]
  14198. ))
  14199. characterMakers.push(() => makeCharacter(
  14200. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14201. {
  14202. front: {
  14203. height: math.unit(2, "meters"),
  14204. weight: math.unit(150.5, "kg"),
  14205. name: "Front",
  14206. image: {
  14207. source: "./media/characters/susan/front.svg",
  14208. extra: 693 / 635,
  14209. bottom: 0.05
  14210. }
  14211. },
  14212. },
  14213. [
  14214. {
  14215. name: "Megamacro",
  14216. height: math.unit(505, "miles"),
  14217. default: true
  14218. },
  14219. ]
  14220. ))
  14221. characterMakers.push(() => makeCharacter(
  14222. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14223. {
  14224. front: {
  14225. height: math.unit(6, "feet"),
  14226. weight: math.unit(150, "lb"),
  14227. name: "Front",
  14228. image: {
  14229. source: "./media/characters/raindrops/front.svg",
  14230. extra: 2655 / 2461,
  14231. bottom: 49 / 2705
  14232. }
  14233. },
  14234. back: {
  14235. height: math.unit(6, "feet"),
  14236. weight: math.unit(150, "lb"),
  14237. name: "Back",
  14238. image: {
  14239. source: "./media/characters/raindrops/back.svg",
  14240. extra: 2574 / 2400,
  14241. bottom: 65 / 2634
  14242. }
  14243. },
  14244. },
  14245. [
  14246. {
  14247. name: "Micro",
  14248. height: math.unit(6, "inches")
  14249. },
  14250. {
  14251. name: "Normal",
  14252. height: math.unit(6 + 2 / 12, "feet")
  14253. },
  14254. {
  14255. name: "Macro",
  14256. height: math.unit(131, "feet"),
  14257. default: true
  14258. },
  14259. {
  14260. name: "Megamacro",
  14261. height: math.unit(15, "miles")
  14262. },
  14263. {
  14264. name: "Gigamacro",
  14265. height: math.unit(4000, "miles")
  14266. },
  14267. {
  14268. name: "Teramacro",
  14269. height: math.unit(315000, "miles")
  14270. },
  14271. ]
  14272. ))
  14273. characterMakers.push(() => makeCharacter(
  14274. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14275. {
  14276. front: {
  14277. height: math.unit(2.794, "meters"),
  14278. weight: math.unit(325, "kg"),
  14279. name: "Front",
  14280. image: {
  14281. source: "./media/characters/tezwa/front.svg",
  14282. extra: 2083 / 1906,
  14283. bottom: 0.031
  14284. }
  14285. },
  14286. foot: {
  14287. height: math.unit(0.687, "meters"),
  14288. name: "Foot",
  14289. image: {
  14290. source: "./media/characters/tezwa/foot.svg"
  14291. }
  14292. },
  14293. },
  14294. [
  14295. {
  14296. name: "Normal",
  14297. height: math.unit(9 + 2 / 12, "feet"),
  14298. default: true
  14299. },
  14300. ]
  14301. ))
  14302. characterMakers.push(() => makeCharacter(
  14303. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14304. {
  14305. front: {
  14306. height: math.unit(58, "feet"),
  14307. weight: math.unit(89000, "lb"),
  14308. name: "Front",
  14309. image: {
  14310. source: "./media/characters/typhus/front.svg",
  14311. extra: 816 / 800,
  14312. bottom: 0.065
  14313. }
  14314. },
  14315. },
  14316. [
  14317. {
  14318. name: "Macro",
  14319. height: math.unit(58, "feet"),
  14320. default: true
  14321. },
  14322. ]
  14323. ))
  14324. characterMakers.push(() => makeCharacter(
  14325. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14326. {
  14327. front: {
  14328. height: math.unit(12, "feet"),
  14329. weight: math.unit(6, "tonnes"),
  14330. name: "Front",
  14331. image: {
  14332. source: "./media/characters/lyra-von-wulf/front.svg",
  14333. extra: 1,
  14334. bottom: 0.10
  14335. }
  14336. },
  14337. frontMecha: {
  14338. height: math.unit(12, "feet"),
  14339. weight: math.unit(12, "tonnes"),
  14340. name: "Front (Mecha)",
  14341. image: {
  14342. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14343. extra: 1,
  14344. bottom: 0.042
  14345. }
  14346. },
  14347. maw: {
  14348. height: math.unit(2.2, "feet"),
  14349. name: "Maw",
  14350. image: {
  14351. source: "./media/characters/lyra-von-wulf/maw.svg"
  14352. }
  14353. },
  14354. },
  14355. [
  14356. {
  14357. name: "Normal",
  14358. height: math.unit(12, "feet"),
  14359. default: true
  14360. },
  14361. {
  14362. name: "Classic",
  14363. height: math.unit(50, "feet")
  14364. },
  14365. {
  14366. name: "Macro",
  14367. height: math.unit(500, "feet")
  14368. },
  14369. {
  14370. name: "Megamacro",
  14371. height: math.unit(1, "mile")
  14372. },
  14373. {
  14374. name: "Gigamacro",
  14375. height: math.unit(400, "miles")
  14376. },
  14377. {
  14378. name: "Teramacro",
  14379. height: math.unit(22000, "miles")
  14380. },
  14381. {
  14382. name: "Solarmacro",
  14383. height: math.unit(8600000, "miles")
  14384. },
  14385. {
  14386. name: "Galactic",
  14387. height: math.unit(1057000, "lightyears")
  14388. },
  14389. ]
  14390. ))
  14391. characterMakers.push(() => makeCharacter(
  14392. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14393. {
  14394. front: {
  14395. height: math.unit(6 + 10 / 12, "feet"),
  14396. weight: math.unit(150, "lb"),
  14397. name: "Front",
  14398. image: {
  14399. source: "./media/characters/dixon/front.svg",
  14400. extra: 3361 / 3209,
  14401. bottom: 0.01
  14402. }
  14403. },
  14404. },
  14405. [
  14406. {
  14407. name: "Normal",
  14408. height: math.unit(6 + 10 / 12, "feet"),
  14409. default: true
  14410. },
  14411. {
  14412. name: "Big",
  14413. height: math.unit(12, "meters")
  14414. },
  14415. {
  14416. name: "Macro",
  14417. height: math.unit(500, "meters")
  14418. },
  14419. {
  14420. name: "Megamacro",
  14421. height: math.unit(2, "km")
  14422. },
  14423. ]
  14424. ))
  14425. characterMakers.push(() => makeCharacter(
  14426. { name: "Kauko", species: ["wolf", "king-cheetah"], tags: ["anthro"] },
  14427. {
  14428. kingCheetah_front: {
  14429. height: math.unit(1.85, "meters"),
  14430. weight: math.unit(68, "kg"),
  14431. name: "Front",
  14432. image: {
  14433. source: "./media/characters/kauko/king-cheetah-front.svg",
  14434. extra: 1007/972,
  14435. bottom: 35/1042
  14436. },
  14437. form: "king-cheetah",
  14438. default: true
  14439. },
  14440. kingCheetah_back: {
  14441. height: math.unit(1.85, "meters"),
  14442. weight: math.unit(68, "kg"),
  14443. name: "Back",
  14444. image: {
  14445. source: "./media/characters/kauko/king-cheetah-back.svg",
  14446. extra: 1015/980,
  14447. bottom: 11/1026
  14448. },
  14449. form: "king-cheetah",
  14450. },
  14451. kingCheetah_hand: {
  14452. height: math.unit(0.23, "meters"),
  14453. name: "Hand",
  14454. image: {
  14455. source: "./media/characters/kauko/king-cheetah-hand.svg"
  14456. },
  14457. form: "king-cheetah",
  14458. },
  14459. kingCheetah_paw: {
  14460. height: math.unit(0.38, "meters"),
  14461. name: "Paw",
  14462. image: {
  14463. source: "./media/characters/kauko/king-cheetah-paw.svg"
  14464. },
  14465. form: "king-cheetah",
  14466. },
  14467. kingCheetah_nape: {
  14468. height: math.unit(0.23, "meters"),
  14469. name: "Nape",
  14470. image: {
  14471. source: "./media/characters/kauko/king-cheetah-nape.svg"
  14472. },
  14473. form: "king-cheetah",
  14474. },
  14475. wolf_front: {
  14476. height: math.unit(1.88, "meters"),
  14477. weight: math.unit(74, "kg"),
  14478. name: "Front",
  14479. image: {
  14480. source: "./media/characters/kauko/wolf-front.svg",
  14481. extra: 952/908,
  14482. bottom: 64/1016
  14483. },
  14484. form: "wolf",
  14485. default: true
  14486. },
  14487. wolf_dressed: {
  14488. height: math.unit(1.88, "meters"),
  14489. weight: math.unit(74, "kg"),
  14490. name: "Dressed",
  14491. image: {
  14492. source: "./media/characters/kauko/wolf-dressed.svg",
  14493. extra: 963/916,
  14494. bottom: 101/1064
  14495. },
  14496. form: "wolf",
  14497. },
  14498. wolf_hand: {
  14499. height: math.unit(0.3, "meters"),
  14500. name: "Hand",
  14501. image: {
  14502. source: "./media/characters/kauko/wolf-hand.svg"
  14503. },
  14504. form: "wolf",
  14505. },
  14506. wolf_paw: {
  14507. height: math.unit(0.407, "meters"),
  14508. name: "Paw",
  14509. image: {
  14510. source: "./media/characters/kauko/wolf-paw.svg"
  14511. },
  14512. form: "wolf",
  14513. },
  14514. wolf_nape: {
  14515. height: math.unit(0.25, "meters"),
  14516. name: "Nape",
  14517. image: {
  14518. source: "./media/characters/kauko/wolf-nape.svg"
  14519. },
  14520. form: "wolf",
  14521. },
  14522. },
  14523. [
  14524. {
  14525. name: "Normal",
  14526. height: math.unit(1.85, "m"),
  14527. default: true,
  14528. form: "king-cheetah"
  14529. },
  14530. {
  14531. name: "Normal",
  14532. height: math.unit(1.88, "m"),
  14533. default: true,
  14534. form: "wolf"
  14535. },
  14536. ],
  14537. {
  14538. "king-cheetah": {
  14539. name: "King Cheetah",
  14540. default: true
  14541. },
  14542. "wolf": {
  14543. name: "Wolf",
  14544. },
  14545. }
  14546. ))
  14547. characterMakers.push(() => makeCharacter(
  14548. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14549. {
  14550. frontSfw: {
  14551. height: math.unit(5, "meters"),
  14552. weight: math.unit(4250, "lb"),
  14553. name: "Front",
  14554. image: {
  14555. source: "./media/characters/varg/front-sfw.svg",
  14556. extra: 1103/1010,
  14557. bottom: 50/1153
  14558. },
  14559. form: "anthro",
  14560. default: true
  14561. },
  14562. backSfw: {
  14563. height: math.unit(5, "meters"),
  14564. weight: math.unit(4250, "lb"),
  14565. name: "Back",
  14566. image: {
  14567. source: "./media/characters/varg/back-sfw.svg",
  14568. extra: 1038/1022,
  14569. bottom: 36/1074
  14570. },
  14571. form: "anthro"
  14572. },
  14573. frontNsfw: {
  14574. height: math.unit(5, "meters"),
  14575. weight: math.unit(4250, "lb"),
  14576. name: "Front (NSFW)",
  14577. image: {
  14578. source: "./media/characters/varg/front-nsfw.svg",
  14579. extra: 1103/1010,
  14580. bottom: 50/1153
  14581. },
  14582. form: "anthro"
  14583. },
  14584. sheath: {
  14585. height: math.unit(3.8, "feet"),
  14586. weight: math.unit(90, "kilograms"),
  14587. name: "Sheath",
  14588. image: {
  14589. source: "./media/characters/varg/sheath.svg"
  14590. },
  14591. form: "anthro"
  14592. },
  14593. dick: {
  14594. height: math.unit(4.6, "feet"),
  14595. weight: math.unit(451, "kilograms"),
  14596. name: "Dick",
  14597. image: {
  14598. source: "./media/characters/varg/dick.svg"
  14599. },
  14600. form: "anthro"
  14601. },
  14602. feralSfw: {
  14603. height: math.unit(5, "meters"),
  14604. weight: math.unit(100000, "lb"),
  14605. name: "Side",
  14606. image: {
  14607. source: "./media/characters/varg/feral-sfw.svg",
  14608. extra: 1065/511,
  14609. bottom: 211/1276
  14610. },
  14611. form: "feral",
  14612. default: true
  14613. },
  14614. feralNsfw: {
  14615. height: math.unit(5, "meters"),
  14616. weight: math.unit(100000, "lb"),
  14617. name: "Side (NSFW)",
  14618. image: {
  14619. source: "./media/characters/varg/feral-nsfw.svg",
  14620. extra: 1065/511,
  14621. bottom: 211/1276
  14622. },
  14623. form: "feral",
  14624. },
  14625. feralSheath: {
  14626. height: math.unit(9.8, "feet"),
  14627. weight: math.unit(2000, "kilograms"),
  14628. name: "Sheath",
  14629. image: {
  14630. source: "./media/characters/varg/sheath.svg"
  14631. },
  14632. form: "feral"
  14633. },
  14634. feralDick: {
  14635. height: math.unit(13.11, "feet"),
  14636. weight: math.unit(10440, "kilograms"),
  14637. name: "Dick",
  14638. image: {
  14639. source: "./media/characters/varg/dick.svg"
  14640. },
  14641. form: "feral"
  14642. },
  14643. },
  14644. [
  14645. {
  14646. name: "Normal",
  14647. height: math.unit(5, "meters"),
  14648. form: "anthro"
  14649. },
  14650. {
  14651. name: "Macro",
  14652. height: math.unit(200, "meters"),
  14653. form: "anthro"
  14654. },
  14655. {
  14656. name: "Megamacro",
  14657. height: math.unit(20, "kilometers"),
  14658. form: "anthro"
  14659. },
  14660. {
  14661. name: "True Size",
  14662. height: math.unit(211, "km"),
  14663. form: "anthro",
  14664. default: true
  14665. },
  14666. {
  14667. name: "Gigamacro",
  14668. height: math.unit(1000, "km"),
  14669. form: "anthro"
  14670. },
  14671. {
  14672. name: "Gigamacro+",
  14673. height: math.unit(8000, "km"),
  14674. form: "anthro"
  14675. },
  14676. {
  14677. name: "Teramacro",
  14678. height: math.unit(1000000, "km"),
  14679. form: "anthro"
  14680. },
  14681. {
  14682. name: "Normal",
  14683. height: math.unit(5, "meters"),
  14684. form: "feral"
  14685. },
  14686. {
  14687. name: "Macro",
  14688. height: math.unit(200, "meters"),
  14689. form: "feral"
  14690. },
  14691. {
  14692. name: "Megamacro",
  14693. height: math.unit(20, "kilometers"),
  14694. form: "feral"
  14695. },
  14696. {
  14697. name: "True Size",
  14698. height: math.unit(211, "km"),
  14699. form: "feral",
  14700. default: true
  14701. },
  14702. {
  14703. name: "Gigamacro",
  14704. height: math.unit(1000, "km"),
  14705. form: "feral"
  14706. },
  14707. {
  14708. name: "Gigamacro+",
  14709. height: math.unit(8000, "km"),
  14710. form: "feral"
  14711. },
  14712. {
  14713. name: "Teramacro",
  14714. height: math.unit(1000000, "km"),
  14715. form: "feral"
  14716. },
  14717. ],
  14718. {
  14719. "anthro": {
  14720. name: "Anthro",
  14721. default: true
  14722. },
  14723. "feral": {
  14724. name: "Feral",
  14725. },
  14726. }
  14727. ))
  14728. characterMakers.push(() => makeCharacter(
  14729. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14730. {
  14731. front: {
  14732. height: math.unit(7 + 7 / 12, "feet"),
  14733. weight: math.unit(267, "lb"),
  14734. name: "Front",
  14735. image: {
  14736. source: "./media/characters/dayza/front.svg",
  14737. extra: 1262 / 1200,
  14738. bottom: 0.035
  14739. }
  14740. },
  14741. side: {
  14742. height: math.unit(7 + 7 / 12, "feet"),
  14743. weight: math.unit(267, "lb"),
  14744. name: "Side",
  14745. image: {
  14746. source: "./media/characters/dayza/side.svg",
  14747. extra: 1295 / 1245,
  14748. bottom: 0.05
  14749. }
  14750. },
  14751. back: {
  14752. height: math.unit(7 + 7 / 12, "feet"),
  14753. weight: math.unit(267, "lb"),
  14754. name: "Back",
  14755. image: {
  14756. source: "./media/characters/dayza/back.svg",
  14757. extra: 1241 / 1170
  14758. }
  14759. },
  14760. },
  14761. [
  14762. {
  14763. name: "Normal",
  14764. height: math.unit(7 + 7 / 12, "feet"),
  14765. default: true
  14766. },
  14767. {
  14768. name: "Macro",
  14769. height: math.unit(155, "feet")
  14770. },
  14771. ]
  14772. ))
  14773. characterMakers.push(() => makeCharacter(
  14774. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14775. {
  14776. front: {
  14777. height: math.unit(6 + 5 / 12, "feet"),
  14778. weight: math.unit(160, "lb"),
  14779. name: "Front",
  14780. image: {
  14781. source: "./media/characters/xanthos/front.svg",
  14782. extra: 1,
  14783. bottom: 0.04
  14784. }
  14785. },
  14786. back: {
  14787. height: math.unit(6 + 5 / 12, "feet"),
  14788. weight: math.unit(160, "lb"),
  14789. name: "Back",
  14790. image: {
  14791. source: "./media/characters/xanthos/back.svg",
  14792. extra: 1,
  14793. bottom: 0.03
  14794. }
  14795. },
  14796. hand: {
  14797. height: math.unit(0.928, "feet"),
  14798. name: "Hand",
  14799. image: {
  14800. source: "./media/characters/xanthos/hand.svg"
  14801. }
  14802. },
  14803. foot: {
  14804. height: math.unit(1.286, "feet"),
  14805. name: "Foot",
  14806. image: {
  14807. source: "./media/characters/xanthos/foot.svg"
  14808. }
  14809. },
  14810. },
  14811. [
  14812. {
  14813. name: "Normal",
  14814. height: math.unit(6 + 5 / 12, "feet"),
  14815. default: true
  14816. },
  14817. {
  14818. name: "Normal+",
  14819. height: math.unit(6, "meters")
  14820. },
  14821. {
  14822. name: "Macro",
  14823. height: math.unit(40, "feet")
  14824. },
  14825. {
  14826. name: "Macro+",
  14827. height: math.unit(200, "meters")
  14828. },
  14829. {
  14830. name: "Megamacro",
  14831. height: math.unit(20, "km")
  14832. },
  14833. {
  14834. name: "Megamacro+",
  14835. height: math.unit(100, "km")
  14836. },
  14837. {
  14838. name: "Gigamacro",
  14839. height: math.unit(200, "megameters")
  14840. },
  14841. {
  14842. name: "Gigamacro+",
  14843. height: math.unit(1.5, "gigameters")
  14844. },
  14845. ]
  14846. ))
  14847. characterMakers.push(() => makeCharacter(
  14848. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14849. {
  14850. front: {
  14851. height: math.unit(6 + 3 / 12, "feet"),
  14852. weight: math.unit(215, "lb"),
  14853. name: "Front",
  14854. image: {
  14855. source: "./media/characters/grynn/front.svg",
  14856. extra: 4627 / 4209,
  14857. bottom: 0.047
  14858. }
  14859. },
  14860. },
  14861. [
  14862. {
  14863. name: "Micro",
  14864. height: math.unit(6, "inches")
  14865. },
  14866. {
  14867. name: "Normal",
  14868. height: math.unit(6 + 3 / 12, "feet"),
  14869. default: true
  14870. },
  14871. {
  14872. name: "Big",
  14873. height: math.unit(104, "feet")
  14874. },
  14875. {
  14876. name: "Macro",
  14877. height: math.unit(944, "feet")
  14878. },
  14879. {
  14880. name: "Macro+",
  14881. height: math.unit(9480, "feet")
  14882. },
  14883. {
  14884. name: "Megamacro",
  14885. height: math.unit(78752, "feet")
  14886. },
  14887. {
  14888. name: "Megamacro+",
  14889. height: math.unit(630128, "feet")
  14890. },
  14891. {
  14892. name: "Megamacro++",
  14893. height: math.unit(3150695, "feet")
  14894. },
  14895. ]
  14896. ))
  14897. characterMakers.push(() => makeCharacter(
  14898. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14899. {
  14900. front: {
  14901. height: math.unit(7 + 5 / 12, "feet"),
  14902. weight: math.unit(450, "lb"),
  14903. name: "Front",
  14904. image: {
  14905. source: "./media/characters/mocha-aura/front.svg",
  14906. extra: 1907 / 1817,
  14907. bottom: 0.04
  14908. }
  14909. },
  14910. back: {
  14911. height: math.unit(7 + 5 / 12, "feet"),
  14912. weight: math.unit(450, "lb"),
  14913. name: "Back",
  14914. image: {
  14915. source: "./media/characters/mocha-aura/back.svg",
  14916. extra: 1900 / 1825,
  14917. bottom: 0.045
  14918. }
  14919. },
  14920. },
  14921. [
  14922. {
  14923. name: "Nano",
  14924. height: math.unit(1, "nm")
  14925. },
  14926. {
  14927. name: "Megamicro",
  14928. height: math.unit(1, "mm")
  14929. },
  14930. {
  14931. name: "Micro",
  14932. height: math.unit(3, "inches")
  14933. },
  14934. {
  14935. name: "Normal",
  14936. height: math.unit(7 + 5 / 12, "feet"),
  14937. default: true
  14938. },
  14939. {
  14940. name: "Macro",
  14941. height: math.unit(30, "feet")
  14942. },
  14943. {
  14944. name: "Megamacro",
  14945. height: math.unit(3500, "feet")
  14946. },
  14947. {
  14948. name: "Teramacro",
  14949. height: math.unit(500000, "miles")
  14950. },
  14951. {
  14952. name: "Petamacro",
  14953. height: math.unit(50000000000000000, "parsecs")
  14954. },
  14955. ]
  14956. ))
  14957. characterMakers.push(() => makeCharacter(
  14958. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14959. {
  14960. front: {
  14961. height: math.unit(6, "feet"),
  14962. weight: math.unit(150, "lb"),
  14963. name: "Front",
  14964. image: {
  14965. source: "./media/characters/ilisha-devya/front.svg",
  14966. extra: 1053/1049,
  14967. bottom: 270/1323
  14968. }
  14969. },
  14970. back: {
  14971. height: math.unit(6, "feet"),
  14972. weight: math.unit(150, "lb"),
  14973. name: "Back",
  14974. image: {
  14975. source: "./media/characters/ilisha-devya/back.svg",
  14976. extra: 1131/1128,
  14977. bottom: 39/1170
  14978. }
  14979. },
  14980. },
  14981. [
  14982. {
  14983. name: "Macro",
  14984. height: math.unit(500, "feet"),
  14985. default: true
  14986. },
  14987. {
  14988. name: "Megamacro",
  14989. height: math.unit(10, "miles")
  14990. },
  14991. {
  14992. name: "Gigamacro",
  14993. height: math.unit(100000, "miles")
  14994. },
  14995. {
  14996. name: "Examacro",
  14997. height: math.unit(1e9, "lightyears")
  14998. },
  14999. {
  15000. name: "Omniversal",
  15001. height: math.unit(1e33, "lightyears")
  15002. },
  15003. {
  15004. name: "Beyond Infinite",
  15005. height: math.unit(1e100, "lightyears")
  15006. },
  15007. ]
  15008. ))
  15009. characterMakers.push(() => makeCharacter(
  15010. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  15011. {
  15012. Side: {
  15013. height: math.unit(6, "feet"),
  15014. weight: math.unit(150, "lb"),
  15015. name: "Side",
  15016. image: {
  15017. source: "./media/characters/mira/side.svg",
  15018. extra: 900 / 799,
  15019. bottom: 0.02
  15020. }
  15021. },
  15022. },
  15023. [
  15024. {
  15025. name: "Human Size",
  15026. height: math.unit(6, "feet")
  15027. },
  15028. {
  15029. name: "Macro",
  15030. height: math.unit(100, "feet"),
  15031. default: true
  15032. },
  15033. {
  15034. name: "Megamacro",
  15035. height: math.unit(10, "miles")
  15036. },
  15037. {
  15038. name: "Gigamacro",
  15039. height: math.unit(25000, "miles")
  15040. },
  15041. {
  15042. name: "Teramacro",
  15043. height: math.unit(300, "AU")
  15044. },
  15045. {
  15046. name: "Full Size",
  15047. height: math.unit(4.5e10, "lightyears")
  15048. },
  15049. ]
  15050. ))
  15051. characterMakers.push(() => makeCharacter(
  15052. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  15053. {
  15054. front: {
  15055. height: math.unit(6, "feet"),
  15056. weight: math.unit(150, "lb"),
  15057. name: "Front",
  15058. image: {
  15059. source: "./media/characters/holly/front.svg",
  15060. extra: 639 / 606
  15061. }
  15062. },
  15063. back: {
  15064. height: math.unit(6, "feet"),
  15065. weight: math.unit(150, "lb"),
  15066. name: "Back",
  15067. image: {
  15068. source: "./media/characters/holly/back.svg",
  15069. extra: 623 / 598
  15070. }
  15071. },
  15072. frontWorking: {
  15073. height: math.unit(6, "feet"),
  15074. weight: math.unit(150, "lb"),
  15075. name: "Front (Working)",
  15076. image: {
  15077. source: "./media/characters/holly/front-working.svg",
  15078. extra: 607 / 577,
  15079. bottom: 0.048
  15080. }
  15081. },
  15082. },
  15083. [
  15084. {
  15085. name: "Normal",
  15086. height: math.unit(12 + 3 / 12, "feet"),
  15087. default: true
  15088. },
  15089. ]
  15090. ))
  15091. characterMakers.push(() => makeCharacter(
  15092. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  15093. {
  15094. front: {
  15095. height: math.unit(6, "feet"),
  15096. weight: math.unit(150, "lb"),
  15097. name: "Front",
  15098. image: {
  15099. source: "./media/characters/porter/front.svg",
  15100. extra: 1,
  15101. bottom: 0.01
  15102. }
  15103. },
  15104. frontRobes: {
  15105. height: math.unit(6, "feet"),
  15106. weight: math.unit(150, "lb"),
  15107. name: "Front (Robes)",
  15108. image: {
  15109. source: "./media/characters/porter/front-robes.svg",
  15110. extra: 1.01,
  15111. bottom: 0.01
  15112. }
  15113. },
  15114. },
  15115. [
  15116. {
  15117. name: "Normal",
  15118. height: math.unit(11 + 9 / 12, "feet"),
  15119. default: true
  15120. },
  15121. ]
  15122. ))
  15123. characterMakers.push(() => makeCharacter(
  15124. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15125. {
  15126. legendary: {
  15127. height: math.unit(6, "feet"),
  15128. weight: math.unit(150, "lb"),
  15129. name: "Legendary",
  15130. image: {
  15131. source: "./media/characters/lucy/legendary.svg",
  15132. extra: 1355 / 1100,
  15133. bottom: 0.045
  15134. }
  15135. },
  15136. },
  15137. [
  15138. {
  15139. name: "Legendary",
  15140. height: math.unit(86882 * 2, "miles"),
  15141. default: true
  15142. },
  15143. ]
  15144. ))
  15145. characterMakers.push(() => makeCharacter(
  15146. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15147. {
  15148. front: {
  15149. height: math.unit(6, "feet"),
  15150. weight: math.unit(150, "lb"),
  15151. name: "Front",
  15152. image: {
  15153. source: "./media/characters/drusilla/front.svg",
  15154. extra: 678 / 635,
  15155. bottom: 0.03
  15156. }
  15157. },
  15158. back: {
  15159. height: math.unit(6, "feet"),
  15160. weight: math.unit(150, "lb"),
  15161. name: "Back",
  15162. image: {
  15163. source: "./media/characters/drusilla/back.svg",
  15164. extra: 678 / 635,
  15165. bottom: 0.005
  15166. }
  15167. },
  15168. },
  15169. [
  15170. {
  15171. name: "Macro",
  15172. height: math.unit(100, "feet")
  15173. },
  15174. {
  15175. name: "Canon Height",
  15176. height: math.unit(2000, "feet"),
  15177. default: true
  15178. },
  15179. ]
  15180. ))
  15181. characterMakers.push(() => makeCharacter(
  15182. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15183. {
  15184. front: {
  15185. height: math.unit(6, "feet"),
  15186. weight: math.unit(180, "lb"),
  15187. name: "Front",
  15188. image: {
  15189. source: "./media/characters/renard-thatch/front.svg",
  15190. extra: 2411 / 2275,
  15191. bottom: 0.01
  15192. }
  15193. },
  15194. frontPosing: {
  15195. height: math.unit(6, "feet"),
  15196. weight: math.unit(180, "lb"),
  15197. name: "Front (Posing)",
  15198. image: {
  15199. source: "./media/characters/renard-thatch/front-posing.svg",
  15200. extra: 2381 / 2261,
  15201. bottom: 0.01
  15202. }
  15203. },
  15204. back: {
  15205. height: math.unit(6, "feet"),
  15206. weight: math.unit(180, "lb"),
  15207. name: "Back",
  15208. image: {
  15209. source: "./media/characters/renard-thatch/back.svg",
  15210. extra: 2428 / 2288
  15211. }
  15212. },
  15213. },
  15214. [
  15215. {
  15216. name: "Micro",
  15217. height: math.unit(3, "inches")
  15218. },
  15219. {
  15220. name: "Default",
  15221. height: math.unit(6, "feet"),
  15222. default: true
  15223. },
  15224. {
  15225. name: "Macro",
  15226. height: math.unit(75, "feet")
  15227. },
  15228. ]
  15229. ))
  15230. characterMakers.push(() => makeCharacter(
  15231. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15232. {
  15233. front: {
  15234. height: math.unit(1450, "feet"),
  15235. weight: math.unit(1.21e6, "tons"),
  15236. name: "Front",
  15237. image: {
  15238. source: "./media/characters/sekvra/front.svg",
  15239. extra: 1193/1190,
  15240. bottom: 78/1271
  15241. }
  15242. },
  15243. side: {
  15244. height: math.unit(1450, "feet"),
  15245. weight: math.unit(1.21e6, "tons"),
  15246. name: "Side",
  15247. image: {
  15248. source: "./media/characters/sekvra/side.svg",
  15249. extra: 1193/1190,
  15250. bottom: 52/1245
  15251. }
  15252. },
  15253. back: {
  15254. height: math.unit(1450, "feet"),
  15255. weight: math.unit(1.21e6, "tons"),
  15256. name: "Back",
  15257. image: {
  15258. source: "./media/characters/sekvra/back.svg",
  15259. extra: 1219/1216,
  15260. bottom: 21/1240
  15261. }
  15262. },
  15263. frontClothed: {
  15264. height: math.unit(1450, "feet"),
  15265. weight: math.unit(1.21e6, "tons"),
  15266. name: "Front (Clothed)",
  15267. image: {
  15268. source: "./media/characters/sekvra/front-clothed.svg",
  15269. extra: 1192/1189,
  15270. bottom: 79/1271
  15271. }
  15272. },
  15273. },
  15274. [
  15275. {
  15276. name: "Macro",
  15277. height: math.unit(1450, "feet"),
  15278. default: true
  15279. },
  15280. {
  15281. name: "Megamacro",
  15282. height: math.unit(15000, "feet")
  15283. },
  15284. ]
  15285. ))
  15286. characterMakers.push(() => makeCharacter(
  15287. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15288. {
  15289. front: {
  15290. height: math.unit(6, "feet"),
  15291. weight: math.unit(150, "lb"),
  15292. name: "Front",
  15293. image: {
  15294. source: "./media/characters/carmine/front.svg",
  15295. extra: 1557/1538,
  15296. bottom: 68/1625
  15297. }
  15298. },
  15299. frontArmor: {
  15300. height: math.unit(6, "feet"),
  15301. weight: math.unit(150, "lb"),
  15302. name: "Front (Armor)",
  15303. image: {
  15304. source: "./media/characters/carmine/front-armor.svg",
  15305. extra: 1549/1530,
  15306. bottom: 82/1631
  15307. }
  15308. },
  15309. mouth: {
  15310. height: math.unit(0.55, "feet"),
  15311. name: "Mouth",
  15312. image: {
  15313. source: "./media/characters/carmine/mouth.svg"
  15314. }
  15315. },
  15316. hand: {
  15317. height: math.unit(1.05, "feet"),
  15318. name: "Hand",
  15319. image: {
  15320. source: "./media/characters/carmine/hand.svg"
  15321. }
  15322. },
  15323. foot: {
  15324. height: math.unit(0.6, "feet"),
  15325. name: "Foot",
  15326. image: {
  15327. source: "./media/characters/carmine/foot.svg"
  15328. }
  15329. },
  15330. },
  15331. [
  15332. {
  15333. name: "Large",
  15334. height: math.unit(1, "mile")
  15335. },
  15336. {
  15337. name: "Huge",
  15338. height: math.unit(40, "miles"),
  15339. default: true
  15340. },
  15341. {
  15342. name: "Colossal",
  15343. height: math.unit(2500, "miles")
  15344. },
  15345. ]
  15346. ))
  15347. characterMakers.push(() => makeCharacter(
  15348. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15349. {
  15350. front: {
  15351. height: math.unit(6, "feet"),
  15352. weight: math.unit(150, "lb"),
  15353. name: "Front",
  15354. image: {
  15355. source: "./media/characters/elyssia/front.svg",
  15356. extra: 2201 / 2035,
  15357. bottom: 0.05
  15358. }
  15359. },
  15360. frontClothed: {
  15361. height: math.unit(6, "feet"),
  15362. weight: math.unit(150, "lb"),
  15363. name: "Front (Clothed)",
  15364. image: {
  15365. source: "./media/characters/elyssia/front-clothed.svg",
  15366. extra: 2201 / 2035,
  15367. bottom: 0.05
  15368. }
  15369. },
  15370. back: {
  15371. height: math.unit(6, "feet"),
  15372. weight: math.unit(150, "lb"),
  15373. name: "Back",
  15374. image: {
  15375. source: "./media/characters/elyssia/back.svg",
  15376. extra: 2201 / 2035,
  15377. bottom: 0.013
  15378. }
  15379. },
  15380. },
  15381. [
  15382. {
  15383. name: "Smaller",
  15384. height: math.unit(150, "feet")
  15385. },
  15386. {
  15387. name: "Standard",
  15388. height: math.unit(1400, "feet"),
  15389. default: true
  15390. },
  15391. {
  15392. name: "Distracted",
  15393. height: math.unit(15000, "feet")
  15394. },
  15395. ]
  15396. ))
  15397. characterMakers.push(() => makeCharacter(
  15398. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15399. {
  15400. front: {
  15401. height: math.unit(7 + 4/12, "feet"),
  15402. weight: math.unit(690, "lb"),
  15403. name: "Front",
  15404. image: {
  15405. source: "./media/characters/geno-maxwell/front.svg",
  15406. extra: 984/856,
  15407. bottom: 87/1071
  15408. }
  15409. },
  15410. back: {
  15411. height: math.unit(7 + 4/12, "feet"),
  15412. weight: math.unit(690, "lb"),
  15413. name: "Back",
  15414. image: {
  15415. source: "./media/characters/geno-maxwell/back.svg",
  15416. extra: 981/854,
  15417. bottom: 57/1038
  15418. }
  15419. },
  15420. frontCostume: {
  15421. height: math.unit(7 + 4/12, "feet"),
  15422. weight: math.unit(690, "lb"),
  15423. name: "Front (Costume)",
  15424. image: {
  15425. source: "./media/characters/geno-maxwell/front-costume.svg",
  15426. extra: 984/856,
  15427. bottom: 87/1071
  15428. }
  15429. },
  15430. backcostume: {
  15431. height: math.unit(7 + 4/12, "feet"),
  15432. weight: math.unit(690, "lb"),
  15433. name: "Back (Costume)",
  15434. image: {
  15435. source: "./media/characters/geno-maxwell/back-costume.svg",
  15436. extra: 981/854,
  15437. bottom: 57/1038
  15438. }
  15439. },
  15440. },
  15441. [
  15442. {
  15443. name: "Micro",
  15444. height: math.unit(3, "inches")
  15445. },
  15446. {
  15447. name: "Normal",
  15448. height: math.unit(7 + 4 / 12, "feet"),
  15449. default: true
  15450. },
  15451. {
  15452. name: "Macro",
  15453. height: math.unit(220, "feet")
  15454. },
  15455. {
  15456. name: "Megamacro",
  15457. height: math.unit(11, "miles")
  15458. },
  15459. ]
  15460. ))
  15461. characterMakers.push(() => makeCharacter(
  15462. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15463. {
  15464. front: {
  15465. height: math.unit(7 + 4/12, "feet"),
  15466. weight: math.unit(750, "lb"),
  15467. name: "Front",
  15468. image: {
  15469. source: "./media/characters/regena-maxwell/front.svg",
  15470. extra: 984/856,
  15471. bottom: 87/1071
  15472. }
  15473. },
  15474. back: {
  15475. height: math.unit(7 + 4/12, "feet"),
  15476. weight: math.unit(750, "lb"),
  15477. name: "Back",
  15478. image: {
  15479. source: "./media/characters/regena-maxwell/back.svg",
  15480. extra: 981/854,
  15481. bottom: 57/1038
  15482. }
  15483. },
  15484. frontCostume: {
  15485. height: math.unit(7 + 4/12, "feet"),
  15486. weight: math.unit(750, "lb"),
  15487. name: "Front (Costume)",
  15488. image: {
  15489. source: "./media/characters/regena-maxwell/front-costume.svg",
  15490. extra: 984/856,
  15491. bottom: 87/1071
  15492. }
  15493. },
  15494. backcostume: {
  15495. height: math.unit(7 + 4/12, "feet"),
  15496. weight: math.unit(750, "lb"),
  15497. name: "Back (Costume)",
  15498. image: {
  15499. source: "./media/characters/regena-maxwell/back-costume.svg",
  15500. extra: 981/854,
  15501. bottom: 57/1038
  15502. }
  15503. },
  15504. },
  15505. [
  15506. {
  15507. name: "Normal",
  15508. height: math.unit(7 + 4 / 12, "feet"),
  15509. default: true
  15510. },
  15511. {
  15512. name: "Macro",
  15513. height: math.unit(220, "feet")
  15514. },
  15515. {
  15516. name: "Megamacro",
  15517. height: math.unit(11, "miles")
  15518. },
  15519. ]
  15520. ))
  15521. characterMakers.push(() => makeCharacter(
  15522. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], 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/x-gliding-dragon-x/front.svg",
  15530. extra: 860 / 690,
  15531. bottom: 0.03
  15532. }
  15533. },
  15534. },
  15535. [
  15536. {
  15537. name: "Normal",
  15538. height: math.unit(1.7, "meters"),
  15539. default: true
  15540. },
  15541. ]
  15542. ))
  15543. characterMakers.push(() => makeCharacter(
  15544. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15545. {
  15546. front: {
  15547. height: math.unit(6, "feet"),
  15548. weight: math.unit(150, "lb"),
  15549. name: "Front",
  15550. image: {
  15551. source: "./media/characters/quilly/front.svg",
  15552. extra: 890 / 776
  15553. }
  15554. },
  15555. },
  15556. [
  15557. {
  15558. name: "Gigamacro",
  15559. height: math.unit(404090, "miles"),
  15560. default: true
  15561. },
  15562. ]
  15563. ))
  15564. characterMakers.push(() => makeCharacter(
  15565. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15566. {
  15567. front: {
  15568. height: math.unit(7 + 8 / 12, "feet"),
  15569. weight: math.unit(350, "lb"),
  15570. name: "Front",
  15571. image: {
  15572. source: "./media/characters/tempest/front.svg",
  15573. extra: 1175 / 1086,
  15574. bottom: 0.02
  15575. }
  15576. },
  15577. },
  15578. [
  15579. {
  15580. name: "Normal",
  15581. height: math.unit(7 + 8 / 12, "feet"),
  15582. default: true
  15583. },
  15584. ]
  15585. ))
  15586. characterMakers.push(() => makeCharacter(
  15587. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15588. {
  15589. side: {
  15590. height: math.unit(4 + 5 / 12, "feet"),
  15591. weight: math.unit(80, "lb"),
  15592. name: "Side",
  15593. image: {
  15594. source: "./media/characters/rodger/side.svg",
  15595. extra: 1235 / 1118
  15596. }
  15597. },
  15598. },
  15599. [
  15600. {
  15601. name: "Micro",
  15602. height: math.unit(1, "inch")
  15603. },
  15604. {
  15605. name: "Normal",
  15606. height: math.unit(4 + 5 / 12, "feet"),
  15607. default: true
  15608. },
  15609. {
  15610. name: "Macro",
  15611. height: math.unit(120, "feet")
  15612. },
  15613. ]
  15614. ))
  15615. characterMakers.push(() => makeCharacter(
  15616. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15617. {
  15618. front: {
  15619. height: math.unit(6, "feet"),
  15620. weight: math.unit(150, "lb"),
  15621. name: "Front",
  15622. image: {
  15623. source: "./media/characters/danyel/front.svg",
  15624. extra: 1185 / 1123,
  15625. bottom: 0.05
  15626. }
  15627. },
  15628. },
  15629. [
  15630. {
  15631. name: "Shrunken",
  15632. height: math.unit(0.5, "mm")
  15633. },
  15634. {
  15635. name: "Micro",
  15636. height: math.unit(1, "mm"),
  15637. default: true
  15638. },
  15639. {
  15640. name: "Upsized",
  15641. height: math.unit(5 + 5 / 12, "feet")
  15642. },
  15643. ]
  15644. ))
  15645. characterMakers.push(() => makeCharacter(
  15646. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15647. {
  15648. front: {
  15649. height: math.unit(5 + 6 / 12, "feet"),
  15650. weight: math.unit(200, "lb"),
  15651. name: "Front",
  15652. image: {
  15653. source: "./media/characters/vivian-bijoux/front.svg",
  15654. extra: 1217/1209,
  15655. bottom: 76/1293
  15656. }
  15657. },
  15658. back: {
  15659. height: math.unit(5 + 6 / 12, "feet"),
  15660. weight: math.unit(200, "lb"),
  15661. name: "Back",
  15662. image: {
  15663. source: "./media/characters/vivian-bijoux/back.svg",
  15664. extra: 1214/1208,
  15665. bottom: 51/1265
  15666. }
  15667. },
  15668. dressed: {
  15669. height: math.unit(5 + 6 / 12, "feet"),
  15670. weight: math.unit(200, "lb"),
  15671. name: "Dressed",
  15672. image: {
  15673. source: "./media/characters/vivian-bijoux/dressed.svg",
  15674. extra: 1217/1209,
  15675. bottom: 76/1293
  15676. }
  15677. },
  15678. },
  15679. [
  15680. {
  15681. name: "Normal",
  15682. height: math.unit(5 + 6 / 12, "feet"),
  15683. default: true
  15684. },
  15685. {
  15686. name: "Bad Dream",
  15687. height: math.unit(500, "feet")
  15688. },
  15689. {
  15690. name: "Nightmare",
  15691. height: math.unit(500, "miles")
  15692. },
  15693. ]
  15694. ))
  15695. characterMakers.push(() => makeCharacter(
  15696. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15697. {
  15698. front: {
  15699. height: math.unit(6 + 1 / 12, "feet"),
  15700. weight: math.unit(260, "lb"),
  15701. name: "Front",
  15702. image: {
  15703. source: "./media/characters/zeta/front.svg",
  15704. extra: 1968 / 1889,
  15705. bottom: 0.06
  15706. }
  15707. },
  15708. back: {
  15709. height: math.unit(6 + 1 / 12, "feet"),
  15710. weight: math.unit(260, "lb"),
  15711. name: "Back",
  15712. image: {
  15713. source: "./media/characters/zeta/back.svg",
  15714. extra: 1944 / 1858,
  15715. bottom: 0.03
  15716. }
  15717. },
  15718. hand: {
  15719. height: math.unit(1.112, "feet"),
  15720. name: "Hand",
  15721. image: {
  15722. source: "./media/characters/zeta/hand.svg"
  15723. }
  15724. },
  15725. foot: {
  15726. height: math.unit(1.48, "feet"),
  15727. name: "Foot",
  15728. image: {
  15729. source: "./media/characters/zeta/foot.svg"
  15730. }
  15731. },
  15732. },
  15733. [
  15734. {
  15735. name: "Micro",
  15736. height: math.unit(6, "inches")
  15737. },
  15738. {
  15739. name: "Normal",
  15740. height: math.unit(6 + 1 / 12, "feet"),
  15741. default: true
  15742. },
  15743. {
  15744. name: "Macro",
  15745. height: math.unit(20, "feet")
  15746. },
  15747. ]
  15748. ))
  15749. characterMakers.push(() => makeCharacter(
  15750. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15751. {
  15752. front: {
  15753. height: math.unit(6, "feet"),
  15754. weight: math.unit(150, "lb"),
  15755. name: "Front",
  15756. image: {
  15757. source: "./media/characters/jamie-larsen/front.svg",
  15758. extra: 962 / 933,
  15759. bottom: 0.02
  15760. }
  15761. },
  15762. back: {
  15763. height: math.unit(6, "feet"),
  15764. weight: math.unit(150, "lb"),
  15765. name: "Back",
  15766. image: {
  15767. source: "./media/characters/jamie-larsen/back.svg",
  15768. extra: 997 / 946
  15769. }
  15770. },
  15771. },
  15772. [
  15773. {
  15774. name: "Macro",
  15775. height: math.unit(28 + 7 / 12, "feet"),
  15776. default: true
  15777. },
  15778. {
  15779. name: "Macro+",
  15780. height: math.unit(180, "feet")
  15781. },
  15782. {
  15783. name: "Megamacro",
  15784. height: math.unit(10, "miles")
  15785. },
  15786. {
  15787. name: "Gigamacro",
  15788. height: math.unit(200000, "miles")
  15789. },
  15790. ]
  15791. ))
  15792. characterMakers.push(() => makeCharacter(
  15793. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15794. {
  15795. front: {
  15796. height: math.unit(6, "feet"),
  15797. weight: math.unit(120, "lb"),
  15798. name: "Front",
  15799. image: {
  15800. source: "./media/characters/vance/front.svg",
  15801. extra: 1980 / 1890,
  15802. bottom: 0.09
  15803. }
  15804. },
  15805. back: {
  15806. height: math.unit(6, "feet"),
  15807. weight: math.unit(120, "lb"),
  15808. name: "Back",
  15809. image: {
  15810. source: "./media/characters/vance/back.svg",
  15811. extra: 2081 / 1994,
  15812. bottom: 0.014
  15813. }
  15814. },
  15815. hand: {
  15816. height: math.unit(0.88, "feet"),
  15817. name: "Hand",
  15818. image: {
  15819. source: "./media/characters/vance/hand.svg"
  15820. }
  15821. },
  15822. foot: {
  15823. height: math.unit(0.64, "feet"),
  15824. name: "Foot",
  15825. image: {
  15826. source: "./media/characters/vance/foot.svg"
  15827. }
  15828. },
  15829. },
  15830. [
  15831. {
  15832. name: "Small",
  15833. height: math.unit(90, "feet"),
  15834. default: true
  15835. },
  15836. {
  15837. name: "Macro",
  15838. height: math.unit(100, "meters")
  15839. },
  15840. {
  15841. name: "Megamacro",
  15842. height: math.unit(15, "miles")
  15843. },
  15844. ]
  15845. ))
  15846. characterMakers.push(() => makeCharacter(
  15847. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15848. {
  15849. front: {
  15850. height: math.unit(6, "feet"),
  15851. weight: math.unit(180, "lb"),
  15852. name: "Front",
  15853. image: {
  15854. source: "./media/characters/xochitl/front.svg",
  15855. extra: 2297 / 2261,
  15856. bottom: 0.065
  15857. }
  15858. },
  15859. back: {
  15860. height: math.unit(6, "feet"),
  15861. weight: math.unit(180, "lb"),
  15862. name: "Back",
  15863. image: {
  15864. source: "./media/characters/xochitl/back.svg",
  15865. extra: 2386 / 2354,
  15866. bottom: 0.01
  15867. }
  15868. },
  15869. foot: {
  15870. height: math.unit(6 / 5 * 1.15, "feet"),
  15871. weight: math.unit(150, "lb"),
  15872. name: "Foot",
  15873. image: {
  15874. source: "./media/characters/xochitl/foot.svg"
  15875. }
  15876. },
  15877. },
  15878. [
  15879. {
  15880. name: "Macro",
  15881. height: math.unit(80, "feet")
  15882. },
  15883. {
  15884. name: "Macro+",
  15885. height: math.unit(400, "feet"),
  15886. default: true
  15887. },
  15888. {
  15889. name: "Gigamacro",
  15890. height: math.unit(80000, "miles")
  15891. },
  15892. {
  15893. name: "Gigamacro+",
  15894. height: math.unit(400000, "miles")
  15895. },
  15896. {
  15897. name: "Teramacro",
  15898. height: math.unit(300, "AU")
  15899. },
  15900. ]
  15901. ))
  15902. characterMakers.push(() => makeCharacter(
  15903. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15904. {
  15905. front: {
  15906. height: math.unit(6, "feet"),
  15907. weight: math.unit(150, "lb"),
  15908. name: "Front",
  15909. image: {
  15910. source: "./media/characters/vincent/front.svg",
  15911. extra: 1130 / 1080,
  15912. bottom: 0.055
  15913. }
  15914. },
  15915. beak: {
  15916. height: math.unit(6 * 0.1, "feet"),
  15917. name: "Beak",
  15918. image: {
  15919. source: "./media/characters/vincent/beak.svg"
  15920. }
  15921. },
  15922. hand: {
  15923. height: math.unit(6 * 0.85, "feet"),
  15924. weight: math.unit(150, "lb"),
  15925. name: "Hand",
  15926. image: {
  15927. source: "./media/characters/vincent/hand.svg"
  15928. }
  15929. },
  15930. foot: {
  15931. height: math.unit(6 * 0.19, "feet"),
  15932. weight: math.unit(150, "lb"),
  15933. name: "Foot",
  15934. image: {
  15935. source: "./media/characters/vincent/foot.svg"
  15936. }
  15937. },
  15938. },
  15939. [
  15940. {
  15941. name: "Base",
  15942. height: math.unit(6 + 5 / 12, "feet"),
  15943. default: true
  15944. },
  15945. {
  15946. name: "Macro",
  15947. height: math.unit(300, "feet")
  15948. },
  15949. {
  15950. name: "Megamacro",
  15951. height: math.unit(2, "miles")
  15952. },
  15953. {
  15954. name: "Gigamacro",
  15955. height: math.unit(1000, "miles")
  15956. },
  15957. ]
  15958. ))
  15959. characterMakers.push(() => makeCharacter(
  15960. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15961. {
  15962. front: {
  15963. height: math.unit(2, "meters"),
  15964. weight: math.unit(500, "kg"),
  15965. name: "Front",
  15966. image: {
  15967. source: "./media/characters/coatl/front.svg",
  15968. extra: 3948 / 3500,
  15969. bottom: 0.082
  15970. }
  15971. },
  15972. },
  15973. [
  15974. {
  15975. name: "Normal",
  15976. height: math.unit(4, "meters")
  15977. },
  15978. {
  15979. name: "Macro",
  15980. height: math.unit(100, "meters"),
  15981. default: true
  15982. },
  15983. {
  15984. name: "Macro+",
  15985. height: math.unit(300, "meters")
  15986. },
  15987. {
  15988. name: "Megamacro",
  15989. height: math.unit(3, "gigameters")
  15990. },
  15991. {
  15992. name: "Megamacro+",
  15993. height: math.unit(300, "terameters")
  15994. },
  15995. {
  15996. name: "Megamacro++",
  15997. height: math.unit(3, "lightyears")
  15998. },
  15999. ]
  16000. ))
  16001. characterMakers.push(() => makeCharacter(
  16002. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  16003. {
  16004. front: {
  16005. height: math.unit(6, "feet"),
  16006. weight: math.unit(50, "kg"),
  16007. name: "front",
  16008. image: {
  16009. source: "./media/characters/shiroryu/front.svg",
  16010. extra: 1990 / 1935
  16011. }
  16012. },
  16013. },
  16014. [
  16015. {
  16016. name: "Mortal Mingling",
  16017. height: math.unit(3, "meters")
  16018. },
  16019. {
  16020. name: "Kaiju-ish",
  16021. height: math.unit(250, "meters")
  16022. },
  16023. {
  16024. name: "Somewhat Godly",
  16025. height: math.unit(400, "km"),
  16026. default: true
  16027. },
  16028. {
  16029. name: "Planetary",
  16030. height: math.unit(300, "megameters")
  16031. },
  16032. {
  16033. name: "Galaxy-dwarfing",
  16034. height: math.unit(450, "kiloparsecs")
  16035. },
  16036. {
  16037. name: "Universe Eater",
  16038. height: math.unit(150, "gigaparsecs")
  16039. },
  16040. {
  16041. name: "Almost Immeasurable",
  16042. height: math.unit(1.3e266, "yottaparsecs")
  16043. },
  16044. ]
  16045. ))
  16046. characterMakers.push(() => makeCharacter(
  16047. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  16048. {
  16049. front: {
  16050. height: math.unit(6, "feet"),
  16051. weight: math.unit(150, "lb"),
  16052. name: "Front",
  16053. image: {
  16054. source: "./media/characters/umeko/front.svg",
  16055. extra: 1,
  16056. bottom: 0.019
  16057. }
  16058. },
  16059. frontArmored: {
  16060. height: math.unit(6, "feet"),
  16061. weight: math.unit(150, "lb"),
  16062. name: "Front (Armored)",
  16063. image: {
  16064. source: "./media/characters/umeko/front-armored.svg",
  16065. extra: 1,
  16066. bottom: 0.021
  16067. }
  16068. },
  16069. },
  16070. [
  16071. {
  16072. name: "Macro",
  16073. height: math.unit(220, "feet"),
  16074. default: true
  16075. },
  16076. {
  16077. name: "Guardian Dragon",
  16078. height: math.unit(50, "miles")
  16079. },
  16080. {
  16081. name: "Cosmic",
  16082. height: math.unit(800000, "miles")
  16083. },
  16084. ]
  16085. ))
  16086. characterMakers.push(() => makeCharacter(
  16087. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  16088. {
  16089. front: {
  16090. height: math.unit(6, "feet"),
  16091. weight: math.unit(150, "lb"),
  16092. name: "Front",
  16093. image: {
  16094. source: "./media/characters/cassidy/front.svg",
  16095. extra: 810/808,
  16096. bottom: 41/851
  16097. }
  16098. },
  16099. },
  16100. [
  16101. {
  16102. name: "Canon Height",
  16103. height: math.unit(120, "feet"),
  16104. default: true
  16105. },
  16106. {
  16107. name: "Macro+",
  16108. height: math.unit(400, "feet")
  16109. },
  16110. {
  16111. name: "Macro++",
  16112. height: math.unit(4000, "feet")
  16113. },
  16114. {
  16115. name: "Megamacro",
  16116. height: math.unit(3, "miles")
  16117. },
  16118. ]
  16119. ))
  16120. characterMakers.push(() => makeCharacter(
  16121. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16122. {
  16123. front: {
  16124. height: math.unit(6, "feet"),
  16125. weight: math.unit(150, "lb"),
  16126. name: "Front",
  16127. image: {
  16128. source: "./media/characters/isaac/front.svg",
  16129. extra: 896 / 815,
  16130. bottom: 0.11
  16131. }
  16132. },
  16133. },
  16134. [
  16135. {
  16136. name: "Human Size",
  16137. height: math.unit(8, "feet"),
  16138. default: true
  16139. },
  16140. {
  16141. name: "Macro",
  16142. height: math.unit(400, "feet")
  16143. },
  16144. {
  16145. name: "Megamacro",
  16146. height: math.unit(50, "miles")
  16147. },
  16148. {
  16149. name: "Canon Height",
  16150. height: math.unit(200, "AU")
  16151. },
  16152. ]
  16153. ))
  16154. characterMakers.push(() => makeCharacter(
  16155. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16156. {
  16157. front: {
  16158. height: math.unit(6, "feet"),
  16159. weight: math.unit(72, "kg"),
  16160. name: "Front",
  16161. image: {
  16162. source: "./media/characters/sleekit/front.svg",
  16163. extra: 4693 / 4487,
  16164. bottom: 0.012
  16165. }
  16166. },
  16167. },
  16168. [
  16169. {
  16170. name: "Minimum Height",
  16171. height: math.unit(10, "meters")
  16172. },
  16173. {
  16174. name: "Smaller",
  16175. height: math.unit(25, "meters")
  16176. },
  16177. {
  16178. name: "Larger",
  16179. height: math.unit(38, "meters"),
  16180. default: true
  16181. },
  16182. {
  16183. name: "Maximum height",
  16184. height: math.unit(100, "meters")
  16185. },
  16186. ]
  16187. ))
  16188. characterMakers.push(() => makeCharacter(
  16189. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16190. {
  16191. front: {
  16192. height: math.unit(6, "feet"),
  16193. weight: math.unit(150, "lb"),
  16194. name: "Front",
  16195. image: {
  16196. source: "./media/characters/nillia/front.svg",
  16197. extra: 719/665,
  16198. bottom: 6/725
  16199. }
  16200. },
  16201. back: {
  16202. height: math.unit(6, "feet"),
  16203. weight: math.unit(150, "lb"),
  16204. name: "Back",
  16205. image: {
  16206. source: "./media/characters/nillia/back.svg",
  16207. extra: 705/651,
  16208. bottom: 5/710
  16209. }
  16210. },
  16211. },
  16212. [
  16213. {
  16214. name: "Canon Height",
  16215. height: math.unit(489, "feet"),
  16216. default: true
  16217. }
  16218. ]
  16219. ))
  16220. characterMakers.push(() => makeCharacter(
  16221. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16222. {
  16223. front: {
  16224. height: math.unit(6, "feet"),
  16225. weight: math.unit(150, "lb"),
  16226. name: "Front",
  16227. image: {
  16228. source: "./media/characters/mesmyriza/front.svg",
  16229. extra: 1541/1291,
  16230. bottom: 87/1628
  16231. }
  16232. },
  16233. foot: {
  16234. height: math.unit(6 / (250 / 35), "feet"),
  16235. name: "Foot",
  16236. image: {
  16237. source: "./media/characters/mesmyriza/foot.svg"
  16238. }
  16239. },
  16240. },
  16241. [
  16242. {
  16243. name: "Macro",
  16244. height: math.unit(457, "meters"),
  16245. default: true
  16246. },
  16247. {
  16248. name: "Megamacro",
  16249. height: math.unit(8, "megameters")
  16250. },
  16251. ]
  16252. ))
  16253. characterMakers.push(() => makeCharacter(
  16254. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16255. {
  16256. front: {
  16257. height: math.unit(6, "feet"),
  16258. weight: math.unit(250, "lb"),
  16259. name: "Front",
  16260. image: {
  16261. source: "./media/characters/saudade/front.svg",
  16262. extra: 1172 / 1139,
  16263. bottom: 0.035
  16264. }
  16265. },
  16266. },
  16267. [
  16268. {
  16269. name: "Micro",
  16270. height: math.unit(3, "inches")
  16271. },
  16272. {
  16273. name: "Normal",
  16274. height: math.unit(6, "feet"),
  16275. default: true
  16276. },
  16277. {
  16278. name: "Macro",
  16279. height: math.unit(50, "feet")
  16280. },
  16281. {
  16282. name: "Megamacro",
  16283. height: math.unit(2800, "feet")
  16284. },
  16285. ]
  16286. ))
  16287. characterMakers.push(() => makeCharacter(
  16288. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16289. {
  16290. front: {
  16291. height: math.unit(5 + 4 / 12, "feet"),
  16292. weight: math.unit(100, "lb"),
  16293. name: "Front",
  16294. image: {
  16295. source: "./media/characters/keireer/front.svg",
  16296. extra: 716 / 666,
  16297. bottom: 0.05
  16298. }
  16299. },
  16300. },
  16301. [
  16302. {
  16303. name: "Normal",
  16304. height: math.unit(5 + 4 / 12, "feet"),
  16305. default: true
  16306. },
  16307. ]
  16308. ))
  16309. characterMakers.push(() => makeCharacter(
  16310. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16311. {
  16312. front: {
  16313. height: math.unit(5.5, "feet"),
  16314. weight: math.unit(90, "kg"),
  16315. name: "Front",
  16316. image: {
  16317. source: "./media/characters/mirja/front.svg",
  16318. extra: 1452/1262,
  16319. bottom: 67/1519
  16320. }
  16321. },
  16322. frontDressed: {
  16323. height: math.unit(5.5, "feet"),
  16324. weight: math.unit(90, "lb"),
  16325. name: "Front (Dressed)",
  16326. image: {
  16327. source: "./media/characters/mirja/dressed.svg",
  16328. extra: 1452/1262,
  16329. bottom: 67/1519
  16330. }
  16331. },
  16332. back: {
  16333. height: math.unit(6, "feet"),
  16334. weight: math.unit(90, "lb"),
  16335. name: "Back",
  16336. image: {
  16337. source: "./media/characters/mirja/back.svg",
  16338. extra: 1892/1795,
  16339. bottom: 48/1940
  16340. }
  16341. },
  16342. maw: {
  16343. height: math.unit(1.312, "feet"),
  16344. name: "Maw",
  16345. image: {
  16346. source: "./media/characters/mirja/maw.svg"
  16347. }
  16348. },
  16349. paw: {
  16350. height: math.unit(1.15, "feet"),
  16351. name: "Paw",
  16352. image: {
  16353. source: "./media/characters/mirja/paw.svg"
  16354. }
  16355. },
  16356. },
  16357. [
  16358. {
  16359. name: "\"Incognito\"",
  16360. height: math.unit(3, "meters")
  16361. },
  16362. {
  16363. name: "Strolling Size",
  16364. height: math.unit(15, "km")
  16365. },
  16366. {
  16367. name: "Larger Strolling Size",
  16368. height: math.unit(400, "km")
  16369. },
  16370. {
  16371. name: "Preferred Size",
  16372. height: math.unit(5000, "km"),
  16373. default: true
  16374. },
  16375. {
  16376. name: "True Size",
  16377. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16378. },
  16379. ]
  16380. ))
  16381. characterMakers.push(() => makeCharacter(
  16382. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16383. {
  16384. front: {
  16385. height: math.unit(15, "feet"),
  16386. weight: math.unit(880, "kg"),
  16387. name: "Front",
  16388. image: {
  16389. source: "./media/characters/nightraver/front.svg",
  16390. extra: 2444 / 2160,
  16391. bottom: 0.027
  16392. }
  16393. },
  16394. back: {
  16395. height: math.unit(15, "feet"),
  16396. weight: math.unit(880, "kg"),
  16397. name: "Back",
  16398. image: {
  16399. source: "./media/characters/nightraver/back.svg",
  16400. extra: 2309 / 2180,
  16401. bottom: 0.005
  16402. }
  16403. },
  16404. sole: {
  16405. height: math.unit(2.878, "feet"),
  16406. name: "Sole",
  16407. image: {
  16408. source: "./media/characters/nightraver/sole.svg"
  16409. }
  16410. },
  16411. foot: {
  16412. height: math.unit(2.285, "feet"),
  16413. name: "Foot",
  16414. image: {
  16415. source: "./media/characters/nightraver/foot.svg"
  16416. }
  16417. },
  16418. maw: {
  16419. height: math.unit(2.67, "feet"),
  16420. name: "Maw",
  16421. image: {
  16422. source: "./media/characters/nightraver/maw.svg"
  16423. }
  16424. },
  16425. },
  16426. [
  16427. {
  16428. name: "Micro",
  16429. height: math.unit(1, "cm")
  16430. },
  16431. {
  16432. name: "Normal",
  16433. height: math.unit(15, "feet"),
  16434. default: true
  16435. },
  16436. {
  16437. name: "Macro",
  16438. height: math.unit(300, "feet")
  16439. },
  16440. {
  16441. name: "Megamacro",
  16442. height: math.unit(300, "miles")
  16443. },
  16444. {
  16445. name: "Gigamacro",
  16446. height: math.unit(10000, "miles")
  16447. },
  16448. ]
  16449. ))
  16450. characterMakers.push(() => makeCharacter(
  16451. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16452. {
  16453. side: {
  16454. height: math.unit(2, "inches"),
  16455. weight: math.unit(5, "grams"),
  16456. name: "Side",
  16457. image: {
  16458. source: "./media/characters/arc/side.svg"
  16459. }
  16460. },
  16461. },
  16462. [
  16463. {
  16464. name: "Micro",
  16465. height: math.unit(2, "inches"),
  16466. default: true
  16467. },
  16468. ]
  16469. ))
  16470. characterMakers.push(() => makeCharacter(
  16471. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16472. {
  16473. front: {
  16474. height: math.unit(1.1938, "meters"),
  16475. weight: math.unit(54, "kg"),
  16476. name: "Front",
  16477. image: {
  16478. source: "./media/characters/nebula-shahar/front.svg",
  16479. extra: 1642 / 1436,
  16480. bottom: 0.06
  16481. }
  16482. },
  16483. },
  16484. [
  16485. {
  16486. name: "Megamicro",
  16487. height: math.unit(0.3, "mm")
  16488. },
  16489. {
  16490. name: "Micro",
  16491. height: math.unit(3, "cm")
  16492. },
  16493. {
  16494. name: "Normal",
  16495. height: math.unit(138, "cm"),
  16496. default: true
  16497. },
  16498. {
  16499. name: "Macro",
  16500. height: math.unit(30, "m")
  16501. },
  16502. ]
  16503. ))
  16504. characterMakers.push(() => makeCharacter(
  16505. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16506. {
  16507. front: {
  16508. height: math.unit(5.24, "feet"),
  16509. weight: math.unit(150, "lb"),
  16510. name: "Front",
  16511. image: {
  16512. source: "./media/characters/shayla/front.svg",
  16513. extra: 1512 / 1414,
  16514. bottom: 0.01
  16515. }
  16516. },
  16517. back: {
  16518. height: math.unit(5.24, "feet"),
  16519. weight: math.unit(150, "lb"),
  16520. name: "Back",
  16521. image: {
  16522. source: "./media/characters/shayla/back.svg",
  16523. extra: 1512 / 1414
  16524. }
  16525. },
  16526. hand: {
  16527. height: math.unit(0.7781496062992126, "feet"),
  16528. name: "Hand",
  16529. image: {
  16530. source: "./media/characters/shayla/hand.svg"
  16531. }
  16532. },
  16533. foot: {
  16534. height: math.unit(1.4206036745406823, "feet"),
  16535. name: "Foot",
  16536. image: {
  16537. source: "./media/characters/shayla/foot.svg"
  16538. }
  16539. },
  16540. },
  16541. [
  16542. {
  16543. name: "Micro",
  16544. height: math.unit(0.32, "feet")
  16545. },
  16546. {
  16547. name: "Normal",
  16548. height: math.unit(5.24, "feet"),
  16549. default: true
  16550. },
  16551. {
  16552. name: "Macro",
  16553. height: math.unit(492.12, "feet")
  16554. },
  16555. {
  16556. name: "Megamacro",
  16557. height: math.unit(186.41, "miles")
  16558. },
  16559. ]
  16560. ))
  16561. characterMakers.push(() => makeCharacter(
  16562. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16563. {
  16564. front: {
  16565. height: math.unit(2.2, "m"),
  16566. weight: math.unit(120, "kg"),
  16567. name: "Front",
  16568. image: {
  16569. source: "./media/characters/pia-jr/front.svg",
  16570. extra: 1000 / 970,
  16571. bottom: 0.035
  16572. }
  16573. },
  16574. hand: {
  16575. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16576. name: "Hand",
  16577. image: {
  16578. source: "./media/characters/pia-jr/hand.svg"
  16579. }
  16580. },
  16581. paw: {
  16582. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16583. name: "Paw",
  16584. image: {
  16585. source: "./media/characters/pia-jr/paw.svg"
  16586. }
  16587. },
  16588. },
  16589. [
  16590. {
  16591. name: "Micro",
  16592. height: math.unit(1.2, "cm")
  16593. },
  16594. {
  16595. name: "Normal",
  16596. height: math.unit(2.2, "m"),
  16597. default: true
  16598. },
  16599. {
  16600. name: "Macro",
  16601. height: math.unit(180, "m")
  16602. },
  16603. {
  16604. name: "Megamacro",
  16605. height: math.unit(420, "km")
  16606. },
  16607. ]
  16608. ))
  16609. characterMakers.push(() => makeCharacter(
  16610. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16611. {
  16612. front: {
  16613. height: math.unit(2, "m"),
  16614. weight: math.unit(115, "kg"),
  16615. name: "Front",
  16616. image: {
  16617. source: "./media/characters/pia-sr/front.svg",
  16618. extra: 760 / 730,
  16619. bottom: 0.015
  16620. }
  16621. },
  16622. back: {
  16623. height: math.unit(2, "m"),
  16624. weight: math.unit(115, "kg"),
  16625. name: "Back",
  16626. image: {
  16627. source: "./media/characters/pia-sr/back.svg",
  16628. extra: 760 / 730,
  16629. bottom: 0.01
  16630. }
  16631. },
  16632. hand: {
  16633. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16634. name: "Hand",
  16635. image: {
  16636. source: "./media/characters/pia-sr/hand.svg"
  16637. }
  16638. },
  16639. foot: {
  16640. height: math.unit(1.83, "feet"),
  16641. name: "Foot",
  16642. image: {
  16643. source: "./media/characters/pia-sr/foot.svg"
  16644. }
  16645. },
  16646. },
  16647. [
  16648. {
  16649. name: "Micro",
  16650. height: math.unit(88, "mm")
  16651. },
  16652. {
  16653. name: "Normal",
  16654. height: math.unit(2, "m"),
  16655. default: true
  16656. },
  16657. {
  16658. name: "Macro",
  16659. height: math.unit(200, "m")
  16660. },
  16661. {
  16662. name: "Megamacro",
  16663. height: math.unit(420, "km")
  16664. },
  16665. ]
  16666. ))
  16667. characterMakers.push(() => makeCharacter(
  16668. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16669. {
  16670. front: {
  16671. height: math.unit(8 + 2 / 12, "feet"),
  16672. weight: math.unit(300, "lb"),
  16673. name: "Front",
  16674. image: {
  16675. source: "./media/characters/kibibyte/front.svg",
  16676. extra: 2221 / 2098,
  16677. bottom: 0.04
  16678. }
  16679. },
  16680. },
  16681. [
  16682. {
  16683. name: "Normal",
  16684. height: math.unit(8 + 2 / 12, "feet"),
  16685. default: true
  16686. },
  16687. {
  16688. name: "Socialable Macro",
  16689. height: math.unit(50, "feet")
  16690. },
  16691. {
  16692. name: "Macro",
  16693. height: math.unit(300, "feet")
  16694. },
  16695. {
  16696. name: "Megamacro",
  16697. height: math.unit(500, "miles")
  16698. },
  16699. ]
  16700. ))
  16701. characterMakers.push(() => makeCharacter(
  16702. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16703. {
  16704. front: {
  16705. height: math.unit(6, "feet"),
  16706. weight: math.unit(150, "lb"),
  16707. name: "Front",
  16708. image: {
  16709. source: "./media/characters/felix/front.svg",
  16710. extra: 762 / 722,
  16711. bottom: 0.02
  16712. }
  16713. },
  16714. frontClothed: {
  16715. height: math.unit(6, "feet"),
  16716. weight: math.unit(150, "lb"),
  16717. name: "Front (Clothed)",
  16718. image: {
  16719. source: "./media/characters/felix/front-clothed.svg",
  16720. extra: 762 / 722,
  16721. bottom: 0.02
  16722. }
  16723. },
  16724. },
  16725. [
  16726. {
  16727. name: "Normal",
  16728. height: math.unit(6 + 8 / 12, "feet"),
  16729. default: true
  16730. },
  16731. {
  16732. name: "Macro",
  16733. height: math.unit(2600, "feet")
  16734. },
  16735. {
  16736. name: "Megamacro",
  16737. height: math.unit(450, "miles")
  16738. },
  16739. ]
  16740. ))
  16741. characterMakers.push(() => makeCharacter(
  16742. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16743. {
  16744. front: {
  16745. height: math.unit(6 + 1 / 12, "feet"),
  16746. weight: math.unit(250, "lb"),
  16747. name: "Front",
  16748. image: {
  16749. source: "./media/characters/tobo/front.svg",
  16750. extra: 608 / 586,
  16751. bottom: 0.023
  16752. }
  16753. },
  16754. back: {
  16755. height: math.unit(6 + 1 / 12, "feet"),
  16756. weight: math.unit(250, "lb"),
  16757. name: "Back",
  16758. image: {
  16759. source: "./media/characters/tobo/back.svg",
  16760. extra: 608 / 586
  16761. }
  16762. },
  16763. },
  16764. [
  16765. {
  16766. name: "Nano",
  16767. height: math.unit(2, "nm")
  16768. },
  16769. {
  16770. name: "Megamicro",
  16771. height: math.unit(0.1, "mm")
  16772. },
  16773. {
  16774. name: "Micro",
  16775. height: math.unit(1, "inch"),
  16776. default: true
  16777. },
  16778. {
  16779. name: "Human-sized",
  16780. height: math.unit(6 + 1 / 12, "feet")
  16781. },
  16782. {
  16783. name: "Macro",
  16784. height: math.unit(250, "feet")
  16785. },
  16786. {
  16787. name: "Megamacro",
  16788. height: math.unit(75, "miles")
  16789. },
  16790. {
  16791. name: "Texas-sized",
  16792. height: math.unit(750, "miles")
  16793. },
  16794. {
  16795. name: "Teramacro",
  16796. height: math.unit(50000, "miles")
  16797. },
  16798. ]
  16799. ))
  16800. characterMakers.push(() => makeCharacter(
  16801. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16802. {
  16803. front: {
  16804. height: math.unit(6, "feet"),
  16805. weight: math.unit(269, "lb"),
  16806. name: "Front",
  16807. image: {
  16808. source: "./media/characters/danny-kapowsky/front.svg",
  16809. extra: 766 / 736,
  16810. bottom: 0.044
  16811. }
  16812. },
  16813. back: {
  16814. height: math.unit(6, "feet"),
  16815. weight: math.unit(269, "lb"),
  16816. name: "Back",
  16817. image: {
  16818. source: "./media/characters/danny-kapowsky/back.svg",
  16819. extra: 797 / 760,
  16820. bottom: 0.025
  16821. }
  16822. },
  16823. },
  16824. [
  16825. {
  16826. name: "Macro",
  16827. height: math.unit(150, "feet"),
  16828. default: true
  16829. },
  16830. {
  16831. name: "Macro+",
  16832. height: math.unit(200, "feet")
  16833. },
  16834. {
  16835. name: "Macro++",
  16836. height: math.unit(300, "feet")
  16837. },
  16838. {
  16839. name: "Macro+++",
  16840. height: math.unit(400, "feet")
  16841. },
  16842. ]
  16843. ))
  16844. characterMakers.push(() => makeCharacter(
  16845. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16846. {
  16847. side: {
  16848. height: math.unit(6, "feet"),
  16849. weight: math.unit(170, "lb"),
  16850. name: "Side",
  16851. image: {
  16852. source: "./media/characters/finn/side.svg",
  16853. extra: 1953 / 1807,
  16854. bottom: 0.057
  16855. }
  16856. },
  16857. },
  16858. [
  16859. {
  16860. name: "Megamacro",
  16861. height: math.unit(14445, "feet"),
  16862. default: true
  16863. },
  16864. ]
  16865. ))
  16866. characterMakers.push(() => makeCharacter(
  16867. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16868. {
  16869. front: {
  16870. height: math.unit(5 + 6 / 12, "feet"),
  16871. weight: math.unit(125, "lb"),
  16872. name: "Front",
  16873. image: {
  16874. source: "./media/characters/roy/front.svg",
  16875. extra: 1,
  16876. bottom: 0.11
  16877. }
  16878. },
  16879. },
  16880. [
  16881. {
  16882. name: "Micro",
  16883. height: math.unit(3, "inches"),
  16884. default: true
  16885. },
  16886. {
  16887. name: "Normal",
  16888. height: math.unit(5 + 6 / 12, "feet")
  16889. },
  16890. {
  16891. name: "Lesser Macro",
  16892. height: math.unit(60, "feet")
  16893. },
  16894. {
  16895. name: "Greater Macro",
  16896. height: math.unit(120, "feet")
  16897. },
  16898. ]
  16899. ))
  16900. characterMakers.push(() => makeCharacter(
  16901. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16902. {
  16903. front: {
  16904. height: math.unit(6, "feet"),
  16905. weight: math.unit(100, "lb"),
  16906. name: "Front",
  16907. image: {
  16908. source: "./media/characters/aevsivs/front.svg",
  16909. extra: 1,
  16910. bottom: 0.03
  16911. }
  16912. },
  16913. back: {
  16914. height: math.unit(6, "feet"),
  16915. weight: math.unit(100, "lb"),
  16916. name: "Back",
  16917. image: {
  16918. source: "./media/characters/aevsivs/back.svg"
  16919. }
  16920. },
  16921. },
  16922. [
  16923. {
  16924. name: "Micro",
  16925. height: math.unit(2, "inches"),
  16926. default: true
  16927. },
  16928. {
  16929. name: "Normal",
  16930. height: math.unit(5, "feet")
  16931. },
  16932. ]
  16933. ))
  16934. characterMakers.push(() => makeCharacter(
  16935. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16936. {
  16937. front: {
  16938. height: math.unit(5 + 7 / 12, "feet"),
  16939. weight: math.unit(159, "lb"),
  16940. name: "Front",
  16941. image: {
  16942. source: "./media/characters/hildegard/front.svg",
  16943. extra: 289 / 269,
  16944. bottom: 7.63 / 297.8
  16945. }
  16946. },
  16947. back: {
  16948. height: math.unit(5 + 7 / 12, "feet"),
  16949. weight: math.unit(159, "lb"),
  16950. name: "Back",
  16951. image: {
  16952. source: "./media/characters/hildegard/back.svg",
  16953. extra: 280 / 260,
  16954. bottom: 2.3 / 282
  16955. }
  16956. },
  16957. },
  16958. [
  16959. {
  16960. name: "Normal",
  16961. height: math.unit(5 + 7 / 12, "feet"),
  16962. default: true
  16963. },
  16964. ]
  16965. ))
  16966. characterMakers.push(() => makeCharacter(
  16967. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16968. {
  16969. bernard: {
  16970. height: math.unit(2 + 7 / 12, "feet"),
  16971. weight: math.unit(66, "lb"),
  16972. name: "Bernard",
  16973. rename: true,
  16974. image: {
  16975. source: "./media/characters/bernard-wilder/bernard.svg",
  16976. extra: 192 / 128,
  16977. bottom: 0.05
  16978. }
  16979. },
  16980. wilder: {
  16981. height: math.unit(5 + 8 / 12, "feet"),
  16982. weight: math.unit(143, "lb"),
  16983. name: "Wilder",
  16984. rename: true,
  16985. image: {
  16986. source: "./media/characters/bernard-wilder/wilder.svg",
  16987. extra: 361 / 312,
  16988. bottom: 0.02
  16989. }
  16990. },
  16991. },
  16992. [
  16993. {
  16994. name: "Normal",
  16995. height: math.unit(2 + 7 / 12, "feet"),
  16996. default: true
  16997. },
  16998. ]
  16999. ))
  17000. characterMakers.push(() => makeCharacter(
  17001. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  17002. {
  17003. anthro: {
  17004. height: math.unit(6 + 1 / 12, "feet"),
  17005. weight: math.unit(155, "lb"),
  17006. name: "Anthro",
  17007. image: {
  17008. source: "./media/characters/hearth/anthro.svg",
  17009. extra: 1178/1136,
  17010. bottom: 28/1206
  17011. }
  17012. },
  17013. feral: {
  17014. height: math.unit(3.78, "feet"),
  17015. weight: math.unit(35, "kg"),
  17016. name: "Feral",
  17017. image: {
  17018. source: "./media/characters/hearth/feral.svg",
  17019. extra: 153 / 135,
  17020. bottom: 0.03
  17021. }
  17022. },
  17023. },
  17024. [
  17025. {
  17026. name: "Normal",
  17027. height: math.unit(6 + 1 / 12, "feet"),
  17028. default: true
  17029. },
  17030. ]
  17031. ))
  17032. characterMakers.push(() => makeCharacter(
  17033. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  17034. {
  17035. front: {
  17036. height: math.unit(6, "feet"),
  17037. weight: math.unit(182, "lb"),
  17038. name: "Front",
  17039. image: {
  17040. source: "./media/characters/ingrid/front.svg",
  17041. extra: 294 / 268,
  17042. bottom: 0.027
  17043. }
  17044. },
  17045. },
  17046. [
  17047. {
  17048. name: "Normal",
  17049. height: math.unit(6, "feet"),
  17050. default: true
  17051. },
  17052. ]
  17053. ))
  17054. characterMakers.push(() => makeCharacter(
  17055. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  17056. {
  17057. eevee: {
  17058. height: math.unit(2 + 10 / 12, "feet"),
  17059. weight: math.unit(86, "lb"),
  17060. name: "Malgam",
  17061. image: {
  17062. source: "./media/characters/malgam/eevee.svg",
  17063. extra: 952/784,
  17064. bottom: 38/990
  17065. }
  17066. },
  17067. sylveon: {
  17068. height: math.unit(4, "feet"),
  17069. weight: math.unit(101, "lb"),
  17070. name: "Future Malgam",
  17071. rename: true,
  17072. image: {
  17073. source: "./media/characters/malgam/sylveon.svg",
  17074. extra: 371 / 325,
  17075. bottom: 0.015
  17076. }
  17077. },
  17078. gigantamax: {
  17079. height: math.unit(50, "feet"),
  17080. name: "Gigantamax Malgam",
  17081. rename: true,
  17082. image: {
  17083. source: "./media/characters/malgam/gigantamax.svg"
  17084. }
  17085. },
  17086. },
  17087. [
  17088. {
  17089. name: "Normal",
  17090. height: math.unit(2 + 10 / 12, "feet"),
  17091. default: true
  17092. },
  17093. ]
  17094. ))
  17095. characterMakers.push(() => makeCharacter(
  17096. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  17097. {
  17098. front: {
  17099. height: math.unit(5 + 11 / 12, "feet"),
  17100. weight: math.unit(188, "lb"),
  17101. name: "Front",
  17102. image: {
  17103. source: "./media/characters/fleur/front.svg",
  17104. extra: 309 / 283,
  17105. bottom: 0.007
  17106. }
  17107. },
  17108. },
  17109. [
  17110. {
  17111. name: "Normal",
  17112. height: math.unit(5 + 11 / 12, "feet"),
  17113. default: true
  17114. },
  17115. ]
  17116. ))
  17117. characterMakers.push(() => makeCharacter(
  17118. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17119. {
  17120. front: {
  17121. height: math.unit(5 + 4 / 12, "feet"),
  17122. weight: math.unit(122, "lb"),
  17123. name: "Front",
  17124. image: {
  17125. source: "./media/characters/jude/front.svg",
  17126. extra: 288 / 273,
  17127. bottom: 0.03
  17128. }
  17129. },
  17130. },
  17131. [
  17132. {
  17133. name: "Normal",
  17134. height: math.unit(5 + 4 / 12, "feet"),
  17135. default: true
  17136. },
  17137. ]
  17138. ))
  17139. characterMakers.push(() => makeCharacter(
  17140. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17141. {
  17142. front: {
  17143. height: math.unit(5 + 11 / 12, "feet"),
  17144. weight: math.unit(190, "lb"),
  17145. name: "Front",
  17146. image: {
  17147. source: "./media/characters/seara/front.svg",
  17148. extra: 1,
  17149. bottom: 0.05
  17150. }
  17151. },
  17152. },
  17153. [
  17154. {
  17155. name: "Normal",
  17156. height: math.unit(5 + 11 / 12, "feet"),
  17157. default: true
  17158. },
  17159. ]
  17160. ))
  17161. characterMakers.push(() => makeCharacter(
  17162. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17163. {
  17164. front: {
  17165. height: math.unit(16 + 5 / 12, "feet"),
  17166. weight: math.unit(524, "lb"),
  17167. name: "Front",
  17168. image: {
  17169. source: "./media/characters/caspian-lugia/front.svg",
  17170. extra: 1,
  17171. bottom: 0.04
  17172. }
  17173. },
  17174. },
  17175. [
  17176. {
  17177. name: "Normal",
  17178. height: math.unit(16 + 5 / 12, "feet"),
  17179. default: true
  17180. },
  17181. ]
  17182. ))
  17183. characterMakers.push(() => makeCharacter(
  17184. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17185. {
  17186. front: {
  17187. height: math.unit(5 + 7 / 12, "feet"),
  17188. weight: math.unit(170, "lb"),
  17189. name: "Front",
  17190. image: {
  17191. source: "./media/characters/mika/front.svg",
  17192. extra: 1,
  17193. bottom: 0.016
  17194. }
  17195. },
  17196. },
  17197. [
  17198. {
  17199. name: "Normal",
  17200. height: math.unit(5 + 7 / 12, "feet"),
  17201. default: true
  17202. },
  17203. ]
  17204. ))
  17205. characterMakers.push(() => makeCharacter(
  17206. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17207. {
  17208. front: {
  17209. height: math.unit(6 + 2 / 12, "feet"),
  17210. weight: math.unit(268, "lb"),
  17211. name: "Front",
  17212. image: {
  17213. source: "./media/characters/sol/front.svg",
  17214. extra: 247 / 231,
  17215. bottom: 0.05
  17216. }
  17217. },
  17218. },
  17219. [
  17220. {
  17221. name: "Normal",
  17222. height: math.unit(6 + 2 / 12, "feet"),
  17223. default: true
  17224. },
  17225. ]
  17226. ))
  17227. characterMakers.push(() => makeCharacter(
  17228. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17229. {
  17230. buizel: {
  17231. height: math.unit(2 + 5 / 12, "feet"),
  17232. weight: math.unit(87, "lb"),
  17233. name: "Front",
  17234. image: {
  17235. source: "./media/characters/umiko/buizel.svg",
  17236. extra: 172 / 157,
  17237. bottom: 0.01
  17238. },
  17239. form: "buizel",
  17240. default: true
  17241. },
  17242. floatzel: {
  17243. height: math.unit(5 + 9 / 12, "feet"),
  17244. weight: math.unit(250, "lb"),
  17245. name: "Front",
  17246. image: {
  17247. source: "./media/characters/umiko/floatzel.svg",
  17248. extra: 1076/1006,
  17249. bottom: 15/1091
  17250. },
  17251. form: "floatzel",
  17252. default: true
  17253. },
  17254. },
  17255. [
  17256. {
  17257. name: "Normal",
  17258. height: math.unit(2 + 5 / 12, "feet"),
  17259. form: "buizel",
  17260. default: true
  17261. },
  17262. {
  17263. name: "Normal",
  17264. height: math.unit(5 + 9 / 12, "feet"),
  17265. form: "floatzel",
  17266. default: true
  17267. },
  17268. ],
  17269. {
  17270. "buizel": {
  17271. name: "Buizel"
  17272. },
  17273. "floatzel": {
  17274. name: "Floatzel",
  17275. default: true
  17276. }
  17277. }
  17278. ))
  17279. characterMakers.push(() => makeCharacter(
  17280. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17281. {
  17282. front: {
  17283. height: math.unit(6 + 2 / 12, "feet"),
  17284. weight: math.unit(146, "lb"),
  17285. name: "Front",
  17286. image: {
  17287. source: "./media/characters/iliac/front.svg",
  17288. extra: 389 / 365,
  17289. bottom: 0.035
  17290. }
  17291. },
  17292. },
  17293. [
  17294. {
  17295. name: "Normal",
  17296. height: math.unit(6 + 2 / 12, "feet"),
  17297. default: true
  17298. },
  17299. ]
  17300. ))
  17301. characterMakers.push(() => makeCharacter(
  17302. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17303. {
  17304. front: {
  17305. height: math.unit(6, "feet"),
  17306. weight: math.unit(170, "lb"),
  17307. name: "Front",
  17308. image: {
  17309. source: "./media/characters/topaz/front.svg",
  17310. extra: 317 / 303,
  17311. bottom: 0.055
  17312. }
  17313. },
  17314. },
  17315. [
  17316. {
  17317. name: "Normal",
  17318. height: math.unit(6, "feet"),
  17319. default: true
  17320. },
  17321. ]
  17322. ))
  17323. characterMakers.push(() => makeCharacter(
  17324. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17325. {
  17326. front: {
  17327. height: math.unit(5 + 11 / 12, "feet"),
  17328. weight: math.unit(144, "lb"),
  17329. name: "Front",
  17330. image: {
  17331. source: "./media/characters/gabriel/front.svg",
  17332. extra: 285 / 262,
  17333. bottom: 0.004
  17334. }
  17335. },
  17336. },
  17337. [
  17338. {
  17339. name: "Normal",
  17340. height: math.unit(5 + 11 / 12, "feet"),
  17341. default: true
  17342. },
  17343. ]
  17344. ))
  17345. characterMakers.push(() => makeCharacter(
  17346. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17347. {
  17348. side: {
  17349. height: math.unit(6 + 5 / 12, "feet"),
  17350. weight: math.unit(300, "lb"),
  17351. name: "Side",
  17352. image: {
  17353. source: "./media/characters/tempest-suicune/side.svg",
  17354. extra: 195 / 154,
  17355. bottom: 0.04
  17356. }
  17357. },
  17358. },
  17359. [
  17360. {
  17361. name: "Normal",
  17362. height: math.unit(6 + 5 / 12, "feet"),
  17363. default: true
  17364. },
  17365. ]
  17366. ))
  17367. characterMakers.push(() => makeCharacter(
  17368. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17369. {
  17370. front: {
  17371. height: math.unit(7 + 2 / 12, "feet"),
  17372. weight: math.unit(322, "lb"),
  17373. name: "Front",
  17374. image: {
  17375. source: "./media/characters/vulcan/front.svg",
  17376. extra: 154 / 147,
  17377. bottom: 0.04
  17378. }
  17379. },
  17380. },
  17381. [
  17382. {
  17383. name: "Normal",
  17384. height: math.unit(7 + 2 / 12, "feet"),
  17385. default: true
  17386. },
  17387. ]
  17388. ))
  17389. characterMakers.push(() => makeCharacter(
  17390. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17391. {
  17392. front: {
  17393. height: math.unit(5 + 10 / 12, "feet"),
  17394. weight: math.unit(264, "lb"),
  17395. name: "Front",
  17396. image: {
  17397. source: "./media/characters/gault/front.svg",
  17398. extra: 161 / 140,
  17399. bottom: 0.028
  17400. }
  17401. },
  17402. },
  17403. [
  17404. {
  17405. name: "Normal",
  17406. height: math.unit(5 + 10 / 12, "feet"),
  17407. default: true
  17408. },
  17409. ]
  17410. ))
  17411. characterMakers.push(() => makeCharacter(
  17412. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17413. {
  17414. front: {
  17415. height: math.unit(6, "feet"),
  17416. weight: math.unit(150, "lb"),
  17417. name: "Front",
  17418. image: {
  17419. source: "./media/characters/shard/front.svg",
  17420. extra: 273 / 238,
  17421. bottom: 0.02
  17422. }
  17423. },
  17424. },
  17425. [
  17426. {
  17427. name: "Normal",
  17428. height: math.unit(3 + 6 / 12, "feet"),
  17429. default: true
  17430. },
  17431. ]
  17432. ))
  17433. characterMakers.push(() => makeCharacter(
  17434. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17435. {
  17436. front: {
  17437. height: math.unit(5 + 11 / 12, "feet"),
  17438. weight: math.unit(146, "lb"),
  17439. name: "Front",
  17440. image: {
  17441. source: "./media/characters/ashe/front.svg",
  17442. extra: 400 / 373,
  17443. bottom: 0.01
  17444. }
  17445. },
  17446. },
  17447. [
  17448. {
  17449. name: "Normal",
  17450. height: math.unit(5 + 11 / 12, "feet"),
  17451. default: true
  17452. },
  17453. ]
  17454. ))
  17455. characterMakers.push(() => makeCharacter(
  17456. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17457. {
  17458. front: {
  17459. height: math.unit(5 + 5 / 12, "feet"),
  17460. weight: math.unit(135, "lb"),
  17461. name: "Front",
  17462. image: {
  17463. source: "./media/characters/beatrix/front.svg",
  17464. extra: 392 / 379,
  17465. bottom: 0.01
  17466. }
  17467. },
  17468. },
  17469. [
  17470. {
  17471. name: "Normal",
  17472. height: math.unit(6, "feet"),
  17473. default: true
  17474. },
  17475. ]
  17476. ))
  17477. characterMakers.push(() => makeCharacter(
  17478. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17479. {
  17480. front: {
  17481. height: math.unit(6 + 2/12, "feet"),
  17482. weight: math.unit(135, "lb"),
  17483. name: "Front",
  17484. image: {
  17485. source: "./media/characters/ignatius/front.svg",
  17486. extra: 1380/1259,
  17487. bottom: 27/1407
  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: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17501. {
  17502. front: {
  17503. height: math.unit(6 + 2 / 12, "feet"),
  17504. weight: math.unit(138, "lb"),
  17505. name: "Front",
  17506. image: {
  17507. source: "./media/characters/mei-li/front.svg",
  17508. extra: 237 / 229,
  17509. bottom: 0.03
  17510. }
  17511. },
  17512. },
  17513. [
  17514. {
  17515. name: "Normal",
  17516. height: math.unit(6 + 2 / 12, "feet"),
  17517. default: true
  17518. },
  17519. ]
  17520. ))
  17521. characterMakers.push(() => makeCharacter(
  17522. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17523. {
  17524. front: {
  17525. height: math.unit(2 + 4 / 12, "feet"),
  17526. weight: math.unit(62, "lb"),
  17527. name: "Front",
  17528. image: {
  17529. source: "./media/characters/puru/front.svg",
  17530. extra: 206 / 149,
  17531. bottom: 0.06
  17532. }
  17533. },
  17534. },
  17535. [
  17536. {
  17537. name: "Normal",
  17538. height: math.unit(2 + 4 / 12, "feet"),
  17539. default: true
  17540. },
  17541. ]
  17542. ))
  17543. characterMakers.push(() => makeCharacter(
  17544. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17545. {
  17546. anthro: {
  17547. height: math.unit(5 + 8/12, "feet"),
  17548. weight: math.unit(200, "lb"),
  17549. energyNeed: math.unit(2000, "kcal"),
  17550. name: "Anthro",
  17551. image: {
  17552. source: "./media/characters/kee/anthro.svg",
  17553. extra: 3251/3184,
  17554. bottom: 250/3501
  17555. }
  17556. },
  17557. taur: {
  17558. height: math.unit(11, "feet"),
  17559. weight: math.unit(500, "lb"),
  17560. energyNeed: math.unit(5000, "kcal"),
  17561. name: "Taur",
  17562. image: {
  17563. source: "./media/characters/kee/taur.svg",
  17564. extra: 1362/1320,
  17565. bottom: 83/1445
  17566. }
  17567. },
  17568. },
  17569. [
  17570. {
  17571. name: "Normal",
  17572. height: math.unit(5 + 8/12, "feet"),
  17573. default: true
  17574. },
  17575. {
  17576. name: "Macro",
  17577. height: math.unit(35, "feet")
  17578. },
  17579. ]
  17580. ))
  17581. characterMakers.push(() => makeCharacter(
  17582. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17583. {
  17584. anthro: {
  17585. height: math.unit(7, "feet"),
  17586. weight: math.unit(190, "lb"),
  17587. name: "Anthro",
  17588. image: {
  17589. source: "./media/characters/cobalt-dracha/anthro.svg",
  17590. extra: 231 / 225,
  17591. bottom: 0.04
  17592. }
  17593. },
  17594. feral: {
  17595. height: math.unit(9 + 7 / 12, "feet"),
  17596. weight: math.unit(294, "lb"),
  17597. name: "Feral",
  17598. image: {
  17599. source: "./media/characters/cobalt-dracha/feral.svg",
  17600. extra: 692 / 633,
  17601. bottom: 0.05
  17602. }
  17603. },
  17604. },
  17605. [
  17606. {
  17607. name: "Normal",
  17608. height: math.unit(7, "feet"),
  17609. default: true
  17610. },
  17611. ]
  17612. ))
  17613. characterMakers.push(() => makeCharacter(
  17614. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17615. {
  17616. fallen: {
  17617. height: math.unit(11 + 8 / 12, "feet"),
  17618. weight: math.unit(485, "lb"),
  17619. name: "Java (Fallen)",
  17620. rename: true,
  17621. image: {
  17622. source: "./media/characters/java/fallen.svg",
  17623. extra: 226 / 208,
  17624. bottom: 0.005
  17625. }
  17626. },
  17627. godkin: {
  17628. height: math.unit(10 + 6 / 12, "feet"),
  17629. weight: math.unit(328, "lb"),
  17630. name: "Java (Godkin)",
  17631. rename: true,
  17632. image: {
  17633. source: "./media/characters/java/godkin.svg",
  17634. extra: 1104/1068,
  17635. bottom: 36/1140
  17636. }
  17637. },
  17638. },
  17639. [
  17640. {
  17641. name: "Normal",
  17642. height: math.unit(11 + 8 / 12, "feet"),
  17643. default: true
  17644. },
  17645. ]
  17646. ))
  17647. characterMakers.push(() => makeCharacter(
  17648. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17649. {
  17650. front: {
  17651. height: math.unit(5 + 9 / 12, "feet"),
  17652. weight: math.unit(170, "lb"),
  17653. name: "Front",
  17654. image: {
  17655. source: "./media/characters/purna/front.svg",
  17656. extra: 239 / 229,
  17657. bottom: 0.01
  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: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17671. {
  17672. front: {
  17673. height: math.unit(5 + 9 / 12, "feet"),
  17674. weight: math.unit(142, "lb"),
  17675. name: "Front",
  17676. image: {
  17677. source: "./media/characters/kuva/front.svg",
  17678. extra: 281 / 271,
  17679. bottom: 0.006
  17680. }
  17681. },
  17682. },
  17683. [
  17684. {
  17685. name: "Normal",
  17686. height: math.unit(5 + 9 / 12, "feet"),
  17687. default: true
  17688. },
  17689. ]
  17690. ))
  17691. characterMakers.push(() => makeCharacter(
  17692. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17693. {
  17694. anthro: {
  17695. height: math.unit(9 + 2 / 12, "feet"),
  17696. weight: math.unit(270, "lb"),
  17697. name: "Anthro",
  17698. image: {
  17699. source: "./media/characters/embra/anthro.svg",
  17700. extra: 200 / 187,
  17701. bottom: 0.02
  17702. }
  17703. },
  17704. feral: {
  17705. height: math.unit(18 + 8 / 12, "feet"),
  17706. weight: math.unit(576, "lb"),
  17707. name: "Feral",
  17708. image: {
  17709. source: "./media/characters/embra/feral.svg",
  17710. extra: 152 / 137,
  17711. bottom: 0.037
  17712. }
  17713. },
  17714. },
  17715. [
  17716. {
  17717. name: "Normal",
  17718. height: math.unit(9 + 2 / 12, "feet"),
  17719. default: true
  17720. },
  17721. ]
  17722. ))
  17723. characterMakers.push(() => makeCharacter(
  17724. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17725. {
  17726. anthro: {
  17727. height: math.unit(10 + 9 / 12, "feet"),
  17728. weight: math.unit(224, "lb"),
  17729. name: "Anthro",
  17730. image: {
  17731. source: "./media/characters/grottos/anthro.svg",
  17732. extra: 350 / 332,
  17733. bottom: 0.045
  17734. }
  17735. },
  17736. feral: {
  17737. height: math.unit(20 + 7 / 12, "feet"),
  17738. weight: math.unit(629, "lb"),
  17739. name: "Feral",
  17740. image: {
  17741. source: "./media/characters/grottos/feral.svg",
  17742. extra: 207 / 190,
  17743. bottom: 0.05
  17744. }
  17745. },
  17746. },
  17747. [
  17748. {
  17749. name: "Normal",
  17750. height: math.unit(10 + 9 / 12, "feet"),
  17751. default: true
  17752. },
  17753. ]
  17754. ))
  17755. characterMakers.push(() => makeCharacter(
  17756. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17757. {
  17758. anthro: {
  17759. height: math.unit(9 + 6 / 12, "feet"),
  17760. weight: math.unit(298, "lb"),
  17761. name: "Anthro",
  17762. image: {
  17763. source: "./media/characters/frifna/anthro.svg",
  17764. extra: 282 / 269,
  17765. bottom: 0.015
  17766. }
  17767. },
  17768. feral: {
  17769. height: math.unit(16 + 2 / 12, "feet"),
  17770. weight: math.unit(624, "lb"),
  17771. name: "Feral",
  17772. image: {
  17773. source: "./media/characters/frifna/feral.svg"
  17774. }
  17775. },
  17776. },
  17777. [
  17778. {
  17779. name: "Normal",
  17780. height: math.unit(9 + 6 / 12, "feet"),
  17781. default: true
  17782. },
  17783. ]
  17784. ))
  17785. characterMakers.push(() => makeCharacter(
  17786. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17787. {
  17788. front: {
  17789. height: math.unit(6 + 2 / 12, "feet"),
  17790. weight: math.unit(168, "lb"),
  17791. name: "Front",
  17792. image: {
  17793. source: "./media/characters/elise/front.svg",
  17794. extra: 276 / 271
  17795. }
  17796. },
  17797. },
  17798. [
  17799. {
  17800. name: "Normal",
  17801. height: math.unit(6 + 2 / 12, "feet"),
  17802. default: true
  17803. },
  17804. ]
  17805. ))
  17806. characterMakers.push(() => makeCharacter(
  17807. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17808. {
  17809. front: {
  17810. height: math.unit(5 + 10 / 12, "feet"),
  17811. weight: math.unit(210, "lb"),
  17812. name: "Front",
  17813. image: {
  17814. source: "./media/characters/glade/front.svg",
  17815. extra: 258 / 247,
  17816. bottom: 0.008
  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: "Rina", species: ["fox"], tags: ["anthro"] },
  17830. {
  17831. front: {
  17832. height: math.unit(5 + 10 / 12, "feet"),
  17833. weight: math.unit(129, "lb"),
  17834. name: "Front",
  17835. image: {
  17836. source: "./media/characters/rina/front.svg",
  17837. extra: 266 / 255,
  17838. bottom: 0.005
  17839. }
  17840. },
  17841. },
  17842. [
  17843. {
  17844. name: "Normal",
  17845. height: math.unit(5 + 10 / 12, "feet"),
  17846. default: true
  17847. },
  17848. ]
  17849. ))
  17850. characterMakers.push(() => makeCharacter(
  17851. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17852. {
  17853. front: {
  17854. height: math.unit(6 + 1 / 12, "feet"),
  17855. weight: math.unit(192, "lb"),
  17856. name: "Front",
  17857. image: {
  17858. source: "./media/characters/veronica/front.svg",
  17859. extra: 319 / 309,
  17860. bottom: 0.005
  17861. }
  17862. },
  17863. },
  17864. [
  17865. {
  17866. name: "Normal",
  17867. height: math.unit(6 + 1 / 12, "feet"),
  17868. default: true
  17869. },
  17870. ]
  17871. ))
  17872. characterMakers.push(() => makeCharacter(
  17873. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17874. {
  17875. front: {
  17876. height: math.unit(9 + 3 / 12, "feet"),
  17877. weight: math.unit(1100, "lb"),
  17878. name: "Front",
  17879. image: {
  17880. source: "./media/characters/braxton/front.svg",
  17881. extra: 1057 / 984,
  17882. bottom: 0.05
  17883. }
  17884. },
  17885. },
  17886. [
  17887. {
  17888. name: "Normal",
  17889. height: math.unit(9 + 3 / 12, "feet")
  17890. },
  17891. {
  17892. name: "Giant",
  17893. height: math.unit(300, "feet"),
  17894. default: true
  17895. },
  17896. {
  17897. name: "Macro",
  17898. height: math.unit(700, "feet")
  17899. },
  17900. {
  17901. name: "Megamacro",
  17902. height: math.unit(6000, "feet")
  17903. },
  17904. ]
  17905. ))
  17906. characterMakers.push(() => makeCharacter(
  17907. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17908. {
  17909. front: {
  17910. height: math.unit(6 + 7 / 12, "feet"),
  17911. weight: math.unit(150, "lb"),
  17912. name: "Front",
  17913. image: {
  17914. source: "./media/characters/blue-feyonics/front.svg",
  17915. extra: 1403 / 1306,
  17916. bottom: 0.047
  17917. }
  17918. },
  17919. },
  17920. [
  17921. {
  17922. name: "Normal",
  17923. height: math.unit(6 + 7 / 12, "feet"),
  17924. default: true
  17925. },
  17926. ]
  17927. ))
  17928. characterMakers.push(() => makeCharacter(
  17929. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17930. {
  17931. front: {
  17932. height: math.unit(1.8, "meters"),
  17933. weight: math.unit(60, "kg"),
  17934. name: "Front",
  17935. image: {
  17936. source: "./media/characters/maxwell/front.svg",
  17937. extra: 2060 / 1873
  17938. }
  17939. },
  17940. },
  17941. [
  17942. {
  17943. name: "Micro",
  17944. height: math.unit(1, "mm")
  17945. },
  17946. {
  17947. name: "Normal",
  17948. height: math.unit(1.8, "meter"),
  17949. default: true
  17950. },
  17951. {
  17952. name: "Macro",
  17953. height: math.unit(30, "meters")
  17954. },
  17955. {
  17956. name: "Megamacro",
  17957. height: math.unit(10, "km")
  17958. },
  17959. ]
  17960. ))
  17961. characterMakers.push(() => makeCharacter(
  17962. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17963. {
  17964. front: {
  17965. height: math.unit(6, "feet"),
  17966. weight: math.unit(150, "lb"),
  17967. name: "Front",
  17968. image: {
  17969. source: "./media/characters/jack/front.svg",
  17970. extra: 1754 / 1640,
  17971. bottom: 0.01
  17972. }
  17973. },
  17974. },
  17975. [
  17976. {
  17977. name: "Normal",
  17978. height: math.unit(80000, "feet"),
  17979. default: true
  17980. },
  17981. {
  17982. name: "Max size",
  17983. height: math.unit(10, "lightyears")
  17984. },
  17985. ]
  17986. ))
  17987. characterMakers.push(() => makeCharacter(
  17988. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17989. {
  17990. urban: {
  17991. height: math.unit(5, "feet"),
  17992. weight: math.unit(240, "lb"),
  17993. name: "Urban",
  17994. image: {
  17995. source: "./media/characters/cafat/urban.svg",
  17996. extra: 1223/1126,
  17997. bottom: 205/1428
  17998. }
  17999. },
  18000. summer: {
  18001. height: math.unit(5, "feet"),
  18002. weight: math.unit(240, "lb"),
  18003. name: "Summer",
  18004. image: {
  18005. source: "./media/characters/cafat/summer.svg",
  18006. extra: 1223/1126,
  18007. bottom: 205/1428
  18008. }
  18009. },
  18010. winter: {
  18011. height: math.unit(5, "feet"),
  18012. weight: math.unit(240, "lb"),
  18013. name: "Winter",
  18014. image: {
  18015. source: "./media/characters/cafat/winter.svg",
  18016. extra: 1223/1126,
  18017. bottom: 205/1428
  18018. }
  18019. },
  18020. lingerie: {
  18021. height: math.unit(5, "feet"),
  18022. weight: math.unit(240, "lb"),
  18023. name: "Lingerie",
  18024. image: {
  18025. source: "./media/characters/cafat/lingerie.svg",
  18026. extra: 1223/1126,
  18027. bottom: 205/1428
  18028. }
  18029. },
  18030. upright: {
  18031. height: math.unit(6.3, "feet"),
  18032. weight: math.unit(240, "lb"),
  18033. name: "Upright",
  18034. image: {
  18035. source: "./media/characters/cafat/upright.svg",
  18036. bottom: 0.01
  18037. }
  18038. },
  18039. uprightFull: {
  18040. height: math.unit(6.3, "feet"),
  18041. weight: math.unit(240, "lb"),
  18042. name: "Upright (Full)",
  18043. image: {
  18044. source: "./media/characters/cafat/upright-full.svg",
  18045. bottom: 0.01
  18046. }
  18047. },
  18048. },
  18049. [
  18050. {
  18051. name: "Small",
  18052. height: math.unit(5, "feet"),
  18053. default: true
  18054. },
  18055. {
  18056. name: "Large",
  18057. height: math.unit(13, "feet")
  18058. },
  18059. ]
  18060. ))
  18061. characterMakers.push(() => makeCharacter(
  18062. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  18063. {
  18064. front: {
  18065. height: math.unit(6, "feet"),
  18066. weight: math.unit(150, "lb"),
  18067. name: "Front",
  18068. image: {
  18069. source: "./media/characters/verin-raharra/front.svg",
  18070. extra: 5019 / 4835,
  18071. bottom: 0.023
  18072. }
  18073. },
  18074. },
  18075. [
  18076. {
  18077. name: "Normal",
  18078. height: math.unit(7 + 5 / 12, "feet"),
  18079. default: true
  18080. },
  18081. {
  18082. name: "Upsized",
  18083. height: math.unit(20, "feet")
  18084. },
  18085. ]
  18086. ))
  18087. characterMakers.push(() => makeCharacter(
  18088. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  18089. {
  18090. front: {
  18091. height: math.unit(7, "feet"),
  18092. weight: math.unit(230, "lb"),
  18093. name: "Front",
  18094. image: {
  18095. source: "./media/characters/nakata/front.svg",
  18096. extra: 1.005,
  18097. bottom: 0.01
  18098. }
  18099. },
  18100. },
  18101. [
  18102. {
  18103. name: "Normal",
  18104. height: math.unit(7, "feet"),
  18105. default: true
  18106. },
  18107. {
  18108. name: "Big",
  18109. height: math.unit(14, "feet")
  18110. },
  18111. {
  18112. name: "Macro",
  18113. height: math.unit(400, "feet")
  18114. },
  18115. ]
  18116. ))
  18117. characterMakers.push(() => makeCharacter(
  18118. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18119. {
  18120. front: {
  18121. height: math.unit(4.91, "feet"),
  18122. weight: math.unit(100, "lb"),
  18123. name: "Front",
  18124. image: {
  18125. source: "./media/characters/lily/front.svg",
  18126. extra: 1585 / 1415,
  18127. bottom: 0.02
  18128. }
  18129. },
  18130. },
  18131. [
  18132. {
  18133. name: "Normal",
  18134. height: math.unit(4.91, "feet"),
  18135. default: true
  18136. },
  18137. ]
  18138. ))
  18139. characterMakers.push(() => makeCharacter(
  18140. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18141. {
  18142. laying: {
  18143. height: math.unit(4 + 4 / 12, "feet"),
  18144. weight: math.unit(600, "lb"),
  18145. name: "Laying",
  18146. image: {
  18147. source: "./media/characters/sheila/laying.svg",
  18148. extra: 1333 / 1265,
  18149. bottom: 0.16
  18150. }
  18151. },
  18152. },
  18153. [
  18154. {
  18155. name: "Normal",
  18156. height: math.unit(4 + 4 / 12, "feet"),
  18157. default: true
  18158. },
  18159. ]
  18160. ))
  18161. characterMakers.push(() => makeCharacter(
  18162. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18163. {
  18164. front: {
  18165. height: math.unit(6, "feet"),
  18166. weight: math.unit(190, "lb"),
  18167. name: "Front",
  18168. image: {
  18169. source: "./media/characters/sax/front.svg",
  18170. extra: 1187 / 973,
  18171. bottom: 0.042
  18172. }
  18173. },
  18174. },
  18175. [
  18176. {
  18177. name: "Micro",
  18178. height: math.unit(4, "inches"),
  18179. default: true
  18180. },
  18181. ]
  18182. ))
  18183. characterMakers.push(() => makeCharacter(
  18184. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18185. {
  18186. front: {
  18187. height: math.unit(6, "feet"),
  18188. weight: math.unit(150, "lb"),
  18189. name: "Front",
  18190. image: {
  18191. source: "./media/characters/pandora/front.svg",
  18192. extra: 2720 / 2556,
  18193. bottom: 0.015
  18194. }
  18195. },
  18196. back: {
  18197. height: math.unit(6, "feet"),
  18198. weight: math.unit(150, "lb"),
  18199. name: "Back",
  18200. image: {
  18201. source: "./media/characters/pandora/back.svg",
  18202. extra: 2720 / 2556,
  18203. bottom: 0.01
  18204. }
  18205. },
  18206. beans: {
  18207. height: math.unit(6 / 8, "feet"),
  18208. name: "Beans",
  18209. image: {
  18210. source: "./media/characters/pandora/beans.svg"
  18211. }
  18212. },
  18213. collar: {
  18214. height: math.unit(0.31, "feet"),
  18215. name: "Collar",
  18216. image: {
  18217. source: "./media/characters/pandora/collar.svg"
  18218. }
  18219. },
  18220. skirt: {
  18221. height: math.unit(6, "feet"),
  18222. weight: math.unit(150, "lb"),
  18223. name: "Skirt",
  18224. image: {
  18225. source: "./media/characters/pandora/skirt.svg",
  18226. extra: 1622 / 1525,
  18227. bottom: 0.015
  18228. }
  18229. },
  18230. hoodie: {
  18231. height: math.unit(6, "feet"),
  18232. weight: math.unit(150, "lb"),
  18233. name: "Hoodie",
  18234. image: {
  18235. source: "./media/characters/pandora/hoodie.svg",
  18236. extra: 1622 / 1525,
  18237. bottom: 0.015
  18238. }
  18239. },
  18240. casual: {
  18241. height: math.unit(6, "feet"),
  18242. weight: math.unit(150, "lb"),
  18243. name: "Casual",
  18244. image: {
  18245. source: "./media/characters/pandora/casual.svg",
  18246. extra: 1622 / 1525,
  18247. bottom: 0.015
  18248. }
  18249. },
  18250. },
  18251. [
  18252. {
  18253. name: "Normal",
  18254. height: math.unit(6, "feet")
  18255. },
  18256. {
  18257. name: "Big Steppy",
  18258. height: math.unit(1, "km"),
  18259. default: true
  18260. },
  18261. {
  18262. name: "Galactic Steppy",
  18263. height: math.unit(2, "gigameters")
  18264. },
  18265. ]
  18266. ))
  18267. characterMakers.push(() => makeCharacter(
  18268. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18269. {
  18270. side: {
  18271. height: math.unit(10, "feet"),
  18272. weight: math.unit(800, "kg"),
  18273. name: "Side",
  18274. image: {
  18275. source: "./media/characters/venio-darcony/side.svg",
  18276. extra: 1373 / 1003,
  18277. bottom: 0.037
  18278. }
  18279. },
  18280. front: {
  18281. height: math.unit(19, "feet"),
  18282. weight: math.unit(800, "kg"),
  18283. name: "Front",
  18284. image: {
  18285. source: "./media/characters/venio-darcony/front.svg"
  18286. }
  18287. },
  18288. back: {
  18289. height: math.unit(19, "feet"),
  18290. weight: math.unit(800, "kg"),
  18291. name: "Back",
  18292. image: {
  18293. source: "./media/characters/venio-darcony/back.svg"
  18294. }
  18295. },
  18296. sideNsfw: {
  18297. height: math.unit(10, "feet"),
  18298. weight: math.unit(800, "kg"),
  18299. name: "Side (NSFW)",
  18300. image: {
  18301. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18302. extra: 1373 / 1003,
  18303. bottom: 0.037
  18304. }
  18305. },
  18306. frontNsfw: {
  18307. height: math.unit(19, "feet"),
  18308. weight: math.unit(800, "kg"),
  18309. name: "Front (NSFW)",
  18310. image: {
  18311. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18312. }
  18313. },
  18314. backNsfw: {
  18315. height: math.unit(19, "feet"),
  18316. weight: math.unit(800, "kg"),
  18317. name: "Back (NSFW)",
  18318. image: {
  18319. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18320. }
  18321. },
  18322. sideArmored: {
  18323. height: math.unit(10, "feet"),
  18324. weight: math.unit(800, "kg"),
  18325. name: "Side (Armored)",
  18326. image: {
  18327. source: "./media/characters/venio-darcony/side-armored.svg",
  18328. extra: 1373 / 1003,
  18329. bottom: 0.037
  18330. }
  18331. },
  18332. frontArmored: {
  18333. height: math.unit(19, "feet"),
  18334. weight: math.unit(900, "kg"),
  18335. name: "Front (Armored)",
  18336. image: {
  18337. source: "./media/characters/venio-darcony/front-armored.svg"
  18338. }
  18339. },
  18340. backArmored: {
  18341. height: math.unit(19, "feet"),
  18342. weight: math.unit(900, "kg"),
  18343. name: "Back (Armored)",
  18344. image: {
  18345. source: "./media/characters/venio-darcony/back-armored.svg"
  18346. }
  18347. },
  18348. sword: {
  18349. height: math.unit(10, "feet"),
  18350. weight: math.unit(50, "lb"),
  18351. name: "Sword",
  18352. image: {
  18353. source: "./media/characters/venio-darcony/sword.svg"
  18354. }
  18355. },
  18356. },
  18357. [
  18358. {
  18359. name: "Normal",
  18360. height: math.unit(10, "feet")
  18361. },
  18362. {
  18363. name: "Macro",
  18364. height: math.unit(130, "feet"),
  18365. default: true
  18366. },
  18367. {
  18368. name: "Macro+",
  18369. height: math.unit(240, "feet")
  18370. },
  18371. ]
  18372. ))
  18373. characterMakers.push(() => makeCharacter(
  18374. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18375. {
  18376. front: {
  18377. height: math.unit(6, "feet"),
  18378. weight: math.unit(150, "lb"),
  18379. name: "Front",
  18380. image: {
  18381. source: "./media/characters/veski/front.svg",
  18382. extra: 1299 / 1225,
  18383. bottom: 0.04
  18384. }
  18385. },
  18386. back: {
  18387. height: math.unit(6, "feet"),
  18388. weight: math.unit(150, "lb"),
  18389. name: "Back",
  18390. image: {
  18391. source: "./media/characters/veski/back.svg",
  18392. extra: 1299 / 1225,
  18393. bottom: 0.008
  18394. }
  18395. },
  18396. maw: {
  18397. height: math.unit(1.5 * 1.21, "feet"),
  18398. name: "Maw",
  18399. image: {
  18400. source: "./media/characters/veski/maw.svg"
  18401. }
  18402. },
  18403. },
  18404. [
  18405. {
  18406. name: "Macro",
  18407. height: math.unit(2, "km"),
  18408. default: true
  18409. },
  18410. ]
  18411. ))
  18412. characterMakers.push(() => makeCharacter(
  18413. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18414. {
  18415. front: {
  18416. height: math.unit(5 + 7 / 12, "feet"),
  18417. name: "Front",
  18418. image: {
  18419. source: "./media/characters/isabelle/front.svg",
  18420. extra: 2130 / 1976,
  18421. bottom: 0.05
  18422. }
  18423. },
  18424. },
  18425. [
  18426. {
  18427. name: "Supermicro",
  18428. height: math.unit(10, "micrometers")
  18429. },
  18430. {
  18431. name: "Micro",
  18432. height: math.unit(1, "inch")
  18433. },
  18434. {
  18435. name: "Tiny",
  18436. height: math.unit(5, "inches")
  18437. },
  18438. {
  18439. name: "Standard",
  18440. height: math.unit(5 + 7 / 12, "inches")
  18441. },
  18442. {
  18443. name: "Macro",
  18444. height: math.unit(80, "meters"),
  18445. default: true
  18446. },
  18447. {
  18448. name: "Megamacro",
  18449. height: math.unit(250, "meters")
  18450. },
  18451. {
  18452. name: "Gigamacro",
  18453. height: math.unit(5, "km")
  18454. },
  18455. {
  18456. name: "Cosmic",
  18457. height: math.unit(2.5e6, "miles")
  18458. },
  18459. ]
  18460. ))
  18461. characterMakers.push(() => makeCharacter(
  18462. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18463. {
  18464. front: {
  18465. height: math.unit(6, "feet"),
  18466. weight: math.unit(150, "lb"),
  18467. name: "Front",
  18468. image: {
  18469. source: "./media/characters/hanzo/front.svg",
  18470. extra: 374 / 344,
  18471. bottom: 0.02
  18472. }
  18473. },
  18474. },
  18475. [
  18476. {
  18477. name: "Normal",
  18478. height: math.unit(8, "feet"),
  18479. default: true
  18480. },
  18481. ]
  18482. ))
  18483. characterMakers.push(() => makeCharacter(
  18484. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18485. {
  18486. front: {
  18487. height: math.unit(7, "feet"),
  18488. weight: math.unit(130, "lb"),
  18489. name: "Front",
  18490. image: {
  18491. source: "./media/characters/anna/front.svg",
  18492. extra: 169 / 145,
  18493. bottom: 0.06
  18494. }
  18495. },
  18496. full: {
  18497. height: math.unit(4.96, "feet"),
  18498. weight: math.unit(220, "lb"),
  18499. name: "Full",
  18500. image: {
  18501. source: "./media/characters/anna/full.svg",
  18502. extra: 138 / 114,
  18503. bottom: 0.15
  18504. }
  18505. },
  18506. tongue: {
  18507. height: math.unit(2.53, "feet"),
  18508. name: "Tongue",
  18509. image: {
  18510. source: "./media/characters/anna/tongue.svg"
  18511. }
  18512. },
  18513. },
  18514. [
  18515. {
  18516. name: "Normal",
  18517. height: math.unit(7, "feet"),
  18518. default: true
  18519. },
  18520. ]
  18521. ))
  18522. characterMakers.push(() => makeCharacter(
  18523. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18524. {
  18525. front: {
  18526. height: math.unit(7, "feet"),
  18527. weight: math.unit(150, "lb"),
  18528. name: "Front",
  18529. image: {
  18530. source: "./media/characters/ian-corvid/front.svg",
  18531. extra: 150 / 142,
  18532. bottom: 0.02
  18533. }
  18534. },
  18535. back: {
  18536. height: math.unit(7, "feet"),
  18537. weight: math.unit(150, "lb"),
  18538. name: "Back",
  18539. image: {
  18540. source: "./media/characters/ian-corvid/back.svg",
  18541. extra: 150 / 143,
  18542. bottom: 0.01
  18543. }
  18544. },
  18545. stomping: {
  18546. height: math.unit(7, "feet"),
  18547. weight: math.unit(150, "lb"),
  18548. name: "Stomping",
  18549. image: {
  18550. source: "./media/characters/ian-corvid/stomping.svg",
  18551. extra: 76 / 72
  18552. }
  18553. },
  18554. sitting: {
  18555. height: math.unit(7 / 1.8, "feet"),
  18556. weight: math.unit(150, "lb"),
  18557. name: "Sitting",
  18558. image: {
  18559. source: "./media/characters/ian-corvid/sitting.svg",
  18560. extra: 1400 / 1269,
  18561. bottom: 0.15
  18562. }
  18563. },
  18564. },
  18565. [
  18566. {
  18567. name: "Tiny Microw",
  18568. height: math.unit(1, "inch")
  18569. },
  18570. {
  18571. name: "Microw",
  18572. height: math.unit(6, "inches")
  18573. },
  18574. {
  18575. name: "Crow",
  18576. height: math.unit(7 + 1 / 12, "feet"),
  18577. default: true
  18578. },
  18579. {
  18580. name: "Macrow",
  18581. height: math.unit(176, "feet")
  18582. },
  18583. ]
  18584. ))
  18585. characterMakers.push(() => makeCharacter(
  18586. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18587. {
  18588. front: {
  18589. height: math.unit(5 + 7 / 12, "feet"),
  18590. weight: math.unit(147, "lb"),
  18591. name: "Front",
  18592. image: {
  18593. source: "./media/characters/natalie-kellon/front.svg",
  18594. extra: 1214 / 1141,
  18595. bottom: 0.02
  18596. }
  18597. },
  18598. },
  18599. [
  18600. {
  18601. name: "Micro",
  18602. height: math.unit(1 / 16, "inch")
  18603. },
  18604. {
  18605. name: "Tiny",
  18606. height: math.unit(4, "inches")
  18607. },
  18608. {
  18609. name: "Normal",
  18610. height: math.unit(5 + 7 / 12, "feet"),
  18611. default: true
  18612. },
  18613. {
  18614. name: "Amazon",
  18615. height: math.unit(12, "feet")
  18616. },
  18617. {
  18618. name: "Giantess",
  18619. height: math.unit(160, "meters")
  18620. },
  18621. {
  18622. name: "Titaness",
  18623. height: math.unit(800, "meters")
  18624. },
  18625. ]
  18626. ))
  18627. characterMakers.push(() => makeCharacter(
  18628. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18629. {
  18630. front: {
  18631. height: math.unit(6, "feet"),
  18632. weight: math.unit(150, "lb"),
  18633. name: "Front",
  18634. image: {
  18635. source: "./media/characters/alluria/front.svg",
  18636. extra: 806 / 738,
  18637. bottom: 0.01
  18638. }
  18639. },
  18640. side: {
  18641. height: math.unit(6, "feet"),
  18642. weight: math.unit(150, "lb"),
  18643. name: "Side",
  18644. image: {
  18645. source: "./media/characters/alluria/side.svg",
  18646. extra: 800 / 750,
  18647. }
  18648. },
  18649. back: {
  18650. height: math.unit(6, "feet"),
  18651. weight: math.unit(150, "lb"),
  18652. name: "Back",
  18653. image: {
  18654. source: "./media/characters/alluria/back.svg",
  18655. extra: 806 / 738,
  18656. }
  18657. },
  18658. frontMaid: {
  18659. height: math.unit(6, "feet"),
  18660. weight: math.unit(150, "lb"),
  18661. name: "Front (Maid)",
  18662. image: {
  18663. source: "./media/characters/alluria/front-maid.svg",
  18664. extra: 806 / 738,
  18665. bottom: 0.01
  18666. }
  18667. },
  18668. sideMaid: {
  18669. height: math.unit(6, "feet"),
  18670. weight: math.unit(150, "lb"),
  18671. name: "Side (Maid)",
  18672. image: {
  18673. source: "./media/characters/alluria/side-maid.svg",
  18674. extra: 800 / 750,
  18675. bottom: 0.005
  18676. }
  18677. },
  18678. backMaid: {
  18679. height: math.unit(6, "feet"),
  18680. weight: math.unit(150, "lb"),
  18681. name: "Back (Maid)",
  18682. image: {
  18683. source: "./media/characters/alluria/back-maid.svg",
  18684. extra: 806 / 738,
  18685. }
  18686. },
  18687. },
  18688. [
  18689. {
  18690. name: "Micro",
  18691. height: math.unit(6, "inches"),
  18692. default: true
  18693. },
  18694. ]
  18695. ))
  18696. characterMakers.push(() => makeCharacter(
  18697. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18698. {
  18699. front: {
  18700. height: math.unit(6, "feet"),
  18701. weight: math.unit(150, "lb"),
  18702. name: "Front",
  18703. image: {
  18704. source: "./media/characters/kyle/front.svg",
  18705. extra: 1069 / 962,
  18706. bottom: 77.228 / 1727.45
  18707. }
  18708. },
  18709. },
  18710. [
  18711. {
  18712. name: "Macro",
  18713. height: math.unit(150, "feet"),
  18714. default: true
  18715. },
  18716. ]
  18717. ))
  18718. characterMakers.push(() => makeCharacter(
  18719. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18720. {
  18721. front: {
  18722. height: math.unit(6, "feet"),
  18723. weight: math.unit(300, "lb"),
  18724. name: "Front",
  18725. image: {
  18726. source: "./media/characters/duncan/front.svg",
  18727. extra: 1650 / 1482,
  18728. bottom: 0.05
  18729. }
  18730. },
  18731. },
  18732. [
  18733. {
  18734. name: "Macro",
  18735. height: math.unit(100, "feet"),
  18736. default: true
  18737. },
  18738. ]
  18739. ))
  18740. characterMakers.push(() => makeCharacter(
  18741. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18742. {
  18743. front: {
  18744. height: math.unit(5 + 4 / 12, "feet"),
  18745. weight: math.unit(220, "lb"),
  18746. name: "Front",
  18747. image: {
  18748. source: "./media/characters/memory/front.svg",
  18749. extra: 3641 / 3545,
  18750. bottom: 0.03
  18751. }
  18752. },
  18753. back: {
  18754. height: math.unit(5 + 4 / 12, "feet"),
  18755. weight: math.unit(220, "lb"),
  18756. name: "Back",
  18757. image: {
  18758. source: "./media/characters/memory/back.svg",
  18759. extra: 3641 / 3545,
  18760. bottom: 0.025
  18761. }
  18762. },
  18763. frontSkirt: {
  18764. height: math.unit(5 + 4 / 12, "feet"),
  18765. weight: math.unit(220, "lb"),
  18766. name: "Front (Skirt)",
  18767. image: {
  18768. source: "./media/characters/memory/front-skirt.svg",
  18769. extra: 3641 / 3545,
  18770. bottom: 0.03
  18771. }
  18772. },
  18773. frontDress: {
  18774. height: math.unit(5 + 4 / 12, "feet"),
  18775. weight: math.unit(220, "lb"),
  18776. name: "Front (Dress)",
  18777. image: {
  18778. source: "./media/characters/memory/front-dress.svg",
  18779. extra: 3641 / 3545,
  18780. bottom: 0.03
  18781. }
  18782. },
  18783. },
  18784. [
  18785. {
  18786. name: "Micro",
  18787. height: math.unit(6, "inches"),
  18788. default: true
  18789. },
  18790. {
  18791. name: "Normal",
  18792. height: math.unit(5 + 4 / 12, "feet")
  18793. },
  18794. ]
  18795. ))
  18796. characterMakers.push(() => makeCharacter(
  18797. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18798. {
  18799. front: {
  18800. height: math.unit(4 + 11 / 12, "feet"),
  18801. weight: math.unit(100, "lb"),
  18802. name: "Front",
  18803. image: {
  18804. source: "./media/characters/luno/front.svg",
  18805. extra: 1535 / 1487,
  18806. bottom: 0.03
  18807. }
  18808. },
  18809. },
  18810. [
  18811. {
  18812. name: "Micro",
  18813. height: math.unit(3, "inches")
  18814. },
  18815. {
  18816. name: "Normal",
  18817. height: math.unit(4 + 11 / 12, "feet"),
  18818. default: true
  18819. },
  18820. {
  18821. name: "Macro",
  18822. height: math.unit(300, "feet")
  18823. },
  18824. {
  18825. name: "Megamacro",
  18826. height: math.unit(700, "miles")
  18827. },
  18828. ]
  18829. ))
  18830. characterMakers.push(() => makeCharacter(
  18831. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18832. {
  18833. front: {
  18834. height: math.unit(6 + 2 / 12, "feet"),
  18835. weight: math.unit(170, "lb"),
  18836. name: "Front",
  18837. image: {
  18838. source: "./media/characters/jamesy/front.svg",
  18839. extra: 440 / 382,
  18840. bottom: 0.005
  18841. }
  18842. },
  18843. },
  18844. [
  18845. {
  18846. name: "Micro",
  18847. height: math.unit(3, "inches")
  18848. },
  18849. {
  18850. name: "Normal",
  18851. height: math.unit(6 + 2 / 12, "feet"),
  18852. default: true
  18853. },
  18854. {
  18855. name: "Macro",
  18856. height: math.unit(300, "feet")
  18857. },
  18858. {
  18859. name: "Megamacro",
  18860. height: math.unit(700, "miles")
  18861. },
  18862. ]
  18863. ))
  18864. characterMakers.push(() => makeCharacter(
  18865. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18866. {
  18867. front: {
  18868. height: math.unit(6, "feet"),
  18869. weight: math.unit(160, "lb"),
  18870. name: "Front",
  18871. image: {
  18872. source: "./media/characters/mark/front.svg",
  18873. extra: 3300 / 3100,
  18874. bottom: 136.42 / 3440.47
  18875. }
  18876. },
  18877. },
  18878. [
  18879. {
  18880. name: "Macro",
  18881. height: math.unit(120, "meters")
  18882. },
  18883. {
  18884. name: "Bigger Macro",
  18885. height: math.unit(350, "meters")
  18886. },
  18887. {
  18888. name: "Megamacro",
  18889. height: math.unit(8, "km"),
  18890. default: true
  18891. },
  18892. {
  18893. name: "Continental",
  18894. height: math.unit(4550, "km")
  18895. },
  18896. {
  18897. name: "Planetary",
  18898. height: math.unit(65000, "km")
  18899. },
  18900. ]
  18901. ))
  18902. characterMakers.push(() => makeCharacter(
  18903. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18904. {
  18905. front: {
  18906. height: math.unit(6, "feet"),
  18907. weight: math.unit(400, "lb"),
  18908. name: "Front",
  18909. image: {
  18910. source: "./media/characters/mac/front.svg",
  18911. extra: 1048 / 987.7,
  18912. bottom: 60 / 1107.6,
  18913. }
  18914. },
  18915. },
  18916. [
  18917. {
  18918. name: "Macro",
  18919. height: math.unit(500, "feet"),
  18920. default: true
  18921. },
  18922. ]
  18923. ))
  18924. characterMakers.push(() => makeCharacter(
  18925. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18926. {
  18927. front: {
  18928. height: math.unit(5 + 2 / 12, "feet"),
  18929. weight: math.unit(190, "lb"),
  18930. name: "Front",
  18931. image: {
  18932. source: "./media/characters/bari/front.svg",
  18933. extra: 3156 / 2880,
  18934. bottom: 0.03
  18935. }
  18936. },
  18937. back: {
  18938. height: math.unit(5 + 2 / 12, "feet"),
  18939. weight: math.unit(190, "lb"),
  18940. name: "Back",
  18941. image: {
  18942. source: "./media/characters/bari/back.svg",
  18943. extra: 3260 / 2834,
  18944. bottom: 0.025
  18945. }
  18946. },
  18947. frontPlush: {
  18948. height: math.unit(5 + 2 / 12, "feet"),
  18949. weight: math.unit(190, "lb"),
  18950. name: "Front (Plush)",
  18951. image: {
  18952. source: "./media/characters/bari/front-plush.svg",
  18953. extra: 1112 / 1061,
  18954. bottom: 0.002
  18955. }
  18956. },
  18957. },
  18958. [
  18959. {
  18960. name: "Micro",
  18961. height: math.unit(3, "inches")
  18962. },
  18963. {
  18964. name: "Normal",
  18965. height: math.unit(5 + 2 / 12, "feet"),
  18966. default: true
  18967. },
  18968. {
  18969. name: "Macro",
  18970. height: math.unit(20, "feet")
  18971. },
  18972. ]
  18973. ))
  18974. characterMakers.push(() => makeCharacter(
  18975. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18976. {
  18977. front: {
  18978. height: math.unit(6 + 1 / 12, "feet"),
  18979. weight: math.unit(275, "lb"),
  18980. name: "Front",
  18981. image: {
  18982. source: "./media/characters/hunter-misha-raven/front.svg"
  18983. }
  18984. },
  18985. },
  18986. [
  18987. {
  18988. name: "Mortal",
  18989. height: math.unit(6 + 1 / 12, "feet")
  18990. },
  18991. {
  18992. name: "Divine",
  18993. height: math.unit(1.12134e34, "parsecs"),
  18994. default: true
  18995. },
  18996. ]
  18997. ))
  18998. characterMakers.push(() => makeCharacter(
  18999. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  19000. {
  19001. front: {
  19002. height: math.unit(6 + 3 / 12, "feet"),
  19003. weight: math.unit(220, "lb"),
  19004. name: "Front",
  19005. image: {
  19006. source: "./media/characters/max-calore/front.svg",
  19007. extra: 1700 / 1648,
  19008. bottom: 0.01
  19009. }
  19010. },
  19011. back: {
  19012. height: math.unit(6 + 3 / 12, "feet"),
  19013. weight: math.unit(220, "lb"),
  19014. name: "Back",
  19015. image: {
  19016. source: "./media/characters/max-calore/back.svg",
  19017. extra: 1700 / 1648,
  19018. bottom: 0.01
  19019. }
  19020. },
  19021. },
  19022. [
  19023. {
  19024. name: "Normal",
  19025. height: math.unit(6 + 3 / 12, "feet"),
  19026. default: true
  19027. },
  19028. ]
  19029. ))
  19030. characterMakers.push(() => makeCharacter(
  19031. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  19032. {
  19033. side: {
  19034. height: math.unit(2 + 8 / 12, "feet"),
  19035. weight: math.unit(99, "lb"),
  19036. name: "Side",
  19037. image: {
  19038. source: "./media/characters/aspen/side.svg",
  19039. extra: 152 / 138,
  19040. bottom: 0.032
  19041. }
  19042. },
  19043. },
  19044. [
  19045. {
  19046. name: "Normal",
  19047. height: math.unit(2 + 8 / 12, "feet"),
  19048. default: true
  19049. },
  19050. ]
  19051. ))
  19052. characterMakers.push(() => makeCharacter(
  19053. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  19054. {
  19055. side: {
  19056. height: math.unit(3 + 2 / 12, "feet"),
  19057. weight: math.unit(224, "lb"),
  19058. name: "Side",
  19059. image: {
  19060. source: "./media/characters/sheila-feral-wolf/side.svg",
  19061. extra: 179 / 166,
  19062. bottom: 0.03
  19063. }
  19064. },
  19065. },
  19066. [
  19067. {
  19068. name: "Normal",
  19069. height: math.unit(3 + 2 / 12, "feet"),
  19070. default: true
  19071. },
  19072. ]
  19073. ))
  19074. characterMakers.push(() => makeCharacter(
  19075. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  19076. {
  19077. side: {
  19078. height: math.unit(1 + 9 / 12, "feet"),
  19079. weight: math.unit(38, "lb"),
  19080. name: "Side",
  19081. image: {
  19082. source: "./media/characters/michelle/side.svg",
  19083. extra: 147 / 136.7,
  19084. bottom: 0.03
  19085. }
  19086. },
  19087. },
  19088. [
  19089. {
  19090. name: "Normal",
  19091. height: math.unit(1 + 9 / 12, "feet"),
  19092. default: true
  19093. },
  19094. ]
  19095. ))
  19096. characterMakers.push(() => makeCharacter(
  19097. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  19098. {
  19099. front: {
  19100. height: math.unit(1.54, "feet"),
  19101. weight: math.unit(50, "lb"),
  19102. name: "Front",
  19103. image: {
  19104. source: "./media/characters/nino/front.svg"
  19105. }
  19106. },
  19107. },
  19108. [
  19109. {
  19110. name: "Normal",
  19111. height: math.unit(1.54, "feet"),
  19112. default: true
  19113. },
  19114. ]
  19115. ))
  19116. characterMakers.push(() => makeCharacter(
  19117. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19118. {
  19119. front: {
  19120. height: math.unit(1.49, "feet"),
  19121. weight: math.unit(45, "lb"),
  19122. name: "Front",
  19123. image: {
  19124. source: "./media/characters/viola/front.svg"
  19125. }
  19126. },
  19127. },
  19128. [
  19129. {
  19130. name: "Normal",
  19131. height: math.unit(1.49, "feet"),
  19132. default: true
  19133. },
  19134. ]
  19135. ))
  19136. characterMakers.push(() => makeCharacter(
  19137. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19138. {
  19139. front: {
  19140. height: math.unit(6 + 5 / 12, "feet"),
  19141. weight: math.unit(580, "lb"),
  19142. name: "Front",
  19143. image: {
  19144. source: "./media/characters/atlas/front.svg",
  19145. extra: 298.5 / 290,
  19146. bottom: 0.015
  19147. }
  19148. },
  19149. },
  19150. [
  19151. {
  19152. name: "Normal",
  19153. height: math.unit(6 + 5 / 12, "feet"),
  19154. default: true
  19155. },
  19156. ]
  19157. ))
  19158. characterMakers.push(() => makeCharacter(
  19159. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19160. {
  19161. side: {
  19162. height: math.unit(15.6, "inches"),
  19163. weight: math.unit(10, "lb"),
  19164. name: "Side",
  19165. image: {
  19166. source: "./media/characters/davy/side.svg",
  19167. extra: 200 / 170,
  19168. bottom: 0.01
  19169. }
  19170. },
  19171. },
  19172. [
  19173. {
  19174. name: "Normal",
  19175. height: math.unit(15.6, "inches"),
  19176. default: true
  19177. },
  19178. ]
  19179. ))
  19180. characterMakers.push(() => makeCharacter(
  19181. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19182. {
  19183. side: {
  19184. height: math.unit(4 + 8 / 12, "feet"),
  19185. weight: math.unit(166, "lb"),
  19186. name: "Side",
  19187. image: {
  19188. source: "./media/characters/fiona/side.svg",
  19189. extra: 232 / 220,
  19190. bottom: 0.03
  19191. }
  19192. },
  19193. },
  19194. [
  19195. {
  19196. name: "Normal",
  19197. height: math.unit(4 + 8 / 12, "feet"),
  19198. default: true
  19199. },
  19200. ]
  19201. ))
  19202. characterMakers.push(() => makeCharacter(
  19203. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19204. {
  19205. front: {
  19206. height: math.unit(26, "inches"),
  19207. weight: math.unit(35, "lb"),
  19208. name: "Front",
  19209. image: {
  19210. source: "./media/characters/lyla/front.svg",
  19211. bottom: 0.1
  19212. }
  19213. },
  19214. },
  19215. [
  19216. {
  19217. name: "Normal",
  19218. height: math.unit(3, "feet"),
  19219. default: true
  19220. },
  19221. ]
  19222. ))
  19223. characterMakers.push(() => makeCharacter(
  19224. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19225. {
  19226. side: {
  19227. height: math.unit(1.8, "feet"),
  19228. weight: math.unit(44, "lb"),
  19229. name: "Side",
  19230. image: {
  19231. source: "./media/characters/perseus/side.svg",
  19232. bottom: 0.21
  19233. }
  19234. },
  19235. },
  19236. [
  19237. {
  19238. name: "Normal",
  19239. height: math.unit(1.8, "feet"),
  19240. default: true
  19241. },
  19242. ]
  19243. ))
  19244. characterMakers.push(() => makeCharacter(
  19245. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19246. {
  19247. side: {
  19248. height: math.unit(4 + 2 / 12, "feet"),
  19249. weight: math.unit(20, "lb"),
  19250. name: "Side",
  19251. image: {
  19252. source: "./media/characters/remus/side.svg"
  19253. }
  19254. },
  19255. },
  19256. [
  19257. {
  19258. name: "Normal",
  19259. height: math.unit(4 + 2 / 12, "feet"),
  19260. default: true
  19261. },
  19262. ]
  19263. ))
  19264. characterMakers.push(() => makeCharacter(
  19265. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19266. {
  19267. front: {
  19268. height: math.unit(4 + 11 / 12, "feet"),
  19269. weight: math.unit(114, "lb"),
  19270. name: "Front",
  19271. image: {
  19272. source: "./media/characters/raf/front.svg",
  19273. extra: 1504/1339,
  19274. bottom: 26/1530
  19275. }
  19276. },
  19277. side: {
  19278. height: math.unit(4 + 11 / 12, "feet"),
  19279. weight: math.unit(114, "lb"),
  19280. name: "Side",
  19281. image: {
  19282. source: "./media/characters/raf/side.svg",
  19283. extra: 1466/1316,
  19284. bottom: 29/1495
  19285. }
  19286. },
  19287. paw: {
  19288. height: math.unit(1.45, "feet"),
  19289. name: "Paw",
  19290. image: {
  19291. source: "./media/characters/raf/paw.svg"
  19292. },
  19293. extraAttributes: {
  19294. "toeSize": {
  19295. name: "Toe Size",
  19296. power: 2,
  19297. type: "area",
  19298. base: math.unit(0.004, "m^2")
  19299. },
  19300. "padSize": {
  19301. name: "Pad Size",
  19302. power: 2,
  19303. type: "area",
  19304. base: math.unit(0.04, "m^2")
  19305. },
  19306. "footSize": {
  19307. name: "Foot Size",
  19308. power: 2,
  19309. type: "area",
  19310. base: math.unit(0.08, "m^2")
  19311. },
  19312. }
  19313. },
  19314. },
  19315. [
  19316. {
  19317. name: "Micro",
  19318. height: math.unit(2, "inches")
  19319. },
  19320. {
  19321. name: "Normal",
  19322. height: math.unit(4 + 11 / 12, "feet"),
  19323. default: true
  19324. },
  19325. {
  19326. name: "Macro",
  19327. height: math.unit(70, "feet")
  19328. },
  19329. ]
  19330. ))
  19331. characterMakers.push(() => makeCharacter(
  19332. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19333. {
  19334. front: {
  19335. height: math.unit(1.5, "meters"),
  19336. weight: math.unit(68, "kg"),
  19337. name: "Front",
  19338. image: {
  19339. source: "./media/characters/liam-einarr/front.svg",
  19340. extra: 2822 / 2666
  19341. }
  19342. },
  19343. back: {
  19344. height: math.unit(1.5, "meters"),
  19345. weight: math.unit(68, "kg"),
  19346. name: "Back",
  19347. image: {
  19348. source: "./media/characters/liam-einarr/back.svg",
  19349. extra: 2822 / 2666,
  19350. bottom: 0.015
  19351. }
  19352. },
  19353. },
  19354. [
  19355. {
  19356. name: "Normal",
  19357. height: math.unit(1.5, "meters"),
  19358. default: true
  19359. },
  19360. {
  19361. name: "Macro",
  19362. height: math.unit(150, "meters")
  19363. },
  19364. {
  19365. name: "Megamacro",
  19366. height: math.unit(35, "km")
  19367. },
  19368. ]
  19369. ))
  19370. characterMakers.push(() => makeCharacter(
  19371. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19372. {
  19373. front: {
  19374. height: math.unit(6, "feet"),
  19375. weight: math.unit(75, "kg"),
  19376. name: "Front",
  19377. image: {
  19378. source: "./media/characters/linda/front.svg",
  19379. extra: 930 / 874,
  19380. bottom: 0.004
  19381. }
  19382. },
  19383. },
  19384. [
  19385. {
  19386. name: "Normal",
  19387. height: math.unit(6, "feet"),
  19388. default: true
  19389. },
  19390. ]
  19391. ))
  19392. characterMakers.push(() => makeCharacter(
  19393. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19394. {
  19395. front: {
  19396. height: math.unit(6 + 8 / 12, "feet"),
  19397. weight: math.unit(220, "lb"),
  19398. name: "Front",
  19399. image: {
  19400. source: "./media/characters/caylex/front.svg",
  19401. extra: 821 / 772,
  19402. bottom: 0.07
  19403. }
  19404. },
  19405. back: {
  19406. height: math.unit(6 + 8 / 12, "feet"),
  19407. weight: math.unit(220, "lb"),
  19408. name: "Back",
  19409. image: {
  19410. source: "./media/characters/caylex/back.svg",
  19411. extra: 821 / 772,
  19412. bottom: 0.022
  19413. }
  19414. },
  19415. hand: {
  19416. height: math.unit(1.25, "feet"),
  19417. name: "Hand",
  19418. image: {
  19419. source: "./media/characters/caylex/hand.svg"
  19420. }
  19421. },
  19422. foot: {
  19423. height: math.unit(1.6, "feet"),
  19424. name: "Foot",
  19425. image: {
  19426. source: "./media/characters/caylex/foot.svg"
  19427. }
  19428. },
  19429. armored: {
  19430. height: math.unit(6 + 8 / 12, "feet"),
  19431. weight: math.unit(250, "lb"),
  19432. name: "Armored",
  19433. image: {
  19434. source: "./media/characters/caylex/armored.svg",
  19435. extra: 1420 / 1310,
  19436. bottom: 0.045
  19437. }
  19438. },
  19439. },
  19440. [
  19441. {
  19442. name: "Normal",
  19443. height: math.unit(6 + 8 / 12, "feet"),
  19444. default: true
  19445. },
  19446. {
  19447. name: "Normal+",
  19448. height: math.unit(12, "feet")
  19449. },
  19450. ]
  19451. ))
  19452. characterMakers.push(() => makeCharacter(
  19453. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19454. {
  19455. front: {
  19456. height: math.unit(7 + 6 / 12, "feet"),
  19457. weight: math.unit(288, "lb"),
  19458. name: "Front",
  19459. image: {
  19460. source: "./media/characters/alana/front.svg",
  19461. extra: 679 / 653,
  19462. bottom: 22.5 / 701
  19463. }
  19464. },
  19465. },
  19466. [
  19467. {
  19468. name: "Normal",
  19469. height: math.unit(7 + 6 / 12, "feet")
  19470. },
  19471. {
  19472. name: "Large",
  19473. height: math.unit(50, "feet")
  19474. },
  19475. {
  19476. name: "Macro",
  19477. height: math.unit(100, "feet"),
  19478. default: true
  19479. },
  19480. {
  19481. name: "Macro+",
  19482. height: math.unit(200, "feet")
  19483. },
  19484. ]
  19485. ))
  19486. characterMakers.push(() => makeCharacter(
  19487. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19488. {
  19489. front: {
  19490. height: math.unit(6 + 1 / 12, "feet"),
  19491. weight: math.unit(210, "lb"),
  19492. name: "Front",
  19493. image: {
  19494. source: "./media/characters/hasani/front.svg",
  19495. extra: 244 / 232,
  19496. bottom: 0.01
  19497. }
  19498. },
  19499. back: {
  19500. height: math.unit(6 + 1 / 12, "feet"),
  19501. weight: math.unit(210, "lb"),
  19502. name: "Back",
  19503. image: {
  19504. source: "./media/characters/hasani/back.svg",
  19505. extra: 244 / 232,
  19506. bottom: 0.01
  19507. }
  19508. },
  19509. },
  19510. [
  19511. {
  19512. name: "Normal",
  19513. height: math.unit(6 + 1 / 12, "feet")
  19514. },
  19515. {
  19516. name: "Macro",
  19517. height: math.unit(175, "feet"),
  19518. default: true
  19519. },
  19520. ]
  19521. ))
  19522. characterMakers.push(() => makeCharacter(
  19523. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19524. {
  19525. front: {
  19526. height: math.unit(1.82, "meters"),
  19527. weight: math.unit(140, "lb"),
  19528. name: "Front",
  19529. image: {
  19530. source: "./media/characters/nita/front.svg",
  19531. extra: 2473 / 2363,
  19532. bottom: 0.01
  19533. }
  19534. },
  19535. },
  19536. [
  19537. {
  19538. name: "Normal",
  19539. height: math.unit(1.82, "m")
  19540. },
  19541. {
  19542. name: "Macro",
  19543. height: math.unit(300, "m")
  19544. },
  19545. {
  19546. name: "Mistake Canon",
  19547. height: math.unit(0.5, "miles"),
  19548. default: true
  19549. },
  19550. {
  19551. name: "Big Mistake",
  19552. height: math.unit(13, "miles")
  19553. },
  19554. {
  19555. name: "Playing God",
  19556. height: math.unit(2450, "miles")
  19557. },
  19558. ]
  19559. ))
  19560. characterMakers.push(() => makeCharacter(
  19561. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19562. {
  19563. front: {
  19564. height: math.unit(4, "feet"),
  19565. weight: math.unit(120, "lb"),
  19566. name: "Front",
  19567. image: {
  19568. source: "./media/characters/shiriko/front.svg",
  19569. extra: 970/934,
  19570. bottom: 5/975
  19571. }
  19572. },
  19573. },
  19574. [
  19575. {
  19576. name: "Normal",
  19577. height: math.unit(4, "feet"),
  19578. default: true
  19579. },
  19580. ]
  19581. ))
  19582. characterMakers.push(() => makeCharacter(
  19583. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19584. {
  19585. front: {
  19586. height: math.unit(6, "feet"),
  19587. name: "front",
  19588. image: {
  19589. source: "./media/characters/deja/front.svg",
  19590. extra: 926 / 840,
  19591. bottom: 0.07
  19592. }
  19593. },
  19594. },
  19595. [
  19596. {
  19597. name: "Planck Length",
  19598. height: math.unit(1.6e-35, "meters")
  19599. },
  19600. {
  19601. name: "Normal",
  19602. height: math.unit(30.48, "meters"),
  19603. default: true
  19604. },
  19605. {
  19606. name: "Universal",
  19607. height: math.unit(8.8e26, "meters")
  19608. },
  19609. ]
  19610. ))
  19611. characterMakers.push(() => makeCharacter(
  19612. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19613. {
  19614. side: {
  19615. height: math.unit(8, "feet"),
  19616. weight: math.unit(6300, "lb"),
  19617. name: "Side",
  19618. image: {
  19619. source: "./media/characters/anima/side.svg",
  19620. bottom: 0.035
  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: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19634. {
  19635. front: {
  19636. height: math.unit(8, "feet"),
  19637. weight: math.unit(350, "lb"),
  19638. name: "Front",
  19639. image: {
  19640. source: "./media/characters/bianca/front.svg",
  19641. extra: 234 / 225,
  19642. bottom: 0.03
  19643. }
  19644. },
  19645. },
  19646. [
  19647. {
  19648. name: "Normal",
  19649. height: math.unit(8, "feet"),
  19650. default: true
  19651. },
  19652. ]
  19653. ))
  19654. characterMakers.push(() => makeCharacter(
  19655. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19656. {
  19657. front: {
  19658. height: math.unit(11 + 5/12, "feet"),
  19659. weight: math.unit(1200, "lb"),
  19660. name: "Front",
  19661. image: {
  19662. source: "./media/characters/adinia/front.svg",
  19663. extra: 1767/1641,
  19664. bottom: 44/1811
  19665. },
  19666. extraAttributes: {
  19667. "energyIntake": {
  19668. name: "Energy Intake",
  19669. power: 3,
  19670. type: "energy",
  19671. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19672. },
  19673. }
  19674. },
  19675. back: {
  19676. height: math.unit(11 + 5/12, "feet"),
  19677. weight: math.unit(1200, "lb"),
  19678. name: "Back",
  19679. image: {
  19680. source: "./media/characters/adinia/back.svg",
  19681. extra: 1834/1684,
  19682. bottom: 14/1848
  19683. },
  19684. extraAttributes: {
  19685. "energyIntake": {
  19686. name: "Energy Intake",
  19687. power: 3,
  19688. type: "energy",
  19689. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19690. },
  19691. }
  19692. },
  19693. maw: {
  19694. height: math.unit(3.79, "feet"),
  19695. name: "Maw",
  19696. image: {
  19697. source: "./media/characters/adinia/maw.svg"
  19698. }
  19699. },
  19700. rump: {
  19701. height: math.unit(4.6, "feet"),
  19702. name: "Rump",
  19703. image: {
  19704. source: "./media/characters/adinia/rump.svg"
  19705. }
  19706. },
  19707. },
  19708. [
  19709. {
  19710. name: "Normal",
  19711. height: math.unit(11 + 5 / 12, "feet"),
  19712. default: true
  19713. },
  19714. ]
  19715. ))
  19716. characterMakers.push(() => makeCharacter(
  19717. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19718. {
  19719. front: {
  19720. height: math.unit(3, "meters"),
  19721. weight: math.unit(200, "kg"),
  19722. name: "Front",
  19723. image: {
  19724. source: "./media/characters/lykasa/front.svg",
  19725. extra: 1076 / 976,
  19726. bottom: 0.06
  19727. }
  19728. },
  19729. },
  19730. [
  19731. {
  19732. name: "Normal",
  19733. height: math.unit(3, "meters")
  19734. },
  19735. {
  19736. name: "Kaiju",
  19737. height: math.unit(120, "meters"),
  19738. default: true
  19739. },
  19740. {
  19741. name: "Mega Kaiju",
  19742. height: math.unit(240, "km")
  19743. },
  19744. {
  19745. name: "Giga Kaiju",
  19746. height: math.unit(400, "megameters")
  19747. },
  19748. {
  19749. name: "Tera Kaiju",
  19750. height: math.unit(800, "gigameters")
  19751. },
  19752. {
  19753. name: "Kaiju Dragon Goddess",
  19754. height: math.unit(26, "zettaparsecs")
  19755. },
  19756. ]
  19757. ))
  19758. characterMakers.push(() => makeCharacter(
  19759. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19760. {
  19761. side: {
  19762. height: math.unit(283 / 124 * 6, "feet"),
  19763. weight: math.unit(35000, "lb"),
  19764. name: "Side",
  19765. image: {
  19766. source: "./media/characters/malfaren/side.svg",
  19767. extra: 1310/529,
  19768. bottom: 24/1334
  19769. }
  19770. },
  19771. front: {
  19772. height: math.unit(22.36, "feet"),
  19773. weight: math.unit(35000, "lb"),
  19774. name: "Front",
  19775. image: {
  19776. source: "./media/characters/malfaren/front.svg",
  19777. extra: 1237/1115,
  19778. bottom: 32/1269
  19779. }
  19780. },
  19781. maw: {
  19782. height: math.unit(6.9, "feet"),
  19783. name: "Maw",
  19784. image: {
  19785. source: "./media/characters/malfaren/maw.svg"
  19786. }
  19787. },
  19788. dick: {
  19789. height: math.unit(6.19, "feet"),
  19790. name: "Dick",
  19791. image: {
  19792. source: "./media/characters/malfaren/dick.svg"
  19793. }
  19794. },
  19795. eye: {
  19796. height: math.unit(0.69, "feet"),
  19797. name: "Eye",
  19798. image: {
  19799. source: "./media/characters/malfaren/eye.svg"
  19800. }
  19801. },
  19802. },
  19803. [
  19804. {
  19805. name: "Big",
  19806. height: math.unit(283 / 162 * 6, "feet"),
  19807. },
  19808. {
  19809. name: "Bigger",
  19810. height: math.unit(283 / 124 * 6, "feet")
  19811. },
  19812. {
  19813. name: "Massive",
  19814. height: math.unit(283 / 92 * 6, "feet"),
  19815. default: true
  19816. },
  19817. {
  19818. name: "👀💦",
  19819. height: math.unit(283 / 73 * 6, "feet"),
  19820. },
  19821. ]
  19822. ))
  19823. characterMakers.push(() => makeCharacter(
  19824. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19825. {
  19826. front: {
  19827. height: math.unit(1.7, "m"),
  19828. weight: math.unit(70, "kg"),
  19829. name: "Front",
  19830. image: {
  19831. source: "./media/characters/kernel/front.svg",
  19832. extra: 1960/1821,
  19833. bottom: 17/1977
  19834. }
  19835. },
  19836. },
  19837. [
  19838. {
  19839. name: "Nano",
  19840. height: math.unit(17, "micrometers")
  19841. },
  19842. {
  19843. name: "Micro",
  19844. height: math.unit(1.7, "mm")
  19845. },
  19846. {
  19847. name: "Small",
  19848. height: math.unit(1.7, "cm")
  19849. },
  19850. {
  19851. name: "Normal",
  19852. height: math.unit(1.7, "m"),
  19853. default: true
  19854. },
  19855. ]
  19856. ))
  19857. characterMakers.push(() => makeCharacter(
  19858. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19859. {
  19860. front: {
  19861. height: math.unit(1.75, "meters"),
  19862. weight: math.unit(65, "kg"),
  19863. name: "Front",
  19864. image: {
  19865. source: "./media/characters/jayne-folest/front.svg",
  19866. extra: 2115 / 2007,
  19867. bottom: 0.02
  19868. }
  19869. },
  19870. back: {
  19871. height: math.unit(1.75, "meters"),
  19872. weight: math.unit(65, "kg"),
  19873. name: "Back",
  19874. image: {
  19875. source: "./media/characters/jayne-folest/back.svg",
  19876. extra: 2115 / 2007,
  19877. bottom: 0.005
  19878. }
  19879. },
  19880. frontClothed: {
  19881. height: math.unit(1.75, "meters"),
  19882. weight: math.unit(65, "kg"),
  19883. name: "Front (Clothed)",
  19884. image: {
  19885. source: "./media/characters/jayne-folest/front-clothed.svg",
  19886. extra: 2115 / 2007,
  19887. bottom: 0.035
  19888. }
  19889. },
  19890. hand: {
  19891. height: math.unit(1 / 1.260, "feet"),
  19892. name: "Hand",
  19893. image: {
  19894. source: "./media/characters/jayne-folest/hand.svg"
  19895. }
  19896. },
  19897. foot: {
  19898. height: math.unit(1 / 0.918, "feet"),
  19899. name: "Foot",
  19900. image: {
  19901. source: "./media/characters/jayne-folest/foot.svg"
  19902. }
  19903. },
  19904. },
  19905. [
  19906. {
  19907. name: "Micro",
  19908. height: math.unit(4, "cm")
  19909. },
  19910. {
  19911. name: "Normal",
  19912. height: math.unit(1.75, "meters")
  19913. },
  19914. {
  19915. name: "Macro",
  19916. height: math.unit(47.5, "meters"),
  19917. default: true
  19918. },
  19919. ]
  19920. ))
  19921. characterMakers.push(() => makeCharacter(
  19922. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19923. {
  19924. front: {
  19925. height: math.unit(180, "cm"),
  19926. weight: math.unit(70, "kg"),
  19927. name: "Front",
  19928. image: {
  19929. source: "./media/characters/algier/front.svg",
  19930. extra: 596 / 572,
  19931. bottom: 0.04
  19932. }
  19933. },
  19934. back: {
  19935. height: math.unit(180, "cm"),
  19936. weight: math.unit(70, "kg"),
  19937. name: "Back",
  19938. image: {
  19939. source: "./media/characters/algier/back.svg",
  19940. extra: 596 / 572,
  19941. bottom: 0.025
  19942. }
  19943. },
  19944. frontdressed: {
  19945. height: math.unit(180, "cm"),
  19946. weight: math.unit(150, "kg"),
  19947. name: "Front-dressed",
  19948. image: {
  19949. source: "./media/characters/algier/front-dressed.svg",
  19950. extra: 596 / 572,
  19951. bottom: 0.038
  19952. }
  19953. },
  19954. },
  19955. [
  19956. {
  19957. name: "Micro",
  19958. height: math.unit(5, "cm")
  19959. },
  19960. {
  19961. name: "Normal",
  19962. height: math.unit(180, "cm"),
  19963. default: true
  19964. },
  19965. {
  19966. name: "Macro",
  19967. height: math.unit(64, "m")
  19968. },
  19969. ]
  19970. ))
  19971. characterMakers.push(() => makeCharacter(
  19972. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19973. {
  19974. upright: {
  19975. height: math.unit(7, "feet"),
  19976. weight: math.unit(300, "lb"),
  19977. name: "Upright",
  19978. image: {
  19979. source: "./media/characters/pretzel/upright.svg",
  19980. extra: 534 / 522,
  19981. bottom: 0.065
  19982. }
  19983. },
  19984. sprawling: {
  19985. height: math.unit(3.75, "feet"),
  19986. weight: math.unit(300, "lb"),
  19987. name: "Sprawling",
  19988. image: {
  19989. source: "./media/characters/pretzel/sprawling.svg",
  19990. extra: 314 / 281,
  19991. bottom: 0.1
  19992. }
  19993. },
  19994. tongue: {
  19995. height: math.unit(2, "feet"),
  19996. name: "Tongue",
  19997. image: {
  19998. source: "./media/characters/pretzel/tongue.svg"
  19999. }
  20000. },
  20001. },
  20002. [
  20003. {
  20004. name: "Normal",
  20005. height: math.unit(7, "feet"),
  20006. default: true
  20007. },
  20008. {
  20009. name: "Oversized",
  20010. height: math.unit(15, "feet")
  20011. },
  20012. {
  20013. name: "Huge",
  20014. height: math.unit(30, "feet")
  20015. },
  20016. {
  20017. name: "Macro",
  20018. height: math.unit(250, "feet")
  20019. },
  20020. ]
  20021. ))
  20022. characterMakers.push(() => makeCharacter(
  20023. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  20024. {
  20025. sideFront: {
  20026. height: math.unit(5 + 2 / 12, "feet"),
  20027. weight: math.unit(120, "lb"),
  20028. name: "Front Side",
  20029. image: {
  20030. source: "./media/characters/roxi/side-front.svg",
  20031. extra: 2924 / 2717,
  20032. bottom: 0.08
  20033. }
  20034. },
  20035. sideBack: {
  20036. height: math.unit(5 + 2 / 12, "feet"),
  20037. weight: math.unit(120, "lb"),
  20038. name: "Back Side",
  20039. image: {
  20040. source: "./media/characters/roxi/side-back.svg",
  20041. extra: 2904 / 2693,
  20042. bottom: 0.06
  20043. }
  20044. },
  20045. front: {
  20046. height: math.unit(5 + 2 / 12, "feet"),
  20047. weight: math.unit(120, "lb"),
  20048. name: "Front",
  20049. image: {
  20050. source: "./media/characters/roxi/front.svg",
  20051. extra: 2028 / 1907,
  20052. bottom: 0.01
  20053. }
  20054. },
  20055. frontAlt: {
  20056. height: math.unit(5 + 2 / 12, "feet"),
  20057. weight: math.unit(120, "lb"),
  20058. name: "Front (Alt)",
  20059. image: {
  20060. source: "./media/characters/roxi/front-alt.svg",
  20061. extra: 1828 / 1798,
  20062. bottom: 0.01
  20063. }
  20064. },
  20065. sitting: {
  20066. height: math.unit(2.8, "feet"),
  20067. weight: math.unit(120, "lb"),
  20068. name: "Sitting",
  20069. image: {
  20070. source: "./media/characters/roxi/sitting.svg",
  20071. extra: 2660 / 2462,
  20072. bottom: 0.1
  20073. }
  20074. },
  20075. },
  20076. [
  20077. {
  20078. name: "Normal",
  20079. height: math.unit(5 + 2 / 12, "feet"),
  20080. default: true
  20081. },
  20082. ]
  20083. ))
  20084. characterMakers.push(() => makeCharacter(
  20085. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  20086. {
  20087. side: {
  20088. height: math.unit(55, "feet"),
  20089. weight: math.unit(153, "tons"),
  20090. name: "Side",
  20091. image: {
  20092. source: "./media/characters/shadow/side.svg",
  20093. extra: 701 / 628,
  20094. bottom: 0.02
  20095. }
  20096. },
  20097. flying: {
  20098. height: math.unit(145, "feet"),
  20099. weight: math.unit(153, "tons"),
  20100. name: "Flying",
  20101. image: {
  20102. source: "./media/characters/shadow/flying.svg"
  20103. }
  20104. },
  20105. },
  20106. [
  20107. {
  20108. name: "Normal",
  20109. height: math.unit(55, "feet"),
  20110. default: true
  20111. },
  20112. ]
  20113. ))
  20114. characterMakers.push(() => makeCharacter(
  20115. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20116. {
  20117. front: {
  20118. height: math.unit(6, "feet"),
  20119. weight: math.unit(200, "lb"),
  20120. name: "Front",
  20121. image: {
  20122. source: "./media/characters/marcie/front.svg",
  20123. extra: 960 / 876,
  20124. bottom: 58 / 1017.87
  20125. }
  20126. },
  20127. },
  20128. [
  20129. {
  20130. name: "Macro",
  20131. height: math.unit(1, "mile"),
  20132. default: true
  20133. },
  20134. ]
  20135. ))
  20136. characterMakers.push(() => makeCharacter(
  20137. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20138. {
  20139. front: {
  20140. height: math.unit(7, "feet"),
  20141. weight: math.unit(200, "lb"),
  20142. name: "Front",
  20143. image: {
  20144. source: "./media/characters/kachina/front.svg",
  20145. extra: 3206/2764,
  20146. bottom: 140/3346
  20147. }
  20148. },
  20149. },
  20150. [
  20151. {
  20152. name: "Normal",
  20153. height: math.unit(7, "feet"),
  20154. default: true
  20155. },
  20156. ]
  20157. ))
  20158. characterMakers.push(() => makeCharacter(
  20159. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20160. {
  20161. looking: {
  20162. height: math.unit(2, "meters"),
  20163. weight: math.unit(300, "kg"),
  20164. name: "Looking",
  20165. image: {
  20166. source: "./media/characters/kash/looking.svg",
  20167. extra: 474 / 344,
  20168. bottom: 0.03
  20169. }
  20170. },
  20171. side: {
  20172. height: math.unit(2, "meters"),
  20173. weight: math.unit(300, "kg"),
  20174. name: "Side",
  20175. image: {
  20176. source: "./media/characters/kash/side.svg",
  20177. extra: 302 / 251,
  20178. bottom: 0.03
  20179. }
  20180. },
  20181. front: {
  20182. height: math.unit(2, "meters"),
  20183. weight: math.unit(300, "kg"),
  20184. name: "Front",
  20185. image: {
  20186. source: "./media/characters/kash/front.svg",
  20187. extra: 495 / 360,
  20188. bottom: 0.015
  20189. }
  20190. },
  20191. },
  20192. [
  20193. {
  20194. name: "Normal",
  20195. height: math.unit(2, "meters"),
  20196. default: true
  20197. },
  20198. {
  20199. name: "Big",
  20200. height: math.unit(3, "meters")
  20201. },
  20202. {
  20203. name: "Large",
  20204. height: math.unit(5, "meters")
  20205. },
  20206. ]
  20207. ))
  20208. characterMakers.push(() => makeCharacter(
  20209. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20210. {
  20211. feeding: {
  20212. height: math.unit(6.7, "feet"),
  20213. weight: math.unit(350, "lb"),
  20214. name: "Feeding",
  20215. image: {
  20216. source: "./media/characters/lalim/feeding.svg",
  20217. }
  20218. },
  20219. },
  20220. [
  20221. {
  20222. name: "Normal",
  20223. height: math.unit(6.7, "feet"),
  20224. default: true
  20225. },
  20226. ]
  20227. ))
  20228. characterMakers.push(() => makeCharacter(
  20229. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20230. {
  20231. front: {
  20232. height: math.unit(9.5, "feet"),
  20233. weight: math.unit(600, "lb"),
  20234. name: "Front",
  20235. image: {
  20236. source: "./media/characters/de'vout/front.svg",
  20237. extra: 1443 / 1328,
  20238. bottom: 0.025
  20239. }
  20240. },
  20241. back: {
  20242. height: math.unit(9.5, "feet"),
  20243. weight: math.unit(600, "lb"),
  20244. name: "Back",
  20245. image: {
  20246. source: "./media/characters/de'vout/back.svg",
  20247. extra: 1443 / 1328
  20248. }
  20249. },
  20250. frontDressed: {
  20251. height: math.unit(9.5, "feet"),
  20252. weight: math.unit(600, "lb"),
  20253. name: "Front (Dressed",
  20254. image: {
  20255. source: "./media/characters/de'vout/front-dressed.svg",
  20256. extra: 1443 / 1328,
  20257. bottom: 0.025
  20258. }
  20259. },
  20260. backDressed: {
  20261. height: math.unit(9.5, "feet"),
  20262. weight: math.unit(600, "lb"),
  20263. name: "Back (Dressed",
  20264. image: {
  20265. source: "./media/characters/de'vout/back-dressed.svg",
  20266. extra: 1443 / 1328
  20267. }
  20268. },
  20269. },
  20270. [
  20271. {
  20272. name: "Normal",
  20273. height: math.unit(9.5, "feet"),
  20274. default: true
  20275. },
  20276. ]
  20277. ))
  20278. characterMakers.push(() => makeCharacter(
  20279. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20280. {
  20281. front: {
  20282. height: math.unit(8, "feet"),
  20283. weight: math.unit(225, "lb"),
  20284. name: "Front",
  20285. image: {
  20286. source: "./media/characters/talana/front.svg",
  20287. extra: 1410 / 1300,
  20288. bottom: 0.015
  20289. }
  20290. },
  20291. frontDressed: {
  20292. height: math.unit(8, "feet"),
  20293. weight: math.unit(225, "lb"),
  20294. name: "Front (Dressed",
  20295. image: {
  20296. source: "./media/characters/talana/front-dressed.svg",
  20297. extra: 1410 / 1300,
  20298. bottom: 0.015
  20299. }
  20300. },
  20301. },
  20302. [
  20303. {
  20304. name: "Normal",
  20305. height: math.unit(8, "feet"),
  20306. default: true
  20307. },
  20308. ]
  20309. ))
  20310. characterMakers.push(() => makeCharacter(
  20311. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20312. {
  20313. side: {
  20314. height: math.unit(7.2, "feet"),
  20315. weight: math.unit(150, "lb"),
  20316. name: "Side",
  20317. image: {
  20318. source: "./media/characters/xeauvok/side.svg",
  20319. extra: 1975 / 1523,
  20320. bottom: 0.07
  20321. }
  20322. },
  20323. },
  20324. [
  20325. {
  20326. name: "Normal",
  20327. height: math.unit(7.2, "feet"),
  20328. default: true
  20329. },
  20330. ]
  20331. ))
  20332. characterMakers.push(() => makeCharacter(
  20333. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20334. {
  20335. side: {
  20336. height: math.unit(4, "meters"),
  20337. weight: math.unit(2200, "kg"),
  20338. name: "Side",
  20339. image: {
  20340. source: "./media/characters/zara/side.svg",
  20341. extra: 765/744,
  20342. bottom: 156/921
  20343. }
  20344. },
  20345. },
  20346. [
  20347. {
  20348. name: "Normal",
  20349. height: math.unit(4, "meters"),
  20350. default: true
  20351. },
  20352. ]
  20353. ))
  20354. characterMakers.push(() => makeCharacter(
  20355. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20356. {
  20357. side: {
  20358. height: math.unit(6, "feet"),
  20359. weight: math.unit(150, "lb"),
  20360. name: "Side",
  20361. image: {
  20362. source: "./media/characters/richard-dragon/side.svg",
  20363. extra: 845 / 340,
  20364. bottom: 0.017
  20365. }
  20366. },
  20367. maw: {
  20368. height: math.unit(2.97, "feet"),
  20369. name: "Maw",
  20370. image: {
  20371. source: "./media/characters/richard-dragon/maw.svg"
  20372. }
  20373. },
  20374. },
  20375. [
  20376. ]
  20377. ))
  20378. characterMakers.push(() => makeCharacter(
  20379. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20380. {
  20381. front: {
  20382. height: math.unit(4, "feet"),
  20383. weight: math.unit(100, "lb"),
  20384. name: "Front",
  20385. image: {
  20386. source: "./media/characters/richard-smeargle/front.svg",
  20387. extra: 2952 / 2820,
  20388. bottom: 0.028
  20389. }
  20390. },
  20391. },
  20392. [
  20393. {
  20394. name: "Normal",
  20395. height: math.unit(4, "feet"),
  20396. default: true
  20397. },
  20398. {
  20399. name: "Dynamax",
  20400. height: math.unit(20, "meters")
  20401. },
  20402. ]
  20403. ))
  20404. characterMakers.push(() => makeCharacter(
  20405. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20406. {
  20407. front: {
  20408. height: math.unit(6, "feet"),
  20409. weight: math.unit(110, "lb"),
  20410. name: "Front",
  20411. image: {
  20412. source: "./media/characters/klay/front.svg",
  20413. extra: 962 / 883,
  20414. bottom: 0.04
  20415. }
  20416. },
  20417. back: {
  20418. height: math.unit(6, "feet"),
  20419. weight: math.unit(110, "lb"),
  20420. name: "Back",
  20421. image: {
  20422. source: "./media/characters/klay/back.svg",
  20423. extra: 962 / 883
  20424. }
  20425. },
  20426. beans: {
  20427. height: math.unit(1.15, "feet"),
  20428. name: "Beans",
  20429. image: {
  20430. source: "./media/characters/klay/beans.svg"
  20431. }
  20432. },
  20433. },
  20434. [
  20435. {
  20436. name: "Micro",
  20437. height: math.unit(6, "inches")
  20438. },
  20439. {
  20440. name: "Mini",
  20441. height: math.unit(3, "feet")
  20442. },
  20443. {
  20444. name: "Normal",
  20445. height: math.unit(6, "feet"),
  20446. default: true
  20447. },
  20448. {
  20449. name: "Big",
  20450. height: math.unit(25, "feet")
  20451. },
  20452. {
  20453. name: "Macro",
  20454. height: math.unit(100, "feet")
  20455. },
  20456. {
  20457. name: "Megamacro",
  20458. height: math.unit(400, "feet")
  20459. },
  20460. ]
  20461. ))
  20462. characterMakers.push(() => makeCharacter(
  20463. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20464. {
  20465. front: {
  20466. height: math.unit(6, "feet"),
  20467. weight: math.unit(160, "lb"),
  20468. name: "Front",
  20469. image: {
  20470. source: "./media/characters/marcus/front.svg",
  20471. extra: 734 / 676,
  20472. bottom: 0.03
  20473. }
  20474. },
  20475. },
  20476. [
  20477. {
  20478. name: "Little",
  20479. height: math.unit(6, "feet")
  20480. },
  20481. {
  20482. name: "Normal",
  20483. height: math.unit(110, "feet"),
  20484. default: true
  20485. },
  20486. {
  20487. name: "Macro",
  20488. height: math.unit(250, "feet")
  20489. },
  20490. {
  20491. name: "Megamacro",
  20492. height: math.unit(1000, "feet")
  20493. },
  20494. ]
  20495. ))
  20496. characterMakers.push(() => makeCharacter(
  20497. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20498. {
  20499. front: {
  20500. height: math.unit(7, "feet"),
  20501. weight: math.unit(275, "lb"),
  20502. name: "Front",
  20503. image: {
  20504. source: "./media/characters/claude-delroute/front.svg",
  20505. extra: 902/827,
  20506. bottom: 26/928
  20507. }
  20508. },
  20509. side: {
  20510. height: math.unit(7, "feet"),
  20511. weight: math.unit(275, "lb"),
  20512. name: "Side",
  20513. image: {
  20514. source: "./media/characters/claude-delroute/side.svg",
  20515. extra: 908/853,
  20516. bottom: 16/924
  20517. }
  20518. },
  20519. back: {
  20520. height: math.unit(7, "feet"),
  20521. weight: math.unit(275, "lb"),
  20522. name: "Back",
  20523. image: {
  20524. source: "./media/characters/claude-delroute/back.svg",
  20525. extra: 911/829,
  20526. bottom: 18/929
  20527. }
  20528. },
  20529. maw: {
  20530. height: math.unit(0.6407, "meters"),
  20531. name: "Maw",
  20532. image: {
  20533. source: "./media/characters/claude-delroute/maw.svg"
  20534. }
  20535. },
  20536. },
  20537. [
  20538. {
  20539. name: "Normal",
  20540. height: math.unit(7, "feet"),
  20541. default: true
  20542. },
  20543. {
  20544. name: "Lorge",
  20545. height: math.unit(20, "feet")
  20546. },
  20547. ]
  20548. ))
  20549. characterMakers.push(() => makeCharacter(
  20550. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20551. {
  20552. front: {
  20553. height: math.unit(8 + 4 / 12, "feet"),
  20554. weight: math.unit(600, "lb"),
  20555. name: "Front",
  20556. image: {
  20557. source: "./media/characters/dragonien/front.svg",
  20558. extra: 100 / 94,
  20559. bottom: 3.3 / 103.3445
  20560. }
  20561. },
  20562. back: {
  20563. height: math.unit(8 + 4 / 12, "feet"),
  20564. weight: math.unit(600, "lb"),
  20565. name: "Back",
  20566. image: {
  20567. source: "./media/characters/dragonien/back.svg",
  20568. extra: 776 / 746,
  20569. bottom: 6.4 / 782.0616
  20570. }
  20571. },
  20572. foot: {
  20573. height: math.unit(1.54, "feet"),
  20574. name: "Foot",
  20575. image: {
  20576. source: "./media/characters/dragonien/foot.svg",
  20577. }
  20578. },
  20579. },
  20580. [
  20581. {
  20582. name: "Normal",
  20583. height: math.unit(8 + 4 / 12, "feet"),
  20584. default: true
  20585. },
  20586. {
  20587. name: "Macro",
  20588. height: math.unit(200, "feet")
  20589. },
  20590. {
  20591. name: "Megamacro",
  20592. height: math.unit(1, "mile")
  20593. },
  20594. {
  20595. name: "Gigamacro",
  20596. height: math.unit(1000, "miles")
  20597. },
  20598. ]
  20599. ))
  20600. characterMakers.push(() => makeCharacter(
  20601. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20602. {
  20603. front: {
  20604. height: math.unit(5 + 2 / 12, "feet"),
  20605. weight: math.unit(110, "lb"),
  20606. name: "Front",
  20607. image: {
  20608. source: "./media/characters/desta/front.svg",
  20609. extra: 767 / 726,
  20610. bottom: 11.7 / 779
  20611. }
  20612. },
  20613. back: {
  20614. height: math.unit(5 + 2 / 12, "feet"),
  20615. weight: math.unit(110, "lb"),
  20616. name: "Back",
  20617. image: {
  20618. source: "./media/characters/desta/back.svg",
  20619. extra: 777 / 728,
  20620. bottom: 6 / 784
  20621. }
  20622. },
  20623. frontAlt: {
  20624. height: math.unit(5 + 2 / 12, "feet"),
  20625. weight: math.unit(110, "lb"),
  20626. name: "Front",
  20627. image: {
  20628. source: "./media/characters/desta/front-alt.svg",
  20629. extra: 1482 / 1417
  20630. }
  20631. },
  20632. side: {
  20633. height: math.unit(5 + 2 / 12, "feet"),
  20634. weight: math.unit(110, "lb"),
  20635. name: "Side",
  20636. image: {
  20637. source: "./media/characters/desta/side.svg",
  20638. extra: 2579 / 2491,
  20639. bottom: 0.053
  20640. }
  20641. },
  20642. },
  20643. [
  20644. {
  20645. name: "Micro",
  20646. height: math.unit(6, "inches")
  20647. },
  20648. {
  20649. name: "Normal",
  20650. height: math.unit(5 + 2 / 12, "feet"),
  20651. default: true
  20652. },
  20653. {
  20654. name: "Macro",
  20655. height: math.unit(62, "feet")
  20656. },
  20657. {
  20658. name: "Megamacro",
  20659. height: math.unit(1800, "feet")
  20660. },
  20661. ]
  20662. ))
  20663. characterMakers.push(() => makeCharacter(
  20664. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20665. {
  20666. front: {
  20667. height: math.unit(10, "feet"),
  20668. weight: math.unit(700, "lb"),
  20669. name: "Front",
  20670. image: {
  20671. source: "./media/characters/storm-alystar/front.svg",
  20672. extra: 2112 / 1898,
  20673. bottom: 0.034
  20674. }
  20675. },
  20676. },
  20677. [
  20678. {
  20679. name: "Micro",
  20680. height: math.unit(3.5, "inches")
  20681. },
  20682. {
  20683. name: "Normal",
  20684. height: math.unit(10, "feet"),
  20685. default: true
  20686. },
  20687. {
  20688. name: "Macro",
  20689. height: math.unit(400, "feet")
  20690. },
  20691. {
  20692. name: "Deific",
  20693. height: math.unit(60, "miles")
  20694. },
  20695. ]
  20696. ))
  20697. characterMakers.push(() => makeCharacter(
  20698. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20699. {
  20700. front: {
  20701. height: math.unit(2.35, "meters"),
  20702. weight: math.unit(119, "kg"),
  20703. name: "Front",
  20704. image: {
  20705. source: "./media/characters/ilia/front.svg",
  20706. extra: 1285 / 1255,
  20707. bottom: 0.06
  20708. }
  20709. },
  20710. },
  20711. [
  20712. {
  20713. name: "Normal",
  20714. height: math.unit(2.35, "meters")
  20715. },
  20716. {
  20717. name: "Macro",
  20718. height: math.unit(140, "meters"),
  20719. default: true
  20720. },
  20721. {
  20722. name: "Megamacro",
  20723. height: math.unit(100, "miles")
  20724. },
  20725. ]
  20726. ))
  20727. characterMakers.push(() => makeCharacter(
  20728. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20729. {
  20730. front: {
  20731. height: math.unit(6 + 5 / 12, "feet"),
  20732. weight: math.unit(190, "lb"),
  20733. name: "Front",
  20734. image: {
  20735. source: "./media/characters/kingdead/front.svg",
  20736. extra: 1228 / 1177
  20737. }
  20738. },
  20739. },
  20740. [
  20741. {
  20742. name: "Micro",
  20743. height: math.unit(7, "inches")
  20744. },
  20745. {
  20746. name: "Normal",
  20747. height: math.unit(6 + 5 / 12, "feet")
  20748. },
  20749. {
  20750. name: "Macro",
  20751. height: math.unit(150, "feet"),
  20752. default: true
  20753. },
  20754. {
  20755. name: "Megamacro",
  20756. height: math.unit(200, "miles")
  20757. },
  20758. ]
  20759. ))
  20760. characterMakers.push(() => makeCharacter(
  20761. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20762. {
  20763. front: {
  20764. height: math.unit(8, "feet"),
  20765. weight: math.unit(600, "lb"),
  20766. name: "Front",
  20767. image: {
  20768. source: "./media/characters/kyrehx/front.svg",
  20769. extra: 1195 / 1095,
  20770. bottom: 0.034
  20771. }
  20772. },
  20773. },
  20774. [
  20775. {
  20776. name: "Micro",
  20777. height: math.unit(2, "inches")
  20778. },
  20779. {
  20780. name: "Normal",
  20781. height: math.unit(8, "feet"),
  20782. default: true
  20783. },
  20784. {
  20785. name: "Macro",
  20786. height: math.unit(255, "feet")
  20787. },
  20788. ]
  20789. ))
  20790. characterMakers.push(() => makeCharacter(
  20791. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20792. {
  20793. front: {
  20794. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20795. weight: math.unit(184, "lb"),
  20796. name: "Front",
  20797. image: {
  20798. source: "./media/characters/xang/front.svg",
  20799. extra: 845 / 755
  20800. }
  20801. },
  20802. },
  20803. [
  20804. {
  20805. name: "Normal",
  20806. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20807. default: true
  20808. },
  20809. {
  20810. name: "Macro",
  20811. height: math.unit(0.935 * 146, "feet")
  20812. },
  20813. {
  20814. name: "Megamacro",
  20815. height: math.unit(0.935 * 3, "miles")
  20816. },
  20817. ]
  20818. ))
  20819. characterMakers.push(() => makeCharacter(
  20820. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20821. {
  20822. frontDressed: {
  20823. height: math.unit(5 + 7 / 12, "feet"),
  20824. weight: math.unit(140, "lb"),
  20825. name: "Front (Dressed)",
  20826. image: {
  20827. source: "./media/characters/doc-weardno/front-dressed.svg",
  20828. extra: 263 / 234
  20829. }
  20830. },
  20831. backDressed: {
  20832. height: math.unit(5 + 7 / 12, "feet"),
  20833. weight: math.unit(140, "lb"),
  20834. name: "Back (Dressed)",
  20835. image: {
  20836. source: "./media/characters/doc-weardno/back-dressed.svg",
  20837. extra: 266 / 238
  20838. }
  20839. },
  20840. front: {
  20841. height: math.unit(5 + 7 / 12, "feet"),
  20842. weight: math.unit(140, "lb"),
  20843. name: "Front",
  20844. image: {
  20845. source: "./media/characters/doc-weardno/front.svg",
  20846. extra: 254 / 233
  20847. }
  20848. },
  20849. },
  20850. [
  20851. {
  20852. name: "Micro",
  20853. height: math.unit(3, "inches")
  20854. },
  20855. {
  20856. name: "Normal",
  20857. height: math.unit(5 + 7 / 12, "feet"),
  20858. default: true
  20859. },
  20860. {
  20861. name: "Macro",
  20862. height: math.unit(25, "feet")
  20863. },
  20864. {
  20865. name: "Megamacro",
  20866. height: math.unit(2, "miles")
  20867. },
  20868. ]
  20869. ))
  20870. characterMakers.push(() => makeCharacter(
  20871. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20872. {
  20873. front: {
  20874. height: math.unit(6 + 2 / 12, "feet"),
  20875. weight: math.unit(153, "lb"),
  20876. name: "Front",
  20877. image: {
  20878. source: "./media/characters/seth-whilst/front.svg",
  20879. bottom: 0.07
  20880. }
  20881. },
  20882. },
  20883. [
  20884. {
  20885. name: "Micro",
  20886. height: math.unit(5, "inches")
  20887. },
  20888. {
  20889. name: "Normal",
  20890. height: math.unit(6 + 2 / 12, "feet"),
  20891. default: true
  20892. },
  20893. ]
  20894. ))
  20895. characterMakers.push(() => makeCharacter(
  20896. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20897. {
  20898. front: {
  20899. height: math.unit(3, "inches"),
  20900. weight: math.unit(8, "grams"),
  20901. name: "Front",
  20902. image: {
  20903. source: "./media/characters/pocket-jabari/front.svg",
  20904. extra: 1024 / 974,
  20905. bottom: 0.039
  20906. }
  20907. },
  20908. },
  20909. [
  20910. {
  20911. name: "Minimicro",
  20912. height: math.unit(8, "mm")
  20913. },
  20914. {
  20915. name: "Micro",
  20916. height: math.unit(3, "inches"),
  20917. default: true
  20918. },
  20919. {
  20920. name: "Normal",
  20921. height: math.unit(3, "feet")
  20922. },
  20923. ]
  20924. ))
  20925. characterMakers.push(() => makeCharacter(
  20926. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20927. {
  20928. frontDressed: {
  20929. height: math.unit(15, "feet"),
  20930. weight: math.unit(3280, "lb"),
  20931. name: "Front (Dressed)",
  20932. image: {
  20933. source: "./media/characters/sapphy/front-dressed.svg",
  20934. extra: 1951/1654,
  20935. bottom: 194/2145
  20936. },
  20937. form: "anthro",
  20938. default: true
  20939. },
  20940. backDressed: {
  20941. height: math.unit(15, "feet"),
  20942. weight: math.unit(3280, "lb"),
  20943. name: "Back (Dressed)",
  20944. image: {
  20945. source: "./media/characters/sapphy/back-dressed.svg",
  20946. extra: 2058/1918,
  20947. bottom: 125/2183
  20948. },
  20949. form: "anthro"
  20950. },
  20951. frontNude: {
  20952. height: math.unit(15, "feet"),
  20953. weight: math.unit(3280, "lb"),
  20954. name: "Front (Nude)",
  20955. image: {
  20956. source: "./media/characters/sapphy/front-nude.svg",
  20957. extra: 1951/1654,
  20958. bottom: 194/2145
  20959. },
  20960. form: "anthro"
  20961. },
  20962. backNude: {
  20963. height: math.unit(15, "feet"),
  20964. weight: math.unit(3280, "lb"),
  20965. name: "Back (Nude)",
  20966. image: {
  20967. source: "./media/characters/sapphy/back-nude.svg",
  20968. extra: 2058/1918,
  20969. bottom: 125/2183
  20970. },
  20971. form: "anthro"
  20972. },
  20973. full: {
  20974. height: math.unit(15, "feet"),
  20975. weight: math.unit(3280, "lb"),
  20976. name: "Full",
  20977. image: {
  20978. source: "./media/characters/sapphy/full.svg",
  20979. extra: 1396/1317,
  20980. bottom: 44/1440
  20981. },
  20982. form: "anthro"
  20983. },
  20984. dick: {
  20985. height: math.unit(3.8, "feet"),
  20986. name: "Dick",
  20987. image: {
  20988. source: "./media/characters/sapphy/dick.svg"
  20989. },
  20990. form: "anthro"
  20991. },
  20992. feral: {
  20993. height: math.unit(35, "feet"),
  20994. weight: math.unit(160, "tons"),
  20995. name: "Feral",
  20996. image: {
  20997. source: "./media/characters/sapphy/feral.svg",
  20998. extra: 1050/573,
  20999. bottom: 60/1110
  21000. },
  21001. form: "feral",
  21002. default: true
  21003. },
  21004. },
  21005. [
  21006. {
  21007. name: "Normal",
  21008. height: math.unit(15, "feet"),
  21009. form: "anthro"
  21010. },
  21011. {
  21012. name: "Casual Macro",
  21013. height: math.unit(120, "feet"),
  21014. form: "anthro"
  21015. },
  21016. {
  21017. name: "Macro",
  21018. height: math.unit(2150, "feet"),
  21019. default: true,
  21020. form: "anthro"
  21021. },
  21022. {
  21023. name: "Megamacro",
  21024. height: math.unit(8, "miles"),
  21025. form: "anthro"
  21026. },
  21027. {
  21028. name: "Galaxy Mom",
  21029. height: math.unit(6, "megalightyears"),
  21030. form: "anthro"
  21031. },
  21032. {
  21033. name: "Normal",
  21034. height: math.unit(35, "feet"),
  21035. form: "feral",
  21036. default: true
  21037. },
  21038. {
  21039. name: "Macro",
  21040. height: math.unit(300, "feet"),
  21041. form: "feral"
  21042. },
  21043. {
  21044. name: "Galaxy Mom",
  21045. height: math.unit(10, "megalightyears"),
  21046. form: "feral"
  21047. },
  21048. ],
  21049. {
  21050. "anthro": {
  21051. name: "Anthro",
  21052. default: true
  21053. },
  21054. "feral": {
  21055. name: "Feral"
  21056. }
  21057. }
  21058. ))
  21059. characterMakers.push(() => makeCharacter(
  21060. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  21061. {
  21062. hyenaFront: {
  21063. height: math.unit(6, "feet"),
  21064. weight: math.unit(190, "lb"),
  21065. name: "Front",
  21066. image: {
  21067. source: "./media/characters/kiro/hyena-front.svg",
  21068. extra: 927/839,
  21069. bottom: 91/1018
  21070. },
  21071. form: "hyena",
  21072. default: true
  21073. },
  21074. front: {
  21075. height: math.unit(6, "feet"),
  21076. weight: math.unit(170, "lb"),
  21077. name: "Front",
  21078. image: {
  21079. source: "./media/characters/kiro/front.svg",
  21080. extra: 1064 / 1012,
  21081. bottom: 0.052
  21082. },
  21083. form: "folf",
  21084. default: true
  21085. },
  21086. },
  21087. [
  21088. {
  21089. name: "Micro",
  21090. height: math.unit(6, "inches"),
  21091. form: "folf"
  21092. },
  21093. {
  21094. name: "Normal",
  21095. height: math.unit(6, "feet"),
  21096. form: "folf",
  21097. default: true
  21098. },
  21099. {
  21100. name: "Macro",
  21101. height: math.unit(72, "feet"),
  21102. form: "folf"
  21103. },
  21104. {
  21105. name: "Micro",
  21106. height: math.unit(6, "inches"),
  21107. form: "hyena"
  21108. },
  21109. {
  21110. name: "Normal",
  21111. height: math.unit(6, "feet"),
  21112. form: "hyena",
  21113. default: true
  21114. },
  21115. {
  21116. name: "Macro",
  21117. height: math.unit(72, "feet"),
  21118. form: "hyena"
  21119. },
  21120. ],
  21121. {
  21122. "hyena": {
  21123. name: "Hyena",
  21124. default: true
  21125. },
  21126. "folf": {
  21127. name: "Folf",
  21128. },
  21129. }
  21130. ))
  21131. characterMakers.push(() => makeCharacter(
  21132. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21133. {
  21134. front: {
  21135. height: math.unit(5 + 9 / 12, "feet"),
  21136. weight: math.unit(175, "lb"),
  21137. name: "Front",
  21138. image: {
  21139. source: "./media/characters/irishfox/front.svg",
  21140. extra: 1912 / 1680,
  21141. bottom: 0.02
  21142. }
  21143. },
  21144. },
  21145. [
  21146. {
  21147. name: "Nano",
  21148. height: math.unit(1, "mm")
  21149. },
  21150. {
  21151. name: "Micro",
  21152. height: math.unit(2, "inches")
  21153. },
  21154. {
  21155. name: "Normal",
  21156. height: math.unit(5 + 9 / 12, "feet"),
  21157. default: true
  21158. },
  21159. {
  21160. name: "Macro",
  21161. height: math.unit(45, "feet")
  21162. },
  21163. ]
  21164. ))
  21165. characterMakers.push(() => makeCharacter(
  21166. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21167. {
  21168. front: {
  21169. height: math.unit(6 + 1 / 12, "feet"),
  21170. weight: math.unit(75, "lb"),
  21171. name: "Front",
  21172. image: {
  21173. source: "./media/characters/aronai-sieyes/front.svg",
  21174. extra: 1532/1450,
  21175. bottom: 42/1574
  21176. }
  21177. },
  21178. side: {
  21179. height: math.unit(6 + 1 / 12, "feet"),
  21180. weight: math.unit(75, "lb"),
  21181. name: "Side",
  21182. image: {
  21183. source: "./media/characters/aronai-sieyes/side.svg",
  21184. extra: 1422/1365,
  21185. bottom: 148/1570
  21186. }
  21187. },
  21188. back: {
  21189. height: math.unit(6 + 1 / 12, "feet"),
  21190. weight: math.unit(75, "lb"),
  21191. name: "Back",
  21192. image: {
  21193. source: "./media/characters/aronai-sieyes/back.svg",
  21194. extra: 1526/1464,
  21195. bottom: 51/1577
  21196. }
  21197. },
  21198. dressed: {
  21199. height: math.unit(6 + 1 / 12, "feet"),
  21200. weight: math.unit(75, "lb"),
  21201. name: "Dressed",
  21202. image: {
  21203. source: "./media/characters/aronai-sieyes/dressed.svg",
  21204. extra: 1559/1483,
  21205. bottom: 39/1598
  21206. }
  21207. },
  21208. slit: {
  21209. height: math.unit(1.3, "feet"),
  21210. name: "Slit",
  21211. image: {
  21212. source: "./media/characters/aronai-sieyes/slit.svg"
  21213. }
  21214. },
  21215. slitSpread: {
  21216. height: math.unit(0.9, "feet"),
  21217. name: "Slit (Spread)",
  21218. image: {
  21219. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21220. }
  21221. },
  21222. rump: {
  21223. height: math.unit(1.3, "feet"),
  21224. name: "Rump",
  21225. image: {
  21226. source: "./media/characters/aronai-sieyes/rump.svg"
  21227. }
  21228. },
  21229. maw: {
  21230. height: math.unit(1.25, "feet"),
  21231. name: "Maw",
  21232. image: {
  21233. source: "./media/characters/aronai-sieyes/maw.svg"
  21234. }
  21235. },
  21236. feral: {
  21237. height: math.unit(18, "feet"),
  21238. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21239. name: "Feral",
  21240. image: {
  21241. source: "./media/characters/aronai-sieyes/feral.svg",
  21242. extra: 1530 / 1240,
  21243. bottom: 0.035
  21244. }
  21245. },
  21246. },
  21247. [
  21248. {
  21249. name: "Micro",
  21250. height: math.unit(2, "inches")
  21251. },
  21252. {
  21253. name: "Normal",
  21254. height: math.unit(6 + 1 / 12, "feet"),
  21255. default: true
  21256. }
  21257. ]
  21258. ))
  21259. characterMakers.push(() => makeCharacter(
  21260. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21261. {
  21262. front: {
  21263. height: math.unit(12, "feet"),
  21264. weight: math.unit(410, "kg"),
  21265. name: "Front",
  21266. image: {
  21267. source: "./media/characters/xuna/front.svg",
  21268. extra: 2184 / 1980
  21269. }
  21270. },
  21271. side: {
  21272. height: math.unit(12, "feet"),
  21273. weight: math.unit(410, "kg"),
  21274. name: "Side",
  21275. image: {
  21276. source: "./media/characters/xuna/side.svg",
  21277. extra: 2184 / 1980
  21278. }
  21279. },
  21280. back: {
  21281. height: math.unit(12, "feet"),
  21282. weight: math.unit(410, "kg"),
  21283. name: "Back",
  21284. image: {
  21285. source: "./media/characters/xuna/back.svg",
  21286. extra: 2184 / 1980
  21287. }
  21288. },
  21289. },
  21290. [
  21291. {
  21292. name: "Nano glow",
  21293. height: math.unit(10, "nm")
  21294. },
  21295. {
  21296. name: "Micro floof",
  21297. height: math.unit(0.3, "m")
  21298. },
  21299. {
  21300. name: "Huggable softy boi",
  21301. height: math.unit(3.6576, "m"),
  21302. default: true
  21303. },
  21304. {
  21305. name: "Admirable floof",
  21306. height: math.unit(80, "meters")
  21307. },
  21308. {
  21309. name: "Gentle macro",
  21310. height: math.unit(300, "meters")
  21311. },
  21312. {
  21313. name: "Very careful floof",
  21314. height: math.unit(3200, "meters")
  21315. },
  21316. {
  21317. name: "The mega floof",
  21318. height: math.unit(36000, "meters")
  21319. },
  21320. {
  21321. name: "Giga-fur-Wicker",
  21322. height: math.unit(4800000, "meters")
  21323. },
  21324. {
  21325. name: "Licky world",
  21326. height: math.unit(20000000, "meters")
  21327. },
  21328. {
  21329. name: "Floofy cyan sun",
  21330. height: math.unit(1500000000, "meters")
  21331. },
  21332. {
  21333. name: "Milky Wicker",
  21334. height: math.unit(1000000000000000000000, "meters")
  21335. },
  21336. {
  21337. name: "The observing Wicker",
  21338. height: math.unit(999999999999999999999999999, "meters")
  21339. },
  21340. ]
  21341. ))
  21342. characterMakers.push(() => makeCharacter(
  21343. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21344. {
  21345. front: {
  21346. height: math.unit(5 + 9 / 12, "feet"),
  21347. weight: math.unit(150, "lb"),
  21348. name: "Front",
  21349. image: {
  21350. source: "./media/characters/arokha-sieyes/front.svg",
  21351. extra: 1425 / 1284,
  21352. bottom: 0.05
  21353. }
  21354. },
  21355. },
  21356. [
  21357. {
  21358. name: "Normal",
  21359. height: math.unit(5 + 9 / 12, "feet")
  21360. },
  21361. {
  21362. name: "Macro",
  21363. height: math.unit(30, "meters"),
  21364. default: true
  21365. },
  21366. ]
  21367. ))
  21368. characterMakers.push(() => makeCharacter(
  21369. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21370. {
  21371. front: {
  21372. height: math.unit(6, "feet"),
  21373. weight: math.unit(180, "lb"),
  21374. name: "Front",
  21375. image: {
  21376. source: "./media/characters/arokh-sieyes/front.svg",
  21377. extra: 1830 / 1769,
  21378. bottom: 0.01
  21379. }
  21380. },
  21381. },
  21382. [
  21383. {
  21384. name: "Normal",
  21385. height: math.unit(6, "feet")
  21386. },
  21387. {
  21388. name: "Macro",
  21389. height: math.unit(30, "meters"),
  21390. default: true
  21391. },
  21392. ]
  21393. ))
  21394. characterMakers.push(() => makeCharacter(
  21395. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21396. {
  21397. side: {
  21398. height: math.unit(13 + 1 / 12, "feet"),
  21399. weight: math.unit(8.5, "tonnes"),
  21400. preyCapacity: math.unit(36, "people"),
  21401. name: "Side",
  21402. image: {
  21403. source: "./media/characters/goldeneye/side.svg",
  21404. extra: 1139/741,
  21405. bottom: 98/1237
  21406. }
  21407. },
  21408. front: {
  21409. height: math.unit(5.1, "feet"),
  21410. weight: math.unit(8.5, "tonnes"),
  21411. preyCapacity: math.unit(36, "people"),
  21412. name: "Front",
  21413. image: {
  21414. source: "./media/characters/goldeneye/front.svg",
  21415. extra: 635/365,
  21416. bottom: 598/1233
  21417. }
  21418. },
  21419. maw: {
  21420. height: math.unit(6.6, "feet"),
  21421. name: "Maw",
  21422. image: {
  21423. source: "./media/characters/goldeneye/maw.svg"
  21424. }
  21425. },
  21426. headFront: {
  21427. height: math.unit(8, "feet"),
  21428. name: "Head (Front)",
  21429. image: {
  21430. source: "./media/characters/goldeneye/head-front.svg"
  21431. }
  21432. },
  21433. headSide: {
  21434. height: math.unit(6, "feet"),
  21435. name: "Head (Side)",
  21436. image: {
  21437. source: "./media/characters/goldeneye/head-side.svg"
  21438. }
  21439. },
  21440. headBack: {
  21441. height: math.unit(8, "feet"),
  21442. name: "Head (Back)",
  21443. image: {
  21444. source: "./media/characters/goldeneye/head-back.svg"
  21445. }
  21446. },
  21447. paw: {
  21448. height: math.unit(3.4, "feet"),
  21449. name: "Paw",
  21450. image: {
  21451. source: "./media/characters/goldeneye/paw.svg"
  21452. }
  21453. },
  21454. toering: {
  21455. height: math.unit(0.45, "feet"),
  21456. name: "Toering",
  21457. image: {
  21458. source: "./media/characters/goldeneye/toering.svg"
  21459. }
  21460. },
  21461. eyes: {
  21462. height: math.unit(0.5, "feet"),
  21463. name: "Eyes",
  21464. image: {
  21465. source: "./media/characters/goldeneye/eyes.svg"
  21466. }
  21467. },
  21468. },
  21469. [
  21470. {
  21471. name: "Normal",
  21472. height: math.unit(13 + 1 / 12, "feet"),
  21473. default: true
  21474. },
  21475. ]
  21476. ))
  21477. characterMakers.push(() => makeCharacter(
  21478. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21479. {
  21480. front: {
  21481. height: math.unit(6 + 1 / 12, "feet"),
  21482. weight: math.unit(210, "lb"),
  21483. name: "Front",
  21484. image: {
  21485. source: "./media/characters/leonardo-lycheborne/front.svg",
  21486. extra: 776/723,
  21487. bottom: 34/810
  21488. }
  21489. },
  21490. side: {
  21491. height: math.unit(6 + 1 / 12, "feet"),
  21492. weight: math.unit(210, "lb"),
  21493. name: "Side",
  21494. image: {
  21495. source: "./media/characters/leonardo-lycheborne/side.svg",
  21496. extra: 780/728,
  21497. bottom: 12/792
  21498. }
  21499. },
  21500. back: {
  21501. height: math.unit(6 + 1 / 12, "feet"),
  21502. weight: math.unit(210, "lb"),
  21503. name: "Back",
  21504. image: {
  21505. source: "./media/characters/leonardo-lycheborne/back.svg",
  21506. extra: 775/721,
  21507. bottom: 17/792
  21508. }
  21509. },
  21510. hand: {
  21511. height: math.unit(1.08, "feet"),
  21512. name: "Hand",
  21513. image: {
  21514. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21515. }
  21516. },
  21517. foot: {
  21518. height: math.unit(1.32, "feet"),
  21519. name: "Foot",
  21520. image: {
  21521. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21522. }
  21523. },
  21524. maw: {
  21525. height: math.unit(1, "feet"),
  21526. name: "Maw",
  21527. image: {
  21528. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21529. }
  21530. },
  21531. were: {
  21532. height: math.unit(20, "feet"),
  21533. weight: math.unit(7800, "lb"),
  21534. name: "Were",
  21535. image: {
  21536. source: "./media/characters/leonardo-lycheborne/were.svg",
  21537. extra: 1224/1165,
  21538. bottom: 72/1296
  21539. }
  21540. },
  21541. feral: {
  21542. height: math.unit(7.5, "feet"),
  21543. weight: math.unit(600, "lb"),
  21544. name: "Feral",
  21545. image: {
  21546. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21547. extra: 797/702,
  21548. bottom: 139/936
  21549. }
  21550. },
  21551. taur: {
  21552. height: math.unit(11, "feet"),
  21553. weight: math.unit(3300, "lb"),
  21554. name: "Taur",
  21555. image: {
  21556. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21557. extra: 1271/1197,
  21558. bottom: 47/1318
  21559. }
  21560. },
  21561. barghest: {
  21562. height: math.unit(11, "feet"),
  21563. weight: math.unit(1300, "lb"),
  21564. name: "Barghest",
  21565. image: {
  21566. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21567. extra: 1291/1204,
  21568. bottom: 37/1328
  21569. }
  21570. },
  21571. dick: {
  21572. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21573. name: "Dick",
  21574. image: {
  21575. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21576. }
  21577. },
  21578. dickWere: {
  21579. height: math.unit((20) / 3.8, "feet"),
  21580. name: "Dick (Were)",
  21581. image: {
  21582. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21583. }
  21584. },
  21585. },
  21586. [
  21587. {
  21588. name: "Normal",
  21589. height: math.unit(6 + 1 / 12, "feet"),
  21590. default: true
  21591. },
  21592. ]
  21593. ))
  21594. characterMakers.push(() => makeCharacter(
  21595. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21596. {
  21597. front: {
  21598. height: math.unit(10, "feet"),
  21599. weight: math.unit(350, "lb"),
  21600. name: "Front",
  21601. image: {
  21602. source: "./media/characters/jet/front.svg",
  21603. extra: 2050 / 1980,
  21604. bottom: 0.013
  21605. }
  21606. },
  21607. back: {
  21608. height: math.unit(10, "feet"),
  21609. weight: math.unit(350, "lb"),
  21610. name: "Back",
  21611. image: {
  21612. source: "./media/characters/jet/back.svg",
  21613. extra: 2050 / 1980,
  21614. bottom: 0.013
  21615. }
  21616. },
  21617. },
  21618. [
  21619. {
  21620. name: "Micro",
  21621. height: math.unit(6, "inches")
  21622. },
  21623. {
  21624. name: "Normal",
  21625. height: math.unit(10, "feet"),
  21626. default: true
  21627. },
  21628. {
  21629. name: "Macro",
  21630. height: math.unit(100, "feet")
  21631. },
  21632. ]
  21633. ))
  21634. characterMakers.push(() => makeCharacter(
  21635. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21636. {
  21637. front: {
  21638. height: math.unit(15, "feet"),
  21639. weight: math.unit(2800, "lb"),
  21640. name: "Front",
  21641. image: {
  21642. source: "./media/characters/tanarath/front.svg",
  21643. extra: 2392 / 2220,
  21644. bottom: 0.03
  21645. }
  21646. },
  21647. back: {
  21648. height: math.unit(15, "feet"),
  21649. weight: math.unit(2800, "lb"),
  21650. name: "Back",
  21651. image: {
  21652. source: "./media/characters/tanarath/back.svg",
  21653. extra: 2392 / 2220,
  21654. bottom: 0.03
  21655. }
  21656. },
  21657. },
  21658. [
  21659. {
  21660. name: "Normal",
  21661. height: math.unit(15, "feet"),
  21662. default: true
  21663. },
  21664. ]
  21665. ))
  21666. characterMakers.push(() => makeCharacter(
  21667. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21668. {
  21669. front: {
  21670. height: math.unit(7 + 1 / 12, "feet"),
  21671. weight: math.unit(175, "lb"),
  21672. name: "Front",
  21673. image: {
  21674. source: "./media/characters/patty-cattybatty/front.svg",
  21675. extra: 908 / 874,
  21676. bottom: 0.025
  21677. }
  21678. },
  21679. },
  21680. [
  21681. {
  21682. name: "Micro",
  21683. height: math.unit(1, "inch")
  21684. },
  21685. {
  21686. name: "Normal",
  21687. height: math.unit(7 + 1 / 12, "feet")
  21688. },
  21689. {
  21690. name: "Mini Macro",
  21691. height: math.unit(155, "feet")
  21692. },
  21693. {
  21694. name: "Macro",
  21695. height: math.unit(1077, "feet")
  21696. },
  21697. {
  21698. name: "Mega Macro",
  21699. height: math.unit(47650, "feet"),
  21700. default: true
  21701. },
  21702. {
  21703. name: "Giga Macro",
  21704. height: math.unit(440, "miles")
  21705. },
  21706. {
  21707. name: "Tera Macro",
  21708. height: math.unit(8700, "miles")
  21709. },
  21710. {
  21711. name: "Planetary Macro",
  21712. height: math.unit(32700, "miles")
  21713. },
  21714. {
  21715. name: "Solar Macro",
  21716. height: math.unit(550000, "miles")
  21717. },
  21718. {
  21719. name: "Celestial Macro",
  21720. height: math.unit(2.5, "AU")
  21721. },
  21722. ]
  21723. ))
  21724. characterMakers.push(() => makeCharacter(
  21725. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21726. {
  21727. front: {
  21728. height: math.unit(4 + 5 / 12, "feet"),
  21729. weight: math.unit(90, "lb"),
  21730. name: "Front",
  21731. image: {
  21732. source: "./media/characters/cappu/front.svg",
  21733. extra: 1247 / 1152,
  21734. bottom: 0.012
  21735. }
  21736. },
  21737. },
  21738. [
  21739. {
  21740. name: "Normal",
  21741. height: math.unit(4 + 5 / 12, "feet"),
  21742. default: true
  21743. },
  21744. ]
  21745. ))
  21746. characterMakers.push(() => makeCharacter(
  21747. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21748. {
  21749. frontDressed: {
  21750. height: math.unit(70, "cm"),
  21751. weight: math.unit(6, "kg"),
  21752. name: "Front (Dressed)",
  21753. image: {
  21754. source: "./media/characters/sebi/front-dressed.svg",
  21755. extra: 713.5 / 686.5,
  21756. bottom: 0.003
  21757. }
  21758. },
  21759. front: {
  21760. height: math.unit(70, "cm"),
  21761. weight: math.unit(5, "kg"),
  21762. name: "Front",
  21763. image: {
  21764. source: "./media/characters/sebi/front.svg",
  21765. extra: 713.5 / 686.5,
  21766. bottom: 0.003
  21767. }
  21768. }
  21769. },
  21770. [
  21771. {
  21772. name: "Normal",
  21773. height: math.unit(70, "cm"),
  21774. default: true
  21775. },
  21776. {
  21777. name: "Macro",
  21778. height: math.unit(8, "meters")
  21779. },
  21780. ]
  21781. ))
  21782. characterMakers.push(() => makeCharacter(
  21783. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21784. {
  21785. front: {
  21786. height: math.unit(6, "feet"),
  21787. weight: math.unit(150, "lb"),
  21788. name: "Front",
  21789. image: {
  21790. source: "./media/characters/typhek/front.svg",
  21791. extra: 1948 / 1929,
  21792. bottom: 0.025
  21793. }
  21794. },
  21795. side: {
  21796. height: math.unit(6, "feet"),
  21797. weight: math.unit(150, "lb"),
  21798. name: "Side",
  21799. image: {
  21800. source: "./media/characters/typhek/side.svg",
  21801. extra: 2034 / 2010,
  21802. bottom: 0.003
  21803. }
  21804. },
  21805. back: {
  21806. height: math.unit(6, "feet"),
  21807. weight: math.unit(150, "lb"),
  21808. name: "Back",
  21809. image: {
  21810. source: "./media/characters/typhek/back.svg",
  21811. extra: 2005 / 1978,
  21812. bottom: 0.004
  21813. }
  21814. },
  21815. palm: {
  21816. height: math.unit(1.2, "feet"),
  21817. name: "Palm",
  21818. image: {
  21819. source: "./media/characters/typhek/palm.svg"
  21820. }
  21821. },
  21822. fist: {
  21823. height: math.unit(1.1, "feet"),
  21824. name: "Fist",
  21825. image: {
  21826. source: "./media/characters/typhek/fist.svg"
  21827. }
  21828. },
  21829. foot: {
  21830. height: math.unit(1.57, "feet"),
  21831. name: "Foot",
  21832. image: {
  21833. source: "./media/characters/typhek/foot.svg"
  21834. }
  21835. },
  21836. sole: {
  21837. height: math.unit(2.05, "feet"),
  21838. name: "Sole",
  21839. image: {
  21840. source: "./media/characters/typhek/sole.svg"
  21841. }
  21842. },
  21843. },
  21844. [
  21845. {
  21846. name: "Macro",
  21847. height: math.unit(40, "stories"),
  21848. default: true
  21849. },
  21850. {
  21851. name: "Megamacro",
  21852. height: math.unit(1, "mile")
  21853. },
  21854. {
  21855. name: "Gigamacro",
  21856. height: math.unit(4000, "solarradii")
  21857. },
  21858. {
  21859. name: "Universal",
  21860. height: math.unit(1.1, "universes")
  21861. }
  21862. ]
  21863. ))
  21864. characterMakers.push(() => makeCharacter(
  21865. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21866. {
  21867. side: {
  21868. height: math.unit(5 + 7 / 12, "feet"),
  21869. weight: math.unit(150, "lb"),
  21870. name: "Side",
  21871. image: {
  21872. source: "./media/characters/kassy/side.svg",
  21873. extra: 1280 / 1225,
  21874. bottom: 0.002
  21875. }
  21876. },
  21877. front: {
  21878. height: math.unit(5 + 7 / 12, "feet"),
  21879. weight: math.unit(150, "lb"),
  21880. name: "Front",
  21881. image: {
  21882. source: "./media/characters/kassy/front.svg",
  21883. extra: 1280 / 1225,
  21884. bottom: 0.025
  21885. }
  21886. },
  21887. back: {
  21888. height: math.unit(5 + 7 / 12, "feet"),
  21889. weight: math.unit(150, "lb"),
  21890. name: "Back",
  21891. image: {
  21892. source: "./media/characters/kassy/back.svg",
  21893. extra: 1280 / 1225,
  21894. bottom: 0.002
  21895. }
  21896. },
  21897. foot: {
  21898. height: math.unit(1.266, "feet"),
  21899. name: "Foot",
  21900. image: {
  21901. source: "./media/characters/kassy/foot.svg"
  21902. }
  21903. },
  21904. },
  21905. [
  21906. {
  21907. name: "Normal",
  21908. height: math.unit(5 + 7 / 12, "feet")
  21909. },
  21910. {
  21911. name: "Macro",
  21912. height: math.unit(137, "feet"),
  21913. default: true
  21914. },
  21915. {
  21916. name: "Megamacro",
  21917. height: math.unit(1, "mile")
  21918. },
  21919. ]
  21920. ))
  21921. characterMakers.push(() => makeCharacter(
  21922. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21923. {
  21924. front: {
  21925. height: math.unit(6 + 1 / 12, "feet"),
  21926. weight: math.unit(200, "lb"),
  21927. name: "Front",
  21928. image: {
  21929. source: "./media/characters/neil/front.svg",
  21930. extra: 1326 / 1250,
  21931. bottom: 0.023
  21932. }
  21933. },
  21934. },
  21935. [
  21936. {
  21937. name: "Normal",
  21938. height: math.unit(6 + 1 / 12, "feet"),
  21939. default: true
  21940. },
  21941. {
  21942. name: "Macro",
  21943. height: math.unit(200, "feet")
  21944. },
  21945. ]
  21946. ))
  21947. characterMakers.push(() => makeCharacter(
  21948. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21949. {
  21950. front: {
  21951. height: math.unit(5 + 9 / 12, "feet"),
  21952. weight: math.unit(190, "lb"),
  21953. name: "Front",
  21954. image: {
  21955. source: "./media/characters/atticus/front.svg",
  21956. extra: 2934 / 2785,
  21957. bottom: 0.025
  21958. }
  21959. },
  21960. },
  21961. [
  21962. {
  21963. name: "Normal",
  21964. height: math.unit(5 + 9 / 12, "feet"),
  21965. default: true
  21966. },
  21967. {
  21968. name: "Macro",
  21969. height: math.unit(180, "feet")
  21970. },
  21971. ]
  21972. ))
  21973. characterMakers.push(() => makeCharacter(
  21974. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21975. {
  21976. side: {
  21977. height: math.unit(9, "feet"),
  21978. weight: math.unit(650, "lb"),
  21979. name: "Side",
  21980. image: {
  21981. source: "./media/characters/milo/side.svg",
  21982. extra: 2644 / 2310,
  21983. bottom: 0.032
  21984. }
  21985. },
  21986. },
  21987. [
  21988. {
  21989. name: "Normal",
  21990. height: math.unit(9, "feet"),
  21991. default: true
  21992. },
  21993. {
  21994. name: "Macro",
  21995. height: math.unit(300, "feet")
  21996. },
  21997. ]
  21998. ))
  21999. characterMakers.push(() => makeCharacter(
  22000. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  22001. {
  22002. side: {
  22003. height: math.unit(8, "meters"),
  22004. weight: math.unit(90000, "kg"),
  22005. name: "Side",
  22006. image: {
  22007. source: "./media/characters/ijzer/side.svg",
  22008. extra: 2756 / 1600,
  22009. bottom: 0.01
  22010. }
  22011. },
  22012. },
  22013. [
  22014. {
  22015. name: "Small",
  22016. height: math.unit(3, "meters")
  22017. },
  22018. {
  22019. name: "Normal",
  22020. height: math.unit(8, "meters"),
  22021. default: true
  22022. },
  22023. {
  22024. name: "Normal+",
  22025. height: math.unit(10, "meters")
  22026. },
  22027. {
  22028. name: "Bigger",
  22029. height: math.unit(24, "meters")
  22030. },
  22031. {
  22032. name: "Huge",
  22033. height: math.unit(80, "meters")
  22034. },
  22035. ]
  22036. ))
  22037. characterMakers.push(() => makeCharacter(
  22038. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  22039. {
  22040. front: {
  22041. height: math.unit(6 + 2 / 12, "feet"),
  22042. weight: math.unit(153, "lb"),
  22043. name: "Front",
  22044. image: {
  22045. source: "./media/characters/luca-cervicum/front.svg",
  22046. extra: 370 / 327,
  22047. bottom: 0.015
  22048. }
  22049. },
  22050. back: {
  22051. height: math.unit(6 + 2 / 12, "feet"),
  22052. weight: math.unit(153, "lb"),
  22053. name: "Back",
  22054. image: {
  22055. source: "./media/characters/luca-cervicum/back.svg",
  22056. extra: 367 / 333,
  22057. bottom: 0.005
  22058. }
  22059. },
  22060. frontGear: {
  22061. height: math.unit(6 + 2 / 12, "feet"),
  22062. weight: math.unit(173, "lb"),
  22063. name: "Front (Gear)",
  22064. image: {
  22065. source: "./media/characters/luca-cervicum/front-gear.svg",
  22066. extra: 377 / 333,
  22067. bottom: 0.006
  22068. }
  22069. },
  22070. },
  22071. [
  22072. {
  22073. name: "Normal",
  22074. height: math.unit(6 + 2 / 12, "feet"),
  22075. default: true
  22076. },
  22077. ]
  22078. ))
  22079. characterMakers.push(() => makeCharacter(
  22080. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  22081. {
  22082. front: {
  22083. height: math.unit(6 + 1 / 12, "feet"),
  22084. weight: math.unit(304, "lb"),
  22085. name: "Front",
  22086. image: {
  22087. source: "./media/characters/oliver/front.svg",
  22088. extra: 157 / 143,
  22089. bottom: 0.08
  22090. }
  22091. },
  22092. },
  22093. [
  22094. {
  22095. name: "Normal",
  22096. height: math.unit(6 + 1 / 12, "feet"),
  22097. default: true
  22098. },
  22099. ]
  22100. ))
  22101. characterMakers.push(() => makeCharacter(
  22102. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  22103. {
  22104. front: {
  22105. height: math.unit(5 + 7 / 12, "feet"),
  22106. weight: math.unit(140, "lb"),
  22107. name: "Front",
  22108. image: {
  22109. source: "./media/characters/shane/front.svg",
  22110. extra: 304 / 289,
  22111. bottom: 0.005
  22112. }
  22113. },
  22114. },
  22115. [
  22116. {
  22117. name: "Normal",
  22118. height: math.unit(5 + 7 / 12, "feet"),
  22119. default: true
  22120. },
  22121. ]
  22122. ))
  22123. characterMakers.push(() => makeCharacter(
  22124. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22125. {
  22126. front: {
  22127. height: math.unit(5 + 9 / 12, "feet"),
  22128. weight: math.unit(178, "lb"),
  22129. name: "Front",
  22130. image: {
  22131. source: "./media/characters/shin/front.svg",
  22132. extra: 159 / 151,
  22133. bottom: 0.015
  22134. }
  22135. },
  22136. },
  22137. [
  22138. {
  22139. name: "Normal",
  22140. height: math.unit(5 + 9 / 12, "feet"),
  22141. default: true
  22142. },
  22143. ]
  22144. ))
  22145. characterMakers.push(() => makeCharacter(
  22146. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22147. {
  22148. front: {
  22149. height: math.unit(5 + 10 / 12, "feet"),
  22150. weight: math.unit(168, "lb"),
  22151. name: "Front",
  22152. image: {
  22153. source: "./media/characters/xerxes/front.svg",
  22154. extra: 282 / 260,
  22155. bottom: 0.045
  22156. }
  22157. },
  22158. },
  22159. [
  22160. {
  22161. name: "Normal",
  22162. height: math.unit(5 + 10 / 12, "feet"),
  22163. default: true
  22164. },
  22165. ]
  22166. ))
  22167. characterMakers.push(() => makeCharacter(
  22168. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22169. {
  22170. front: {
  22171. height: math.unit(6 + 7 / 12, "feet"),
  22172. weight: math.unit(208, "lb"),
  22173. name: "Front",
  22174. image: {
  22175. source: "./media/characters/chaska/front.svg",
  22176. extra: 332 / 319,
  22177. bottom: 0.015
  22178. }
  22179. },
  22180. },
  22181. [
  22182. {
  22183. name: "Normal",
  22184. height: math.unit(6 + 7 / 12, "feet"),
  22185. default: true
  22186. },
  22187. ]
  22188. ))
  22189. characterMakers.push(() => makeCharacter(
  22190. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22191. {
  22192. front: {
  22193. height: math.unit(5 + 8 / 12, "feet"),
  22194. weight: math.unit(208, "lb"),
  22195. name: "Front",
  22196. image: {
  22197. source: "./media/characters/enuk/front.svg",
  22198. extra: 437 / 406,
  22199. bottom: 0.02
  22200. }
  22201. },
  22202. },
  22203. [
  22204. {
  22205. name: "Normal",
  22206. height: math.unit(5 + 8 / 12, "feet"),
  22207. default: true
  22208. },
  22209. ]
  22210. ))
  22211. characterMakers.push(() => makeCharacter(
  22212. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22213. {
  22214. front: {
  22215. height: math.unit(5 + 10 / 12, "feet"),
  22216. weight: math.unit(252, "lb"),
  22217. name: "Front",
  22218. image: {
  22219. source: "./media/characters/bruun/front.svg",
  22220. extra: 197 / 187,
  22221. bottom: 0.012
  22222. }
  22223. },
  22224. },
  22225. [
  22226. {
  22227. name: "Normal",
  22228. height: math.unit(5 + 10 / 12, "feet"),
  22229. default: true
  22230. },
  22231. ]
  22232. ))
  22233. characterMakers.push(() => makeCharacter(
  22234. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22235. {
  22236. front: {
  22237. height: math.unit(6 + 10 / 12, "feet"),
  22238. weight: math.unit(255, "lb"),
  22239. name: "Front",
  22240. image: {
  22241. source: "./media/characters/alexeev/front.svg",
  22242. extra: 213 / 200,
  22243. bottom: 0.05
  22244. }
  22245. },
  22246. },
  22247. [
  22248. {
  22249. name: "Normal",
  22250. height: math.unit(6 + 10 / 12, "feet"),
  22251. default: true
  22252. },
  22253. ]
  22254. ))
  22255. characterMakers.push(() => makeCharacter(
  22256. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22257. {
  22258. front: {
  22259. height: math.unit(2 + 8 / 12, "feet"),
  22260. weight: math.unit(22, "lb"),
  22261. name: "Front",
  22262. image: {
  22263. source: "./media/characters/evelyn/front.svg",
  22264. extra: 208 / 180
  22265. }
  22266. },
  22267. },
  22268. [
  22269. {
  22270. name: "Normal",
  22271. height: math.unit(2 + 8 / 12, "feet"),
  22272. default: true
  22273. },
  22274. ]
  22275. ))
  22276. characterMakers.push(() => makeCharacter(
  22277. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22278. {
  22279. front: {
  22280. height: math.unit(5 + 9 / 12, "feet"),
  22281. weight: math.unit(139, "lb"),
  22282. name: "Front",
  22283. image: {
  22284. source: "./media/characters/inca/front.svg",
  22285. extra: 294 / 291,
  22286. bottom: 0.03
  22287. }
  22288. },
  22289. },
  22290. [
  22291. {
  22292. name: "Normal",
  22293. height: math.unit(5 + 9 / 12, "feet"),
  22294. default: true
  22295. },
  22296. ]
  22297. ))
  22298. characterMakers.push(() => makeCharacter(
  22299. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22300. {
  22301. front: {
  22302. height: math.unit(6 + 3 / 12, "feet"),
  22303. weight: math.unit(185, "lb"),
  22304. name: "Front",
  22305. image: {
  22306. source: "./media/characters/mera/front.svg",
  22307. extra: 291 / 277,
  22308. bottom: 0.03
  22309. }
  22310. },
  22311. },
  22312. [
  22313. {
  22314. name: "Normal",
  22315. height: math.unit(6 + 3 / 12, "feet"),
  22316. default: true
  22317. },
  22318. ]
  22319. ))
  22320. characterMakers.push(() => makeCharacter(
  22321. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22322. {
  22323. front: {
  22324. height: math.unit(6 + 7 / 12, "feet"),
  22325. weight: math.unit(160, "lb"),
  22326. name: "Front",
  22327. image: {
  22328. source: "./media/characters/ceres/front.svg",
  22329. extra: 1023 / 950,
  22330. bottom: 0.027
  22331. }
  22332. },
  22333. back: {
  22334. height: math.unit(6 + 7 / 12, "feet"),
  22335. weight: math.unit(160, "lb"),
  22336. name: "Back",
  22337. image: {
  22338. source: "./media/characters/ceres/back.svg",
  22339. extra: 1023 / 950
  22340. }
  22341. },
  22342. },
  22343. [
  22344. {
  22345. name: "Normal",
  22346. height: math.unit(6 + 7 / 12, "feet"),
  22347. default: true
  22348. },
  22349. ]
  22350. ))
  22351. characterMakers.push(() => makeCharacter(
  22352. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22353. {
  22354. front: {
  22355. height: math.unit(5 + 10 / 12, "feet"),
  22356. weight: math.unit(150, "lb"),
  22357. name: "Front",
  22358. image: {
  22359. source: "./media/characters/kris/front.svg",
  22360. extra: 885 / 803,
  22361. bottom: 0.03
  22362. }
  22363. },
  22364. },
  22365. [
  22366. {
  22367. name: "Normal",
  22368. height: math.unit(5 + 10 / 12, "feet"),
  22369. default: true
  22370. },
  22371. ]
  22372. ))
  22373. characterMakers.push(() => makeCharacter(
  22374. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22375. {
  22376. dragon_front: {
  22377. height: math.unit(5, "feet"),
  22378. name: "Front",
  22379. image: {
  22380. source: "./media/characters/taluthus/dragon-front.svg",
  22381. extra: 1203/1098,
  22382. bottom: 46/1249
  22383. },
  22384. form: "dragon",
  22385. default: true
  22386. },
  22387. dragon_maw: {
  22388. height: math.unit(2.35, "feet"),
  22389. name: "Maw",
  22390. image: {
  22391. source: "./media/characters/taluthus/dragon-maw.svg"
  22392. },
  22393. form: "dragon",
  22394. },
  22395. kitsune_front: {
  22396. height: math.unit(7, "feet"),
  22397. name: "Front",
  22398. image: {
  22399. source: "./media/characters/taluthus/kitsune-front.svg",
  22400. extra: 900/841,
  22401. bottom: 65/965
  22402. },
  22403. form: "kitsune",
  22404. default: true
  22405. },
  22406. },
  22407. [
  22408. {
  22409. name: "Normal",
  22410. height: math.unit(5, "feet"),
  22411. form: "dragon",
  22412. default: true,
  22413. },
  22414. {
  22415. name: "Normal",
  22416. height: math.unit(7, "feet"),
  22417. form: "kitsune",
  22418. default: true
  22419. },
  22420. {
  22421. name: "Macro",
  22422. height: math.unit(300, "feet"),
  22423. allForms: true
  22424. },
  22425. ],
  22426. {
  22427. "dragon": {
  22428. name: "Dragon",
  22429. default: true
  22430. },
  22431. "kitsune": {
  22432. name: "Kitsune",
  22433. },
  22434. }
  22435. ))
  22436. characterMakers.push(() => makeCharacter(
  22437. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22438. {
  22439. front: {
  22440. height: math.unit(5 + 9 / 12, "feet"),
  22441. weight: math.unit(145, "lb"),
  22442. name: "Front",
  22443. image: {
  22444. source: "./media/characters/dawn/front.svg",
  22445. extra: 2094 / 2016,
  22446. bottom: 0.025
  22447. }
  22448. },
  22449. back: {
  22450. height: math.unit(5 + 9 / 12, "feet"),
  22451. weight: math.unit(160, "lb"),
  22452. name: "Back",
  22453. image: {
  22454. source: "./media/characters/dawn/back.svg",
  22455. extra: 2112 / 2080,
  22456. bottom: 0.005
  22457. }
  22458. },
  22459. },
  22460. [
  22461. {
  22462. name: "Normal",
  22463. height: math.unit(6 + 7 / 12, "feet"),
  22464. default: true
  22465. },
  22466. ]
  22467. ))
  22468. characterMakers.push(() => makeCharacter(
  22469. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22470. {
  22471. anthro: {
  22472. height: math.unit(8 + 3 / 12, "feet"),
  22473. weight: math.unit(450, "lb"),
  22474. name: "Anthro",
  22475. image: {
  22476. source: "./media/characters/arador/anthro.svg",
  22477. extra: 1835 / 1718,
  22478. bottom: 0.025
  22479. }
  22480. },
  22481. feral: {
  22482. height: math.unit(4, "feet"),
  22483. weight: math.unit(200, "lb"),
  22484. name: "Feral",
  22485. image: {
  22486. source: "./media/characters/arador/feral.svg",
  22487. extra: 1683 / 1514,
  22488. bottom: 0.07
  22489. }
  22490. },
  22491. },
  22492. [
  22493. {
  22494. name: "Normal",
  22495. height: math.unit(8 + 3 / 12, "feet")
  22496. },
  22497. {
  22498. name: "Macro",
  22499. height: math.unit(82.5, "feet"),
  22500. default: true
  22501. },
  22502. ]
  22503. ))
  22504. characterMakers.push(() => makeCharacter(
  22505. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22506. {
  22507. front: {
  22508. height: math.unit(5 + 10 / 12, "feet"),
  22509. weight: math.unit(125, "lb"),
  22510. name: "Front",
  22511. image: {
  22512. source: "./media/characters/dharsi/front.svg",
  22513. extra: 716 / 630,
  22514. bottom: 0.035
  22515. }
  22516. },
  22517. },
  22518. [
  22519. {
  22520. name: "Nano",
  22521. height: math.unit(100, "nm")
  22522. },
  22523. {
  22524. name: "Micro",
  22525. height: math.unit(2, "inches")
  22526. },
  22527. {
  22528. name: "Normal",
  22529. height: math.unit(5 + 10 / 12, "feet"),
  22530. default: true
  22531. },
  22532. {
  22533. name: "Macro",
  22534. height: math.unit(1000, "feet")
  22535. },
  22536. {
  22537. name: "Megamacro",
  22538. height: math.unit(10, "miles")
  22539. },
  22540. {
  22541. name: "Gigamacro",
  22542. height: math.unit(3000, "miles")
  22543. },
  22544. {
  22545. name: "Teramacro",
  22546. height: math.unit(500000, "miles")
  22547. },
  22548. {
  22549. name: "Teramacro+",
  22550. height: math.unit(30, "galaxies")
  22551. },
  22552. ]
  22553. ))
  22554. characterMakers.push(() => makeCharacter(
  22555. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22556. {
  22557. front: {
  22558. height: math.unit(6, "feet"),
  22559. weight: math.unit(150, "lb"),
  22560. name: "Front",
  22561. image: {
  22562. source: "./media/characters/deathy/front.svg",
  22563. extra: 1552 / 1463,
  22564. bottom: 0.025
  22565. }
  22566. },
  22567. side: {
  22568. height: math.unit(6, "feet"),
  22569. weight: math.unit(150, "lb"),
  22570. name: "Side",
  22571. image: {
  22572. source: "./media/characters/deathy/side.svg",
  22573. extra: 1604 / 1455,
  22574. bottom: 0.025
  22575. }
  22576. },
  22577. back: {
  22578. height: math.unit(6, "feet"),
  22579. weight: math.unit(150, "lb"),
  22580. name: "Back",
  22581. image: {
  22582. source: "./media/characters/deathy/back.svg",
  22583. extra: 1580 / 1463,
  22584. bottom: 0.005
  22585. }
  22586. },
  22587. },
  22588. [
  22589. {
  22590. name: "Micro",
  22591. height: math.unit(5, "millimeters")
  22592. },
  22593. {
  22594. name: "Normal",
  22595. height: math.unit(6 + 5 / 12, "feet"),
  22596. default: true
  22597. },
  22598. ]
  22599. ))
  22600. characterMakers.push(() => makeCharacter(
  22601. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22602. {
  22603. front: {
  22604. height: math.unit(16, "feet"),
  22605. weight: math.unit(4000, "lb"),
  22606. name: "Front",
  22607. image: {
  22608. source: "./media/characters/juniper/front.svg",
  22609. bottom: 0.04
  22610. }
  22611. },
  22612. },
  22613. [
  22614. {
  22615. name: "Normal",
  22616. height: math.unit(16, "feet"),
  22617. default: true
  22618. },
  22619. ]
  22620. ))
  22621. characterMakers.push(() => makeCharacter(
  22622. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22623. {
  22624. front: {
  22625. height: math.unit(6, "feet"),
  22626. weight: math.unit(150, "lb"),
  22627. name: "Front",
  22628. image: {
  22629. source: "./media/characters/hipster/front.svg",
  22630. extra: 1312 / 1209,
  22631. bottom: 0.025
  22632. }
  22633. },
  22634. back: {
  22635. height: math.unit(6, "feet"),
  22636. weight: math.unit(150, "lb"),
  22637. name: "Back",
  22638. image: {
  22639. source: "./media/characters/hipster/back.svg",
  22640. extra: 1281 / 1196,
  22641. bottom: 0.01
  22642. }
  22643. },
  22644. },
  22645. [
  22646. {
  22647. name: "Micro",
  22648. height: math.unit(1, "mm")
  22649. },
  22650. {
  22651. name: "Normal",
  22652. height: math.unit(4, "inches"),
  22653. default: true
  22654. },
  22655. {
  22656. name: "Macro",
  22657. height: math.unit(500, "feet")
  22658. },
  22659. {
  22660. name: "Megamacro",
  22661. height: math.unit(1000, "miles")
  22662. },
  22663. ]
  22664. ))
  22665. characterMakers.push(() => makeCharacter(
  22666. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22667. {
  22668. front: {
  22669. height: math.unit(6, "feet"),
  22670. weight: math.unit(150, "lb"),
  22671. name: "Front",
  22672. image: {
  22673. source: "./media/characters/tendirmuldr/front.svg",
  22674. extra: 1878 / 1772,
  22675. bottom: 0.015
  22676. }
  22677. },
  22678. },
  22679. [
  22680. {
  22681. name: "Megamacro",
  22682. height: math.unit(1500, "miles"),
  22683. default: true
  22684. },
  22685. ]
  22686. ))
  22687. characterMakers.push(() => makeCharacter(
  22688. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22689. {
  22690. front: {
  22691. height: math.unit(14, "feet"),
  22692. weight: math.unit(12000, "lb"),
  22693. name: "Front",
  22694. image: {
  22695. source: "./media/characters/mort/front.svg",
  22696. extra: 365 / 318,
  22697. bottom: 0.01
  22698. }
  22699. },
  22700. side: {
  22701. height: math.unit(14, "feet"),
  22702. weight: math.unit(12000, "lb"),
  22703. name: "Side",
  22704. image: {
  22705. source: "./media/characters/mort/side.svg",
  22706. extra: 365 / 318,
  22707. bottom: 0.052
  22708. },
  22709. default: true
  22710. },
  22711. back: {
  22712. height: math.unit(14, "feet"),
  22713. weight: math.unit(12000, "lb"),
  22714. name: "Back",
  22715. image: {
  22716. source: "./media/characters/mort/back.svg",
  22717. extra: 371 / 332,
  22718. bottom: 0.18
  22719. }
  22720. },
  22721. },
  22722. [
  22723. {
  22724. name: "Normal",
  22725. height: math.unit(14, "feet"),
  22726. default: true
  22727. },
  22728. ]
  22729. ))
  22730. characterMakers.push(() => makeCharacter(
  22731. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22732. {
  22733. front: {
  22734. height: math.unit(8, "feet"),
  22735. weight: math.unit(1, "ton"),
  22736. name: "Front",
  22737. image: {
  22738. source: "./media/characters/lycoa/front.svg",
  22739. extra: 1836/1728,
  22740. bottom: 81/1917
  22741. }
  22742. },
  22743. back: {
  22744. height: math.unit(8, "feet"),
  22745. weight: math.unit(1, "ton"),
  22746. name: "Back",
  22747. image: {
  22748. source: "./media/characters/lycoa/back.svg",
  22749. extra: 1785/1720,
  22750. bottom: 91/1876
  22751. }
  22752. },
  22753. head: {
  22754. height: math.unit(1.6243, "feet"),
  22755. name: "Head",
  22756. image: {
  22757. source: "./media/characters/lycoa/head.svg",
  22758. extra: 1011/782,
  22759. bottom: 0/1011
  22760. }
  22761. },
  22762. tailmaw: {
  22763. height: math.unit(1.9, "feet"),
  22764. name: "Tailmaw",
  22765. image: {
  22766. source: "./media/characters/lycoa/tailmaw.svg"
  22767. }
  22768. },
  22769. tentacles: {
  22770. height: math.unit(2.1, "feet"),
  22771. name: "Tentacles",
  22772. image: {
  22773. source: "./media/characters/lycoa/tentacles.svg"
  22774. }
  22775. },
  22776. dick: {
  22777. height: math.unit(1.73, "feet"),
  22778. name: "Dick",
  22779. image: {
  22780. source: "./media/characters/lycoa/dick.svg"
  22781. }
  22782. },
  22783. },
  22784. [
  22785. {
  22786. name: "Normal",
  22787. height: math.unit(8, "feet"),
  22788. default: true
  22789. },
  22790. {
  22791. name: "Macro",
  22792. height: math.unit(30, "feet")
  22793. },
  22794. ]
  22795. ))
  22796. characterMakers.push(() => makeCharacter(
  22797. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22798. {
  22799. front: {
  22800. height: math.unit(4 + 2 / 12, "feet"),
  22801. weight: math.unit(70, "lb"),
  22802. name: "Front",
  22803. image: {
  22804. source: "./media/characters/naldara/front.svg",
  22805. extra: 1664/1387,
  22806. bottom: 81/1745
  22807. },
  22808. form: "anthro",
  22809. default: true
  22810. },
  22811. naga: {
  22812. height: math.unit(20, "feet"),
  22813. weight: math.unit(15000, "kg"),
  22814. name: "Front",
  22815. image: {
  22816. source: "./media/characters/naldara/naga.svg",
  22817. extra: 1590/1396,
  22818. bottom: 285/1875
  22819. },
  22820. form: "naga",
  22821. default: true
  22822. },
  22823. },
  22824. [
  22825. {
  22826. name: "Normal",
  22827. height: math.unit(4 + 2 / 12, "feet"),
  22828. form: "anthro",
  22829. default: true
  22830. },
  22831. {
  22832. name: "Normal",
  22833. height: math.unit(20, "feet"),
  22834. form: "naga",
  22835. default: true
  22836. },
  22837. ],
  22838. {
  22839. "anthro": {
  22840. name: "Anthro",
  22841. default: true
  22842. },
  22843. "naga": {
  22844. name: "Naga"
  22845. }
  22846. }
  22847. ))
  22848. characterMakers.push(() => makeCharacter(
  22849. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22850. {
  22851. front: {
  22852. height: math.unit(13 + 7 / 12, "feet"),
  22853. weight: math.unit(1500, "lb"),
  22854. name: "Front",
  22855. image: {
  22856. source: "./media/characters/briar/front.svg",
  22857. extra: 1223/1157,
  22858. bottom: 123/1346
  22859. }
  22860. },
  22861. },
  22862. [
  22863. {
  22864. name: "Normal",
  22865. height: math.unit(13 + 7 / 12, "feet"),
  22866. default: true
  22867. },
  22868. ]
  22869. ))
  22870. characterMakers.push(() => makeCharacter(
  22871. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22872. {
  22873. side: {
  22874. height: math.unit(16, "feet"),
  22875. weight: math.unit(500, "lb"),
  22876. name: "Side",
  22877. image: {
  22878. source: "./media/characters/vanguard/side.svg",
  22879. extra: 1022/914,
  22880. bottom: 30/1052
  22881. }
  22882. },
  22883. sideAlt: {
  22884. height: math.unit(10, "feet"),
  22885. weight: math.unit(500, "lb"),
  22886. name: "Side (Alt)",
  22887. image: {
  22888. source: "./media/characters/vanguard/side-alt.svg",
  22889. extra: 502 / 425,
  22890. bottom: 0.087
  22891. }
  22892. },
  22893. },
  22894. [
  22895. {
  22896. name: "Normal",
  22897. height: math.unit(17.71, "feet"),
  22898. default: true
  22899. },
  22900. ]
  22901. ))
  22902. characterMakers.push(() => makeCharacter(
  22903. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22904. {
  22905. front: {
  22906. height: math.unit(7.5, "feet"),
  22907. weight: math.unit(2, "lb"),
  22908. name: "Front",
  22909. image: {
  22910. source: "./media/characters/artemis/work-safe-front.svg",
  22911. extra: 1192 / 1075,
  22912. bottom: 0.07
  22913. },
  22914. form: "work-safe",
  22915. default: true
  22916. },
  22917. frontNsfw: {
  22918. height: math.unit(7.5, "feet"),
  22919. weight: math.unit(2, "lb"),
  22920. name: "Front",
  22921. image: {
  22922. source: "./media/characters/artemis/calibrating-front.svg",
  22923. extra: 1192 / 1075,
  22924. bottom: 0.07
  22925. },
  22926. form: "calibrating",
  22927. default: true
  22928. },
  22929. frontNsfwer: {
  22930. height: math.unit(7.5, "feet"),
  22931. weight: math.unit(2, "lb"),
  22932. name: "Front",
  22933. image: {
  22934. source: "./media/characters/artemis/oversize-load-front.svg",
  22935. extra: 1192 / 1075,
  22936. bottom: 0.07
  22937. },
  22938. form: "oversize-load",
  22939. default: true
  22940. },
  22941. side: {
  22942. height: math.unit(7.5, "feet"),
  22943. weight: math.unit(2, "lb"),
  22944. name: "Side",
  22945. image: {
  22946. source: "./media/characters/artemis/work-safe-side.svg",
  22947. extra: 1192 / 1075,
  22948. bottom: 0.07
  22949. },
  22950. form: "work-safe"
  22951. },
  22952. sideNsfw: {
  22953. height: math.unit(7.5, "feet"),
  22954. weight: math.unit(2, "lb"),
  22955. name: "Side",
  22956. image: {
  22957. source: "./media/characters/artemis/calibrating-side.svg",
  22958. extra: 1192 / 1075,
  22959. bottom: 0.07
  22960. },
  22961. form: "calibrating"
  22962. },
  22963. sideNsfwer: {
  22964. height: math.unit(7.5, "feet"),
  22965. weight: math.unit(2, "lb"),
  22966. name: "Side",
  22967. image: {
  22968. source: "./media/characters/artemis/oversize-load-side.svg",
  22969. extra: 1192 / 1075,
  22970. bottom: 0.07
  22971. },
  22972. form: "oversize-load"
  22973. },
  22974. maw: {
  22975. height: math.unit(1.1, "feet"),
  22976. name: "Maw",
  22977. image: {
  22978. source: "./media/characters/artemis/maw.svg"
  22979. },
  22980. form: "work-safe"
  22981. },
  22982. stomach: {
  22983. height: math.unit(0.95, "feet"),
  22984. name: "Stomach",
  22985. image: {
  22986. source: "./media/characters/artemis/stomach.svg"
  22987. },
  22988. form: "work-safe"
  22989. },
  22990. dickCanine: {
  22991. height: math.unit(1, "feet"),
  22992. name: "Dick (Canine)",
  22993. image: {
  22994. source: "./media/characters/artemis/dick-canine.svg"
  22995. },
  22996. form: "calibrating"
  22997. },
  22998. dickEquine: {
  22999. height: math.unit(0.85, "feet"),
  23000. name: "Dick (Equine)",
  23001. image: {
  23002. source: "./media/characters/artemis/dick-equine.svg"
  23003. },
  23004. form: "calibrating"
  23005. },
  23006. dickExotic: {
  23007. height: math.unit(0.85, "feet"),
  23008. name: "Dick (Exotic)",
  23009. image: {
  23010. source: "./media/characters/artemis/dick-exotic.svg"
  23011. },
  23012. form: "calibrating"
  23013. },
  23014. dickCanineBigger: {
  23015. height: math.unit(1 * 1.33, "feet"),
  23016. name: "Dick (Canine)",
  23017. image: {
  23018. source: "./media/characters/artemis/dick-canine.svg"
  23019. },
  23020. form: "oversize-load"
  23021. },
  23022. dickEquineBigger: {
  23023. height: math.unit(0.85 * 1.33, "feet"),
  23024. name: "Dick (Equine)",
  23025. image: {
  23026. source: "./media/characters/artemis/dick-equine.svg"
  23027. },
  23028. form: "oversize-load"
  23029. },
  23030. dickExoticBigger: {
  23031. height: math.unit(0.85 * 1.33, "feet"),
  23032. name: "Dick (Exotic)",
  23033. image: {
  23034. source: "./media/characters/artemis/dick-exotic.svg"
  23035. },
  23036. form: "oversize-load"
  23037. },
  23038. },
  23039. [
  23040. {
  23041. name: "Normal",
  23042. height: math.unit(7.5, "feet"),
  23043. form: "work-safe",
  23044. default: true
  23045. },
  23046. {
  23047. name: "Normal",
  23048. height: math.unit(7.5, "feet"),
  23049. form: "calibrating",
  23050. default: true
  23051. },
  23052. {
  23053. name: "Normal",
  23054. height: math.unit(7.5, "feet"),
  23055. form: "oversize-load",
  23056. default: true
  23057. },
  23058. {
  23059. name: "Enlarged",
  23060. height: math.unit(12, "feet"),
  23061. form: "work-safe",
  23062. },
  23063. {
  23064. name: "Enlarged",
  23065. height: math.unit(12, "feet"),
  23066. form: "calibrating",
  23067. },
  23068. {
  23069. name: "Enlarged",
  23070. height: math.unit(12, "feet"),
  23071. form: "oversize-load",
  23072. },
  23073. ],
  23074. {
  23075. "work-safe": {
  23076. name: "Work-Safe",
  23077. default: true
  23078. },
  23079. "calibrating": {
  23080. name: "Calibrating"
  23081. },
  23082. "oversize-load": {
  23083. name: "Oversize Load"
  23084. }
  23085. }
  23086. ))
  23087. characterMakers.push(() => makeCharacter(
  23088. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  23089. {
  23090. front: {
  23091. height: math.unit(5 + 3 / 12, "feet"),
  23092. weight: math.unit(160, "lb"),
  23093. name: "Front",
  23094. image: {
  23095. source: "./media/characters/kira/front.svg",
  23096. extra: 906 / 786,
  23097. bottom: 0.01
  23098. }
  23099. },
  23100. back: {
  23101. height: math.unit(5 + 3 / 12, "feet"),
  23102. weight: math.unit(160, "lb"),
  23103. name: "Back",
  23104. image: {
  23105. source: "./media/characters/kira/back.svg",
  23106. extra: 882 / 757,
  23107. bottom: 0.005
  23108. }
  23109. },
  23110. frontDressed: {
  23111. height: math.unit(5 + 3 / 12, "feet"),
  23112. weight: math.unit(160, "lb"),
  23113. name: "Front (Dressed)",
  23114. image: {
  23115. source: "./media/characters/kira/front-dressed.svg",
  23116. extra: 906 / 786,
  23117. bottom: 0.01
  23118. }
  23119. },
  23120. beans: {
  23121. height: math.unit(0.92, "feet"),
  23122. name: "Beans",
  23123. image: {
  23124. source: "./media/characters/kira/beans.svg"
  23125. }
  23126. },
  23127. },
  23128. [
  23129. {
  23130. name: "Normal",
  23131. height: math.unit(5 + 3 / 12, "feet"),
  23132. default: true
  23133. },
  23134. ]
  23135. ))
  23136. characterMakers.push(() => makeCharacter(
  23137. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23138. {
  23139. front: {
  23140. height: math.unit(5 + 4 / 12, "feet"),
  23141. weight: math.unit(145, "lb"),
  23142. name: "Front",
  23143. image: {
  23144. source: "./media/characters/scramble/front.svg",
  23145. extra: 763 / 727,
  23146. bottom: 0.05
  23147. }
  23148. },
  23149. back: {
  23150. height: math.unit(5 + 4 / 12, "feet"),
  23151. weight: math.unit(145, "lb"),
  23152. name: "Back",
  23153. image: {
  23154. source: "./media/characters/scramble/back.svg",
  23155. extra: 826 / 737,
  23156. bottom: 0.002
  23157. }
  23158. },
  23159. },
  23160. [
  23161. {
  23162. name: "Normal",
  23163. height: math.unit(5 + 4 / 12, "feet"),
  23164. default: true
  23165. },
  23166. ]
  23167. ))
  23168. characterMakers.push(() => makeCharacter(
  23169. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23170. {
  23171. side: {
  23172. height: math.unit(6 + 2 / 12, "feet"),
  23173. weight: math.unit(190, "lb"),
  23174. name: "Side",
  23175. image: {
  23176. source: "./media/characters/biscuit/side.svg",
  23177. extra: 858 / 791,
  23178. bottom: 0.044
  23179. }
  23180. },
  23181. },
  23182. [
  23183. {
  23184. name: "Normal",
  23185. height: math.unit(6 + 2 / 12, "feet"),
  23186. default: true
  23187. },
  23188. ]
  23189. ))
  23190. characterMakers.push(() => makeCharacter(
  23191. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23192. {
  23193. front: {
  23194. height: math.unit(5 + 2 / 12, "feet"),
  23195. weight: math.unit(120, "lb"),
  23196. name: "Front",
  23197. image: {
  23198. source: "./media/characters/poffin/front.svg",
  23199. extra: 786 / 680,
  23200. bottom: 0.005
  23201. }
  23202. },
  23203. },
  23204. [
  23205. {
  23206. name: "Normal",
  23207. height: math.unit(5 + 2 / 12, "feet"),
  23208. default: true
  23209. },
  23210. ]
  23211. ))
  23212. characterMakers.push(() => makeCharacter(
  23213. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23214. {
  23215. front: {
  23216. height: math.unit(6 + 3 / 12, "feet"),
  23217. weight: math.unit(519, "lb"),
  23218. name: "Front",
  23219. image: {
  23220. source: "./media/characters/dhari/front.svg",
  23221. extra: 1048 / 946,
  23222. bottom: 0.015
  23223. }
  23224. },
  23225. back: {
  23226. height: math.unit(6 + 3 / 12, "feet"),
  23227. weight: math.unit(519, "lb"),
  23228. name: "Back",
  23229. image: {
  23230. source: "./media/characters/dhari/back.svg",
  23231. extra: 1048 / 931,
  23232. bottom: 0.005
  23233. }
  23234. },
  23235. frontDressed: {
  23236. height: math.unit(6 + 3 / 12, "feet"),
  23237. weight: math.unit(519, "lb"),
  23238. name: "Front (Dressed)",
  23239. image: {
  23240. source: "./media/characters/dhari/front-dressed.svg",
  23241. extra: 1713 / 1546,
  23242. bottom: 0.02
  23243. }
  23244. },
  23245. backDressed: {
  23246. height: math.unit(6 + 3 / 12, "feet"),
  23247. weight: math.unit(519, "lb"),
  23248. name: "Back (Dressed)",
  23249. image: {
  23250. source: "./media/characters/dhari/back-dressed.svg",
  23251. extra: 1699 / 1537,
  23252. bottom: 0.01
  23253. }
  23254. },
  23255. maw: {
  23256. height: math.unit(0.95, "feet"),
  23257. name: "Maw",
  23258. image: {
  23259. source: "./media/characters/dhari/maw.svg"
  23260. }
  23261. },
  23262. wereFront: {
  23263. height: math.unit(12 + 8 / 12, "feet"),
  23264. weight: math.unit(4000, "lb"),
  23265. name: "Front (Were)",
  23266. image: {
  23267. source: "./media/characters/dhari/were-front.svg",
  23268. extra: 1065 / 969,
  23269. bottom: 0.015
  23270. }
  23271. },
  23272. wereBack: {
  23273. height: math.unit(12 + 8 / 12, "feet"),
  23274. weight: math.unit(4000, "lb"),
  23275. name: "Back (Were)",
  23276. image: {
  23277. source: "./media/characters/dhari/were-back.svg",
  23278. extra: 1065 / 969,
  23279. bottom: 0.012
  23280. }
  23281. },
  23282. wereMaw: {
  23283. height: math.unit(0.625, "meters"),
  23284. name: "Maw (Were)",
  23285. image: {
  23286. source: "./media/characters/dhari/were-maw.svg"
  23287. }
  23288. },
  23289. },
  23290. [
  23291. {
  23292. name: "Normal",
  23293. height: math.unit(6 + 3 / 12, "feet"),
  23294. default: true
  23295. },
  23296. ]
  23297. ))
  23298. characterMakers.push(() => makeCharacter(
  23299. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23300. {
  23301. anthro: {
  23302. height: math.unit(5 + 7 / 12, "feet"),
  23303. weight: math.unit(175, "lb"),
  23304. name: "Anthro",
  23305. image: {
  23306. source: "./media/characters/rena-dyne/anthro.svg",
  23307. extra: 1849 / 1785,
  23308. bottom: 0.005
  23309. }
  23310. },
  23311. taur: {
  23312. height: math.unit(15 + 6 / 12, "feet"),
  23313. weight: math.unit(8000, "lb"),
  23314. name: "Taur",
  23315. image: {
  23316. source: "./media/characters/rena-dyne/taur.svg",
  23317. extra: 2315 / 2234,
  23318. bottom: 0.033
  23319. }
  23320. },
  23321. },
  23322. [
  23323. {
  23324. name: "Normal",
  23325. height: math.unit(5 + 7 / 12, "feet"),
  23326. default: true
  23327. },
  23328. ]
  23329. ))
  23330. characterMakers.push(() => makeCharacter(
  23331. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23332. {
  23333. front: {
  23334. height: math.unit(8, "feet"),
  23335. weight: math.unit(600, "lb"),
  23336. name: "Front",
  23337. image: {
  23338. source: "./media/characters/weremeep/front.svg",
  23339. extra: 970/849,
  23340. bottom: 7/977
  23341. }
  23342. },
  23343. },
  23344. [
  23345. {
  23346. name: "Normal",
  23347. height: math.unit(8, "feet"),
  23348. default: true
  23349. },
  23350. {
  23351. name: "Lorg",
  23352. height: math.unit(12, "feet")
  23353. },
  23354. {
  23355. name: "Oh Lawd She Comin'",
  23356. height: math.unit(20, "feet")
  23357. },
  23358. ]
  23359. ))
  23360. characterMakers.push(() => makeCharacter(
  23361. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23362. {
  23363. front: {
  23364. height: math.unit(4, "feet"),
  23365. weight: math.unit(90, "lb"),
  23366. name: "Front",
  23367. image: {
  23368. source: "./media/characters/reza/front.svg",
  23369. extra: 1183 / 1111,
  23370. bottom: 0.017
  23371. }
  23372. },
  23373. back: {
  23374. height: math.unit(4, "feet"),
  23375. weight: math.unit(90, "lb"),
  23376. name: "Back",
  23377. image: {
  23378. source: "./media/characters/reza/back.svg",
  23379. extra: 1183 / 1111,
  23380. bottom: 0.01
  23381. }
  23382. },
  23383. drake: {
  23384. height: math.unit(30, "feet"),
  23385. weight: math.unit(246960, "lb"),
  23386. name: "Drake",
  23387. image: {
  23388. source: "./media/characters/reza/drake.svg",
  23389. extra: 2350 / 2024,
  23390. bottom: 60.7 / 2403
  23391. }
  23392. },
  23393. },
  23394. [
  23395. {
  23396. name: "Normal",
  23397. height: math.unit(4, "feet"),
  23398. default: true
  23399. },
  23400. ]
  23401. ))
  23402. characterMakers.push(() => makeCharacter(
  23403. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23404. {
  23405. side: {
  23406. height: math.unit(15, "feet"),
  23407. weight: math.unit(14, "tons"),
  23408. name: "Side",
  23409. image: {
  23410. source: "./media/characters/athea/side.svg",
  23411. extra: 960 / 540,
  23412. bottom: 0.003
  23413. }
  23414. },
  23415. sitting: {
  23416. height: math.unit(6 * 2.85, "feet"),
  23417. weight: math.unit(14, "tons"),
  23418. name: "Sitting",
  23419. image: {
  23420. source: "./media/characters/athea/sitting.svg",
  23421. extra: 621 / 581,
  23422. bottom: 0.075
  23423. }
  23424. },
  23425. maw: {
  23426. height: math.unit(7.59498031496063, "feet"),
  23427. name: "Maw",
  23428. image: {
  23429. source: "./media/characters/athea/maw.svg"
  23430. }
  23431. },
  23432. },
  23433. [
  23434. {
  23435. name: "Lap Cat",
  23436. height: math.unit(2.5, "feet")
  23437. },
  23438. {
  23439. name: "Minimacro",
  23440. height: math.unit(15, "feet"),
  23441. default: true
  23442. },
  23443. {
  23444. name: "Macro",
  23445. height: math.unit(120, "feet")
  23446. },
  23447. {
  23448. name: "Macro+",
  23449. height: math.unit(640, "feet")
  23450. },
  23451. {
  23452. name: "Colossus",
  23453. height: math.unit(2.2, "miles")
  23454. },
  23455. ]
  23456. ))
  23457. characterMakers.push(() => makeCharacter(
  23458. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23459. {
  23460. front: {
  23461. height: math.unit(8 + 8 / 12, "feet"),
  23462. weight: math.unit(130, "kg"),
  23463. name: "Front",
  23464. image: {
  23465. source: "./media/characters/seroko/front.svg",
  23466. extra: 1385 / 1280,
  23467. bottom: 0.025
  23468. }
  23469. },
  23470. back: {
  23471. height: math.unit(8 + 8 / 12, "feet"),
  23472. weight: math.unit(130, "kg"),
  23473. name: "Back",
  23474. image: {
  23475. source: "./media/characters/seroko/back.svg",
  23476. extra: 1369 / 1238,
  23477. bottom: 0.018
  23478. }
  23479. },
  23480. frontDressed: {
  23481. height: math.unit(8 + 8 / 12, "feet"),
  23482. weight: math.unit(130, "kg"),
  23483. name: "Front (Dressed)",
  23484. image: {
  23485. source: "./media/characters/seroko/front-dressed.svg",
  23486. extra: 1366 / 1275,
  23487. bottom: 0.03
  23488. }
  23489. },
  23490. },
  23491. [
  23492. {
  23493. name: "Normal",
  23494. height: math.unit(8 + 8 / 12, "feet"),
  23495. default: true
  23496. },
  23497. ]
  23498. ))
  23499. characterMakers.push(() => makeCharacter(
  23500. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23501. {
  23502. front: {
  23503. height: math.unit(5.5, "feet"),
  23504. weight: math.unit(160, "lb"),
  23505. name: "Front",
  23506. image: {
  23507. source: "./media/characters/quatzi/front.svg",
  23508. extra: 2346 / 2242,
  23509. bottom: 0.015
  23510. }
  23511. },
  23512. },
  23513. [
  23514. {
  23515. name: "Normal",
  23516. height: math.unit(5.5, "feet"),
  23517. default: true
  23518. },
  23519. {
  23520. name: "Big",
  23521. height: math.unit(7.7, "feet")
  23522. },
  23523. ]
  23524. ))
  23525. characterMakers.push(() => makeCharacter(
  23526. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23527. {
  23528. front: {
  23529. height: math.unit(5 + 11 / 12, "feet"),
  23530. weight: math.unit(180, "lb"),
  23531. name: "Front",
  23532. image: {
  23533. source: "./media/characters/sen/front.svg",
  23534. extra: 1321 / 1254,
  23535. bottom: 0.015
  23536. }
  23537. },
  23538. side: {
  23539. height: math.unit(5 + 11 / 12, "feet"),
  23540. weight: math.unit(180, "lb"),
  23541. name: "Side",
  23542. image: {
  23543. source: "./media/characters/sen/side.svg",
  23544. extra: 1321 / 1254,
  23545. bottom: 0.007
  23546. }
  23547. },
  23548. back: {
  23549. height: math.unit(5 + 11 / 12, "feet"),
  23550. weight: math.unit(180, "lb"),
  23551. name: "Back",
  23552. image: {
  23553. source: "./media/characters/sen/back.svg",
  23554. extra: 1321 / 1254
  23555. }
  23556. },
  23557. },
  23558. [
  23559. {
  23560. name: "Normal",
  23561. height: math.unit(5 + 11 / 12, "feet"),
  23562. default: true
  23563. },
  23564. ]
  23565. ))
  23566. characterMakers.push(() => makeCharacter(
  23567. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23568. {
  23569. front: {
  23570. height: math.unit(166.6, "cm"),
  23571. weight: math.unit(66.6, "kg"),
  23572. name: "Front",
  23573. image: {
  23574. source: "./media/characters/fruity/front.svg",
  23575. extra: 1510 / 1386,
  23576. bottom: 0.04
  23577. }
  23578. },
  23579. back: {
  23580. height: math.unit(166.6, "cm"),
  23581. weight: math.unit(66.6, "lb"),
  23582. name: "Back",
  23583. image: {
  23584. source: "./media/characters/fruity/back.svg",
  23585. extra: 1563 / 1435,
  23586. bottom: 0.005
  23587. }
  23588. },
  23589. },
  23590. [
  23591. {
  23592. name: "Normal",
  23593. height: math.unit(166.6, "cm"),
  23594. default: true
  23595. },
  23596. {
  23597. name: "Demonic",
  23598. height: math.unit(166.6, "feet")
  23599. },
  23600. ]
  23601. ))
  23602. characterMakers.push(() => makeCharacter(
  23603. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23604. {
  23605. side: {
  23606. height: math.unit(10, "feet"),
  23607. weight: math.unit(500, "lb"),
  23608. name: "Side",
  23609. image: {
  23610. source: "./media/characters/zost/side.svg",
  23611. extra: 2870/2533,
  23612. bottom: 252/3122
  23613. }
  23614. },
  23615. mawFront: {
  23616. height: math.unit(1.08, "meters"),
  23617. name: "Maw (Front)",
  23618. image: {
  23619. source: "./media/characters/zost/maw-front.svg"
  23620. }
  23621. },
  23622. mawSide: {
  23623. height: math.unit(2.66, "feet"),
  23624. name: "Maw (Side)",
  23625. image: {
  23626. source: "./media/characters/zost/maw-side.svg"
  23627. }
  23628. },
  23629. wingspan: {
  23630. height: math.unit(7.4, "feet"),
  23631. name: "Wingspan",
  23632. image: {
  23633. source: "./media/characters/zost/wingspan.svg"
  23634. }
  23635. },
  23636. },
  23637. [
  23638. {
  23639. name: "Normal",
  23640. height: math.unit(10, "feet"),
  23641. default: true
  23642. },
  23643. ]
  23644. ))
  23645. characterMakers.push(() => makeCharacter(
  23646. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23647. {
  23648. front: {
  23649. height: math.unit(5 + 4 / 12, "feet"),
  23650. weight: math.unit(120, "lb"),
  23651. name: "Front",
  23652. image: {
  23653. source: "./media/characters/luci/front.svg",
  23654. extra: 1985 / 1884,
  23655. bottom: 0.04
  23656. }
  23657. },
  23658. back: {
  23659. height: math.unit(5 + 4 / 12, "feet"),
  23660. weight: math.unit(120, "lb"),
  23661. name: "Back",
  23662. image: {
  23663. source: "./media/characters/luci/back.svg",
  23664. extra: 1892 / 1791,
  23665. bottom: 0.002
  23666. }
  23667. },
  23668. },
  23669. [
  23670. {
  23671. name: "Normal",
  23672. height: math.unit(5 + 4 / 12, "feet"),
  23673. default: true
  23674. },
  23675. ]
  23676. ))
  23677. characterMakers.push(() => makeCharacter(
  23678. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23679. {
  23680. front: {
  23681. height: math.unit(1500, "feet"),
  23682. weight: math.unit(3.8e6, "tons"),
  23683. name: "Front",
  23684. image: {
  23685. source: "./media/characters/2th/front.svg",
  23686. extra: 3489 / 3350,
  23687. bottom: 0.1
  23688. }
  23689. },
  23690. foot: {
  23691. height: math.unit(461, "feet"),
  23692. name: "Foot",
  23693. image: {
  23694. source: "./media/characters/2th/foot.svg"
  23695. }
  23696. },
  23697. },
  23698. [
  23699. {
  23700. name: "\"Micro\"",
  23701. height: math.unit(15 + 7 / 12, "feet")
  23702. },
  23703. {
  23704. name: "Normal",
  23705. height: math.unit(1500, "feet"),
  23706. default: true
  23707. },
  23708. {
  23709. name: "Macro",
  23710. height: math.unit(5000, "feet")
  23711. },
  23712. {
  23713. name: "Megamacro",
  23714. height: math.unit(15, "miles")
  23715. },
  23716. {
  23717. name: "Gigamacro",
  23718. height: math.unit(4000, "miles")
  23719. },
  23720. {
  23721. name: "Galactic",
  23722. height: math.unit(50, "AU")
  23723. },
  23724. ]
  23725. ))
  23726. characterMakers.push(() => makeCharacter(
  23727. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23728. {
  23729. front: {
  23730. height: math.unit(5 + 6 / 12, "feet"),
  23731. weight: math.unit(220, "lb"),
  23732. name: "Front",
  23733. image: {
  23734. source: "./media/characters/amethyst/front.svg",
  23735. extra: 2078 / 2040,
  23736. bottom: 0.045
  23737. }
  23738. },
  23739. back: {
  23740. height: math.unit(5 + 6 / 12, "feet"),
  23741. weight: math.unit(220, "lb"),
  23742. name: "Back",
  23743. image: {
  23744. source: "./media/characters/amethyst/back.svg",
  23745. extra: 2021 / 1989,
  23746. bottom: 0.02
  23747. }
  23748. },
  23749. },
  23750. [
  23751. {
  23752. name: "Normal",
  23753. height: math.unit(5 + 6 / 12, "feet"),
  23754. default: true
  23755. },
  23756. ]
  23757. ))
  23758. characterMakers.push(() => makeCharacter(
  23759. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23760. {
  23761. front: {
  23762. height: math.unit(4 + 11 / 12, "feet"),
  23763. weight: math.unit(120, "lb"),
  23764. name: "Front",
  23765. image: {
  23766. source: "./media/characters/yumi-akiyama/front.svg",
  23767. extra: 2638/2432,
  23768. bottom: 70/2708
  23769. }
  23770. },
  23771. back: {
  23772. height: math.unit(4 + 11 / 12, "feet"),
  23773. weight: math.unit(120, "lb"),
  23774. name: "Back",
  23775. image: {
  23776. source: "./media/characters/yumi-akiyama/back.svg",
  23777. extra: 2502/2397,
  23778. bottom: 80/2582
  23779. }
  23780. },
  23781. casual: {
  23782. height: math.unit(4 + 11 / 12, "feet"),
  23783. weight: math.unit(120, "lb"),
  23784. name: "Casual",
  23785. image: {
  23786. source: "./media/characters/yumi-akiyama/casual.svg",
  23787. extra: 958/887,
  23788. bottom: 41/999
  23789. }
  23790. },
  23791. jammies: {
  23792. height: math.unit(4 + 11 / 12, "feet"),
  23793. weight: math.unit(120, "lb"),
  23794. name: "Jammies",
  23795. image: {
  23796. source: "./media/characters/yumi-akiyama/jammies.svg",
  23797. extra: 958/894,
  23798. bottom: 37/995
  23799. }
  23800. },
  23801. warmWeather: {
  23802. height: math.unit(4 + 11 / 12, "feet"),
  23803. weight: math.unit(120, "lb"),
  23804. name: "Warm Weather",
  23805. image: {
  23806. source: "./media/characters/yumi-akiyama/warm-weather.svg",
  23807. extra: 929/865,
  23808. bottom: 76/1005
  23809. }
  23810. },
  23811. mouth: {
  23812. height: math.unit(0.35, "feet"),
  23813. name: "Mouth",
  23814. image: {
  23815. source: "./media/characters/yumi-akiyama/mouth.svg"
  23816. }
  23817. },
  23818. paws: {
  23819. height: math.unit(1.05, "feet"),
  23820. name: "Paws",
  23821. image: {
  23822. source: "./media/characters/yumi-akiyama/paws.svg"
  23823. }
  23824. },
  23825. cockRing: {
  23826. height: math.unit(0.225, "feet"),
  23827. name: "Cock Ring",
  23828. image: {
  23829. source: "./media/characters/yumi-akiyama/cock-ring.svg"
  23830. }
  23831. },
  23832. },
  23833. [
  23834. {
  23835. name: "Galactic",
  23836. height: math.unit(50, "galaxies"),
  23837. default: true
  23838. },
  23839. {
  23840. name: "Universal",
  23841. height: math.unit(100, "universes")
  23842. },
  23843. ]
  23844. ))
  23845. characterMakers.push(() => makeCharacter(
  23846. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23847. {
  23848. front: {
  23849. height: math.unit(8, "feet"),
  23850. weight: math.unit(500, "lb"),
  23851. name: "Front",
  23852. image: {
  23853. source: "./media/characters/rifter-yrmori/front.svg",
  23854. extra: 1180 / 1125,
  23855. bottom: 0.02
  23856. }
  23857. },
  23858. back: {
  23859. height: math.unit(8, "feet"),
  23860. weight: math.unit(500, "lb"),
  23861. name: "Back",
  23862. image: {
  23863. source: "./media/characters/rifter-yrmori/back.svg",
  23864. extra: 1190 / 1145,
  23865. bottom: 0.001
  23866. }
  23867. },
  23868. wings: {
  23869. height: math.unit(7.75, "feet"),
  23870. weight: math.unit(500, "lb"),
  23871. name: "Wings",
  23872. image: {
  23873. source: "./media/characters/rifter-yrmori/wings.svg",
  23874. extra: 1357 / 1285
  23875. }
  23876. },
  23877. maw: {
  23878. height: math.unit(0.8, "feet"),
  23879. name: "Maw",
  23880. image: {
  23881. source: "./media/characters/rifter-yrmori/maw.svg"
  23882. }
  23883. },
  23884. mawfront: {
  23885. height: math.unit(1.45, "feet"),
  23886. name: "Maw (Front)",
  23887. image: {
  23888. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23889. }
  23890. },
  23891. },
  23892. [
  23893. {
  23894. name: "Normal",
  23895. height: math.unit(8, "feet"),
  23896. default: true
  23897. },
  23898. {
  23899. name: "Macro",
  23900. height: math.unit(42, "meters")
  23901. },
  23902. ]
  23903. ))
  23904. characterMakers.push(() => makeCharacter(
  23905. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23906. {
  23907. were: {
  23908. height: math.unit(25 + 6 / 12, "feet"),
  23909. weight: math.unit(10000, "lb"),
  23910. name: "Were",
  23911. image: {
  23912. source: "./media/characters/tahajin/were.svg",
  23913. extra: 801 / 770,
  23914. bottom: 0.042
  23915. }
  23916. },
  23917. aquatic: {
  23918. height: math.unit(6 + 4 / 12, "feet"),
  23919. weight: math.unit(160, "lb"),
  23920. name: "Aquatic",
  23921. image: {
  23922. source: "./media/characters/tahajin/aquatic.svg",
  23923. extra: 572 / 542,
  23924. bottom: 0.04
  23925. }
  23926. },
  23927. chow: {
  23928. height: math.unit(8 + 11 / 12, "feet"),
  23929. weight: math.unit(450, "lb"),
  23930. name: "Chow",
  23931. image: {
  23932. source: "./media/characters/tahajin/chow.svg",
  23933. extra: 660 / 640,
  23934. bottom: 0.015
  23935. }
  23936. },
  23937. demiNaga: {
  23938. height: math.unit(6 + 8 / 12, "feet"),
  23939. weight: math.unit(300, "lb"),
  23940. name: "Demi Naga",
  23941. image: {
  23942. source: "./media/characters/tahajin/demi-naga.svg",
  23943. extra: 643 / 615,
  23944. bottom: 0.1
  23945. }
  23946. },
  23947. data: {
  23948. height: math.unit(5, "inches"),
  23949. weight: math.unit(0.1, "lb"),
  23950. name: "Data",
  23951. image: {
  23952. source: "./media/characters/tahajin/data.svg"
  23953. }
  23954. },
  23955. fluu: {
  23956. height: math.unit(5 + 7 / 12, "feet"),
  23957. weight: math.unit(140, "lb"),
  23958. name: "Fluu",
  23959. image: {
  23960. source: "./media/characters/tahajin/fluu.svg",
  23961. extra: 628 / 592,
  23962. bottom: 0.02
  23963. }
  23964. },
  23965. starWarrior: {
  23966. height: math.unit(4 + 5 / 12, "feet"),
  23967. weight: math.unit(50, "lb"),
  23968. name: "Star Warrior",
  23969. image: {
  23970. source: "./media/characters/tahajin/star-warrior.svg"
  23971. }
  23972. },
  23973. },
  23974. [
  23975. {
  23976. name: "Normal",
  23977. height: math.unit(25 + 6 / 12, "feet"),
  23978. default: true
  23979. },
  23980. ]
  23981. ))
  23982. characterMakers.push(() => makeCharacter(
  23983. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23984. {
  23985. front: {
  23986. height: math.unit(8, "feet"),
  23987. weight: math.unit(350, "lb"),
  23988. name: "Front",
  23989. image: {
  23990. source: "./media/characters/gabira/front.svg",
  23991. extra: 1261/1154,
  23992. bottom: 51/1312
  23993. }
  23994. },
  23995. back: {
  23996. height: math.unit(8, "feet"),
  23997. weight: math.unit(350, "lb"),
  23998. name: "Back",
  23999. image: {
  24000. source: "./media/characters/gabira/back.svg",
  24001. extra: 1265/1163,
  24002. bottom: 46/1311
  24003. }
  24004. },
  24005. head: {
  24006. height: math.unit(2.85, "feet"),
  24007. name: "Head",
  24008. image: {
  24009. source: "./media/characters/gabira/head.svg"
  24010. }
  24011. },
  24012. },
  24013. [
  24014. {
  24015. name: "Normal",
  24016. height: math.unit(8, "feet"),
  24017. default: true
  24018. },
  24019. ]
  24020. ))
  24021. characterMakers.push(() => makeCharacter(
  24022. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  24023. {
  24024. front: {
  24025. height: math.unit(5 + 3 / 12, "feet"),
  24026. weight: math.unit(137, "lb"),
  24027. name: "Front",
  24028. image: {
  24029. source: "./media/characters/sasha-katraine/front.svg",
  24030. extra: 1745/1694,
  24031. bottom: 37/1782
  24032. }
  24033. },
  24034. back: {
  24035. height: math.unit(5 + 3 / 12, "feet"),
  24036. weight: math.unit(137, "lb"),
  24037. name: "Back",
  24038. image: {
  24039. source: "./media/characters/sasha-katraine/back.svg",
  24040. extra: 1776/1699,
  24041. bottom: 26/1802
  24042. }
  24043. },
  24044. },
  24045. [
  24046. {
  24047. name: "Micro",
  24048. height: math.unit(5, "inches")
  24049. },
  24050. {
  24051. name: "Normal",
  24052. height: math.unit(5 + 3 / 12, "feet"),
  24053. default: true
  24054. },
  24055. ]
  24056. ))
  24057. characterMakers.push(() => makeCharacter(
  24058. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  24059. {
  24060. side: {
  24061. height: math.unit(4, "inches"),
  24062. weight: math.unit(200, "grams"),
  24063. name: "Side",
  24064. image: {
  24065. source: "./media/characters/der/side.svg",
  24066. extra: 719 / 400,
  24067. bottom: 30.6 / 749.9187
  24068. }
  24069. },
  24070. },
  24071. [
  24072. {
  24073. name: "Micro",
  24074. height: math.unit(4, "inches"),
  24075. default: true
  24076. },
  24077. ]
  24078. ))
  24079. characterMakers.push(() => makeCharacter(
  24080. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  24081. {
  24082. side: {
  24083. height: math.unit(30, "meters"),
  24084. weight: math.unit(700, "tonnes"),
  24085. name: "Side",
  24086. image: {
  24087. source: "./media/characters/fixerdragon/side.svg",
  24088. extra: (1293.0514 - 116.03) / 1106.86,
  24089. bottom: 116.03 / 1293.0514
  24090. }
  24091. },
  24092. },
  24093. [
  24094. {
  24095. name: "Planck",
  24096. height: math.unit(1.6e-35, "meters")
  24097. },
  24098. {
  24099. name: "Micro",
  24100. height: math.unit(0.4, "meters")
  24101. },
  24102. {
  24103. name: "Normal",
  24104. height: math.unit(30, "meters"),
  24105. default: true
  24106. },
  24107. {
  24108. name: "Megamacro",
  24109. height: math.unit(1.2, "megameters")
  24110. },
  24111. {
  24112. name: "Teramacro",
  24113. height: math.unit(130, "terameters")
  24114. },
  24115. {
  24116. name: "Yottamacro",
  24117. height: math.unit(6200, "yottameters")
  24118. },
  24119. ]
  24120. ));
  24121. characterMakers.push(() => makeCharacter(
  24122. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  24123. {
  24124. front: {
  24125. height: math.unit(8, "feet"),
  24126. weight: math.unit(250, "lb"),
  24127. name: "Front",
  24128. image: {
  24129. source: "./media/characters/kite/front.svg",
  24130. extra: 2796 / 2659,
  24131. bottom: 0.002
  24132. }
  24133. },
  24134. },
  24135. [
  24136. {
  24137. name: "Normal",
  24138. height: math.unit(8, "feet"),
  24139. default: true
  24140. },
  24141. {
  24142. name: "Macro",
  24143. height: math.unit(360, "feet")
  24144. },
  24145. {
  24146. name: "Megamacro",
  24147. height: math.unit(1500, "feet")
  24148. },
  24149. ]
  24150. ))
  24151. characterMakers.push(() => makeCharacter(
  24152. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  24153. {
  24154. anthro_front: {
  24155. height: math.unit(5 + 11/12, "feet"),
  24156. weight: math.unit(170, "lb"),
  24157. name: "Front",
  24158. image: {
  24159. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  24160. extra: 1735/1585,
  24161. bottom: 96/1831
  24162. },
  24163. form: "anthro",
  24164. default: true
  24165. },
  24166. anthro_back: {
  24167. height: math.unit(5 + 11/12, "feet"),
  24168. weight: math.unit(170, "lb"),
  24169. name: "Back",
  24170. image: {
  24171. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24172. extra: 1749/1607,
  24173. bottom: 28/1777
  24174. },
  24175. form: "anthro"
  24176. },
  24177. anthro_male: {
  24178. height: math.unit(5 + 11/12, "feet"),
  24179. weight: math.unit(170, "lb"),
  24180. name: "Male",
  24181. image: {
  24182. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24183. extra: 1855/1713,
  24184. bottom: 63/1918
  24185. },
  24186. form: "anthro"
  24187. },
  24188. taur_front: {
  24189. height: math.unit(5 + 7/12, "feet"),
  24190. weight: math.unit(170, "lb"),
  24191. name: "Front",
  24192. image: {
  24193. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24194. extra: 1151/1059,
  24195. bottom: 356/1507
  24196. },
  24197. form: "taur",
  24198. default: true
  24199. },
  24200. anthro_frontDressed: {
  24201. height: math.unit(5 + 11/12, "feet"),
  24202. weight: math.unit(170, "lb"),
  24203. name: "Front (Dressed)",
  24204. image: {
  24205. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24206. extra: 1735/1585,
  24207. bottom: 96/1831
  24208. },
  24209. form: "anthro"
  24210. },
  24211. anthro_backDressed: {
  24212. height: math.unit(5 + 11/12, "feet"),
  24213. weight: math.unit(170, "lb"),
  24214. name: "Back (Dressed)",
  24215. image: {
  24216. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24217. extra: 1749/1607,
  24218. bottom: 28/1777
  24219. },
  24220. form: "anthro"
  24221. },
  24222. anthro_maleDressed: {
  24223. height: math.unit(5 + 11/12, "feet"),
  24224. weight: math.unit(170, "lb"),
  24225. name: "Male (Dressed)",
  24226. image: {
  24227. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24228. extra: 1855/1713,
  24229. bottom: 63/1918
  24230. },
  24231. form: "anthro"
  24232. },
  24233. taur_frontDressed: {
  24234. height: math.unit(5 + 7/12, "feet"),
  24235. weight: math.unit(170, "lb"),
  24236. name: "Front (Dressed)",
  24237. image: {
  24238. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24239. extra: 1151/1059,
  24240. bottom: 356/1507
  24241. },
  24242. form: "taur"
  24243. },
  24244. maw: {
  24245. height: math.unit(1.46, "feet"),
  24246. name: "Maw",
  24247. image: {
  24248. source: "./media/characters/poojawa-vynar/maw.svg"
  24249. },
  24250. allForms: true
  24251. },
  24252. head: {
  24253. height: math.unit(2.34, "feet"),
  24254. name: "Head",
  24255. image: {
  24256. source: "./media/characters/poojawa-vynar/head.svg"
  24257. },
  24258. allForms: true
  24259. },
  24260. leftPaw: {
  24261. height: math.unit(1.72, "feet"),
  24262. name: "Left Paw",
  24263. image: {
  24264. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24265. },
  24266. allForms: true
  24267. },
  24268. rightPaw: {
  24269. height: math.unit(1.61, "feet"),
  24270. name: "Right Paw",
  24271. image: {
  24272. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24273. },
  24274. allForms: true
  24275. },
  24276. toering: {
  24277. height: math.unit(2.9, "inches"),
  24278. name: "Toering",
  24279. image: {
  24280. source: "./media/characters/poojawa-vynar/toering.svg"
  24281. },
  24282. allForms: true
  24283. },
  24284. shaft: {
  24285. height: math.unit(0.625, "feet"),
  24286. name: "Shaft",
  24287. image: {
  24288. source: "./media/characters/poojawa-vynar/shaft.svg"
  24289. },
  24290. allForms: true
  24291. },
  24292. spade: {
  24293. height: math.unit(0.42, "feet"),
  24294. name: "Spade",
  24295. image: {
  24296. source: "./media/characters/poojawa-vynar/spade.svg"
  24297. },
  24298. allForms: true
  24299. },
  24300. },
  24301. [
  24302. {
  24303. name: "Shortstack",
  24304. height: math.unit(4, "feet"),
  24305. form: "anthro"
  24306. },
  24307. {
  24308. name: "Normal",
  24309. height: math.unit(5 + 11 / 12, "feet"),
  24310. form: "anthro",
  24311. default: true
  24312. },
  24313. {
  24314. name: "Tauric",
  24315. height: math.unit(4, "meters"),
  24316. form: "taur",
  24317. default: true
  24318. },
  24319. ],
  24320. {
  24321. "anthro": {
  24322. name: "Anthro",
  24323. default: true
  24324. },
  24325. "taur": {
  24326. name: "Taur",
  24327. },
  24328. }
  24329. ))
  24330. characterMakers.push(() => makeCharacter(
  24331. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24332. {
  24333. front: {
  24334. height: math.unit(293, "meters"),
  24335. weight: math.unit(70400, "tons"),
  24336. name: "Front",
  24337. image: {
  24338. source: "./media/characters/violette/front.svg",
  24339. extra: 1227 / 1180,
  24340. bottom: 0.005
  24341. }
  24342. },
  24343. back: {
  24344. height: math.unit(293, "meters"),
  24345. weight: math.unit(70400, "tons"),
  24346. name: "Back",
  24347. image: {
  24348. source: "./media/characters/violette/back.svg",
  24349. extra: 1227 / 1180,
  24350. bottom: 0.005
  24351. }
  24352. },
  24353. },
  24354. [
  24355. {
  24356. name: "Macro",
  24357. height: math.unit(293, "meters"),
  24358. default: true
  24359. },
  24360. ]
  24361. ))
  24362. characterMakers.push(() => makeCharacter(
  24363. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24364. {
  24365. front: {
  24366. height: math.unit(1050, "feet"),
  24367. weight: math.unit(200000, "tons"),
  24368. name: "Front",
  24369. image: {
  24370. source: "./media/characters/alessandra/front.svg",
  24371. extra: 960 / 912,
  24372. bottom: 0.06
  24373. }
  24374. },
  24375. },
  24376. [
  24377. {
  24378. name: "Macro",
  24379. height: math.unit(1050, "feet")
  24380. },
  24381. {
  24382. name: "Macro+",
  24383. height: math.unit(900, "meters"),
  24384. default: true
  24385. },
  24386. ]
  24387. ))
  24388. characterMakers.push(() => makeCharacter(
  24389. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24390. {
  24391. front: {
  24392. height: math.unit(5, "feet"),
  24393. weight: math.unit(187, "lb"),
  24394. name: "Front",
  24395. image: {
  24396. source: "./media/characters/person/front.svg",
  24397. extra: 3087 / 2945,
  24398. bottom: 91 / 3181
  24399. }
  24400. },
  24401. },
  24402. [
  24403. {
  24404. name: "Micro",
  24405. height: math.unit(3, "inches")
  24406. },
  24407. {
  24408. name: "Normal",
  24409. height: math.unit(5, "feet"),
  24410. default: true
  24411. },
  24412. {
  24413. name: "Macro",
  24414. height: math.unit(90, "feet")
  24415. },
  24416. {
  24417. name: "Max Size",
  24418. height: math.unit(280, "feet")
  24419. },
  24420. ]
  24421. ))
  24422. characterMakers.push(() => makeCharacter(
  24423. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24424. {
  24425. front: {
  24426. height: math.unit(4.5, "meters"),
  24427. weight: math.unit(3200, "lb"),
  24428. name: "Front",
  24429. image: {
  24430. source: "./media/characters/ty/front.svg",
  24431. extra: 1038 / 960,
  24432. bottom: 31.156 / 1068
  24433. }
  24434. },
  24435. back: {
  24436. height: math.unit(4.5, "meters"),
  24437. weight: math.unit(3200, "lb"),
  24438. name: "Back",
  24439. image: {
  24440. source: "./media/characters/ty/back.svg",
  24441. extra: 1044 / 966,
  24442. bottom: 7.48 / 1049
  24443. }
  24444. },
  24445. },
  24446. [
  24447. {
  24448. name: "Normal",
  24449. height: math.unit(4.5, "meters"),
  24450. default: true
  24451. },
  24452. ]
  24453. ))
  24454. characterMakers.push(() => makeCharacter(
  24455. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24456. {
  24457. front: {
  24458. height: math.unit(5 + 4 / 12, "feet"),
  24459. weight: math.unit(115, "lb"),
  24460. name: "Front",
  24461. image: {
  24462. source: "./media/characters/rocky/front.svg",
  24463. extra: 1012 / 975,
  24464. bottom: 54 / 1066
  24465. }
  24466. },
  24467. },
  24468. [
  24469. {
  24470. name: "Normal",
  24471. height: math.unit(5 + 4 / 12, "feet"),
  24472. default: true
  24473. },
  24474. ]
  24475. ))
  24476. characterMakers.push(() => makeCharacter(
  24477. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24478. {
  24479. upright: {
  24480. height: math.unit(6, "meters"),
  24481. weight: math.unit(4000, "kg"),
  24482. name: "Upright",
  24483. image: {
  24484. source: "./media/characters/ruin/upright.svg",
  24485. extra: 668 / 661,
  24486. bottom: 42 / 799.8396
  24487. }
  24488. },
  24489. },
  24490. [
  24491. {
  24492. name: "Normal",
  24493. height: math.unit(6, "meters"),
  24494. default: true
  24495. },
  24496. ]
  24497. ))
  24498. characterMakers.push(() => makeCharacter(
  24499. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24500. {
  24501. front: {
  24502. height: math.unit(5, "feet"),
  24503. weight: math.unit(106, "lb"),
  24504. name: "Front",
  24505. image: {
  24506. source: "./media/characters/robin/front.svg",
  24507. extra: 862 / 799,
  24508. bottom: 42.4 / 914.8856
  24509. }
  24510. },
  24511. },
  24512. [
  24513. {
  24514. name: "Normal",
  24515. height: math.unit(5, "feet"),
  24516. default: true
  24517. },
  24518. ]
  24519. ))
  24520. characterMakers.push(() => makeCharacter(
  24521. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24522. {
  24523. side: {
  24524. height: math.unit(3, "feet"),
  24525. weight: math.unit(225, "lb"),
  24526. name: "Side",
  24527. image: {
  24528. source: "./media/characters/saian/side.svg",
  24529. extra: 566 / 356,
  24530. bottom: 79.7 / 643
  24531. }
  24532. },
  24533. maw: {
  24534. height: math.unit(2.85, "feet"),
  24535. name: "Maw",
  24536. image: {
  24537. source: "./media/characters/saian/maw.svg"
  24538. }
  24539. },
  24540. },
  24541. [
  24542. {
  24543. name: "Normal",
  24544. height: math.unit(3, "feet"),
  24545. default: true
  24546. },
  24547. ]
  24548. ))
  24549. characterMakers.push(() => makeCharacter(
  24550. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24551. {
  24552. side: {
  24553. height: math.unit(8, "feet"),
  24554. weight: math.unit(300, "lb"),
  24555. name: "Side",
  24556. image: {
  24557. source: "./media/characters/equus-silvermane/side.svg",
  24558. extra: 2176 / 2050,
  24559. bottom: 65.7 / 2245
  24560. }
  24561. },
  24562. front: {
  24563. height: math.unit(8, "feet"),
  24564. weight: math.unit(300, "lb"),
  24565. name: "Front",
  24566. image: {
  24567. source: "./media/characters/equus-silvermane/front.svg",
  24568. extra: 4633 / 4400,
  24569. bottom: 71.3 / 4706.915
  24570. }
  24571. },
  24572. sideStepping: {
  24573. height: math.unit(8, "feet"),
  24574. weight: math.unit(300, "lb"),
  24575. name: "Side (Stepping)",
  24576. image: {
  24577. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24578. extra: 1968 / 1860,
  24579. bottom: 16.4 / 1989
  24580. }
  24581. },
  24582. },
  24583. [
  24584. {
  24585. name: "Normal",
  24586. height: math.unit(8, "feet")
  24587. },
  24588. {
  24589. name: "Minimacro",
  24590. height: math.unit(75, "feet"),
  24591. default: true
  24592. },
  24593. {
  24594. name: "Macro",
  24595. height: math.unit(150, "feet")
  24596. },
  24597. {
  24598. name: "Macro+",
  24599. height: math.unit(1000, "feet")
  24600. },
  24601. {
  24602. name: "Megamacro",
  24603. height: math.unit(1, "mile")
  24604. },
  24605. ]
  24606. ))
  24607. characterMakers.push(() => makeCharacter(
  24608. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24609. {
  24610. side: {
  24611. height: math.unit(20, "feet"),
  24612. weight: math.unit(30000, "kg"),
  24613. name: "Side",
  24614. image: {
  24615. source: "./media/characters/windar/side.svg",
  24616. extra: 1491 / 1248,
  24617. bottom: 82.56 / 1568
  24618. }
  24619. },
  24620. },
  24621. [
  24622. {
  24623. name: "Normal",
  24624. height: math.unit(20, "feet"),
  24625. default: true
  24626. },
  24627. ]
  24628. ))
  24629. characterMakers.push(() => makeCharacter(
  24630. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24631. {
  24632. side: {
  24633. height: math.unit(15.66, "feet"),
  24634. weight: math.unit(150, "lb"),
  24635. name: "Side",
  24636. image: {
  24637. source: "./media/characters/melody/side.svg",
  24638. extra: 1097 / 944,
  24639. bottom: 11.8 / 1109
  24640. }
  24641. },
  24642. sideOutfit: {
  24643. height: math.unit(15.66, "feet"),
  24644. weight: math.unit(150, "lb"),
  24645. name: "Side (Outfit)",
  24646. image: {
  24647. source: "./media/characters/melody/side-outfit.svg",
  24648. extra: 1097 / 944,
  24649. bottom: 11.8 / 1109
  24650. }
  24651. },
  24652. },
  24653. [
  24654. {
  24655. name: "Normal",
  24656. height: math.unit(15.66, "feet"),
  24657. default: true
  24658. },
  24659. ]
  24660. ))
  24661. characterMakers.push(() => makeCharacter(
  24662. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24663. {
  24664. armoredFront: {
  24665. height: math.unit(8, "feet"),
  24666. weight: math.unit(325, "lb"),
  24667. name: "Front",
  24668. image: {
  24669. source: "./media/characters/windera/armored-front.svg",
  24670. extra: 1830/1598,
  24671. bottom: 151/1981
  24672. },
  24673. form: "armored",
  24674. default: true
  24675. },
  24676. macroFront: {
  24677. height: math.unit(70, "feet"),
  24678. weight: math.unit(315453, "lb"),
  24679. name: "Front",
  24680. image: {
  24681. source: "./media/characters/windera/macro-front.svg",
  24682. extra: 963/883,
  24683. bottom: 23/986
  24684. },
  24685. form: "macro",
  24686. default: true
  24687. },
  24688. },
  24689. [
  24690. {
  24691. name: "Normal",
  24692. height: math.unit(8, "feet"),
  24693. default: true,
  24694. form: "armored"
  24695. },
  24696. {
  24697. name: "Normal",
  24698. height: math.unit(70, "feet"),
  24699. default: true,
  24700. form: "macro"
  24701. },
  24702. ],
  24703. {
  24704. "armored": {
  24705. name: "Armored",
  24706. default: true
  24707. },
  24708. "macro": {
  24709. name: "Macro",
  24710. },
  24711. }
  24712. ))
  24713. characterMakers.push(() => makeCharacter(
  24714. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24715. {
  24716. front: {
  24717. height: math.unit(28.75, "feet"),
  24718. weight: math.unit(2000, "kg"),
  24719. name: "Front",
  24720. image: {
  24721. source: "./media/characters/sonear/front.svg",
  24722. extra: 1041.1 / 964.9,
  24723. bottom: 53.7 / 1096.6
  24724. }
  24725. },
  24726. },
  24727. [
  24728. {
  24729. name: "Normal",
  24730. height: math.unit(28.75, "feet"),
  24731. default: true
  24732. },
  24733. ]
  24734. ))
  24735. characterMakers.push(() => makeCharacter(
  24736. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24737. {
  24738. side: {
  24739. height: math.unit(25.5, "feet"),
  24740. weight: math.unit(23000, "kg"),
  24741. name: "Side",
  24742. image: {
  24743. source: "./media/characters/kanara/side.svg"
  24744. }
  24745. },
  24746. },
  24747. [
  24748. {
  24749. name: "Normal",
  24750. height: math.unit(25.5, "feet"),
  24751. default: true
  24752. },
  24753. ]
  24754. ))
  24755. characterMakers.push(() => makeCharacter(
  24756. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24757. {
  24758. side: {
  24759. height: math.unit(10, "feet"),
  24760. weight: math.unit(1000, "kg"),
  24761. name: "Side",
  24762. image: {
  24763. source: "./media/characters/ereus/side.svg",
  24764. extra: 1157 / 959,
  24765. bottom: 153 / 1312.5
  24766. }
  24767. },
  24768. },
  24769. [
  24770. {
  24771. name: "Normal",
  24772. height: math.unit(10, "feet"),
  24773. default: true
  24774. },
  24775. ]
  24776. ))
  24777. characterMakers.push(() => makeCharacter(
  24778. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24779. {
  24780. side: {
  24781. height: math.unit(4.5, "feet"),
  24782. weight: math.unit(500, "lb"),
  24783. name: "Side",
  24784. image: {
  24785. source: "./media/characters/e-ter/side.svg",
  24786. extra: 1550 / 1248,
  24787. bottom: 146 / 1694
  24788. }
  24789. },
  24790. },
  24791. [
  24792. {
  24793. name: "Normal",
  24794. height: math.unit(4.5, "feet"),
  24795. default: true
  24796. },
  24797. ]
  24798. ))
  24799. characterMakers.push(() => makeCharacter(
  24800. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24801. {
  24802. side: {
  24803. height: math.unit(9.7, "feet"),
  24804. weight: math.unit(4000, "kg"),
  24805. name: "Side",
  24806. image: {
  24807. source: "./media/characters/yamie/side.svg"
  24808. }
  24809. },
  24810. },
  24811. [
  24812. {
  24813. name: "Normal",
  24814. height: math.unit(9.7, "feet"),
  24815. default: true
  24816. },
  24817. ]
  24818. ))
  24819. characterMakers.push(() => makeCharacter(
  24820. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24821. {
  24822. front: {
  24823. height: math.unit(50, "feet"),
  24824. weight: math.unit(50000, "kg"),
  24825. name: "Front",
  24826. image: {
  24827. source: "./media/characters/anders/front.svg",
  24828. extra: 570 / 539,
  24829. bottom: 14.7 / 586.7
  24830. }
  24831. },
  24832. },
  24833. [
  24834. {
  24835. name: "Large",
  24836. height: math.unit(50, "feet")
  24837. },
  24838. {
  24839. name: "Macro",
  24840. height: math.unit(2000, "feet"),
  24841. default: true
  24842. },
  24843. {
  24844. name: "Megamacro",
  24845. height: math.unit(12, "miles")
  24846. },
  24847. ]
  24848. ))
  24849. characterMakers.push(() => makeCharacter(
  24850. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24851. {
  24852. front: {
  24853. height: math.unit(7 + 2 / 12, "feet"),
  24854. weight: math.unit(300, "lb"),
  24855. name: "Front",
  24856. image: {
  24857. source: "./media/characters/reban/front.svg",
  24858. extra: 1287/1212,
  24859. bottom: 148/1435
  24860. }
  24861. },
  24862. head: {
  24863. height: math.unit(1.95, "feet"),
  24864. name: "Head",
  24865. image: {
  24866. source: "./media/characters/reban/head.svg"
  24867. }
  24868. },
  24869. maw: {
  24870. height: math.unit(0.95, "feet"),
  24871. name: "Maw",
  24872. image: {
  24873. source: "./media/characters/reban/maw.svg"
  24874. }
  24875. },
  24876. foot: {
  24877. height: math.unit(1.65, "feet"),
  24878. name: "Foot",
  24879. image: {
  24880. source: "./media/characters/reban/foot.svg"
  24881. }
  24882. },
  24883. dick: {
  24884. height: math.unit(7 / 5, "feet"),
  24885. name: "Dick",
  24886. image: {
  24887. source: "./media/characters/reban/dick.svg"
  24888. }
  24889. },
  24890. },
  24891. [
  24892. {
  24893. name: "Natural Height",
  24894. height: math.unit(7 + 2 / 12, "feet")
  24895. },
  24896. {
  24897. name: "Macro",
  24898. height: math.unit(500, "feet"),
  24899. default: true
  24900. },
  24901. {
  24902. name: "Canon Height",
  24903. height: math.unit(50, "AU")
  24904. },
  24905. ]
  24906. ))
  24907. characterMakers.push(() => makeCharacter(
  24908. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24909. {
  24910. front: {
  24911. height: math.unit(6, "feet"),
  24912. weight: math.unit(150, "lb"),
  24913. name: "Front",
  24914. image: {
  24915. source: "./media/characters/terrance-keayes/front.svg",
  24916. extra: 1.005,
  24917. bottom: 151 / 1615
  24918. }
  24919. },
  24920. side: {
  24921. height: math.unit(6, "feet"),
  24922. weight: math.unit(150, "lb"),
  24923. name: "Side",
  24924. image: {
  24925. source: "./media/characters/terrance-keayes/side.svg",
  24926. extra: 1.005,
  24927. bottom: 129.4 / 1544
  24928. }
  24929. },
  24930. back: {
  24931. height: math.unit(6, "feet"),
  24932. weight: math.unit(150, "lb"),
  24933. name: "Back",
  24934. image: {
  24935. source: "./media/characters/terrance-keayes/back.svg",
  24936. extra: 1.005,
  24937. bottom: 58.4 / 1557.3
  24938. }
  24939. },
  24940. dick: {
  24941. height: math.unit(6 * 0.208, "feet"),
  24942. name: "Dick",
  24943. image: {
  24944. source: "./media/characters/terrance-keayes/dick.svg"
  24945. }
  24946. },
  24947. },
  24948. [
  24949. {
  24950. name: "Canon Height",
  24951. height: math.unit(35, "miles"),
  24952. default: true
  24953. },
  24954. ]
  24955. ))
  24956. characterMakers.push(() => makeCharacter(
  24957. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24958. {
  24959. front: {
  24960. height: math.unit(6, "feet"),
  24961. weight: math.unit(150, "lb"),
  24962. name: "Front",
  24963. image: {
  24964. source: "./media/characters/ofelia/front.svg",
  24965. extra: 1130/1117,
  24966. bottom: 91/1221
  24967. }
  24968. },
  24969. back: {
  24970. height: math.unit(6, "feet"),
  24971. weight: math.unit(150, "lb"),
  24972. name: "Back",
  24973. image: {
  24974. source: "./media/characters/ofelia/back.svg",
  24975. extra: 1172/1159,
  24976. bottom: 28/1200
  24977. }
  24978. },
  24979. maw: {
  24980. height: math.unit(1, "feet"),
  24981. name: "Maw",
  24982. image: {
  24983. source: "./media/characters/ofelia/maw.svg"
  24984. }
  24985. },
  24986. foot: {
  24987. height: math.unit(1.949, "feet"),
  24988. name: "Foot",
  24989. image: {
  24990. source: "./media/characters/ofelia/foot.svg"
  24991. }
  24992. },
  24993. },
  24994. [
  24995. {
  24996. name: "Canon Height",
  24997. height: math.unit(2000, "miles"),
  24998. default: true
  24999. },
  25000. ]
  25001. ))
  25002. characterMakers.push(() => makeCharacter(
  25003. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  25004. {
  25005. front: {
  25006. height: math.unit(6, "feet"),
  25007. weight: math.unit(150, "lb"),
  25008. name: "Front",
  25009. image: {
  25010. source: "./media/characters/samuel/front.svg",
  25011. extra: 265 / 258,
  25012. bottom: 2 / 266.1566
  25013. }
  25014. },
  25015. },
  25016. [
  25017. {
  25018. name: "Macro",
  25019. height: math.unit(100, "feet"),
  25020. default: true
  25021. },
  25022. {
  25023. name: "Full Size",
  25024. height: math.unit(1000, "miles")
  25025. },
  25026. ]
  25027. ))
  25028. characterMakers.push(() => makeCharacter(
  25029. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  25030. {
  25031. front: {
  25032. height: math.unit(6, "feet"),
  25033. weight: math.unit(300, "lb"),
  25034. name: "Front",
  25035. image: {
  25036. source: "./media/characters/beishir-kiel/front.svg",
  25037. extra: 569 / 547,
  25038. bottom: 41.9 / 609
  25039. }
  25040. },
  25041. maw: {
  25042. height: math.unit(6 * 0.202, "feet"),
  25043. name: "Maw",
  25044. image: {
  25045. source: "./media/characters/beishir-kiel/maw.svg"
  25046. }
  25047. },
  25048. },
  25049. [
  25050. {
  25051. name: "Macro",
  25052. height: math.unit(300, "feet"),
  25053. default: true
  25054. },
  25055. ]
  25056. ))
  25057. characterMakers.push(() => makeCharacter(
  25058. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  25059. {
  25060. front: {
  25061. height: math.unit(5 + 7/12, "feet"),
  25062. weight: math.unit(120, "lb"),
  25063. name: "Front",
  25064. image: {
  25065. source: "./media/characters/logan-grey/front.svg",
  25066. extra: 1836/1738,
  25067. bottom: 108/1944
  25068. }
  25069. },
  25070. back: {
  25071. height: math.unit(5 + 7/12, "feet"),
  25072. weight: math.unit(120, "lb"),
  25073. name: "Back",
  25074. image: {
  25075. source: "./media/characters/logan-grey/back.svg",
  25076. extra: 1880/1794,
  25077. bottom: 24/1904
  25078. }
  25079. },
  25080. frontSfw: {
  25081. height: math.unit(5 + 7/12, "feet"),
  25082. weight: math.unit(120, "lb"),
  25083. name: "Front (SFW)",
  25084. image: {
  25085. source: "./media/characters/logan-grey/front-sfw.svg",
  25086. extra: 1836/1738,
  25087. bottom: 108/1944
  25088. }
  25089. },
  25090. backSfw: {
  25091. height: math.unit(5 + 7/12, "feet"),
  25092. weight: math.unit(120, "lb"),
  25093. name: "Back (SFW)",
  25094. image: {
  25095. source: "./media/characters/logan-grey/back-sfw.svg",
  25096. extra: 1880/1794,
  25097. bottom: 24/1904
  25098. }
  25099. },
  25100. hands: {
  25101. height: math.unit(0.84, "feet"),
  25102. name: "Hands",
  25103. image: {
  25104. source: "./media/characters/logan-grey/hands.svg"
  25105. }
  25106. },
  25107. paws: {
  25108. height: math.unit(0.72, "feet"),
  25109. name: "Paws",
  25110. image: {
  25111. source: "./media/characters/logan-grey/paws.svg"
  25112. }
  25113. },
  25114. cock: {
  25115. height: math.unit(1.45, "feet"),
  25116. name: "Cock",
  25117. image: {
  25118. source: "./media/characters/logan-grey/cock.svg"
  25119. }
  25120. },
  25121. cockAlt: {
  25122. height: math.unit(1.437, "feet"),
  25123. name: "Cock (alt)",
  25124. image: {
  25125. source: "./media/characters/logan-grey/cock-alt.svg"
  25126. }
  25127. },
  25128. },
  25129. [
  25130. {
  25131. name: "Normal",
  25132. height: math.unit(5 + 8 / 12, "feet")
  25133. },
  25134. {
  25135. name: "The 500 Foot Femboy",
  25136. height: math.unit(500, "feet"),
  25137. default: true
  25138. },
  25139. {
  25140. name: "Megmacro",
  25141. height: math.unit(20, "miles")
  25142. },
  25143. ]
  25144. ))
  25145. characterMakers.push(() => makeCharacter(
  25146. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  25147. {
  25148. front: {
  25149. height: math.unit(8 + 2 / 12, "feet"),
  25150. weight: math.unit(275, "lb"),
  25151. name: "Front",
  25152. image: {
  25153. source: "./media/characters/draganta/front.svg",
  25154. extra: 1177 / 1135,
  25155. bottom: 33.46 / 1212.1
  25156. }
  25157. },
  25158. },
  25159. [
  25160. {
  25161. name: "Normal",
  25162. height: math.unit(8 + 6 / 12, "feet"),
  25163. default: true
  25164. },
  25165. {
  25166. name: "Macro",
  25167. height: math.unit(150, "feet")
  25168. },
  25169. {
  25170. name: "Megamacro",
  25171. height: math.unit(1000, "miles")
  25172. },
  25173. ]
  25174. ))
  25175. characterMakers.push(() => makeCharacter(
  25176. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25177. {
  25178. front: {
  25179. height: math.unit(1.72, "m"),
  25180. weight: math.unit(80, "lb"),
  25181. name: "Front",
  25182. image: {
  25183. source: "./media/characters/voski/front.svg",
  25184. extra: 2076.22 / 2022.4,
  25185. bottom: 102.7 / 2177.3866
  25186. }
  25187. },
  25188. frontFlaccid: {
  25189. height: math.unit(1.72, "m"),
  25190. weight: math.unit(80, "lb"),
  25191. name: "Front (Flaccid)",
  25192. image: {
  25193. source: "./media/characters/voski/front-flaccid.svg",
  25194. extra: 2076.22 / 2022.4,
  25195. bottom: 102.7 / 2177.3866
  25196. }
  25197. },
  25198. frontErect: {
  25199. height: math.unit(1.72, "m"),
  25200. weight: math.unit(80, "lb"),
  25201. name: "Front (Erect)",
  25202. image: {
  25203. source: "./media/characters/voski/front-erect.svg",
  25204. extra: 2076.22 / 2022.4,
  25205. bottom: 102.7 / 2177.3866
  25206. }
  25207. },
  25208. back: {
  25209. height: math.unit(1.72, "m"),
  25210. weight: math.unit(80, "lb"),
  25211. name: "Back",
  25212. image: {
  25213. source: "./media/characters/voski/back.svg",
  25214. extra: 2104 / 2051,
  25215. bottom: 10.45 / 2113.63
  25216. }
  25217. },
  25218. },
  25219. [
  25220. {
  25221. name: "Normal",
  25222. height: math.unit(1.72, "m")
  25223. },
  25224. {
  25225. name: "Macro",
  25226. height: math.unit(55, "m"),
  25227. default: true
  25228. },
  25229. {
  25230. name: "Macro+",
  25231. height: math.unit(300, "m")
  25232. },
  25233. {
  25234. name: "Macro++",
  25235. height: math.unit(700, "m")
  25236. },
  25237. {
  25238. name: "Macro+++",
  25239. height: math.unit(4500, "m")
  25240. },
  25241. {
  25242. name: "Macro++++",
  25243. height: math.unit(45, "km")
  25244. },
  25245. {
  25246. name: "Macro+++++",
  25247. height: math.unit(1220, "km")
  25248. },
  25249. ]
  25250. ))
  25251. characterMakers.push(() => makeCharacter(
  25252. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25253. {
  25254. front: {
  25255. height: math.unit(2.3, "m"),
  25256. weight: math.unit(304, "kg"),
  25257. name: "Front",
  25258. image: {
  25259. source: "./media/characters/icowom-lee/front.svg",
  25260. extra: 985 / 955,
  25261. bottom: 25.4 / 1012
  25262. }
  25263. },
  25264. fronttentacles: {
  25265. height: math.unit(2.3, "m"),
  25266. weight: math.unit(304, "kg"),
  25267. name: "Front-tentacles",
  25268. image: {
  25269. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25270. extra: 985 / 955,
  25271. bottom: 25.4 / 1012
  25272. }
  25273. },
  25274. back: {
  25275. height: math.unit(2.3, "m"),
  25276. weight: math.unit(304, "kg"),
  25277. name: "Back",
  25278. image: {
  25279. source: "./media/characters/icowom-lee/back.svg",
  25280. extra: 975 / 954,
  25281. bottom: 9.5 / 985
  25282. }
  25283. },
  25284. backtentacles: {
  25285. height: math.unit(2.3, "m"),
  25286. weight: math.unit(304, "kg"),
  25287. name: "Back-tentacles",
  25288. image: {
  25289. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25290. extra: 975 / 954,
  25291. bottom: 9.5 / 985
  25292. }
  25293. },
  25294. frontDressed: {
  25295. height: math.unit(2.3, "m"),
  25296. weight: math.unit(304, "kg"),
  25297. name: "Front (Dressed)",
  25298. image: {
  25299. source: "./media/characters/icowom-lee/front-dressed.svg",
  25300. extra: 3076 / 2933,
  25301. bottom: 51.4 / 3125.1889
  25302. }
  25303. },
  25304. rump: {
  25305. height: math.unit(0.776, "meters"),
  25306. name: "Rump",
  25307. image: {
  25308. source: "./media/characters/icowom-lee/rump.svg"
  25309. }
  25310. },
  25311. genitals: {
  25312. height: math.unit(0.78, "meters"),
  25313. name: "Genitals",
  25314. image: {
  25315. source: "./media/characters/icowom-lee/genitals.svg"
  25316. }
  25317. },
  25318. },
  25319. [
  25320. {
  25321. name: "Normal",
  25322. height: math.unit(2.3, "meters"),
  25323. default: true
  25324. },
  25325. {
  25326. name: "Macro",
  25327. height: math.unit(94, "meters"),
  25328. default: true
  25329. },
  25330. ]
  25331. ))
  25332. characterMakers.push(() => makeCharacter(
  25333. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25334. {
  25335. front: {
  25336. height: math.unit(22, "meters"),
  25337. weight: math.unit(21000, "kg"),
  25338. name: "Front",
  25339. image: {
  25340. source: "./media/characters/shock-diamond/front.svg",
  25341. extra: 2204 / 2053,
  25342. bottom: 65 / 2239.47
  25343. }
  25344. },
  25345. frontNude: {
  25346. height: math.unit(22, "meters"),
  25347. weight: math.unit(21000, "kg"),
  25348. name: "Front (Nude)",
  25349. image: {
  25350. source: "./media/characters/shock-diamond/front-nude.svg",
  25351. extra: 2514 / 2285,
  25352. bottom: 13 / 2527.56
  25353. }
  25354. },
  25355. },
  25356. [
  25357. {
  25358. name: "Normal",
  25359. height: math.unit(3, "meters")
  25360. },
  25361. {
  25362. name: "Macro",
  25363. height: math.unit(22, "meters"),
  25364. default: true
  25365. },
  25366. ]
  25367. ))
  25368. characterMakers.push(() => makeCharacter(
  25369. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25370. {
  25371. front: {
  25372. height: math.unit(5 + 4/12, "feet"),
  25373. weight: math.unit(125, "lb"),
  25374. name: "Front",
  25375. image: {
  25376. source: "./media/characters/rory/front.svg",
  25377. extra: 1790/1681,
  25378. bottom: 66/1856
  25379. },
  25380. form: "normal",
  25381. default: true
  25382. },
  25383. back: {
  25384. height: math.unit(5 + 4/12, "feet"),
  25385. weight: math.unit(125, "lb"),
  25386. name: "Back",
  25387. image: {
  25388. source: "./media/characters/rory/back.svg",
  25389. extra: 1805/1690,
  25390. bottom: 56/1861
  25391. },
  25392. form: "normal"
  25393. },
  25394. frontDressed: {
  25395. height: math.unit(5 + 4/12, "feet"),
  25396. weight: math.unit(125, "lb"),
  25397. name: "Front (Dressed)",
  25398. image: {
  25399. source: "./media/characters/rory/front-dressed.svg",
  25400. extra: 1790/1681,
  25401. bottom: 66/1856
  25402. },
  25403. form: "normal"
  25404. },
  25405. backDressed: {
  25406. height: math.unit(5 + 4/12, "feet"),
  25407. weight: math.unit(125, "lb"),
  25408. name: "Back (Dressed)",
  25409. image: {
  25410. source: "./media/characters/rory/back-dressed.svg",
  25411. extra: 1805/1690,
  25412. bottom: 56/1861
  25413. },
  25414. form: "normal"
  25415. },
  25416. frontNsfw: {
  25417. height: math.unit(5 + 4/12, "feet"),
  25418. weight: math.unit(125, "lb"),
  25419. name: "Front (NSFW)",
  25420. image: {
  25421. source: "./media/characters/rory/front-nsfw.svg",
  25422. extra: 1790/1681,
  25423. bottom: 66/1856
  25424. },
  25425. form: "normal"
  25426. },
  25427. backNsfw: {
  25428. height: math.unit(5 + 4/12, "feet"),
  25429. weight: math.unit(125, "lb"),
  25430. name: "Back (NSFW)",
  25431. image: {
  25432. source: "./media/characters/rory/back-nsfw.svg",
  25433. extra: 1805/1690,
  25434. bottom: 56/1861
  25435. },
  25436. form: "normal"
  25437. },
  25438. dick: {
  25439. height: math.unit(0.8, "feet"),
  25440. name: "Dick",
  25441. image: {
  25442. source: "./media/characters/rory/dick.svg"
  25443. },
  25444. form: "normal"
  25445. },
  25446. thicc_front: {
  25447. height: math.unit(5 + 4/12, "feet"),
  25448. weight: math.unit(195, "lb"),
  25449. name: "Front",
  25450. image: {
  25451. source: "./media/characters/rory/thicc-front.svg",
  25452. extra: 1220/1100,
  25453. bottom: 103/1323
  25454. },
  25455. form: "thicc",
  25456. default: true
  25457. },
  25458. thicc_back: {
  25459. height: math.unit(5 + 4/12, "feet"),
  25460. weight: math.unit(195, "lb"),
  25461. name: "Back",
  25462. image: {
  25463. source: "./media/characters/rory/thicc-back.svg",
  25464. extra: 1166/1086,
  25465. bottom: 35/1201
  25466. },
  25467. form: "thicc"
  25468. },
  25469. },
  25470. [
  25471. {
  25472. name: "Micro",
  25473. height: math.unit(3, "inches"),
  25474. allForms: true
  25475. },
  25476. {
  25477. name: "Normal",
  25478. height: math.unit(5 + 4/12, "feet"),
  25479. allForms: true,
  25480. default: true
  25481. },
  25482. {
  25483. name: "Macro",
  25484. height: math.unit(90, "feet"),
  25485. allForms: true
  25486. },
  25487. {
  25488. name: "Supercharged",
  25489. height: math.unit(270, "feet"),
  25490. allForms: true
  25491. },
  25492. ],
  25493. {
  25494. "normal": {
  25495. name: "Normal",
  25496. default: true
  25497. },
  25498. "thicc": {
  25499. name: "Thicc",
  25500. },
  25501. }
  25502. ))
  25503. characterMakers.push(() => makeCharacter(
  25504. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25505. {
  25506. front: {
  25507. height: math.unit(5 + 9 / 12, "feet"),
  25508. weight: math.unit(190, "lb"),
  25509. name: "Front",
  25510. image: {
  25511. source: "./media/characters/sprisk/front.svg",
  25512. extra: 1225 / 1180,
  25513. bottom: 42.7 / 1266.4
  25514. }
  25515. },
  25516. frontNsfw: {
  25517. height: math.unit(5 + 9 / 12, "feet"),
  25518. weight: math.unit(190, "lb"),
  25519. name: "Front (NSFW)",
  25520. image: {
  25521. source: "./media/characters/sprisk/front-nsfw.svg",
  25522. extra: 1225 / 1180,
  25523. bottom: 42.7 / 1266.4
  25524. }
  25525. },
  25526. back: {
  25527. height: math.unit(5 + 9 / 12, "feet"),
  25528. weight: math.unit(190, "lb"),
  25529. name: "Back",
  25530. image: {
  25531. source: "./media/characters/sprisk/back.svg",
  25532. extra: 1247 / 1200,
  25533. bottom: 5.6 / 1253.04
  25534. }
  25535. },
  25536. },
  25537. [
  25538. {
  25539. name: "Tiny",
  25540. height: math.unit(2, "inches")
  25541. },
  25542. {
  25543. name: "Normal",
  25544. height: math.unit(5 + 9 / 12, "feet"),
  25545. default: true
  25546. },
  25547. {
  25548. name: "Mini Macro",
  25549. height: math.unit(18, "feet")
  25550. },
  25551. {
  25552. name: "Macro",
  25553. height: math.unit(100, "feet")
  25554. },
  25555. {
  25556. name: "MACRO",
  25557. height: math.unit(50, "miles")
  25558. },
  25559. {
  25560. name: "M A C R O",
  25561. height: math.unit(300, "miles")
  25562. },
  25563. ]
  25564. ))
  25565. characterMakers.push(() => makeCharacter(
  25566. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25567. {
  25568. side: {
  25569. height: math.unit(15.6, "meters"),
  25570. weight: math.unit(700000, "kg"),
  25571. name: "Side",
  25572. image: {
  25573. source: "./media/characters/bunsen/side.svg",
  25574. extra: 1644 / 358
  25575. }
  25576. },
  25577. foot: {
  25578. height: math.unit(1.611 * 1644 / 358, "meter"),
  25579. name: "Foot",
  25580. image: {
  25581. source: "./media/characters/bunsen/foot.svg"
  25582. }
  25583. },
  25584. },
  25585. [
  25586. {
  25587. name: "Small",
  25588. height: math.unit(10, "feet")
  25589. },
  25590. {
  25591. name: "Normal",
  25592. height: math.unit(15.6, "meters"),
  25593. default: true
  25594. },
  25595. ]
  25596. ))
  25597. characterMakers.push(() => makeCharacter(
  25598. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25599. {
  25600. front: {
  25601. height: math.unit(4 + 11 / 12, "feet"),
  25602. weight: math.unit(140, "lb"),
  25603. name: "Front",
  25604. image: {
  25605. source: "./media/characters/sesh/front.svg",
  25606. extra: 3420 / 3231,
  25607. bottom: 72 / 3949.5
  25608. }
  25609. },
  25610. },
  25611. [
  25612. {
  25613. name: "Normal",
  25614. height: math.unit(4 + 11 / 12, "feet")
  25615. },
  25616. {
  25617. name: "Grown",
  25618. height: math.unit(15, "feet"),
  25619. default: true
  25620. },
  25621. {
  25622. name: "Macro",
  25623. height: math.unit(1500, "feet")
  25624. },
  25625. {
  25626. name: "Megamacro",
  25627. height: math.unit(30, "miles")
  25628. },
  25629. {
  25630. name: "Continental",
  25631. height: math.unit(3000, "miles")
  25632. },
  25633. {
  25634. name: "Gravity Mass",
  25635. height: math.unit(300000, "miles")
  25636. },
  25637. {
  25638. name: "Planet Buster",
  25639. height: math.unit(30000000, "miles")
  25640. },
  25641. {
  25642. name: "Big",
  25643. height: math.unit(3000000000, "miles")
  25644. },
  25645. ]
  25646. ))
  25647. characterMakers.push(() => makeCharacter(
  25648. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25649. {
  25650. front: {
  25651. height: math.unit(9, "feet"),
  25652. weight: math.unit(350, "lb"),
  25653. name: "Front",
  25654. image: {
  25655. source: "./media/characters/pepper/front.svg",
  25656. extra: 1448 / 1312,
  25657. bottom: 9.4 / 1457.88
  25658. }
  25659. },
  25660. back: {
  25661. height: math.unit(9, "feet"),
  25662. weight: math.unit(350, "lb"),
  25663. name: "Back",
  25664. image: {
  25665. source: "./media/characters/pepper/back.svg",
  25666. extra: 1423 / 1300,
  25667. bottom: 4.6 / 1429
  25668. }
  25669. },
  25670. maw: {
  25671. height: math.unit(0.932, "feet"),
  25672. name: "Maw",
  25673. image: {
  25674. source: "./media/characters/pepper/maw.svg"
  25675. }
  25676. },
  25677. },
  25678. [
  25679. {
  25680. name: "Normal",
  25681. height: math.unit(9, "feet"),
  25682. default: true
  25683. },
  25684. ]
  25685. ))
  25686. characterMakers.push(() => makeCharacter(
  25687. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25688. {
  25689. front: {
  25690. height: math.unit(6, "feet"),
  25691. weight: math.unit(150, "lb"),
  25692. name: "Front",
  25693. image: {
  25694. source: "./media/characters/maelstrom/front.svg",
  25695. extra: 2100 / 1883,
  25696. bottom: 94 / 2196.7
  25697. }
  25698. },
  25699. },
  25700. [
  25701. {
  25702. name: "Less Kaiju",
  25703. height: math.unit(200, "feet")
  25704. },
  25705. {
  25706. name: "Kaiju",
  25707. height: math.unit(400, "feet"),
  25708. default: true
  25709. },
  25710. {
  25711. name: "Kaiju-er",
  25712. height: math.unit(600, "feet")
  25713. },
  25714. ]
  25715. ))
  25716. characterMakers.push(() => makeCharacter(
  25717. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25718. {
  25719. front: {
  25720. height: math.unit(6 + 5 / 12, "feet"),
  25721. weight: math.unit(180, "lb"),
  25722. name: "Front",
  25723. image: {
  25724. source: "./media/characters/lexir/front.svg",
  25725. extra: 180 / 172,
  25726. bottom: 12 / 192
  25727. }
  25728. },
  25729. back: {
  25730. height: math.unit(6 + 5 / 12, "feet"),
  25731. weight: math.unit(180, "lb"),
  25732. name: "Back",
  25733. image: {
  25734. source: "./media/characters/lexir/back.svg",
  25735. extra: 1273/1201,
  25736. bottom: 39/1312
  25737. }
  25738. },
  25739. },
  25740. [
  25741. {
  25742. name: "Very Smal",
  25743. height: math.unit(1, "nm")
  25744. },
  25745. {
  25746. name: "Normal",
  25747. height: math.unit(6 + 5 / 12, "feet"),
  25748. default: true
  25749. },
  25750. {
  25751. name: "Macro",
  25752. height: math.unit(1, "mile")
  25753. },
  25754. {
  25755. name: "Megamacro",
  25756. height: math.unit(50, "miles")
  25757. },
  25758. ]
  25759. ))
  25760. characterMakers.push(() => makeCharacter(
  25761. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25762. {
  25763. front: {
  25764. height: math.unit(1.5, "meters"),
  25765. weight: math.unit(100, "lb"),
  25766. name: "Front",
  25767. image: {
  25768. source: "./media/characters/maksio/front.svg",
  25769. extra: 1549 / 1531,
  25770. bottom: 123.7 / 1674.5429
  25771. }
  25772. },
  25773. back: {
  25774. height: math.unit(1.5, "meters"),
  25775. weight: math.unit(100, "lb"),
  25776. name: "Back",
  25777. image: {
  25778. source: "./media/characters/maksio/back.svg",
  25779. extra: 1541 / 1509,
  25780. bottom: 97 / 1639
  25781. }
  25782. },
  25783. hand: {
  25784. height: math.unit(0.621, "feet"),
  25785. name: "Hand",
  25786. image: {
  25787. source: "./media/characters/maksio/hand.svg"
  25788. }
  25789. },
  25790. foot: {
  25791. height: math.unit(1.611, "feet"),
  25792. name: "Foot",
  25793. image: {
  25794. source: "./media/characters/maksio/foot.svg"
  25795. }
  25796. },
  25797. },
  25798. [
  25799. {
  25800. name: "Shrunken",
  25801. height: math.unit(10, "cm")
  25802. },
  25803. {
  25804. name: "Normal",
  25805. height: math.unit(150, "cm"),
  25806. default: true
  25807. },
  25808. ]
  25809. ))
  25810. characterMakers.push(() => makeCharacter(
  25811. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25812. {
  25813. front: {
  25814. height: math.unit(100, "feet"),
  25815. name: "Front",
  25816. image: {
  25817. source: "./media/characters/erza-bear/front.svg",
  25818. extra: 2449 / 2390,
  25819. bottom: 46 / 2494
  25820. }
  25821. },
  25822. back: {
  25823. height: math.unit(100, "feet"),
  25824. name: "Back",
  25825. image: {
  25826. source: "./media/characters/erza-bear/back.svg",
  25827. extra: 2489 / 2430,
  25828. bottom: 85.4 / 2480
  25829. }
  25830. },
  25831. tail: {
  25832. height: math.unit(42, "feet"),
  25833. name: "Tail",
  25834. image: {
  25835. source: "./media/characters/erza-bear/tail.svg"
  25836. }
  25837. },
  25838. tongue: {
  25839. height: math.unit(8, "feet"),
  25840. name: "Tongue",
  25841. image: {
  25842. source: "./media/characters/erza-bear/tongue.svg"
  25843. }
  25844. },
  25845. dick: {
  25846. height: math.unit(10.5, "feet"),
  25847. name: "Dick",
  25848. image: {
  25849. source: "./media/characters/erza-bear/dick.svg"
  25850. }
  25851. },
  25852. dickVertical: {
  25853. height: math.unit(16.9, "feet"),
  25854. name: "Dick (Vertical)",
  25855. image: {
  25856. source: "./media/characters/erza-bear/dick-vertical.svg"
  25857. }
  25858. },
  25859. },
  25860. [
  25861. {
  25862. name: "Macro",
  25863. height: math.unit(100, "feet"),
  25864. default: true
  25865. },
  25866. ]
  25867. ))
  25868. characterMakers.push(() => makeCharacter(
  25869. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25870. {
  25871. front: {
  25872. height: math.unit(172, "cm"),
  25873. weight: math.unit(73, "kg"),
  25874. name: "Front",
  25875. image: {
  25876. source: "./media/characters/violet-flor/front.svg",
  25877. extra: 1474/1379,
  25878. bottom: 113/1587
  25879. }
  25880. },
  25881. back: {
  25882. height: math.unit(180, "cm"),
  25883. weight: math.unit(73, "kg"),
  25884. name: "Back",
  25885. image: {
  25886. source: "./media/characters/violet-flor/back.svg",
  25887. extra: 1660/1567,
  25888. bottom: 49/1709
  25889. }
  25890. },
  25891. },
  25892. [
  25893. {
  25894. name: "Normal",
  25895. height: math.unit(172, "cm"),
  25896. default: true
  25897. },
  25898. ]
  25899. ))
  25900. characterMakers.push(() => makeCharacter(
  25901. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25902. {
  25903. front: {
  25904. height: math.unit(6, "feet"),
  25905. weight: math.unit(220, "lb"),
  25906. name: "Front",
  25907. image: {
  25908. source: "./media/characters/lynn-rhea/front.svg",
  25909. extra: 310 / 273
  25910. }
  25911. },
  25912. back: {
  25913. height: math.unit(6, "feet"),
  25914. weight: math.unit(220, "lb"),
  25915. name: "Back",
  25916. image: {
  25917. source: "./media/characters/lynn-rhea/back.svg",
  25918. extra: 310 / 273
  25919. }
  25920. },
  25921. dicks: {
  25922. height: math.unit(0.9, "feet"),
  25923. name: "Dicks",
  25924. image: {
  25925. source: "./media/characters/lynn-rhea/dicks.svg"
  25926. }
  25927. },
  25928. slit: {
  25929. height: math.unit(0.4, "feet"),
  25930. name: "Slit",
  25931. image: {
  25932. source: "./media/characters/lynn-rhea/slit.svg"
  25933. }
  25934. },
  25935. },
  25936. [
  25937. {
  25938. name: "Micro",
  25939. height: math.unit(1, "inch")
  25940. },
  25941. {
  25942. name: "Macro",
  25943. height: math.unit(60, "feet"),
  25944. default: true
  25945. },
  25946. {
  25947. name: "Megamacro",
  25948. height: math.unit(2, "miles")
  25949. },
  25950. {
  25951. name: "Gigamacro",
  25952. height: math.unit(3, "earths")
  25953. },
  25954. {
  25955. name: "Galactic",
  25956. height: math.unit(0.8, "galaxies")
  25957. },
  25958. ]
  25959. ))
  25960. characterMakers.push(() => makeCharacter(
  25961. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25962. {
  25963. front: {
  25964. height: math.unit(1600, "feet"),
  25965. weight: math.unit(85758785169, "kg"),
  25966. name: "Front",
  25967. image: {
  25968. source: "./media/characters/valathos/front.svg",
  25969. extra: 1451 / 1339
  25970. }
  25971. },
  25972. },
  25973. [
  25974. {
  25975. name: "Macro",
  25976. height: math.unit(1600, "feet"),
  25977. default: true
  25978. },
  25979. ]
  25980. ))
  25981. characterMakers.push(() => makeCharacter(
  25982. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25983. {
  25984. front: {
  25985. height: math.unit(7 + 5 / 12, "feet"),
  25986. weight: math.unit(300, "lb"),
  25987. name: "Front",
  25988. image: {
  25989. source: "./media/characters/azula/front.svg",
  25990. extra: 3208 / 2880,
  25991. bottom: 80.2 / 3277
  25992. }
  25993. },
  25994. back: {
  25995. height: math.unit(7 + 5 / 12, "feet"),
  25996. weight: math.unit(300, "lb"),
  25997. name: "Back",
  25998. image: {
  25999. source: "./media/characters/azula/back.svg",
  26000. extra: 3169 / 2822,
  26001. bottom: 150.6 / 3321
  26002. }
  26003. },
  26004. },
  26005. [
  26006. {
  26007. name: "Normal",
  26008. height: math.unit(7 + 5 / 12, "feet"),
  26009. default: true
  26010. },
  26011. {
  26012. name: "Big",
  26013. height: math.unit(20, "feet")
  26014. },
  26015. ]
  26016. ))
  26017. characterMakers.push(() => makeCharacter(
  26018. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  26019. {
  26020. front: {
  26021. height: math.unit(5 + 1 / 12, "feet"),
  26022. weight: math.unit(110, "lb"),
  26023. name: "Front",
  26024. image: {
  26025. source: "./media/characters/rupert/front.svg",
  26026. extra: 1549 / 1495,
  26027. bottom: 54.2 / 1604.4
  26028. }
  26029. },
  26030. },
  26031. [
  26032. {
  26033. name: "Normal",
  26034. height: math.unit(5 + 1 / 12, "feet"),
  26035. default: true
  26036. },
  26037. ]
  26038. ))
  26039. characterMakers.push(() => makeCharacter(
  26040. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  26041. {
  26042. front: {
  26043. height: math.unit(8 + 4 / 12, "feet"),
  26044. weight: math.unit(350, "lb"),
  26045. name: "Front",
  26046. image: {
  26047. source: "./media/characters/sheera-castellar/front.svg",
  26048. extra: 1957 / 1894,
  26049. bottom: 26.97 / 1975.017
  26050. }
  26051. },
  26052. side: {
  26053. height: math.unit(8 + 4 / 12, "feet"),
  26054. weight: math.unit(350, "lb"),
  26055. name: "Side",
  26056. image: {
  26057. source: "./media/characters/sheera-castellar/side.svg",
  26058. extra: 1957 / 1894
  26059. }
  26060. },
  26061. back: {
  26062. height: math.unit(8 + 4 / 12, "feet"),
  26063. weight: math.unit(350, "lb"),
  26064. name: "Back",
  26065. image: {
  26066. source: "./media/characters/sheera-castellar/back.svg",
  26067. extra: 1957 / 1894
  26068. }
  26069. },
  26070. angled: {
  26071. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  26072. weight: math.unit(350, "lb"),
  26073. name: "Angled",
  26074. image: {
  26075. source: "./media/characters/sheera-castellar/angled.svg",
  26076. extra: 1807 / 1707,
  26077. bottom: 68 / 1875
  26078. }
  26079. },
  26080. genitals: {
  26081. height: math.unit(2.2, "feet"),
  26082. name: "Genitals",
  26083. image: {
  26084. source: "./media/characters/sheera-castellar/genitals.svg"
  26085. }
  26086. },
  26087. taur: {
  26088. height: math.unit(10 + 6/12, "feet"),
  26089. name: "Taur",
  26090. image: {
  26091. source: "./media/characters/sheera-castellar/taur.svg",
  26092. extra: 2017/1909,
  26093. bottom: 185/2202
  26094. }
  26095. },
  26096. },
  26097. [
  26098. {
  26099. name: "Normal",
  26100. height: math.unit(8 + 4 / 12, "feet")
  26101. },
  26102. {
  26103. name: "Macro",
  26104. height: math.unit(150, "feet"),
  26105. default: true
  26106. },
  26107. {
  26108. name: "Macro+",
  26109. height: math.unit(800, "feet")
  26110. },
  26111. ]
  26112. ))
  26113. characterMakers.push(() => makeCharacter(
  26114. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  26115. {
  26116. front: {
  26117. height: math.unit(6, "feet"),
  26118. weight: math.unit(150, "lb"),
  26119. name: "Front",
  26120. image: {
  26121. source: "./media/characters/jaipur/front.svg",
  26122. extra: 3860 / 3731,
  26123. bottom: 287 / 4140
  26124. }
  26125. },
  26126. back: {
  26127. height: math.unit(6, "feet"),
  26128. weight: math.unit(150, "lb"),
  26129. name: "Back",
  26130. image: {
  26131. source: "./media/characters/jaipur/back.svg",
  26132. extra: 1637/1561,
  26133. bottom: 154/1791
  26134. }
  26135. },
  26136. },
  26137. [
  26138. {
  26139. name: "Normal",
  26140. height: math.unit(1.85, "meters"),
  26141. default: true
  26142. },
  26143. {
  26144. name: "Macro",
  26145. height: math.unit(150, "meters")
  26146. },
  26147. {
  26148. name: "Macro+",
  26149. height: math.unit(0.5, "miles")
  26150. },
  26151. {
  26152. name: "Macro++",
  26153. height: math.unit(2.5, "miles")
  26154. },
  26155. {
  26156. name: "Macro+++",
  26157. height: math.unit(12, "miles")
  26158. },
  26159. {
  26160. name: "Macro++++",
  26161. height: math.unit(120, "miles")
  26162. },
  26163. {
  26164. name: "Macro+++++",
  26165. height: math.unit(1200, "miles")
  26166. },
  26167. ]
  26168. ))
  26169. characterMakers.push(() => makeCharacter(
  26170. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26171. {
  26172. front: {
  26173. height: math.unit(6, "feet"),
  26174. weight: math.unit(150, "lb"),
  26175. name: "Front",
  26176. image: {
  26177. source: "./media/characters/sheila-wolf/front.svg",
  26178. extra: 1931 / 1808,
  26179. bottom: 29.5 / 1960
  26180. }
  26181. },
  26182. dick: {
  26183. height: math.unit(1.464, "feet"),
  26184. name: "Dick",
  26185. image: {
  26186. source: "./media/characters/sheila-wolf/dick.svg"
  26187. }
  26188. },
  26189. muzzle: {
  26190. height: math.unit(0.513, "feet"),
  26191. name: "Muzzle",
  26192. image: {
  26193. source: "./media/characters/sheila-wolf/muzzle.svg"
  26194. }
  26195. },
  26196. },
  26197. [
  26198. {
  26199. name: "Macro",
  26200. height: math.unit(70, "feet"),
  26201. default: true
  26202. },
  26203. ]
  26204. ))
  26205. characterMakers.push(() => makeCharacter(
  26206. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26207. {
  26208. front: {
  26209. height: math.unit(32, "meters"),
  26210. weight: math.unit(300000, "kg"),
  26211. name: "Front",
  26212. image: {
  26213. source: "./media/characters/almor/front.svg",
  26214. extra: 1408 / 1322,
  26215. bottom: 94.6 / 1506.5
  26216. }
  26217. },
  26218. },
  26219. [
  26220. {
  26221. name: "Macro",
  26222. height: math.unit(32, "meters"),
  26223. default: true
  26224. },
  26225. ]
  26226. ))
  26227. characterMakers.push(() => makeCharacter(
  26228. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26229. {
  26230. front: {
  26231. height: math.unit(7, "feet"),
  26232. weight: math.unit(200, "lb"),
  26233. name: "Front",
  26234. image: {
  26235. source: "./media/characters/silver/front.svg",
  26236. extra: 472.1 / 450.5,
  26237. bottom: 26.5 / 499.424
  26238. }
  26239. },
  26240. },
  26241. [
  26242. {
  26243. name: "Normal",
  26244. height: math.unit(7, "feet"),
  26245. default: true
  26246. },
  26247. {
  26248. name: "Macro",
  26249. height: math.unit(800, "feet")
  26250. },
  26251. {
  26252. name: "Megamacro",
  26253. height: math.unit(250, "miles")
  26254. },
  26255. ]
  26256. ))
  26257. characterMakers.push(() => makeCharacter(
  26258. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26259. {
  26260. front: {
  26261. height: math.unit(6, "feet"),
  26262. weight: math.unit(150, "lb"),
  26263. name: "Front",
  26264. image: {
  26265. source: "./media/characters/pliskin/front.svg",
  26266. extra: 1469 / 1359,
  26267. bottom: 70 / 1540
  26268. }
  26269. },
  26270. },
  26271. [
  26272. {
  26273. name: "Micro",
  26274. height: math.unit(3, "inches")
  26275. },
  26276. {
  26277. name: "Normal",
  26278. height: math.unit(5 + 11 / 12, "feet"),
  26279. default: true
  26280. },
  26281. {
  26282. name: "Macro",
  26283. height: math.unit(120, "feet")
  26284. },
  26285. ]
  26286. ))
  26287. characterMakers.push(() => makeCharacter(
  26288. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26289. {
  26290. front: {
  26291. height: math.unit(6, "feet"),
  26292. weight: math.unit(150, "lb"),
  26293. name: "Front",
  26294. image: {
  26295. source: "./media/characters/sammy/front.svg",
  26296. extra: 1193 / 1089,
  26297. bottom: 30.5 / 1226
  26298. }
  26299. },
  26300. },
  26301. [
  26302. {
  26303. name: "Macro",
  26304. height: math.unit(1700, "feet"),
  26305. default: true
  26306. },
  26307. {
  26308. name: "Examacro",
  26309. height: math.unit(2.5e9, "lightyears")
  26310. },
  26311. ]
  26312. ))
  26313. characterMakers.push(() => makeCharacter(
  26314. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26315. {
  26316. front: {
  26317. height: math.unit(21, "meters"),
  26318. weight: math.unit(12, "tonnes"),
  26319. name: "Front",
  26320. image: {
  26321. source: "./media/characters/kuru/front.svg",
  26322. extra: 4301 / 3785,
  26323. bottom: 371.3 / 4691
  26324. }
  26325. },
  26326. },
  26327. [
  26328. {
  26329. name: "Macro",
  26330. height: math.unit(21, "meters"),
  26331. default: true
  26332. },
  26333. ]
  26334. ))
  26335. characterMakers.push(() => makeCharacter(
  26336. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26337. {
  26338. front: {
  26339. height: math.unit(23, "meters"),
  26340. weight: math.unit(12.2, "tonnes"),
  26341. name: "Front",
  26342. image: {
  26343. source: "./media/characters/rakka/front.svg",
  26344. extra: 4670 / 4169,
  26345. bottom: 301 / 4968.7
  26346. }
  26347. },
  26348. },
  26349. [
  26350. {
  26351. name: "Macro",
  26352. height: math.unit(23, "meters"),
  26353. default: true
  26354. },
  26355. ]
  26356. ))
  26357. characterMakers.push(() => makeCharacter(
  26358. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26359. {
  26360. front: {
  26361. height: math.unit(6, "feet"),
  26362. weight: math.unit(150, "lb"),
  26363. name: "Front",
  26364. image: {
  26365. source: "./media/characters/rhys-feline/front.svg",
  26366. extra: 2488 / 2308,
  26367. bottom: 35.67 / 2519.19
  26368. }
  26369. },
  26370. },
  26371. [
  26372. {
  26373. name: "Really Small",
  26374. height: math.unit(1, "nm")
  26375. },
  26376. {
  26377. name: "Micro",
  26378. height: math.unit(4, "inches")
  26379. },
  26380. {
  26381. name: "Normal",
  26382. height: math.unit(4 + 10 / 12, "feet"),
  26383. default: true
  26384. },
  26385. {
  26386. name: "Macro",
  26387. height: math.unit(100, "feet")
  26388. },
  26389. {
  26390. name: "Megamacto",
  26391. height: math.unit(50, "miles")
  26392. },
  26393. ]
  26394. ))
  26395. characterMakers.push(() => makeCharacter(
  26396. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26397. {
  26398. side: {
  26399. height: math.unit(30, "feet"),
  26400. weight: math.unit(35000, "kg"),
  26401. name: "Side",
  26402. image: {
  26403. source: "./media/characters/alydar/side.svg",
  26404. extra: 234 / 222,
  26405. bottom: 6.5 / 241
  26406. }
  26407. },
  26408. front: {
  26409. height: math.unit(30, "feet"),
  26410. weight: math.unit(35000, "kg"),
  26411. name: "Front",
  26412. image: {
  26413. source: "./media/characters/alydar/front.svg",
  26414. extra: 223.37 / 210.2,
  26415. bottom: 22.3 / 246.76
  26416. }
  26417. },
  26418. top: {
  26419. height: math.unit(64.54, "feet"),
  26420. weight: math.unit(35000, "kg"),
  26421. name: "Top",
  26422. image: {
  26423. source: "./media/characters/alydar/top.svg"
  26424. }
  26425. },
  26426. anthro: {
  26427. height: math.unit(30, "feet"),
  26428. weight: math.unit(9000, "kg"),
  26429. name: "Anthro",
  26430. image: {
  26431. source: "./media/characters/alydar/anthro.svg",
  26432. extra: 432 / 421,
  26433. bottom: 7.18 / 440
  26434. }
  26435. },
  26436. maw: {
  26437. height: math.unit(11.693, "feet"),
  26438. name: "Maw",
  26439. image: {
  26440. source: "./media/characters/alydar/maw.svg"
  26441. }
  26442. },
  26443. head: {
  26444. height: math.unit(11.693, "feet"),
  26445. name: "Head",
  26446. image: {
  26447. source: "./media/characters/alydar/head.svg"
  26448. }
  26449. },
  26450. headAlt: {
  26451. height: math.unit(12.861, "feet"),
  26452. name: "Head (Alt)",
  26453. image: {
  26454. source: "./media/characters/alydar/head-alt.svg"
  26455. }
  26456. },
  26457. wing: {
  26458. height: math.unit(20.712, "feet"),
  26459. name: "Wing",
  26460. image: {
  26461. source: "./media/characters/alydar/wing.svg"
  26462. }
  26463. },
  26464. wingFeather: {
  26465. height: math.unit(9.662, "feet"),
  26466. name: "Wing Feather",
  26467. image: {
  26468. source: "./media/characters/alydar/wing-feather.svg"
  26469. }
  26470. },
  26471. countourFeather: {
  26472. height: math.unit(4.154, "feet"),
  26473. name: "Contour Feather",
  26474. image: {
  26475. source: "./media/characters/alydar/contour-feather.svg"
  26476. }
  26477. },
  26478. },
  26479. [
  26480. {
  26481. name: "Diplomatic",
  26482. height: math.unit(13, "feet"),
  26483. default: true
  26484. },
  26485. {
  26486. name: "Small",
  26487. height: math.unit(30, "feet")
  26488. },
  26489. {
  26490. name: "Normal",
  26491. height: math.unit(95, "feet"),
  26492. default: true
  26493. },
  26494. {
  26495. name: "Large",
  26496. height: math.unit(285, "feet")
  26497. },
  26498. {
  26499. name: "Incomprehensible",
  26500. height: math.unit(450, "megameters")
  26501. },
  26502. ]
  26503. ))
  26504. characterMakers.push(() => makeCharacter(
  26505. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26506. {
  26507. side: {
  26508. height: math.unit(11, "feet"),
  26509. weight: math.unit(1750, "kg"),
  26510. name: "Side",
  26511. image: {
  26512. source: "./media/characters/selicia/side.svg",
  26513. extra: 440 / 396,
  26514. bottom: 24.8 / 465.979
  26515. }
  26516. },
  26517. maw: {
  26518. height: math.unit(4.665, "feet"),
  26519. name: "Maw",
  26520. image: {
  26521. source: "./media/characters/selicia/maw.svg"
  26522. }
  26523. },
  26524. },
  26525. [
  26526. {
  26527. name: "Normal",
  26528. height: math.unit(11, "feet"),
  26529. default: true
  26530. },
  26531. ]
  26532. ))
  26533. characterMakers.push(() => makeCharacter(
  26534. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26535. {
  26536. side: {
  26537. height: math.unit(2 + 6 / 12, "feet"),
  26538. weight: math.unit(30, "lb"),
  26539. name: "Side",
  26540. image: {
  26541. source: "./media/characters/layla/side.svg",
  26542. extra: 244 / 188,
  26543. bottom: 18.2 / 262.1
  26544. }
  26545. },
  26546. back: {
  26547. height: math.unit(2 + 6 / 12, "feet"),
  26548. weight: math.unit(30, "lb"),
  26549. name: "Back",
  26550. image: {
  26551. source: "./media/characters/layla/back.svg",
  26552. extra: 308 / 241.5,
  26553. bottom: 8.9 / 316.8
  26554. }
  26555. },
  26556. cumming: {
  26557. height: math.unit(2 + 6 / 12, "feet"),
  26558. weight: math.unit(30, "lb"),
  26559. name: "Cumming",
  26560. image: {
  26561. source: "./media/characters/layla/cumming.svg",
  26562. extra: 342 / 279,
  26563. bottom: 595 / 938
  26564. }
  26565. },
  26566. dickFlaccid: {
  26567. height: math.unit(2.595, "feet"),
  26568. name: "Flaccid Genitals",
  26569. image: {
  26570. source: "./media/characters/layla/dick-flaccid.svg"
  26571. }
  26572. },
  26573. dickErect: {
  26574. height: math.unit(2.359, "feet"),
  26575. name: "Erect Genitals",
  26576. image: {
  26577. source: "./media/characters/layla/dick-erect.svg"
  26578. }
  26579. },
  26580. dragon: {
  26581. height: math.unit(40, "feet"),
  26582. name: "Dragon",
  26583. image: {
  26584. source: "./media/characters/layla/dragon.svg",
  26585. extra: 610/535,
  26586. bottom: 367/977
  26587. }
  26588. },
  26589. taur: {
  26590. height: math.unit(30, "feet"),
  26591. name: "Taur",
  26592. image: {
  26593. source: "./media/characters/layla/taur.svg",
  26594. extra: 1268/1199,
  26595. bottom: 112/1380
  26596. }
  26597. },
  26598. },
  26599. [
  26600. {
  26601. name: "Micro",
  26602. height: math.unit(1, "inch")
  26603. },
  26604. {
  26605. name: "Small",
  26606. height: math.unit(1, "foot")
  26607. },
  26608. {
  26609. name: "Normal",
  26610. height: math.unit(2 + 6 / 12, "feet"),
  26611. default: true
  26612. },
  26613. {
  26614. name: "Macro",
  26615. height: math.unit(200, "feet")
  26616. },
  26617. {
  26618. name: "Megamacro",
  26619. height: math.unit(1000, "miles")
  26620. },
  26621. {
  26622. name: "Planetary",
  26623. height: math.unit(8000, "miles")
  26624. },
  26625. {
  26626. name: "True Layla",
  26627. height: math.unit(200000 * 7, "multiverses")
  26628. },
  26629. ]
  26630. ))
  26631. characterMakers.push(() => makeCharacter(
  26632. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26633. {
  26634. back: {
  26635. height: math.unit(10.5, "feet"),
  26636. weight: math.unit(800, "lb"),
  26637. name: "Back",
  26638. image: {
  26639. source: "./media/characters/knox/back.svg",
  26640. extra: 1486 / 1089,
  26641. bottom: 107 / 1601.4
  26642. }
  26643. },
  26644. side: {
  26645. height: math.unit(10.5, "feet"),
  26646. weight: math.unit(800, "lb"),
  26647. name: "Side",
  26648. image: {
  26649. source: "./media/characters/knox/side.svg",
  26650. extra: 244 / 218,
  26651. bottom: 14 / 260
  26652. }
  26653. },
  26654. },
  26655. [
  26656. {
  26657. name: "Compact",
  26658. height: math.unit(10.5, "feet"),
  26659. default: true
  26660. },
  26661. {
  26662. name: "Dynamax",
  26663. height: math.unit(210, "feet")
  26664. },
  26665. {
  26666. name: "Full Macro",
  26667. height: math.unit(850, "feet")
  26668. },
  26669. ]
  26670. ))
  26671. characterMakers.push(() => makeCharacter(
  26672. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26673. {
  26674. front: {
  26675. height: math.unit(28, "feet"),
  26676. weight: math.unit(10500, "lb"),
  26677. name: "Front",
  26678. image: {
  26679. source: "./media/characters/kayda/front.svg",
  26680. extra: 1536 / 1428,
  26681. bottom: 68.7 / 1603
  26682. }
  26683. },
  26684. back: {
  26685. height: math.unit(28, "feet"),
  26686. weight: math.unit(10500, "lb"),
  26687. name: "Back",
  26688. image: {
  26689. source: "./media/characters/kayda/back.svg",
  26690. extra: 1557 / 1464,
  26691. bottom: 39.5 / 1597.49
  26692. }
  26693. },
  26694. dick: {
  26695. height: math.unit(3.858, "feet"),
  26696. name: "Dick",
  26697. image: {
  26698. source: "./media/characters/kayda/dick.svg"
  26699. }
  26700. },
  26701. },
  26702. [
  26703. {
  26704. name: "Macro",
  26705. height: math.unit(28, "feet"),
  26706. default: true
  26707. },
  26708. ]
  26709. ))
  26710. characterMakers.push(() => makeCharacter(
  26711. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26712. {
  26713. front: {
  26714. height: math.unit(10 + 11 / 12, "feet"),
  26715. weight: math.unit(1400, "lb"),
  26716. name: "Front",
  26717. image: {
  26718. source: "./media/characters/brian/front.svg",
  26719. extra: 737 / 692,
  26720. bottom: 55.4 / 785
  26721. }
  26722. },
  26723. },
  26724. [
  26725. {
  26726. name: "Normal",
  26727. height: math.unit(10 + 11 / 12, "feet"),
  26728. default: true
  26729. },
  26730. ]
  26731. ))
  26732. characterMakers.push(() => makeCharacter(
  26733. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26734. {
  26735. front: {
  26736. height: math.unit(5 + 8 / 12, "feet"),
  26737. weight: math.unit(140, "lb"),
  26738. name: "Front",
  26739. image: {
  26740. source: "./media/characters/khemri/front.svg",
  26741. extra: 4780 / 4059,
  26742. bottom: 80.1 / 4859.25
  26743. }
  26744. },
  26745. },
  26746. [
  26747. {
  26748. name: "Micro",
  26749. height: math.unit(6, "inches")
  26750. },
  26751. {
  26752. name: "Normal",
  26753. height: math.unit(5 + 8 / 12, "feet"),
  26754. default: true
  26755. },
  26756. ]
  26757. ))
  26758. characterMakers.push(() => makeCharacter(
  26759. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26760. {
  26761. front: {
  26762. height: math.unit(13, "feet"),
  26763. weight: math.unit(1700, "lb"),
  26764. name: "Front",
  26765. image: {
  26766. source: "./media/characters/felix-braveheart/front.svg",
  26767. extra: 1222 / 1157,
  26768. bottom: 53.2 / 1280
  26769. }
  26770. },
  26771. back: {
  26772. height: math.unit(13, "feet"),
  26773. weight: math.unit(1700, "lb"),
  26774. name: "Back",
  26775. image: {
  26776. source: "./media/characters/felix-braveheart/back.svg",
  26777. extra: 1277 / 1203,
  26778. bottom: 50.2 / 1327
  26779. }
  26780. },
  26781. feral: {
  26782. height: math.unit(6, "feet"),
  26783. weight: math.unit(400, "lb"),
  26784. name: "Feral",
  26785. image: {
  26786. source: "./media/characters/felix-braveheart/feral.svg",
  26787. extra: 682 / 625,
  26788. bottom: 6.9 / 688
  26789. }
  26790. },
  26791. },
  26792. [
  26793. {
  26794. name: "Normal",
  26795. height: math.unit(13, "feet"),
  26796. default: true
  26797. },
  26798. ]
  26799. ))
  26800. characterMakers.push(() => makeCharacter(
  26801. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26802. {
  26803. side: {
  26804. height: math.unit(5 + 11 / 12, "feet"),
  26805. weight: math.unit(1400, "lb"),
  26806. name: "Side",
  26807. image: {
  26808. source: "./media/characters/shadow-blade/side.svg",
  26809. extra: 1726 / 1267,
  26810. bottom: 58.4 / 1785
  26811. }
  26812. },
  26813. },
  26814. [
  26815. {
  26816. name: "Normal",
  26817. height: math.unit(5 + 11 / 12, "feet"),
  26818. default: true
  26819. },
  26820. ]
  26821. ))
  26822. characterMakers.push(() => makeCharacter(
  26823. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26824. {
  26825. front: {
  26826. height: math.unit(1 + 6 / 12, "feet"),
  26827. weight: math.unit(25, "lb"),
  26828. name: "Front",
  26829. image: {
  26830. source: "./media/characters/karla-halldor/front.svg",
  26831. extra: 1459 / 1383,
  26832. bottom: 12 / 1472
  26833. }
  26834. },
  26835. },
  26836. [
  26837. {
  26838. name: "Normal",
  26839. height: math.unit(1 + 6 / 12, "feet"),
  26840. default: true
  26841. },
  26842. ]
  26843. ))
  26844. characterMakers.push(() => makeCharacter(
  26845. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26846. {
  26847. front: {
  26848. height: math.unit(6 + 2 / 12, "feet"),
  26849. weight: math.unit(160, "lb"),
  26850. name: "Front",
  26851. image: {
  26852. source: "./media/characters/ariam/front.svg",
  26853. extra: 1073/976,
  26854. bottom: 52/1125
  26855. }
  26856. },
  26857. back: {
  26858. height: math.unit(6 + 2/12, "feet"),
  26859. weight: math.unit(160, "lb"),
  26860. name: "Back",
  26861. image: {
  26862. source: "./media/characters/ariam/back.svg",
  26863. extra: 1103/1023,
  26864. bottom: 9/1112
  26865. }
  26866. },
  26867. dressed: {
  26868. height: math.unit(6 + 2/12, "feet"),
  26869. weight: math.unit(160, "lb"),
  26870. name: "Dressed",
  26871. image: {
  26872. source: "./media/characters/ariam/dressed.svg",
  26873. extra: 1099/1009,
  26874. bottom: 25/1124
  26875. }
  26876. },
  26877. squatting: {
  26878. height: math.unit(4.1, "feet"),
  26879. weight: math.unit(160, "lb"),
  26880. name: "Squatting",
  26881. image: {
  26882. source: "./media/characters/ariam/squatting.svg",
  26883. extra: 2617 / 2112,
  26884. bottom: 61.2 / 2681,
  26885. }
  26886. },
  26887. },
  26888. [
  26889. {
  26890. name: "Normal",
  26891. height: math.unit(6 + 2 / 12, "feet"),
  26892. default: true
  26893. },
  26894. {
  26895. name: "Normal+",
  26896. height: math.unit(4, "meters")
  26897. },
  26898. {
  26899. name: "Macro",
  26900. height: math.unit(50, "meters")
  26901. },
  26902. {
  26903. name: "Macro+",
  26904. height: math.unit(100, "meters")
  26905. },
  26906. {
  26907. name: "Megamacro",
  26908. height: math.unit(20, "km")
  26909. },
  26910. {
  26911. name: "Caretaker",
  26912. height: math.unit(444, "megameters")
  26913. },
  26914. ]
  26915. ))
  26916. characterMakers.push(() => makeCharacter(
  26917. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26918. {
  26919. front: {
  26920. height: math.unit(1.67, "meters"),
  26921. weight: math.unit(140, "lb"),
  26922. name: "Front",
  26923. image: {
  26924. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26925. extra: 438 / 410,
  26926. bottom: 0.75 / 439
  26927. }
  26928. },
  26929. },
  26930. [
  26931. {
  26932. name: "Shrunken",
  26933. height: math.unit(7.6, "cm")
  26934. },
  26935. {
  26936. name: "Human Scale",
  26937. height: math.unit(1.67, "meters")
  26938. },
  26939. {
  26940. name: "Wolxi Scale",
  26941. height: math.unit(36.7, "meters"),
  26942. default: true
  26943. },
  26944. ]
  26945. ))
  26946. characterMakers.push(() => makeCharacter(
  26947. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26948. {
  26949. front: {
  26950. height: math.unit(1.73, "meters"),
  26951. weight: math.unit(240, "lb"),
  26952. name: "Front",
  26953. image: {
  26954. source: "./media/characters/izue-two-mothers/front.svg",
  26955. extra: 469 / 437,
  26956. bottom: 1.24 / 470.6
  26957. }
  26958. },
  26959. },
  26960. [
  26961. {
  26962. name: "Shrunken",
  26963. height: math.unit(7.86, "cm")
  26964. },
  26965. {
  26966. name: "Human Scale",
  26967. height: math.unit(1.73, "meters")
  26968. },
  26969. {
  26970. name: "Wolxi Scale",
  26971. height: math.unit(38, "meters"),
  26972. default: true
  26973. },
  26974. ]
  26975. ))
  26976. characterMakers.push(() => makeCharacter(
  26977. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26978. {
  26979. front: {
  26980. height: math.unit(1.55, "meters"),
  26981. weight: math.unit(120, "lb"),
  26982. name: "Front",
  26983. image: {
  26984. source: "./media/characters/teeku-love-shack/front.svg",
  26985. extra: 387 / 362,
  26986. bottom: 1.51 / 388
  26987. }
  26988. },
  26989. },
  26990. [
  26991. {
  26992. name: "Shrunken",
  26993. height: math.unit(7, "cm")
  26994. },
  26995. {
  26996. name: "Human Scale",
  26997. height: math.unit(1.55, "meters")
  26998. },
  26999. {
  27000. name: "Wolxi Scale",
  27001. height: math.unit(34.1, "meters"),
  27002. default: true
  27003. },
  27004. ]
  27005. ))
  27006. characterMakers.push(() => makeCharacter(
  27007. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  27008. {
  27009. front: {
  27010. height: math.unit(1.83, "meters"),
  27011. weight: math.unit(135, "lb"),
  27012. name: "Front",
  27013. image: {
  27014. source: "./media/characters/dejma-the-red/front.svg",
  27015. extra: 480 / 458,
  27016. bottom: 1.8 / 482
  27017. }
  27018. },
  27019. },
  27020. [
  27021. {
  27022. name: "Shrunken",
  27023. height: math.unit(8.3, "cm")
  27024. },
  27025. {
  27026. name: "Human Scale",
  27027. height: math.unit(1.83, "meters")
  27028. },
  27029. {
  27030. name: "Wolxi Scale",
  27031. height: math.unit(40, "meters"),
  27032. default: true
  27033. },
  27034. ]
  27035. ))
  27036. characterMakers.push(() => makeCharacter(
  27037. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  27038. {
  27039. front: {
  27040. height: math.unit(1.78, "meters"),
  27041. weight: math.unit(65, "kg"),
  27042. name: "Front",
  27043. image: {
  27044. source: "./media/characters/aki/front.svg",
  27045. extra: 452 / 415
  27046. }
  27047. },
  27048. frontNsfw: {
  27049. height: math.unit(1.78, "meters"),
  27050. weight: math.unit(65, "kg"),
  27051. name: "Front (NSFW)",
  27052. image: {
  27053. source: "./media/characters/aki/front-nsfw.svg",
  27054. extra: 452 / 415
  27055. }
  27056. },
  27057. back: {
  27058. height: math.unit(1.78, "meters"),
  27059. weight: math.unit(65, "kg"),
  27060. name: "Back",
  27061. image: {
  27062. source: "./media/characters/aki/back.svg",
  27063. extra: 452 / 415
  27064. }
  27065. },
  27066. rump: {
  27067. height: math.unit(2.05, "feet"),
  27068. name: "Rump",
  27069. image: {
  27070. source: "./media/characters/aki/rump.svg"
  27071. }
  27072. },
  27073. dick: {
  27074. height: math.unit(0.95, "feet"),
  27075. name: "Dick",
  27076. image: {
  27077. source: "./media/characters/aki/dick.svg"
  27078. }
  27079. },
  27080. },
  27081. [
  27082. {
  27083. name: "Micro",
  27084. height: math.unit(15, "cm")
  27085. },
  27086. {
  27087. name: "Normal",
  27088. height: math.unit(178, "cm"),
  27089. default: true
  27090. },
  27091. {
  27092. name: "Macro",
  27093. height: math.unit(214, "m")
  27094. },
  27095. {
  27096. name: "Macro+",
  27097. height: math.unit(534, "m")
  27098. },
  27099. ]
  27100. ))
  27101. characterMakers.push(() => makeCharacter(
  27102. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  27103. {
  27104. front: {
  27105. height: math.unit(5 + 5 / 12, "feet"),
  27106. weight: math.unit(120, "lb"),
  27107. name: "Front",
  27108. image: {
  27109. source: "./media/characters/ari/front.svg",
  27110. extra: 1550/1471,
  27111. bottom: 39/1589
  27112. }
  27113. },
  27114. },
  27115. [
  27116. {
  27117. name: "Normal",
  27118. height: math.unit(5 + 5 / 12, "feet")
  27119. },
  27120. {
  27121. name: "Macro",
  27122. height: math.unit(100, "feet"),
  27123. default: true
  27124. },
  27125. {
  27126. name: "Megamacro",
  27127. height: math.unit(100, "miles")
  27128. },
  27129. {
  27130. name: "Gigamacro",
  27131. height: math.unit(80000, "miles")
  27132. },
  27133. ]
  27134. ))
  27135. characterMakers.push(() => makeCharacter(
  27136. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  27137. {
  27138. side: {
  27139. height: math.unit(9, "feet"),
  27140. weight: math.unit(400, "kg"),
  27141. name: "Side",
  27142. image: {
  27143. source: "./media/characters/bolt/side.svg",
  27144. extra: 1126 / 896,
  27145. bottom: 60 / 1187.3,
  27146. }
  27147. },
  27148. },
  27149. [
  27150. {
  27151. name: "Micro",
  27152. height: math.unit(5, "inches")
  27153. },
  27154. {
  27155. name: "Normal",
  27156. height: math.unit(9, "feet"),
  27157. default: true
  27158. },
  27159. {
  27160. name: "Macro",
  27161. height: math.unit(700, "feet")
  27162. },
  27163. {
  27164. name: "Max Size",
  27165. height: math.unit(1.52e22, "yottameters")
  27166. },
  27167. ]
  27168. ))
  27169. characterMakers.push(() => makeCharacter(
  27170. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27171. {
  27172. front: {
  27173. height: math.unit(4.3, "meters"),
  27174. weight: math.unit(3, "tons"),
  27175. name: "Front",
  27176. image: {
  27177. source: "./media/characters/draekon-sylviar/front.svg",
  27178. extra: 2072/1512,
  27179. bottom: 74/2146
  27180. }
  27181. },
  27182. back: {
  27183. height: math.unit(4.3, "meters"),
  27184. weight: math.unit(3, "tons"),
  27185. name: "Back",
  27186. image: {
  27187. source: "./media/characters/draekon-sylviar/back.svg",
  27188. extra: 1639/1483,
  27189. bottom: 41/1680
  27190. }
  27191. },
  27192. feral: {
  27193. height: math.unit(1.15, "meters"),
  27194. weight: math.unit(3, "tons"),
  27195. name: "Feral",
  27196. image: {
  27197. source: "./media/characters/draekon-sylviar/feral.svg",
  27198. extra: 1033/395,
  27199. bottom: 130/1163
  27200. }
  27201. },
  27202. maw: {
  27203. height: math.unit(1.3, "meters"),
  27204. name: "Maw",
  27205. image: {
  27206. source: "./media/characters/draekon-sylviar/maw.svg"
  27207. }
  27208. },
  27209. mawSeparated: {
  27210. height: math.unit(1.53, "meters"),
  27211. name: "Separated Maw",
  27212. image: {
  27213. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27214. }
  27215. },
  27216. tail: {
  27217. height: math.unit(1.15, "meters"),
  27218. name: "Tail",
  27219. image: {
  27220. source: "./media/characters/draekon-sylviar/tail.svg"
  27221. }
  27222. },
  27223. tailDick: {
  27224. height: math.unit(1.15, "meters"),
  27225. name: "Tail (Dick)",
  27226. image: {
  27227. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27228. }
  27229. },
  27230. tailDickSeparated: {
  27231. height: math.unit(1.19, "meters"),
  27232. name: "Tail (Separated Dick)",
  27233. image: {
  27234. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27235. }
  27236. },
  27237. slit: {
  27238. height: math.unit(1, "meters"),
  27239. name: "Slit",
  27240. image: {
  27241. source: "./media/characters/draekon-sylviar/slit.svg"
  27242. }
  27243. },
  27244. dick: {
  27245. height: math.unit(1.15, "meters"),
  27246. name: "Dick",
  27247. image: {
  27248. source: "./media/characters/draekon-sylviar/dick.svg"
  27249. }
  27250. },
  27251. dickSeparated: {
  27252. height: math.unit(1.1, "meters"),
  27253. name: "Separated Dick",
  27254. image: {
  27255. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27256. }
  27257. },
  27258. sheath: {
  27259. height: math.unit(1.15, "meters"),
  27260. name: "Sheath",
  27261. image: {
  27262. source: "./media/characters/draekon-sylviar/sheath.svg"
  27263. }
  27264. },
  27265. },
  27266. [
  27267. {
  27268. name: "Small",
  27269. height: math.unit(4.53 / 2, "meters"),
  27270. default: true
  27271. },
  27272. {
  27273. name: "Normal",
  27274. height: math.unit(4.53, "meters"),
  27275. default: true
  27276. },
  27277. {
  27278. name: "Large",
  27279. height: math.unit(4.53 * 2, "meters"),
  27280. },
  27281. ]
  27282. ))
  27283. characterMakers.push(() => makeCharacter(
  27284. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27285. {
  27286. front: {
  27287. height: math.unit(6 + 2 / 12, "feet"),
  27288. weight: math.unit(180, "lb"),
  27289. name: "Front",
  27290. image: {
  27291. source: "./media/characters/brawler/front.svg",
  27292. extra: 3301 / 3027,
  27293. bottom: 138 / 3439
  27294. }
  27295. },
  27296. },
  27297. [
  27298. {
  27299. name: "Normal",
  27300. height: math.unit(6 + 2 / 12, "feet"),
  27301. default: true
  27302. },
  27303. ]
  27304. ))
  27305. characterMakers.push(() => makeCharacter(
  27306. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27307. {
  27308. front: {
  27309. height: math.unit(11, "feet"),
  27310. weight: math.unit(1000, "lb"),
  27311. name: "Front",
  27312. image: {
  27313. source: "./media/characters/alex/front.svg",
  27314. bottom: 44.5 / 620
  27315. }
  27316. },
  27317. },
  27318. [
  27319. {
  27320. name: "Micro",
  27321. height: math.unit(5, "inches")
  27322. },
  27323. {
  27324. name: "Normal",
  27325. height: math.unit(11, "feet"),
  27326. default: true
  27327. },
  27328. {
  27329. name: "Macro",
  27330. height: math.unit(9.5e9, "feet")
  27331. },
  27332. {
  27333. name: "Max Size",
  27334. height: math.unit(1.4e283, "yottameters")
  27335. },
  27336. ]
  27337. ))
  27338. characterMakers.push(() => makeCharacter(
  27339. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27340. {
  27341. female: {
  27342. height: math.unit(29.9, "m"),
  27343. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27344. name: "Female",
  27345. image: {
  27346. source: "./media/characters/zenari/female.svg",
  27347. extra: 3281.6 / 3217,
  27348. bottom: 72.2 / 3353
  27349. }
  27350. },
  27351. male: {
  27352. height: math.unit(27.7, "m"),
  27353. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27354. name: "Male",
  27355. image: {
  27356. source: "./media/characters/zenari/male.svg",
  27357. extra: 3008 / 2991,
  27358. bottom: 54.6 / 3069
  27359. }
  27360. },
  27361. },
  27362. [
  27363. {
  27364. name: "Macro",
  27365. height: math.unit(29.7, "meters"),
  27366. default: true
  27367. },
  27368. ]
  27369. ))
  27370. characterMakers.push(() => makeCharacter(
  27371. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27372. {
  27373. female: {
  27374. height: math.unit(23.8, "m"),
  27375. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27376. name: "Female",
  27377. image: {
  27378. source: "./media/characters/mactarian/female.svg",
  27379. extra: 2662 / 2569,
  27380. bottom: 73 / 2736
  27381. }
  27382. },
  27383. male: {
  27384. height: math.unit(23.8, "m"),
  27385. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27386. name: "Male",
  27387. image: {
  27388. source: "./media/characters/mactarian/male.svg",
  27389. extra: 2673 / 2600,
  27390. bottom: 76 / 2750
  27391. }
  27392. },
  27393. },
  27394. [
  27395. {
  27396. name: "Macro",
  27397. height: math.unit(23.8, "meters"),
  27398. default: true
  27399. },
  27400. ]
  27401. ))
  27402. characterMakers.push(() => makeCharacter(
  27403. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27404. {
  27405. female: {
  27406. height: math.unit(19.3, "m"),
  27407. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27408. name: "Female",
  27409. image: {
  27410. source: "./media/characters/umok/female.svg",
  27411. extra: 2186 / 2078,
  27412. bottom: 87 / 2277
  27413. }
  27414. },
  27415. male: {
  27416. height: math.unit(19.5, "m"),
  27417. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27418. name: "Male",
  27419. image: {
  27420. source: "./media/characters/umok/male.svg",
  27421. extra: 2233 / 2140,
  27422. bottom: 24.4 / 2258
  27423. }
  27424. },
  27425. },
  27426. [
  27427. {
  27428. name: "Macro",
  27429. height: math.unit(19.3, "meters"),
  27430. default: true
  27431. },
  27432. ]
  27433. ))
  27434. characterMakers.push(() => makeCharacter(
  27435. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27436. {
  27437. female: {
  27438. height: math.unit(26.15, "m"),
  27439. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27440. name: "Female",
  27441. image: {
  27442. source: "./media/characters/joraxian/female.svg",
  27443. extra: 2912 / 2824,
  27444. bottom: 36 / 2956
  27445. }
  27446. },
  27447. male: {
  27448. height: math.unit(25.4, "m"),
  27449. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27450. name: "Male",
  27451. image: {
  27452. source: "./media/characters/joraxian/male.svg",
  27453. extra: 2877 / 2721,
  27454. bottom: 82 / 2967
  27455. }
  27456. },
  27457. },
  27458. [
  27459. {
  27460. name: "Macro",
  27461. height: math.unit(26.15, "meters"),
  27462. default: true
  27463. },
  27464. ]
  27465. ))
  27466. characterMakers.push(() => makeCharacter(
  27467. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27468. {
  27469. female: {
  27470. height: math.unit(21.6, "m"),
  27471. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27472. name: "Female",
  27473. image: {
  27474. source: "./media/characters/sthara/female.svg",
  27475. extra: 2516 / 2347,
  27476. bottom: 21.5 / 2537
  27477. }
  27478. },
  27479. male: {
  27480. height: math.unit(24, "m"),
  27481. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27482. name: "Male",
  27483. image: {
  27484. source: "./media/characters/sthara/male.svg",
  27485. extra: 2732 / 2607,
  27486. bottom: 23 / 2732
  27487. }
  27488. },
  27489. },
  27490. [
  27491. {
  27492. name: "Macro",
  27493. height: math.unit(21.6, "meters"),
  27494. default: true
  27495. },
  27496. ]
  27497. ))
  27498. characterMakers.push(() => makeCharacter(
  27499. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27500. {
  27501. front: {
  27502. height: math.unit(6 + 4 / 12, "feet"),
  27503. weight: math.unit(175, "lb"),
  27504. name: "Front",
  27505. image: {
  27506. source: "./media/characters/luka-bryzant/front.svg",
  27507. extra: 311 / 289,
  27508. bottom: 4 / 315
  27509. }
  27510. },
  27511. back: {
  27512. height: math.unit(6 + 4 / 12, "feet"),
  27513. weight: math.unit(175, "lb"),
  27514. name: "Back",
  27515. image: {
  27516. source: "./media/characters/luka-bryzant/back.svg",
  27517. extra: 311 / 289,
  27518. bottom: 3.8 / 313.7
  27519. }
  27520. },
  27521. },
  27522. [
  27523. {
  27524. name: "Micro",
  27525. height: math.unit(10, "inches")
  27526. },
  27527. {
  27528. name: "Normal",
  27529. height: math.unit(6 + 4 / 12, "feet"),
  27530. default: true
  27531. },
  27532. {
  27533. name: "Large",
  27534. height: math.unit(12, "feet")
  27535. },
  27536. ]
  27537. ))
  27538. characterMakers.push(() => makeCharacter(
  27539. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27540. {
  27541. front: {
  27542. height: math.unit(5 + 7 / 12, "feet"),
  27543. weight: math.unit(185, "lb"),
  27544. name: "Front",
  27545. image: {
  27546. source: "./media/characters/aman-aquila/front.svg",
  27547. extra: 1013 / 976,
  27548. bottom: 45.6 / 1057
  27549. }
  27550. },
  27551. side: {
  27552. height: math.unit(5 + 7 / 12, "feet"),
  27553. weight: math.unit(185, "lb"),
  27554. name: "Side",
  27555. image: {
  27556. source: "./media/characters/aman-aquila/side.svg",
  27557. extra: 1054 / 1011,
  27558. bottom: 15 / 1070
  27559. }
  27560. },
  27561. back: {
  27562. height: math.unit(5 + 7 / 12, "feet"),
  27563. weight: math.unit(185, "lb"),
  27564. name: "Back",
  27565. image: {
  27566. source: "./media/characters/aman-aquila/back.svg",
  27567. extra: 1026 / 970,
  27568. bottom: 12 / 1039
  27569. }
  27570. },
  27571. head: {
  27572. height: math.unit(1.211, "feet"),
  27573. name: "Head",
  27574. image: {
  27575. source: "./media/characters/aman-aquila/head.svg",
  27576. }
  27577. },
  27578. },
  27579. [
  27580. {
  27581. name: "Minimicro",
  27582. height: math.unit(0.057, "inches")
  27583. },
  27584. {
  27585. name: "Micro",
  27586. height: math.unit(7, "inches")
  27587. },
  27588. {
  27589. name: "Mini",
  27590. height: math.unit(3 + 7 / 12, "feet")
  27591. },
  27592. {
  27593. name: "Normal",
  27594. height: math.unit(5 + 7 / 12, "feet"),
  27595. default: true
  27596. },
  27597. {
  27598. name: "Macro",
  27599. height: math.unit(157 + 7 / 12, "feet")
  27600. },
  27601. {
  27602. name: "Megamacro",
  27603. height: math.unit(1557 + 7 / 12, "feet")
  27604. },
  27605. {
  27606. name: "Gigamacro",
  27607. height: math.unit(15557 + 7 / 12, "feet")
  27608. },
  27609. ]
  27610. ))
  27611. characterMakers.push(() => makeCharacter(
  27612. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27613. {
  27614. front: {
  27615. height: math.unit(3 + 2 / 12, "inches"),
  27616. weight: math.unit(0.3, "ounces"),
  27617. name: "Front",
  27618. image: {
  27619. source: "./media/characters/hiphae/front.svg",
  27620. extra: 1931 / 1683,
  27621. bottom: 24 / 1955
  27622. }
  27623. },
  27624. },
  27625. [
  27626. {
  27627. name: "Normal",
  27628. height: math.unit(3 + 1 / 2, "inches"),
  27629. default: true
  27630. },
  27631. ]
  27632. ))
  27633. characterMakers.push(() => makeCharacter(
  27634. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27635. {
  27636. front: {
  27637. height: math.unit(5 + 10 / 12, "feet"),
  27638. weight: math.unit(165, "lb"),
  27639. name: "Front",
  27640. image: {
  27641. source: "./media/characters/nicky/front.svg",
  27642. extra: 3144 / 2886,
  27643. bottom: 45.6 / 3192
  27644. }
  27645. },
  27646. back: {
  27647. height: math.unit(5 + 10 / 12, "feet"),
  27648. weight: math.unit(165, "lb"),
  27649. name: "Back",
  27650. image: {
  27651. source: "./media/characters/nicky/back.svg",
  27652. extra: 3055 / 2804,
  27653. bottom: 28.4 / 3087
  27654. }
  27655. },
  27656. frontclothed: {
  27657. height: math.unit(5 + 10 / 12, "feet"),
  27658. weight: math.unit(165, "lb"),
  27659. name: "Front-clothed",
  27660. image: {
  27661. source: "./media/characters/nicky/front-clothed.svg",
  27662. extra: 3184.9 / 2926.9,
  27663. bottom: 86.5 / 3239.9
  27664. }
  27665. },
  27666. foot: {
  27667. height: math.unit(1.16, "feet"),
  27668. name: "Foot",
  27669. image: {
  27670. source: "./media/characters/nicky/foot.svg"
  27671. }
  27672. },
  27673. feet: {
  27674. height: math.unit(1.34, "feet"),
  27675. name: "Feet",
  27676. image: {
  27677. source: "./media/characters/nicky/feet.svg"
  27678. }
  27679. },
  27680. maw: {
  27681. height: math.unit(0.9, "feet"),
  27682. name: "Maw",
  27683. image: {
  27684. source: "./media/characters/nicky/maw.svg"
  27685. }
  27686. },
  27687. },
  27688. [
  27689. {
  27690. name: "Normal",
  27691. height: math.unit(5 + 10 / 12, "feet"),
  27692. default: true
  27693. },
  27694. {
  27695. name: "Macro",
  27696. height: math.unit(60, "feet")
  27697. },
  27698. {
  27699. name: "Megamacro",
  27700. height: math.unit(1, "mile")
  27701. },
  27702. ]
  27703. ))
  27704. characterMakers.push(() => makeCharacter(
  27705. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27706. {
  27707. side: {
  27708. height: math.unit(10, "feet"),
  27709. weight: math.unit(600, "lb"),
  27710. name: "Side",
  27711. image: {
  27712. source: "./media/characters/blair/side.svg",
  27713. bottom: 16.6 / 475,
  27714. extra: 458 / 431
  27715. }
  27716. },
  27717. },
  27718. [
  27719. {
  27720. name: "Micro",
  27721. height: math.unit(8, "inches")
  27722. },
  27723. {
  27724. name: "Normal",
  27725. height: math.unit(10, "feet"),
  27726. default: true
  27727. },
  27728. {
  27729. name: "Macro",
  27730. height: math.unit(180, "feet")
  27731. },
  27732. ]
  27733. ))
  27734. characterMakers.push(() => makeCharacter(
  27735. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27736. {
  27737. front: {
  27738. height: math.unit(5 + 4 / 12, "feet"),
  27739. weight: math.unit(125, "lb"),
  27740. name: "Front",
  27741. image: {
  27742. source: "./media/characters/fisher/front.svg",
  27743. extra: 444 / 390,
  27744. bottom: 2 / 444.8
  27745. }
  27746. },
  27747. },
  27748. [
  27749. {
  27750. name: "Micro",
  27751. height: math.unit(4, "inches")
  27752. },
  27753. {
  27754. name: "Normal",
  27755. height: math.unit(5 + 4 / 12, "feet"),
  27756. default: true
  27757. },
  27758. {
  27759. name: "Macro",
  27760. height: math.unit(100, "feet")
  27761. },
  27762. ]
  27763. ))
  27764. characterMakers.push(() => makeCharacter(
  27765. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27766. {
  27767. front: {
  27768. height: math.unit(6.71, "feet"),
  27769. weight: math.unit(200, "lb"),
  27770. preyCapacity: math.unit(1000000, "people"),
  27771. name: "Front",
  27772. image: {
  27773. source: "./media/characters/gliss/front.svg",
  27774. extra: 2347 / 2231,
  27775. bottom: 113 / 2462
  27776. }
  27777. },
  27778. hammerspaceSize: {
  27779. height: math.unit(6.71 * 717, "feet"),
  27780. weight: math.unit(200, "lb"),
  27781. preyCapacity: math.unit(1000000, "people"),
  27782. name: "Hammerspace Size",
  27783. image: {
  27784. source: "./media/characters/gliss/front.svg",
  27785. extra: 2347 / 2231,
  27786. bottom: 113 / 2462
  27787. }
  27788. },
  27789. },
  27790. [
  27791. {
  27792. name: "Normal",
  27793. height: math.unit(6.71, "feet"),
  27794. default: true
  27795. },
  27796. ]
  27797. ))
  27798. characterMakers.push(() => makeCharacter(
  27799. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27800. {
  27801. side: {
  27802. height: math.unit(1.44, "m"),
  27803. weight: math.unit(80, "kg"),
  27804. name: "Side",
  27805. image: {
  27806. source: "./media/characters/dune-anderson/side.svg",
  27807. bottom: 49 / 1426
  27808. }
  27809. },
  27810. },
  27811. [
  27812. {
  27813. name: "Wolf-sized",
  27814. height: math.unit(1.44, "meters")
  27815. },
  27816. {
  27817. name: "Normal",
  27818. height: math.unit(5.05, "meters"),
  27819. default: true
  27820. },
  27821. {
  27822. name: "Big",
  27823. height: math.unit(14.4, "meters")
  27824. },
  27825. {
  27826. name: "Huge",
  27827. height: math.unit(144, "meters")
  27828. },
  27829. ]
  27830. ))
  27831. characterMakers.push(() => makeCharacter(
  27832. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27833. {
  27834. front: {
  27835. height: math.unit(6, "feet"),
  27836. weight: math.unit(220, "lb"),
  27837. name: "Front",
  27838. image: {
  27839. source: "./media/characters/hind/front.svg",
  27840. extra: 1912/1787,
  27841. bottom: 52/1964
  27842. }
  27843. },
  27844. back: {
  27845. height: math.unit(6, "feet"),
  27846. weight: math.unit(220, "lb"),
  27847. name: "Back",
  27848. image: {
  27849. source: "./media/characters/hind/back.svg",
  27850. extra: 1901/1794,
  27851. bottom: 26/1927
  27852. }
  27853. },
  27854. },
  27855. [
  27856. {
  27857. name: "Normal",
  27858. height: math.unit(6, "feet"),
  27859. default: true
  27860. },
  27861. ]
  27862. ))
  27863. characterMakers.push(() => makeCharacter(
  27864. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27865. {
  27866. front: {
  27867. height: math.unit(2.1, "meters"),
  27868. weight: math.unit(150, "lb"),
  27869. name: "Front",
  27870. image: {
  27871. source: "./media/characters/tharquench-sizestealer/front.svg",
  27872. extra: 1605/1470,
  27873. bottom: 36/1641
  27874. }
  27875. },
  27876. frontAlt: {
  27877. height: math.unit(2.1, "meters"),
  27878. weight: math.unit(150, "lb"),
  27879. name: "Front (Alt)",
  27880. image: {
  27881. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27882. extra: 2318 / 2063,
  27883. bottom: 93.4 / 2410
  27884. }
  27885. },
  27886. },
  27887. [
  27888. {
  27889. name: "Nano",
  27890. height: math.unit(1, "mm")
  27891. },
  27892. {
  27893. name: "Micro",
  27894. height: math.unit(1, "cm")
  27895. },
  27896. {
  27897. name: "Normal",
  27898. height: math.unit(2.1, "meters"),
  27899. default: true
  27900. },
  27901. ]
  27902. ))
  27903. characterMakers.push(() => makeCharacter(
  27904. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27905. {
  27906. front: {
  27907. height: math.unit(7 + 5 / 12, "feet"),
  27908. weight: math.unit(357, "lb"),
  27909. name: "Front",
  27910. image: {
  27911. source: "./media/characters/solex-draconov/front.svg",
  27912. extra: 1993 / 1865,
  27913. bottom: 117 / 2111
  27914. }
  27915. },
  27916. },
  27917. [
  27918. {
  27919. name: "Natural Height",
  27920. height: math.unit(7 + 5 / 12, "feet"),
  27921. default: true
  27922. },
  27923. {
  27924. name: "Macro",
  27925. height: math.unit(350, "feet")
  27926. },
  27927. {
  27928. name: "Macro+",
  27929. height: math.unit(1000, "feet")
  27930. },
  27931. {
  27932. name: "Megamacro",
  27933. height: math.unit(20, "km")
  27934. },
  27935. {
  27936. name: "Megamacro+",
  27937. height: math.unit(1000, "km")
  27938. },
  27939. {
  27940. name: "Gigamacro",
  27941. height: math.unit(2.5, "Gm")
  27942. },
  27943. {
  27944. name: "Teramacro",
  27945. height: math.unit(15, "Tm")
  27946. },
  27947. {
  27948. name: "Galactic",
  27949. height: math.unit(30, "Zm")
  27950. },
  27951. {
  27952. name: "Universal",
  27953. height: math.unit(21000, "Ym")
  27954. },
  27955. {
  27956. name: "Omniversal",
  27957. height: math.unit(9.861e50, "Ym")
  27958. },
  27959. {
  27960. name: "Existential",
  27961. height: math.unit(1e300, "meters")
  27962. },
  27963. ]
  27964. ))
  27965. characterMakers.push(() => makeCharacter(
  27966. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27967. {
  27968. side: {
  27969. height: math.unit(25, "feet"),
  27970. weight: math.unit(90000, "lb"),
  27971. name: "Side",
  27972. image: {
  27973. source: "./media/characters/mandarax/side.svg",
  27974. extra: 614 / 332,
  27975. bottom: 55 / 630
  27976. }
  27977. },
  27978. lounging: {
  27979. height: math.unit(15.4, "feet"),
  27980. weight: math.unit(90000, "lb"),
  27981. name: "Lounging",
  27982. image: {
  27983. source: "./media/characters/mandarax/lounging.svg",
  27984. extra: 817/609,
  27985. bottom: 685/1502
  27986. }
  27987. },
  27988. head: {
  27989. height: math.unit(11.4, "feet"),
  27990. name: "Head",
  27991. image: {
  27992. source: "./media/characters/mandarax/head.svg"
  27993. }
  27994. },
  27995. belly: {
  27996. height: math.unit(33, "feet"),
  27997. name: "Belly",
  27998. preyCapacity: math.unit(500, "people"),
  27999. image: {
  28000. source: "./media/characters/mandarax/belly.svg"
  28001. }
  28002. },
  28003. dick: {
  28004. height: math.unit(8.46, "feet"),
  28005. name: "Dick",
  28006. image: {
  28007. source: "./media/characters/mandarax/dick.svg"
  28008. }
  28009. },
  28010. top: {
  28011. height: math.unit(28, "meters"),
  28012. name: "Top",
  28013. image: {
  28014. source: "./media/characters/mandarax/top.svg"
  28015. }
  28016. },
  28017. },
  28018. [
  28019. {
  28020. name: "Normal",
  28021. height: math.unit(25, "feet"),
  28022. default: true
  28023. },
  28024. ]
  28025. ))
  28026. characterMakers.push(() => makeCharacter(
  28027. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  28028. {
  28029. front: {
  28030. height: math.unit(5, "feet"),
  28031. weight: math.unit(90, "lb"),
  28032. name: "Front",
  28033. image: {
  28034. source: "./media/characters/pixil/front.svg",
  28035. extra: 2000 / 1618,
  28036. bottom: 12.3 / 2011
  28037. }
  28038. },
  28039. },
  28040. [
  28041. {
  28042. name: "Normal",
  28043. height: math.unit(5, "feet"),
  28044. default: true
  28045. },
  28046. {
  28047. name: "Megamacro",
  28048. height: math.unit(10, "miles"),
  28049. },
  28050. ]
  28051. ))
  28052. characterMakers.push(() => makeCharacter(
  28053. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  28054. {
  28055. front: {
  28056. height: math.unit(7 + 2 / 12, "feet"),
  28057. weight: math.unit(200, "lb"),
  28058. name: "Front",
  28059. image: {
  28060. source: "./media/characters/angel/front.svg",
  28061. extra: 1946/1840,
  28062. bottom: 30/1976
  28063. }
  28064. },
  28065. },
  28066. [
  28067. {
  28068. name: "Normal",
  28069. height: math.unit(7 + 2 / 12, "feet"),
  28070. default: true
  28071. },
  28072. {
  28073. name: "Macro",
  28074. height: math.unit(1000, "feet")
  28075. },
  28076. {
  28077. name: "Megamacro",
  28078. height: math.unit(2, "miles")
  28079. },
  28080. {
  28081. name: "Gigamacro",
  28082. height: math.unit(20, "earths")
  28083. },
  28084. ]
  28085. ))
  28086. characterMakers.push(() => makeCharacter(
  28087. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  28088. {
  28089. front: {
  28090. height: math.unit(5, "feet"),
  28091. weight: math.unit(180, "lb"),
  28092. name: "Front",
  28093. image: {
  28094. source: "./media/characters/mekana/front.svg",
  28095. extra: 1671 / 1605,
  28096. bottom: 3.5 / 1691
  28097. }
  28098. },
  28099. side: {
  28100. height: math.unit(5, "feet"),
  28101. weight: math.unit(180, "lb"),
  28102. name: "Side",
  28103. image: {
  28104. source: "./media/characters/mekana/side.svg",
  28105. extra: 1671 / 1605,
  28106. bottom: 3.5 / 1691
  28107. }
  28108. },
  28109. back: {
  28110. height: math.unit(5, "feet"),
  28111. weight: math.unit(180, "lb"),
  28112. name: "Back",
  28113. image: {
  28114. source: "./media/characters/mekana/back.svg",
  28115. extra: 1671 / 1605,
  28116. bottom: 3.5 / 1691
  28117. }
  28118. },
  28119. },
  28120. [
  28121. {
  28122. name: "Normal",
  28123. height: math.unit(5, "feet"),
  28124. default: true
  28125. },
  28126. ]
  28127. ))
  28128. characterMakers.push(() => makeCharacter(
  28129. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  28130. {
  28131. front: {
  28132. height: math.unit(4 + 6 / 12, "feet"),
  28133. weight: math.unit(80, "lb"),
  28134. name: "Front",
  28135. image: {
  28136. source: "./media/characters/pixie/front.svg",
  28137. extra: 1924 / 1825,
  28138. bottom: 22.4 / 1946
  28139. }
  28140. },
  28141. },
  28142. [
  28143. {
  28144. name: "Normal",
  28145. height: math.unit(4 + 6 / 12, "feet"),
  28146. default: true
  28147. },
  28148. {
  28149. name: "Macro",
  28150. height: math.unit(40, "feet")
  28151. },
  28152. ]
  28153. ))
  28154. characterMakers.push(() => makeCharacter(
  28155. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  28156. {
  28157. front: {
  28158. height: math.unit(2.1, "meters"),
  28159. weight: math.unit(200, "lb"),
  28160. name: "Front",
  28161. image: {
  28162. source: "./media/characters/the-lascivious/front.svg",
  28163. extra: 1 / 0.893,
  28164. bottom: 3.5 / 573.7
  28165. }
  28166. },
  28167. },
  28168. [
  28169. {
  28170. name: "Human Scale",
  28171. height: math.unit(2.1, "meters")
  28172. },
  28173. {
  28174. name: "Wolxi Scale",
  28175. height: math.unit(46.2, "m"),
  28176. default: true
  28177. },
  28178. {
  28179. name: "Boinker of Buildings",
  28180. height: math.unit(10, "km")
  28181. },
  28182. {
  28183. name: "Shagger of Skyscrapers",
  28184. height: math.unit(40, "km")
  28185. },
  28186. {
  28187. name: "Banger of Boroughs",
  28188. height: math.unit(4000, "km")
  28189. },
  28190. {
  28191. name: "Screwer of States",
  28192. height: math.unit(100000, "km")
  28193. },
  28194. {
  28195. name: "Pounder of Planets",
  28196. height: math.unit(2000000, "km")
  28197. },
  28198. ]
  28199. ))
  28200. characterMakers.push(() => makeCharacter(
  28201. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28202. {
  28203. front: {
  28204. height: math.unit(6, "feet"),
  28205. weight: math.unit(150, "lb"),
  28206. name: "Front",
  28207. image: {
  28208. source: "./media/characters/aj/front.svg",
  28209. extra: 2039 / 1562,
  28210. bottom: 40 / 2079
  28211. }
  28212. },
  28213. },
  28214. [
  28215. {
  28216. name: "Normal",
  28217. height: math.unit(11 + 6 / 12, "feet"),
  28218. default: true
  28219. },
  28220. {
  28221. name: "Megamacro",
  28222. height: math.unit(60, "megameters")
  28223. },
  28224. ]
  28225. ))
  28226. characterMakers.push(() => makeCharacter(
  28227. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28228. {
  28229. side: {
  28230. height: math.unit(31 + 8 / 12, "feet"),
  28231. weight: math.unit(75000, "kg"),
  28232. name: "Side",
  28233. image: {
  28234. source: "./media/characters/koros/side.svg",
  28235. extra: 1442 / 1297,
  28236. bottom: 122.7 / 1562
  28237. }
  28238. },
  28239. dicksKingsCrown: {
  28240. height: math.unit(6, "feet"),
  28241. name: "Dicks (King's Crown)",
  28242. image: {
  28243. source: "./media/characters/koros/dicks-kings-crown.svg"
  28244. }
  28245. },
  28246. dicksTailSet: {
  28247. height: math.unit(3, "feet"),
  28248. name: "Dicks (Tail Set)",
  28249. image: {
  28250. source: "./media/characters/koros/dicks-tail-set.svg"
  28251. }
  28252. },
  28253. dickCumming: {
  28254. height: math.unit(7.98, "feet"),
  28255. name: "Dick (Cumming)",
  28256. image: {
  28257. source: "./media/characters/koros/dick-cumming.svg"
  28258. }
  28259. },
  28260. dicksBack: {
  28261. height: math.unit(5.9, "feet"),
  28262. name: "Dicks (Back)",
  28263. image: {
  28264. source: "./media/characters/koros/dicks-back.svg"
  28265. }
  28266. },
  28267. dicksFront: {
  28268. height: math.unit(3.72, "feet"),
  28269. name: "Dicks (Front)",
  28270. image: {
  28271. source: "./media/characters/koros/dicks-front.svg"
  28272. }
  28273. },
  28274. dicksPeeking: {
  28275. height: math.unit(3.0, "feet"),
  28276. name: "Dicks (Peeking)",
  28277. image: {
  28278. source: "./media/characters/koros/dicks-peeking.svg"
  28279. }
  28280. },
  28281. eye: {
  28282. height: math.unit(1.7, "feet"),
  28283. name: "Eye",
  28284. image: {
  28285. source: "./media/characters/koros/eye.svg"
  28286. }
  28287. },
  28288. headFront: {
  28289. height: math.unit(11.69, "feet"),
  28290. name: "Head (Front)",
  28291. image: {
  28292. source: "./media/characters/koros/head-front.svg"
  28293. }
  28294. },
  28295. headSide: {
  28296. height: math.unit(14, "feet"),
  28297. name: "Head (Side)",
  28298. image: {
  28299. source: "./media/characters/koros/head-side.svg"
  28300. }
  28301. },
  28302. leg: {
  28303. height: math.unit(17, "feet"),
  28304. name: "Leg",
  28305. image: {
  28306. source: "./media/characters/koros/leg.svg"
  28307. }
  28308. },
  28309. mawSide: {
  28310. height: math.unit(12.8, "feet"),
  28311. name: "Maw (Side)",
  28312. image: {
  28313. source: "./media/characters/koros/maw-side.svg"
  28314. }
  28315. },
  28316. mawSpitting: {
  28317. height: math.unit(17, "feet"),
  28318. name: "Maw (Spitting)",
  28319. image: {
  28320. source: "./media/characters/koros/maw-spitting.svg"
  28321. }
  28322. },
  28323. slit: {
  28324. height: math.unit(2.8, "feet"),
  28325. name: "Slit",
  28326. image: {
  28327. source: "./media/characters/koros/slit.svg"
  28328. }
  28329. },
  28330. stomach: {
  28331. height: math.unit(6.8, "feet"),
  28332. preyCapacity: math.unit(20, "people"),
  28333. name: "Stomach",
  28334. image: {
  28335. source: "./media/characters/koros/stomach.svg"
  28336. }
  28337. },
  28338. wingspanBottom: {
  28339. height: math.unit(114, "feet"),
  28340. name: "Wingspan (Bottom)",
  28341. image: {
  28342. source: "./media/characters/koros/wingspan-bottom.svg"
  28343. }
  28344. },
  28345. wingspanTop: {
  28346. height: math.unit(104, "feet"),
  28347. name: "Wingspan (Top)",
  28348. image: {
  28349. source: "./media/characters/koros/wingspan-top.svg"
  28350. }
  28351. },
  28352. },
  28353. [
  28354. {
  28355. name: "Normal",
  28356. height: math.unit(31 + 8 / 12, "feet"),
  28357. default: true
  28358. },
  28359. ]
  28360. ))
  28361. characterMakers.push(() => makeCharacter(
  28362. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28363. {
  28364. front: {
  28365. height: math.unit(18 + 5 / 12, "feet"),
  28366. weight: math.unit(3750, "kg"),
  28367. name: "Front",
  28368. image: {
  28369. source: "./media/characters/vexx/front.svg",
  28370. extra: 426 / 396,
  28371. bottom: 31.5 / 458
  28372. }
  28373. },
  28374. maw: {
  28375. height: math.unit(6, "feet"),
  28376. name: "Maw",
  28377. image: {
  28378. source: "./media/characters/vexx/maw.svg"
  28379. }
  28380. },
  28381. },
  28382. [
  28383. {
  28384. name: "Normal",
  28385. height: math.unit(18 + 5 / 12, "feet"),
  28386. default: true
  28387. },
  28388. ]
  28389. ))
  28390. characterMakers.push(() => makeCharacter(
  28391. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28392. {
  28393. front: {
  28394. height: math.unit(17 + 6 / 12, "feet"),
  28395. weight: math.unit(150, "lb"),
  28396. name: "Front",
  28397. image: {
  28398. source: "./media/characters/baadra/front.svg",
  28399. extra: 1694/1553,
  28400. bottom: 179/1873
  28401. }
  28402. },
  28403. frontAlt: {
  28404. height: math.unit(17 + 6 / 12, "feet"),
  28405. weight: math.unit(150, "lb"),
  28406. name: "Front (Alt)",
  28407. image: {
  28408. source: "./media/characters/baadra/front-alt.svg",
  28409. extra: 3137 / 2890,
  28410. bottom: 168.4 / 3305
  28411. }
  28412. },
  28413. back: {
  28414. height: math.unit(17 + 6 / 12, "feet"),
  28415. weight: math.unit(150, "lb"),
  28416. name: "Back",
  28417. image: {
  28418. source: "./media/characters/baadra/back.svg",
  28419. extra: 3142 / 2890,
  28420. bottom: 220 / 3371
  28421. }
  28422. },
  28423. head: {
  28424. height: math.unit(5.45, "feet"),
  28425. name: "Head",
  28426. image: {
  28427. source: "./media/characters/baadra/head.svg"
  28428. }
  28429. },
  28430. headAngry: {
  28431. height: math.unit(4.95, "feet"),
  28432. name: "Head (Angry)",
  28433. image: {
  28434. source: "./media/characters/baadra/head-angry.svg"
  28435. }
  28436. },
  28437. headOpen: {
  28438. height: math.unit(6, "feet"),
  28439. name: "Head (Open)",
  28440. image: {
  28441. source: "./media/characters/baadra/head-open.svg"
  28442. }
  28443. },
  28444. },
  28445. [
  28446. {
  28447. name: "Normal",
  28448. height: math.unit(17 + 6 / 12, "feet"),
  28449. default: true
  28450. },
  28451. ]
  28452. ))
  28453. characterMakers.push(() => makeCharacter(
  28454. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28455. {
  28456. front: {
  28457. height: math.unit(7 + 3 / 12, "feet"),
  28458. weight: math.unit(180, "lb"),
  28459. name: "Front",
  28460. image: {
  28461. source: "./media/characters/juri/front.svg",
  28462. extra: 1401 / 1237,
  28463. bottom: 18.5 / 1418
  28464. }
  28465. },
  28466. side: {
  28467. height: math.unit(7 + 3 / 12, "feet"),
  28468. weight: math.unit(180, "lb"),
  28469. name: "Side",
  28470. image: {
  28471. source: "./media/characters/juri/side.svg",
  28472. extra: 1424 / 1242,
  28473. bottom: 18.5 / 1447
  28474. }
  28475. },
  28476. sitting: {
  28477. height: math.unit(6, "feet"),
  28478. weight: math.unit(180, "lb"),
  28479. name: "Sitting",
  28480. image: {
  28481. source: "./media/characters/juri/sitting.svg",
  28482. extra: 1270 / 1143,
  28483. bottom: 100 / 1343
  28484. }
  28485. },
  28486. back: {
  28487. height: math.unit(7 + 3 / 12, "feet"),
  28488. weight: math.unit(180, "lb"),
  28489. name: "Back",
  28490. image: {
  28491. source: "./media/characters/juri/back.svg",
  28492. extra: 1377 / 1240,
  28493. bottom: 23.7 / 1405
  28494. }
  28495. },
  28496. maw: {
  28497. height: math.unit(2.8, "feet"),
  28498. name: "Maw",
  28499. image: {
  28500. source: "./media/characters/juri/maw.svg"
  28501. }
  28502. },
  28503. stomach: {
  28504. height: math.unit(0.89, "feet"),
  28505. preyCapacity: math.unit(4, "liters"),
  28506. name: "Stomach",
  28507. image: {
  28508. source: "./media/characters/juri/stomach.svg"
  28509. }
  28510. },
  28511. },
  28512. [
  28513. {
  28514. name: "Normal",
  28515. height: math.unit(7 + 3 / 12, "feet"),
  28516. default: true
  28517. },
  28518. ]
  28519. ))
  28520. characterMakers.push(() => makeCharacter(
  28521. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28522. {
  28523. fox: {
  28524. height: math.unit(5 + 6 / 12, "feet"),
  28525. weight: math.unit(140, "lb"),
  28526. name: "Fox",
  28527. image: {
  28528. source: "./media/characters/maxene-sita/fox.svg",
  28529. extra: 146 / 138,
  28530. bottom: 2.1 / 148.19
  28531. }
  28532. },
  28533. foxLaying: {
  28534. height: math.unit(1.70, "feet"),
  28535. weight: math.unit(140, "lb"),
  28536. name: "Fox (Laying)",
  28537. image: {
  28538. source: "./media/characters/maxene-sita/fox-laying.svg",
  28539. extra: 910 / 572,
  28540. bottom: 71 / 981
  28541. }
  28542. },
  28543. kitsune: {
  28544. height: math.unit(10, "feet"),
  28545. weight: math.unit(800, "lb"),
  28546. name: "Kitsune",
  28547. image: {
  28548. source: "./media/characters/maxene-sita/kitsune.svg",
  28549. extra: 185 / 176,
  28550. bottom: 4.7 / 189.9
  28551. }
  28552. },
  28553. hellhound: {
  28554. height: math.unit(10, "feet"),
  28555. weight: math.unit(700, "lb"),
  28556. name: "Hellhound",
  28557. image: {
  28558. source: "./media/characters/maxene-sita/hellhound.svg",
  28559. extra: 1600 / 1545,
  28560. bottom: 81 / 1681
  28561. }
  28562. },
  28563. },
  28564. [
  28565. {
  28566. name: "Normal",
  28567. height: math.unit(5 + 6 / 12, "feet"),
  28568. default: true
  28569. },
  28570. ]
  28571. ))
  28572. characterMakers.push(() => makeCharacter(
  28573. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28574. {
  28575. front: {
  28576. height: math.unit(3 + 4 / 12, "feet"),
  28577. weight: math.unit(70, "lb"),
  28578. name: "Front",
  28579. image: {
  28580. source: "./media/characters/maia/front.svg",
  28581. extra: 227 / 219.5,
  28582. bottom: 40 / 267
  28583. }
  28584. },
  28585. back: {
  28586. height: math.unit(3 + 4 / 12, "feet"),
  28587. weight: math.unit(70, "lb"),
  28588. name: "Back",
  28589. image: {
  28590. source: "./media/characters/maia/back.svg",
  28591. extra: 237 / 225
  28592. }
  28593. },
  28594. },
  28595. [
  28596. {
  28597. name: "Normal",
  28598. height: math.unit(3 + 4 / 12, "feet"),
  28599. default: true
  28600. },
  28601. ]
  28602. ))
  28603. characterMakers.push(() => makeCharacter(
  28604. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28605. {
  28606. front: {
  28607. height: math.unit(5 + 10 / 12, "feet"),
  28608. weight: math.unit(197, "lb"),
  28609. name: "Front",
  28610. image: {
  28611. source: "./media/characters/jabaro/front.svg",
  28612. extra: 225 / 216,
  28613. bottom: 5.06 / 230
  28614. }
  28615. },
  28616. back: {
  28617. height: math.unit(5 + 10 / 12, "feet"),
  28618. weight: math.unit(197, "lb"),
  28619. name: "Back",
  28620. image: {
  28621. source: "./media/characters/jabaro/back.svg",
  28622. extra: 225 / 219,
  28623. bottom: 1.9 / 227
  28624. }
  28625. },
  28626. },
  28627. [
  28628. {
  28629. name: "Normal",
  28630. height: math.unit(5 + 10 / 12, "feet"),
  28631. default: true
  28632. },
  28633. ]
  28634. ))
  28635. characterMakers.push(() => makeCharacter(
  28636. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28637. {
  28638. front: {
  28639. height: math.unit(5 + 8 / 12, "feet"),
  28640. weight: math.unit(139, "lb"),
  28641. name: "Front",
  28642. image: {
  28643. source: "./media/characters/risa/front.svg",
  28644. extra: 270 / 260,
  28645. bottom: 11.2 / 282
  28646. }
  28647. },
  28648. back: {
  28649. height: math.unit(5 + 8 / 12, "feet"),
  28650. weight: math.unit(139, "lb"),
  28651. name: "Back",
  28652. image: {
  28653. source: "./media/characters/risa/back.svg",
  28654. extra: 264 / 255,
  28655. bottom: 4 / 268
  28656. }
  28657. },
  28658. },
  28659. [
  28660. {
  28661. name: "Normal",
  28662. height: math.unit(5 + 8 / 12, "feet"),
  28663. default: true
  28664. },
  28665. ]
  28666. ))
  28667. characterMakers.push(() => makeCharacter(
  28668. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28669. {
  28670. front: {
  28671. height: math.unit(2 + 11 / 12, "feet"),
  28672. weight: math.unit(30, "lb"),
  28673. name: "Front",
  28674. image: {
  28675. source: "./media/characters/weatley/front.svg",
  28676. bottom: 10.7 / 414,
  28677. extra: 403.5 / 362
  28678. }
  28679. },
  28680. back: {
  28681. height: math.unit(2 + 11 / 12, "feet"),
  28682. weight: math.unit(30, "lb"),
  28683. name: "Back",
  28684. image: {
  28685. source: "./media/characters/weatley/back.svg",
  28686. bottom: 10.7 / 414,
  28687. extra: 403.5 / 362
  28688. }
  28689. },
  28690. },
  28691. [
  28692. {
  28693. name: "Normal",
  28694. height: math.unit(2 + 11 / 12, "feet"),
  28695. default: true
  28696. },
  28697. ]
  28698. ))
  28699. characterMakers.push(() => makeCharacter(
  28700. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28701. {
  28702. front: {
  28703. height: math.unit(5 + 2 / 12, "feet"),
  28704. weight: math.unit(50, "kg"),
  28705. name: "Front",
  28706. image: {
  28707. source: "./media/characters/mercury-crescent/front.svg",
  28708. extra: 1088 / 1033,
  28709. bottom: 18.9 / 1109
  28710. }
  28711. },
  28712. },
  28713. [
  28714. {
  28715. name: "Normal",
  28716. height: math.unit(5 + 2 / 12, "feet"),
  28717. default: true
  28718. },
  28719. ]
  28720. ))
  28721. characterMakers.push(() => makeCharacter(
  28722. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28723. {
  28724. front: {
  28725. height: math.unit(2, "feet"),
  28726. weight: math.unit(15, "kg"),
  28727. name: "Front",
  28728. image: {
  28729. source: "./media/characters/diamond-jones/front.svg",
  28730. extra: 727/723,
  28731. bottom: 46/773
  28732. }
  28733. },
  28734. },
  28735. [
  28736. {
  28737. name: "Normal",
  28738. height: math.unit(2, "feet"),
  28739. default: true
  28740. },
  28741. ]
  28742. ))
  28743. characterMakers.push(() => makeCharacter(
  28744. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28745. {
  28746. front: {
  28747. height: math.unit(3, "feet"),
  28748. weight: math.unit(30, "kg"),
  28749. name: "Front",
  28750. image: {
  28751. source: "./media/characters/sweet-bit/front.svg",
  28752. extra: 675 / 567,
  28753. bottom: 27.7 / 703
  28754. }
  28755. },
  28756. },
  28757. [
  28758. {
  28759. name: "Normal",
  28760. height: math.unit(3, "feet"),
  28761. default: true
  28762. },
  28763. ]
  28764. ))
  28765. characterMakers.push(() => makeCharacter(
  28766. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28767. {
  28768. side: {
  28769. height: math.unit(9.178, "feet"),
  28770. weight: math.unit(500, "lb"),
  28771. name: "Side",
  28772. image: {
  28773. source: "./media/characters/umbrazen/side.svg",
  28774. extra: 1730 / 1473,
  28775. bottom: 34.6 / 1765
  28776. }
  28777. },
  28778. },
  28779. [
  28780. {
  28781. name: "Normal",
  28782. height: math.unit(9.178, "feet"),
  28783. default: true
  28784. },
  28785. ]
  28786. ))
  28787. characterMakers.push(() => makeCharacter(
  28788. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28789. {
  28790. front: {
  28791. height: math.unit(10, "feet"),
  28792. weight: math.unit(750, "lb"),
  28793. name: "Front",
  28794. image: {
  28795. source: "./media/characters/arlist/front.svg",
  28796. extra: 961 / 778,
  28797. bottom: 6.2 / 986
  28798. }
  28799. },
  28800. },
  28801. [
  28802. {
  28803. name: "Normal",
  28804. height: math.unit(10, "feet"),
  28805. default: true
  28806. },
  28807. ]
  28808. ))
  28809. characterMakers.push(() => makeCharacter(
  28810. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28811. {
  28812. front: {
  28813. height: math.unit(5 + 1 / 12, "feet"),
  28814. weight: math.unit(110, "lb"),
  28815. name: "Front",
  28816. image: {
  28817. source: "./media/characters/aradel/front.svg",
  28818. extra: 324 / 303,
  28819. bottom: 3.6 / 329.4
  28820. }
  28821. },
  28822. },
  28823. [
  28824. {
  28825. name: "Normal",
  28826. height: math.unit(5 + 1 / 12, "feet"),
  28827. default: true
  28828. },
  28829. ]
  28830. ))
  28831. characterMakers.push(() => makeCharacter(
  28832. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28833. {
  28834. dressed: {
  28835. height: math.unit(3 + 8 / 12, "feet"),
  28836. weight: math.unit(50, "lb"),
  28837. name: "Dressed",
  28838. image: {
  28839. source: "./media/characters/serryn/dressed.svg",
  28840. extra: 1792 / 1656,
  28841. bottom: 43.5 / 1840
  28842. }
  28843. },
  28844. nude: {
  28845. height: math.unit(3 + 8 / 12, "feet"),
  28846. weight: math.unit(50, "lb"),
  28847. name: "Nude",
  28848. image: {
  28849. source: "./media/characters/serryn/nude.svg",
  28850. extra: 1792 / 1656,
  28851. bottom: 43.5 / 1840
  28852. }
  28853. },
  28854. },
  28855. [
  28856. {
  28857. name: "Normal",
  28858. height: math.unit(3 + 8 / 12, "feet"),
  28859. default: true
  28860. },
  28861. ]
  28862. ))
  28863. characterMakers.push(() => makeCharacter(
  28864. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28865. {
  28866. front: {
  28867. height: math.unit(7 + 10 / 12, "feet"),
  28868. weight: math.unit(255, "lb"),
  28869. name: "Front",
  28870. image: {
  28871. source: "./media/characters/xavier-thyme/front.svg",
  28872. extra: 3733 / 3642,
  28873. bottom: 131 / 3869
  28874. }
  28875. },
  28876. frontRaven: {
  28877. height: math.unit(7 + 10 / 12, "feet"),
  28878. weight: math.unit(255, "lb"),
  28879. name: "Front (Raven)",
  28880. image: {
  28881. source: "./media/characters/xavier-thyme/front-raven.svg",
  28882. extra: 4385 / 3642,
  28883. bottom: 131 / 4517
  28884. }
  28885. },
  28886. },
  28887. [
  28888. {
  28889. name: "Normal",
  28890. height: math.unit(7 + 10 / 12, "feet"),
  28891. default: true
  28892. },
  28893. ]
  28894. ))
  28895. characterMakers.push(() => makeCharacter(
  28896. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28897. {
  28898. front: {
  28899. height: math.unit(1.6, "m"),
  28900. weight: math.unit(50, "kg"),
  28901. name: "Front",
  28902. image: {
  28903. source: "./media/characters/kiki/front.svg",
  28904. extra: 4682 / 3610,
  28905. bottom: 115 / 4777
  28906. }
  28907. },
  28908. },
  28909. [
  28910. {
  28911. name: "Normal",
  28912. height: math.unit(1.6, "meters"),
  28913. default: true
  28914. },
  28915. ]
  28916. ))
  28917. characterMakers.push(() => makeCharacter(
  28918. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28919. {
  28920. front: {
  28921. height: math.unit(50, "m"),
  28922. weight: math.unit(500, "tonnes"),
  28923. name: "Front",
  28924. image: {
  28925. source: "./media/characters/ryoko/front.svg",
  28926. extra: 4632 / 3926,
  28927. bottom: 193 / 4823
  28928. }
  28929. },
  28930. },
  28931. [
  28932. {
  28933. name: "Normal",
  28934. height: math.unit(50, "meters"),
  28935. default: true
  28936. },
  28937. ]
  28938. ))
  28939. characterMakers.push(() => makeCharacter(
  28940. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28941. {
  28942. front: {
  28943. height: math.unit(30, "m"),
  28944. weight: math.unit(22, "tonnes"),
  28945. name: "Front",
  28946. image: {
  28947. source: "./media/characters/elio/front.svg",
  28948. extra: 4582 / 3720,
  28949. bottom: 236 / 4828
  28950. }
  28951. },
  28952. },
  28953. [
  28954. {
  28955. name: "Normal",
  28956. height: math.unit(30, "meters"),
  28957. default: true
  28958. },
  28959. ]
  28960. ))
  28961. characterMakers.push(() => makeCharacter(
  28962. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28963. {
  28964. front: {
  28965. height: math.unit(6 + 3 / 12, "feet"),
  28966. weight: math.unit(120, "lb"),
  28967. name: "Front",
  28968. image: {
  28969. source: "./media/characters/azura/front.svg",
  28970. extra: 1149 / 1135,
  28971. bottom: 45 / 1194
  28972. }
  28973. },
  28974. frontClothed: {
  28975. height: math.unit(6 + 3 / 12, "feet"),
  28976. weight: math.unit(120, "lb"),
  28977. name: "Front (Clothed)",
  28978. image: {
  28979. source: "./media/characters/azura/front-clothed.svg",
  28980. extra: 1149 / 1135,
  28981. bottom: 45 / 1194
  28982. }
  28983. },
  28984. },
  28985. [
  28986. {
  28987. name: "Normal",
  28988. height: math.unit(6 + 3 / 12, "feet"),
  28989. default: true
  28990. },
  28991. {
  28992. name: "Macro",
  28993. height: math.unit(20 + 6 / 12, "feet")
  28994. },
  28995. {
  28996. name: "Megamacro",
  28997. height: math.unit(12, "miles")
  28998. },
  28999. {
  29000. name: "Gigamacro",
  29001. height: math.unit(10000, "miles")
  29002. },
  29003. {
  29004. name: "Teramacro",
  29005. height: math.unit(900000, "miles")
  29006. },
  29007. ]
  29008. ))
  29009. characterMakers.push(() => makeCharacter(
  29010. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  29011. {
  29012. front: {
  29013. height: math.unit(12, "feet"),
  29014. weight: math.unit(1, "ton"),
  29015. capacity: math.unit(660000, "gallons"),
  29016. name: "Front",
  29017. image: {
  29018. source: "./media/characters/zeus/front.svg",
  29019. extra: 5005 / 4717,
  29020. bottom: 363 / 5388
  29021. }
  29022. },
  29023. },
  29024. [
  29025. {
  29026. name: "Normal",
  29027. height: math.unit(12, "feet")
  29028. },
  29029. {
  29030. name: "Preferred Size",
  29031. height: math.unit(0.5, "miles"),
  29032. default: true
  29033. },
  29034. {
  29035. name: "Giga Horse",
  29036. height: math.unit(300, "miles")
  29037. },
  29038. {
  29039. name: "Riding Planets",
  29040. height: math.unit(30, "megameters")
  29041. },
  29042. {
  29043. name: "Cosmic Giant",
  29044. height: math.unit(3, "zettameters")
  29045. },
  29046. {
  29047. name: "Breeding God",
  29048. height: math.unit(9.92e22, "yottameters")
  29049. },
  29050. ]
  29051. ))
  29052. characterMakers.push(() => makeCharacter(
  29053. { name: "Fang", species: ["monster"], tags: ["feral"] },
  29054. {
  29055. side: {
  29056. height: math.unit(9, "feet"),
  29057. weight: math.unit(1500, "kg"),
  29058. name: "Side",
  29059. image: {
  29060. source: "./media/characters/fang/side.svg",
  29061. extra: 924 / 866,
  29062. bottom: 47.5 / 972.3
  29063. }
  29064. },
  29065. },
  29066. [
  29067. {
  29068. name: "Normal",
  29069. height: math.unit(9, "feet"),
  29070. default: true
  29071. },
  29072. {
  29073. name: "Macro",
  29074. height: math.unit(75 + 6 / 12, "feet")
  29075. },
  29076. {
  29077. name: "Teramacro",
  29078. height: math.unit(50000, "miles")
  29079. },
  29080. ]
  29081. ))
  29082. characterMakers.push(() => makeCharacter(
  29083. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  29084. {
  29085. front: {
  29086. height: math.unit(10, "feet"),
  29087. weight: math.unit(2, "tons"),
  29088. name: "Front",
  29089. image: {
  29090. source: "./media/characters/rekhit/front.svg",
  29091. extra: 2796 / 2590,
  29092. bottom: 225 / 3022
  29093. }
  29094. },
  29095. },
  29096. [
  29097. {
  29098. name: "Normal",
  29099. height: math.unit(10, "feet"),
  29100. default: true
  29101. },
  29102. {
  29103. name: "Macro",
  29104. height: math.unit(500, "feet")
  29105. },
  29106. ]
  29107. ))
  29108. characterMakers.push(() => makeCharacter(
  29109. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  29110. {
  29111. front: {
  29112. height: math.unit(7 + 6.451 / 12, "feet"),
  29113. weight: math.unit(310, "lb"),
  29114. name: "Front",
  29115. image: {
  29116. source: "./media/characters/dahlia-verrick/front.svg",
  29117. extra: 1488 / 1365,
  29118. bottom: 6.2 / 1495
  29119. }
  29120. },
  29121. back: {
  29122. height: math.unit(7 + 6.451 / 12, "feet"),
  29123. weight: math.unit(310, "lb"),
  29124. name: "Back",
  29125. image: {
  29126. source: "./media/characters/dahlia-verrick/back.svg",
  29127. extra: 1472 / 1351,
  29128. bottom: 5.28 / 1477
  29129. }
  29130. },
  29131. frontBusiness: {
  29132. height: math.unit(7 + 6.451 / 12, "feet"),
  29133. weight: math.unit(200, "lb"),
  29134. name: "Front (Business)",
  29135. image: {
  29136. source: "./media/characters/dahlia-verrick/front-business.svg",
  29137. extra: 1478 / 1381,
  29138. bottom: 5.5 / 1484
  29139. }
  29140. },
  29141. frontCasual: {
  29142. height: math.unit(7 + 6.451 / 12, "feet"),
  29143. weight: math.unit(200, "lb"),
  29144. name: "Front (Casual)",
  29145. image: {
  29146. source: "./media/characters/dahlia-verrick/front-casual.svg",
  29147. extra: 1478 / 1381,
  29148. bottom: 5.5 / 1484
  29149. }
  29150. },
  29151. },
  29152. [
  29153. {
  29154. name: "Travel-Sized",
  29155. height: math.unit(7.45, "inches")
  29156. },
  29157. {
  29158. name: "Normal",
  29159. height: math.unit(7 + 6.451 / 12, "feet"),
  29160. default: true
  29161. },
  29162. {
  29163. name: "Hitting the Town",
  29164. height: math.unit(37 + 8 / 12, "feet")
  29165. },
  29166. {
  29167. name: "Stomp in the Suburbs",
  29168. height: math.unit(964 + 9.728 / 12, "feet")
  29169. },
  29170. {
  29171. name: "Sit on the City",
  29172. height: math.unit(61747 + 10.592 / 12, "feet")
  29173. },
  29174. {
  29175. name: "Glomp the Globe",
  29176. height: math.unit(252919327 + 4.832 / 12, "feet")
  29177. },
  29178. ]
  29179. ))
  29180. characterMakers.push(() => makeCharacter(
  29181. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29182. {
  29183. front: {
  29184. height: math.unit(6 + 4 / 12, "feet"),
  29185. weight: math.unit(320, "lb"),
  29186. name: "Front",
  29187. image: {
  29188. source: "./media/characters/balina-mahigan/front.svg",
  29189. extra: 447 / 428,
  29190. bottom: 18 / 466
  29191. }
  29192. },
  29193. back: {
  29194. height: math.unit(6 + 4 / 12, "feet"),
  29195. weight: math.unit(320, "lb"),
  29196. name: "Back",
  29197. image: {
  29198. source: "./media/characters/balina-mahigan/back.svg",
  29199. extra: 445 / 428,
  29200. bottom: 4.07 / 448
  29201. }
  29202. },
  29203. arm: {
  29204. height: math.unit(1.88, "feet"),
  29205. name: "Arm",
  29206. image: {
  29207. source: "./media/characters/balina-mahigan/arm.svg"
  29208. }
  29209. },
  29210. backPort: {
  29211. height: math.unit(0.685, "feet"),
  29212. name: "Back Port",
  29213. image: {
  29214. source: "./media/characters/balina-mahigan/back-port.svg"
  29215. }
  29216. },
  29217. hoofpaw: {
  29218. height: math.unit(1.41, "feet"),
  29219. name: "Hoofpaw",
  29220. image: {
  29221. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29222. }
  29223. },
  29224. leftHandBack: {
  29225. height: math.unit(0.938, "feet"),
  29226. name: "Left Hand (Back)",
  29227. image: {
  29228. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29229. }
  29230. },
  29231. leftHandFront: {
  29232. height: math.unit(0.938, "feet"),
  29233. name: "Left Hand (Front)",
  29234. image: {
  29235. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29236. }
  29237. },
  29238. rightHandBack: {
  29239. height: math.unit(0.95, "feet"),
  29240. name: "Right Hand (Back)",
  29241. image: {
  29242. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29243. }
  29244. },
  29245. rightHandFront: {
  29246. height: math.unit(0.95, "feet"),
  29247. name: "Right Hand (Front)",
  29248. image: {
  29249. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29250. }
  29251. },
  29252. },
  29253. [
  29254. {
  29255. name: "Normal",
  29256. height: math.unit(6 + 4 / 12, "feet"),
  29257. default: true
  29258. },
  29259. ]
  29260. ))
  29261. characterMakers.push(() => makeCharacter(
  29262. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29263. {
  29264. front: {
  29265. height: math.unit(6, "feet"),
  29266. weight: math.unit(320, "lb"),
  29267. name: "Front",
  29268. image: {
  29269. source: "./media/characters/balina-mejeri/front.svg",
  29270. extra: 517 / 488,
  29271. bottom: 44.2 / 561
  29272. }
  29273. },
  29274. },
  29275. [
  29276. {
  29277. name: "Normal",
  29278. height: math.unit(6 + 4 / 12, "feet")
  29279. },
  29280. {
  29281. name: "Business",
  29282. height: math.unit(155, "feet"),
  29283. default: true
  29284. },
  29285. ]
  29286. ))
  29287. characterMakers.push(() => makeCharacter(
  29288. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29289. {
  29290. kneeling: {
  29291. height: math.unit(6 + 4 / 12, "feet"),
  29292. weight: math.unit(300 * 20, "lb"),
  29293. name: "Kneeling",
  29294. image: {
  29295. source: "./media/characters/balbarian/kneeling.svg",
  29296. extra: 922 / 862,
  29297. bottom: 42.4 / 965
  29298. }
  29299. },
  29300. },
  29301. [
  29302. {
  29303. name: "Normal",
  29304. height: math.unit(6 + 4 / 12, "feet")
  29305. },
  29306. {
  29307. name: "Treasured",
  29308. height: math.unit(18 + 9 / 12, "feet"),
  29309. default: true
  29310. },
  29311. {
  29312. name: "Macro",
  29313. height: math.unit(900, "feet")
  29314. },
  29315. ]
  29316. ))
  29317. characterMakers.push(() => makeCharacter(
  29318. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29319. {
  29320. front: {
  29321. height: math.unit(6 + 4 / 12, "feet"),
  29322. weight: math.unit(325, "lb"),
  29323. name: "Front",
  29324. image: {
  29325. source: "./media/characters/balina-amarini/front.svg",
  29326. extra: 415 / 403,
  29327. bottom: 19 / 433.4
  29328. }
  29329. },
  29330. back: {
  29331. height: math.unit(6 + 4 / 12, "feet"),
  29332. weight: math.unit(325, "lb"),
  29333. name: "Back",
  29334. image: {
  29335. source: "./media/characters/balina-amarini/back.svg",
  29336. extra: 415 / 403,
  29337. bottom: 13.5 / 432
  29338. }
  29339. },
  29340. overdrive: {
  29341. height: math.unit(6 + 4 / 12, "feet"),
  29342. weight: math.unit(400, "lb"),
  29343. name: "Overdrive",
  29344. image: {
  29345. source: "./media/characters/balina-amarini/overdrive.svg",
  29346. extra: 269 / 259,
  29347. bottom: 12 / 282
  29348. }
  29349. },
  29350. },
  29351. [
  29352. {
  29353. name: "Boom",
  29354. height: math.unit(9 + 10 / 12, "feet"),
  29355. default: true
  29356. },
  29357. {
  29358. name: "Macro",
  29359. height: math.unit(280, "feet")
  29360. },
  29361. ]
  29362. ))
  29363. characterMakers.push(() => makeCharacter(
  29364. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29365. {
  29366. goddess: {
  29367. height: math.unit(600, "feet"),
  29368. weight: math.unit(2000000, "tons"),
  29369. name: "Goddess",
  29370. image: {
  29371. source: "./media/characters/lady-kubwa/goddess.svg",
  29372. extra: 1240.5 / 1223,
  29373. bottom: 22 / 1263
  29374. }
  29375. },
  29376. goddesser: {
  29377. height: math.unit(900, "feet"),
  29378. weight: math.unit(20000000, "lb"),
  29379. name: "Goddess-er",
  29380. image: {
  29381. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29382. extra: 899 / 888,
  29383. bottom: 12.6 / 912
  29384. }
  29385. },
  29386. },
  29387. [
  29388. {
  29389. name: "Macro",
  29390. height: math.unit(600, "feet"),
  29391. default: true
  29392. },
  29393. {
  29394. name: "Megamacro",
  29395. height: math.unit(250, "miles")
  29396. },
  29397. ]
  29398. ))
  29399. characterMakers.push(() => makeCharacter(
  29400. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29401. {
  29402. front: {
  29403. height: math.unit(7 + 7 / 12, "feet"),
  29404. weight: math.unit(250, "lb"),
  29405. name: "Front",
  29406. image: {
  29407. source: "./media/characters/tala-grovehorn/front.svg",
  29408. extra: 2636 / 2525,
  29409. bottom: 147 / 2781
  29410. }
  29411. },
  29412. back: {
  29413. height: math.unit(7 + 7 / 12, "feet"),
  29414. weight: math.unit(250, "lb"),
  29415. name: "Back",
  29416. image: {
  29417. source: "./media/characters/tala-grovehorn/back.svg",
  29418. extra: 2635 / 2539,
  29419. bottom: 100 / 2732.8
  29420. }
  29421. },
  29422. mouth: {
  29423. height: math.unit(1.15, "feet"),
  29424. name: "Mouth",
  29425. image: {
  29426. source: "./media/characters/tala-grovehorn/mouth.svg"
  29427. }
  29428. },
  29429. dick: {
  29430. height: math.unit(2.36, "feet"),
  29431. name: "Dick",
  29432. image: {
  29433. source: "./media/characters/tala-grovehorn/dick.svg"
  29434. }
  29435. },
  29436. slit: {
  29437. height: math.unit(0.61, "feet"),
  29438. name: "Slit",
  29439. image: {
  29440. source: "./media/characters/tala-grovehorn/slit.svg"
  29441. }
  29442. },
  29443. },
  29444. [
  29445. ]
  29446. ))
  29447. characterMakers.push(() => makeCharacter(
  29448. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29449. {
  29450. front: {
  29451. height: math.unit(7 + 7 / 12, "feet"),
  29452. weight: math.unit(225, "lb"),
  29453. name: "Front",
  29454. image: {
  29455. source: "./media/characters/epona/front.svg",
  29456. extra: 2445 / 2290,
  29457. bottom: 251 / 2696
  29458. }
  29459. },
  29460. back: {
  29461. height: math.unit(7 + 7 / 12, "feet"),
  29462. weight: math.unit(225, "lb"),
  29463. name: "Back",
  29464. image: {
  29465. source: "./media/characters/epona/back.svg",
  29466. extra: 2546 / 2408,
  29467. bottom: 44 / 2589
  29468. }
  29469. },
  29470. genitals: {
  29471. height: math.unit(1.5, "feet"),
  29472. name: "Genitals",
  29473. image: {
  29474. source: "./media/characters/epona/genitals.svg"
  29475. }
  29476. },
  29477. },
  29478. [
  29479. {
  29480. name: "Normal",
  29481. height: math.unit(7 + 7 / 12, "feet"),
  29482. default: true
  29483. },
  29484. ]
  29485. ))
  29486. characterMakers.push(() => makeCharacter(
  29487. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29488. {
  29489. front: {
  29490. height: math.unit(7, "feet"),
  29491. weight: math.unit(518, "lb"),
  29492. name: "Front",
  29493. image: {
  29494. source: "./media/characters/avia-bloodbourn/front.svg",
  29495. extra: 1466 / 1350,
  29496. bottom: 65 / 1527
  29497. }
  29498. },
  29499. },
  29500. [
  29501. ]
  29502. ))
  29503. characterMakers.push(() => makeCharacter(
  29504. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29505. {
  29506. front: {
  29507. height: math.unit(9.35, "feet"),
  29508. weight: math.unit(600, "lb"),
  29509. name: "Front",
  29510. image: {
  29511. source: "./media/characters/amera/front.svg",
  29512. extra: 891 / 818,
  29513. bottom: 30 / 922.7
  29514. }
  29515. },
  29516. back: {
  29517. height: math.unit(9.35, "feet"),
  29518. weight: math.unit(600, "lb"),
  29519. name: "Back",
  29520. image: {
  29521. source: "./media/characters/amera/back.svg",
  29522. extra: 876 / 824,
  29523. bottom: 6.8 / 884
  29524. }
  29525. },
  29526. dick: {
  29527. height: math.unit(2.14, "feet"),
  29528. name: "Dick",
  29529. image: {
  29530. source: "./media/characters/amera/dick.svg"
  29531. }
  29532. },
  29533. },
  29534. [
  29535. {
  29536. name: "Normal",
  29537. height: math.unit(9.35, "feet"),
  29538. default: true
  29539. },
  29540. ]
  29541. ))
  29542. characterMakers.push(() => makeCharacter(
  29543. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29544. {
  29545. kneeling: {
  29546. height: math.unit(3 + 4 / 12, "feet"),
  29547. weight: math.unit(90, "lb"),
  29548. name: "Kneeling",
  29549. image: {
  29550. source: "./media/characters/rosewen/kneeling.svg",
  29551. extra: 1835 / 1571,
  29552. bottom: 27.7 / 1862
  29553. }
  29554. },
  29555. },
  29556. [
  29557. {
  29558. name: "Normal",
  29559. height: math.unit(3 + 4 / 12, "feet"),
  29560. default: true
  29561. },
  29562. ]
  29563. ))
  29564. characterMakers.push(() => makeCharacter(
  29565. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29566. {
  29567. front: {
  29568. height: math.unit(5 + 10 / 12, "feet"),
  29569. weight: math.unit(200, "lb"),
  29570. name: "Front",
  29571. image: {
  29572. source: "./media/characters/sabah/front.svg",
  29573. extra: 849 / 763,
  29574. bottom: 33.9 / 881
  29575. }
  29576. },
  29577. },
  29578. [
  29579. {
  29580. name: "Normal",
  29581. height: math.unit(5 + 10 / 12, "feet"),
  29582. default: true
  29583. },
  29584. ]
  29585. ))
  29586. characterMakers.push(() => makeCharacter(
  29587. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29588. {
  29589. front: {
  29590. height: math.unit(3 + 5 / 12, "feet"),
  29591. weight: math.unit(40, "kg"),
  29592. name: "Front",
  29593. image: {
  29594. source: "./media/characters/purple-flame/front.svg",
  29595. extra: 1577 / 1412,
  29596. bottom: 97 / 1694
  29597. }
  29598. },
  29599. frontDressed: {
  29600. height: math.unit(3 + 5 / 12, "feet"),
  29601. weight: math.unit(40, "kg"),
  29602. name: "Front (Dressed)",
  29603. image: {
  29604. source: "./media/characters/purple-flame/front-dressed.svg",
  29605. extra: 1577 / 1412,
  29606. bottom: 97 / 1694
  29607. }
  29608. },
  29609. headphones: {
  29610. height: math.unit(0.85, "feet"),
  29611. name: "Headphones",
  29612. image: {
  29613. source: "./media/characters/purple-flame/headphones.svg"
  29614. }
  29615. },
  29616. },
  29617. [
  29618. {
  29619. name: "Really Small",
  29620. height: math.unit(5, "cm")
  29621. },
  29622. {
  29623. name: "Micro",
  29624. height: math.unit(1 + 5 / 12, "feet")
  29625. },
  29626. {
  29627. name: "Normal",
  29628. height: math.unit(3 + 5 / 12, "feet"),
  29629. default: true
  29630. },
  29631. {
  29632. name: "Minimacro",
  29633. height: math.unit(125, "feet")
  29634. },
  29635. {
  29636. name: "Macro",
  29637. height: math.unit(0.5, "miles")
  29638. },
  29639. {
  29640. name: "Megamacro",
  29641. height: math.unit(50, "miles")
  29642. },
  29643. {
  29644. name: "Gigantic",
  29645. height: math.unit(750, "miles")
  29646. },
  29647. {
  29648. name: "Planetary",
  29649. height: math.unit(15000, "miles")
  29650. },
  29651. ]
  29652. ))
  29653. characterMakers.push(() => makeCharacter(
  29654. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29655. {
  29656. front: {
  29657. height: math.unit(14, "feet"),
  29658. weight: math.unit(959, "lb"),
  29659. name: "Front",
  29660. image: {
  29661. source: "./media/characters/arsenal/front.svg",
  29662. extra: 2357 / 2157,
  29663. bottom: 93 / 2458
  29664. }
  29665. },
  29666. },
  29667. [
  29668. {
  29669. name: "Normal",
  29670. height: math.unit(14, "feet"),
  29671. default: true
  29672. },
  29673. ]
  29674. ))
  29675. characterMakers.push(() => makeCharacter(
  29676. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29677. {
  29678. front: {
  29679. height: math.unit(6, "feet"),
  29680. weight: math.unit(150, "lb"),
  29681. name: "Front",
  29682. image: {
  29683. source: "./media/characters/adira/front.svg",
  29684. extra: 2121/2013,
  29685. bottom: 206/2327
  29686. }
  29687. },
  29688. },
  29689. [
  29690. {
  29691. name: "Micro",
  29692. height: math.unit(4, "inches"),
  29693. default: true
  29694. },
  29695. {
  29696. name: "Macro",
  29697. height: math.unit(50, "feet")
  29698. },
  29699. ]
  29700. ))
  29701. characterMakers.push(() => makeCharacter(
  29702. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29703. {
  29704. front: {
  29705. height: math.unit(16, "feet"),
  29706. weight: math.unit(1000, "lb"),
  29707. name: "Front",
  29708. image: {
  29709. source: "./media/characters/grim/front.svg",
  29710. extra: 622 / 614,
  29711. bottom: 18.1 / 642
  29712. }
  29713. },
  29714. back: {
  29715. height: math.unit(16, "feet"),
  29716. weight: math.unit(1000, "lb"),
  29717. name: "Back",
  29718. image: {
  29719. source: "./media/characters/grim/back.svg",
  29720. extra: 610.6 / 602,
  29721. bottom: 40.8 / 652
  29722. }
  29723. },
  29724. hunched: {
  29725. height: math.unit(9.75, "feet"),
  29726. weight: math.unit(1000, "lb"),
  29727. name: "Hunched",
  29728. image: {
  29729. source: "./media/characters/grim/hunched.svg",
  29730. extra: 304 / 297,
  29731. bottom: 35.4 / 394
  29732. }
  29733. },
  29734. },
  29735. [
  29736. {
  29737. name: "Normal",
  29738. height: math.unit(16, "feet"),
  29739. default: true
  29740. },
  29741. ]
  29742. ))
  29743. characterMakers.push(() => makeCharacter(
  29744. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29745. {
  29746. front: {
  29747. height: math.unit(2.3, "meters"),
  29748. weight: math.unit(300, "lb"),
  29749. name: "Front",
  29750. image: {
  29751. source: "./media/characters/sinja/front-sfw.svg",
  29752. extra: 1393 / 1294,
  29753. bottom: 70 / 1463
  29754. }
  29755. },
  29756. frontNsfw: {
  29757. height: math.unit(2.3, "meters"),
  29758. weight: math.unit(300, "lb"),
  29759. name: "Front (NSFW)",
  29760. image: {
  29761. source: "./media/characters/sinja/front-nsfw.svg",
  29762. extra: 1393 / 1294,
  29763. bottom: 70 / 1463
  29764. }
  29765. },
  29766. back: {
  29767. height: math.unit(2.3, "meters"),
  29768. weight: math.unit(300, "lb"),
  29769. name: "Back",
  29770. image: {
  29771. source: "./media/characters/sinja/back.svg",
  29772. extra: 1393 / 1294,
  29773. bottom: 70 / 1463
  29774. }
  29775. },
  29776. head: {
  29777. height: math.unit(1.771, "feet"),
  29778. name: "Head",
  29779. image: {
  29780. source: "./media/characters/sinja/head.svg"
  29781. }
  29782. },
  29783. slit: {
  29784. height: math.unit(0.8, "feet"),
  29785. name: "Slit",
  29786. image: {
  29787. source: "./media/characters/sinja/slit.svg"
  29788. }
  29789. },
  29790. },
  29791. [
  29792. {
  29793. name: "Normal",
  29794. height: math.unit(2.3, "meters")
  29795. },
  29796. {
  29797. name: "Macro",
  29798. height: math.unit(91, "meters"),
  29799. default: true
  29800. },
  29801. {
  29802. name: "Megamacro",
  29803. height: math.unit(91440, "meters")
  29804. },
  29805. {
  29806. name: "Gigamacro",
  29807. height: math.unit(60960000, "meters")
  29808. },
  29809. {
  29810. name: "Teramacro",
  29811. height: math.unit(9144000000, "meters")
  29812. },
  29813. ]
  29814. ))
  29815. characterMakers.push(() => makeCharacter(
  29816. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29817. {
  29818. front: {
  29819. height: math.unit(1.7, "meters"),
  29820. weight: math.unit(130, "lb"),
  29821. name: "Front",
  29822. image: {
  29823. source: "./media/characters/kyu/front.svg",
  29824. extra: 415 / 395,
  29825. bottom: 5 / 420
  29826. }
  29827. },
  29828. head: {
  29829. height: math.unit(1.75, "feet"),
  29830. name: "Head",
  29831. image: {
  29832. source: "./media/characters/kyu/head.svg"
  29833. }
  29834. },
  29835. foot: {
  29836. height: math.unit(0.81, "feet"),
  29837. name: "Foot",
  29838. image: {
  29839. source: "./media/characters/kyu/foot.svg"
  29840. }
  29841. },
  29842. },
  29843. [
  29844. {
  29845. name: "Normal",
  29846. height: math.unit(1.7, "meters")
  29847. },
  29848. {
  29849. name: "Macro",
  29850. height: math.unit(131, "feet"),
  29851. default: true
  29852. },
  29853. {
  29854. name: "Megamacro",
  29855. height: math.unit(91440, "meters")
  29856. },
  29857. {
  29858. name: "Gigamacro",
  29859. height: math.unit(60960000, "meters")
  29860. },
  29861. {
  29862. name: "Teramacro",
  29863. height: math.unit(9144000000, "meters")
  29864. },
  29865. ]
  29866. ))
  29867. characterMakers.push(() => makeCharacter(
  29868. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29869. {
  29870. front: {
  29871. height: math.unit(7 + 1 / 12, "feet"),
  29872. weight: math.unit(250, "lb"),
  29873. name: "Front",
  29874. image: {
  29875. source: "./media/characters/joey/front.svg",
  29876. extra: 1791 / 1537,
  29877. bottom: 28 / 1816
  29878. }
  29879. },
  29880. },
  29881. [
  29882. {
  29883. name: "Micro",
  29884. height: math.unit(3, "inches")
  29885. },
  29886. {
  29887. name: "Normal",
  29888. height: math.unit(7 + 1 / 12, "feet"),
  29889. default: true
  29890. },
  29891. ]
  29892. ))
  29893. characterMakers.push(() => makeCharacter(
  29894. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29895. {
  29896. front: {
  29897. height: math.unit(165, "cm"),
  29898. weight: math.unit(140, "lb"),
  29899. name: "Front",
  29900. image: {
  29901. source: "./media/characters/sam-evans/front.svg",
  29902. extra: 3417 / 3230,
  29903. bottom: 41.3 / 3417
  29904. }
  29905. },
  29906. frontSixTails: {
  29907. height: math.unit(165, "cm"),
  29908. weight: math.unit(140, "lb"),
  29909. name: "Front-six-tails",
  29910. image: {
  29911. source: "./media/characters/sam-evans/front-six-tails.svg",
  29912. extra: 3417 / 3230,
  29913. bottom: 41.3 / 3417
  29914. }
  29915. },
  29916. back: {
  29917. height: math.unit(165, "cm"),
  29918. weight: math.unit(140, "lb"),
  29919. name: "Back",
  29920. image: {
  29921. source: "./media/characters/sam-evans/back.svg",
  29922. extra: 3227 / 3032,
  29923. bottom: 6.8 / 3234
  29924. }
  29925. },
  29926. face: {
  29927. height: math.unit(0.68, "feet"),
  29928. name: "Face",
  29929. image: {
  29930. source: "./media/characters/sam-evans/face.svg"
  29931. }
  29932. },
  29933. },
  29934. [
  29935. {
  29936. name: "Normal",
  29937. height: math.unit(165, "cm"),
  29938. default: true
  29939. },
  29940. {
  29941. name: "Macro",
  29942. height: math.unit(100, "meters")
  29943. },
  29944. {
  29945. name: "Macro+",
  29946. height: math.unit(800, "meters")
  29947. },
  29948. {
  29949. name: "Macro++",
  29950. height: math.unit(3, "km")
  29951. },
  29952. {
  29953. name: "Macro+++",
  29954. height: math.unit(30, "km")
  29955. },
  29956. ]
  29957. ))
  29958. characterMakers.push(() => makeCharacter(
  29959. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29960. {
  29961. front: {
  29962. height: math.unit(10, "feet"),
  29963. weight: math.unit(750, "lb"),
  29964. name: "Front",
  29965. image: {
  29966. source: "./media/characters/juliet-a/front.svg",
  29967. extra: 1766 / 1720,
  29968. bottom: 43 / 1809
  29969. }
  29970. },
  29971. back: {
  29972. height: math.unit(10, "feet"),
  29973. weight: math.unit(750, "lb"),
  29974. name: "Back",
  29975. image: {
  29976. source: "./media/characters/juliet-a/back.svg",
  29977. extra: 1781 / 1734,
  29978. bottom: 35 / 1810,
  29979. }
  29980. },
  29981. },
  29982. [
  29983. {
  29984. name: "Normal",
  29985. height: math.unit(10, "feet"),
  29986. default: true
  29987. },
  29988. {
  29989. name: "Dragon Form",
  29990. height: math.unit(250, "feet")
  29991. },
  29992. {
  29993. name: "Macro",
  29994. height: math.unit(1000, "feet")
  29995. },
  29996. {
  29997. name: "Megamacro",
  29998. height: math.unit(10000, "feet")
  29999. }
  30000. ]
  30001. ))
  30002. characterMakers.push(() => makeCharacter(
  30003. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  30004. {
  30005. regular: {
  30006. height: math.unit(7 + 3 / 12, "feet"),
  30007. weight: math.unit(260, "lb"),
  30008. name: "Regular",
  30009. image: {
  30010. source: "./media/characters/wild/regular.svg",
  30011. extra: 97.45 / 92,
  30012. bottom: 6.8 / 104.3
  30013. }
  30014. },
  30015. biggums: {
  30016. height: math.unit(8 + 6 / 12, "feet"),
  30017. weight: math.unit(425, "lb"),
  30018. name: "Biggums",
  30019. image: {
  30020. source: "./media/characters/wild/biggums.svg",
  30021. extra: 97.45 / 92,
  30022. bottom: 7.5 / 132.34
  30023. }
  30024. },
  30025. mawRegular: {
  30026. height: math.unit(1.24, "feet"),
  30027. name: "Maw (Regular)",
  30028. image: {
  30029. source: "./media/characters/wild/maw.svg"
  30030. }
  30031. },
  30032. mawBiggums: {
  30033. height: math.unit(1.47, "feet"),
  30034. name: "Maw (Biggums)",
  30035. image: {
  30036. source: "./media/characters/wild/maw.svg"
  30037. }
  30038. },
  30039. },
  30040. [
  30041. {
  30042. name: "Normal",
  30043. height: math.unit(7 + 3 / 12, "feet"),
  30044. default: true
  30045. },
  30046. ]
  30047. ))
  30048. characterMakers.push(() => makeCharacter(
  30049. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  30050. {
  30051. front: {
  30052. height: math.unit(2.5, "meters"),
  30053. weight: math.unit(200, "kg"),
  30054. name: "Front",
  30055. image: {
  30056. source: "./media/characters/vidar/front.svg",
  30057. extra: 2994 / 2795,
  30058. bottom: 56 / 3061
  30059. }
  30060. },
  30061. back: {
  30062. height: math.unit(2.5, "meters"),
  30063. weight: math.unit(200, "kg"),
  30064. name: "Back",
  30065. image: {
  30066. source: "./media/characters/vidar/back.svg",
  30067. extra: 3131 / 2928,
  30068. bottom: 13.5 / 3141.5
  30069. }
  30070. },
  30071. feral: {
  30072. height: math.unit(2.5, "meters"),
  30073. weight: math.unit(2000, "kg"),
  30074. name: "Feral",
  30075. image: {
  30076. source: "./media/characters/vidar/feral.svg",
  30077. extra: 2790 / 1765,
  30078. bottom: 6 / 2796
  30079. }
  30080. },
  30081. },
  30082. [
  30083. {
  30084. name: "Normal",
  30085. height: math.unit(2.5, "meters"),
  30086. default: true
  30087. },
  30088. {
  30089. name: "Macro",
  30090. height: math.unit(100, "meters")
  30091. },
  30092. ]
  30093. ))
  30094. characterMakers.push(() => makeCharacter(
  30095. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  30096. {
  30097. front: {
  30098. height: math.unit(5 + 9 / 12, "feet"),
  30099. weight: math.unit(120, "lb"),
  30100. name: "Front",
  30101. image: {
  30102. source: "./media/characters/ash/front.svg",
  30103. extra: 2189 / 1961,
  30104. bottom: 5.2 / 2194
  30105. }
  30106. },
  30107. },
  30108. [
  30109. {
  30110. name: "Normal",
  30111. height: math.unit(5 + 9 / 12, "feet"),
  30112. default: true
  30113. },
  30114. ]
  30115. ))
  30116. characterMakers.push(() => makeCharacter(
  30117. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  30118. {
  30119. front: {
  30120. height: math.unit(9, "feet"),
  30121. weight: math.unit(10000, "lb"),
  30122. name: "Front",
  30123. image: {
  30124. source: "./media/characters/gygabite/front.svg",
  30125. bottom: 31.7 / 537.8,
  30126. extra: 505 / 370
  30127. }
  30128. },
  30129. },
  30130. [
  30131. {
  30132. name: "Normal",
  30133. height: math.unit(9, "feet"),
  30134. default: true
  30135. },
  30136. ]
  30137. ))
  30138. characterMakers.push(() => makeCharacter(
  30139. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  30140. {
  30141. front: {
  30142. height: math.unit(12, "feet"),
  30143. weight: math.unit(4000, "lb"),
  30144. name: "Front",
  30145. image: {
  30146. source: "./media/characters/p0tat0/front.svg",
  30147. extra: 1065 / 921,
  30148. bottom: 55.7 / 1121.25
  30149. }
  30150. },
  30151. },
  30152. [
  30153. {
  30154. name: "Normal",
  30155. height: math.unit(12, "feet"),
  30156. default: true
  30157. },
  30158. ]
  30159. ))
  30160. characterMakers.push(() => makeCharacter(
  30161. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  30162. {
  30163. side: {
  30164. height: math.unit(6.5, "feet"),
  30165. weight: math.unit(800, "lb"),
  30166. name: "Side",
  30167. image: {
  30168. source: "./media/characters/dusk/side.svg",
  30169. extra: 615 / 373,
  30170. bottom: 53 / 664
  30171. }
  30172. },
  30173. sitting: {
  30174. height: math.unit(7, "feet"),
  30175. weight: math.unit(800, "lb"),
  30176. name: "Sitting",
  30177. image: {
  30178. source: "./media/characters/dusk/sitting.svg",
  30179. extra: 753 / 425,
  30180. bottom: 33 / 774
  30181. }
  30182. },
  30183. head: {
  30184. height: math.unit(6.1, "feet"),
  30185. name: "Head",
  30186. image: {
  30187. source: "./media/characters/dusk/head.svg"
  30188. }
  30189. },
  30190. },
  30191. [
  30192. {
  30193. name: "Normal",
  30194. height: math.unit(7, "feet"),
  30195. default: true
  30196. },
  30197. ]
  30198. ))
  30199. characterMakers.push(() => makeCharacter(
  30200. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30201. {
  30202. front: {
  30203. height: math.unit(15, "feet"),
  30204. weight: math.unit(7000, "lb"),
  30205. name: "Front",
  30206. image: {
  30207. source: "./media/characters/jay-direwolf/front.svg",
  30208. extra: 1810 / 1732,
  30209. bottom: 66 / 1892
  30210. }
  30211. },
  30212. },
  30213. [
  30214. {
  30215. name: "Normal",
  30216. height: math.unit(15, "feet"),
  30217. default: true
  30218. },
  30219. ]
  30220. ))
  30221. characterMakers.push(() => makeCharacter(
  30222. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30223. {
  30224. front: {
  30225. height: math.unit(4 + 9 / 12, "feet"),
  30226. weight: math.unit(130, "lb"),
  30227. name: "Front",
  30228. image: {
  30229. source: "./media/characters/anchovie/front.svg",
  30230. extra: 382 / 350,
  30231. bottom: 25 / 409
  30232. }
  30233. },
  30234. back: {
  30235. height: math.unit(4 + 9 / 12, "feet"),
  30236. weight: math.unit(130, "lb"),
  30237. name: "Back",
  30238. image: {
  30239. source: "./media/characters/anchovie/back.svg",
  30240. extra: 385 / 352,
  30241. bottom: 16.6 / 402
  30242. }
  30243. },
  30244. frontDressed: {
  30245. height: math.unit(4 + 9 / 12, "feet"),
  30246. weight: math.unit(130, "lb"),
  30247. name: "Front (Dressed)",
  30248. image: {
  30249. source: "./media/characters/anchovie/front-dressed.svg",
  30250. extra: 382 / 350,
  30251. bottom: 25 / 409
  30252. }
  30253. },
  30254. backDressed: {
  30255. height: math.unit(4 + 9 / 12, "feet"),
  30256. weight: math.unit(130, "lb"),
  30257. name: "Back (Dressed)",
  30258. image: {
  30259. source: "./media/characters/anchovie/back-dressed.svg",
  30260. extra: 385 / 352,
  30261. bottom: 16.6 / 402
  30262. }
  30263. },
  30264. },
  30265. [
  30266. {
  30267. name: "Micro",
  30268. height: math.unit(6.4, "inches")
  30269. },
  30270. {
  30271. name: "Normal",
  30272. height: math.unit(4 + 9 / 12, "feet"),
  30273. default: true
  30274. },
  30275. ]
  30276. ))
  30277. characterMakers.push(() => makeCharacter(
  30278. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30279. {
  30280. front: {
  30281. height: math.unit(2, "meters"),
  30282. weight: math.unit(180, "lb"),
  30283. name: "Front",
  30284. image: {
  30285. source: "./media/characters/acidrenamon/front.svg",
  30286. extra: 987 / 890,
  30287. bottom: 22.8 / 1009
  30288. }
  30289. },
  30290. back: {
  30291. height: math.unit(2, "meters"),
  30292. weight: math.unit(180, "lb"),
  30293. name: "Back",
  30294. image: {
  30295. source: "./media/characters/acidrenamon/back.svg",
  30296. extra: 983 / 891,
  30297. bottom: 8.4 / 992
  30298. }
  30299. },
  30300. head: {
  30301. height: math.unit(1.92, "feet"),
  30302. name: "Head",
  30303. image: {
  30304. source: "./media/characters/acidrenamon/head.svg"
  30305. }
  30306. },
  30307. rump: {
  30308. height: math.unit(1.72, "feet"),
  30309. name: "Rump",
  30310. image: {
  30311. source: "./media/characters/acidrenamon/rump.svg"
  30312. }
  30313. },
  30314. tail: {
  30315. height: math.unit(4.2, "feet"),
  30316. name: "Tail",
  30317. image: {
  30318. source: "./media/characters/acidrenamon/tail.svg"
  30319. }
  30320. },
  30321. },
  30322. [
  30323. {
  30324. name: "Normal",
  30325. height: math.unit(2, "meters"),
  30326. default: true
  30327. },
  30328. {
  30329. name: "Minimacro",
  30330. height: math.unit(7, "meters")
  30331. },
  30332. {
  30333. name: "Macro",
  30334. height: math.unit(200, "meters")
  30335. },
  30336. {
  30337. name: "Gigamacro",
  30338. height: math.unit(0.2, "earths")
  30339. },
  30340. ]
  30341. ))
  30342. characterMakers.push(() => makeCharacter(
  30343. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30344. {
  30345. front: {
  30346. height: math.unit(152, "feet"),
  30347. name: "Front",
  30348. image: {
  30349. source: "./media/characters/kenzie-lee/front.svg",
  30350. extra: 1869/1774,
  30351. bottom: 128/1997
  30352. }
  30353. },
  30354. side: {
  30355. height: math.unit(86, "feet"),
  30356. name: "Side",
  30357. image: {
  30358. source: "./media/characters/kenzie-lee/side.svg",
  30359. extra: 930/815,
  30360. bottom: 177/1107
  30361. }
  30362. },
  30363. paw: {
  30364. height: math.unit(15, "feet"),
  30365. name: "Paw",
  30366. image: {
  30367. source: "./media/characters/kenzie-lee/paw.svg"
  30368. }
  30369. },
  30370. },
  30371. [
  30372. {
  30373. name: "Kenzie Flea",
  30374. height: math.unit(2, "mm"),
  30375. default: true
  30376. },
  30377. {
  30378. name: "Micro",
  30379. height: math.unit(2, "inches")
  30380. },
  30381. {
  30382. name: "Normal",
  30383. height: math.unit(152, "feet")
  30384. },
  30385. {
  30386. name: "Megamacro",
  30387. height: math.unit(7, "miles")
  30388. },
  30389. {
  30390. name: "Gigamacro",
  30391. height: math.unit(8000, "miles")
  30392. },
  30393. ]
  30394. ))
  30395. characterMakers.push(() => makeCharacter(
  30396. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30397. {
  30398. front: {
  30399. height: math.unit(6, "feet"),
  30400. name: "Front",
  30401. image: {
  30402. source: "./media/characters/withers/front.svg",
  30403. extra: 1935/1760,
  30404. bottom: 72/2007
  30405. }
  30406. },
  30407. back: {
  30408. height: math.unit(6, "feet"),
  30409. name: "Back",
  30410. image: {
  30411. source: "./media/characters/withers/back.svg",
  30412. extra: 1944/1792,
  30413. bottom: 12/1956
  30414. }
  30415. },
  30416. dressed: {
  30417. height: math.unit(6, "feet"),
  30418. name: "Dressed",
  30419. image: {
  30420. source: "./media/characters/withers/dressed.svg",
  30421. extra: 1937/1765,
  30422. bottom: 73/2010
  30423. }
  30424. },
  30425. phase1: {
  30426. height: math.unit(1.1, "feet"),
  30427. name: "Phase 1",
  30428. image: {
  30429. source: "./media/characters/withers/phase-1.svg",
  30430. extra: 1885/1232,
  30431. bottom: 0/1885
  30432. }
  30433. },
  30434. phase2: {
  30435. height: math.unit(1.05, "feet"),
  30436. name: "Phase 2",
  30437. image: {
  30438. source: "./media/characters/withers/phase-2.svg",
  30439. extra: 1792/1090,
  30440. bottom: 0/1792
  30441. }
  30442. },
  30443. partyWipe: {
  30444. height: math.unit(1.1, "feet"),
  30445. name: "Party Wipe",
  30446. image: {
  30447. source: "./media/characters/withers/party-wipe.svg",
  30448. extra: 1864/1207,
  30449. bottom: 0/1864
  30450. }
  30451. },
  30452. },
  30453. [
  30454. {
  30455. name: "Macro",
  30456. height: math.unit(167, "feet"),
  30457. default: true
  30458. },
  30459. {
  30460. name: "Megamacro",
  30461. height: math.unit(15, "miles")
  30462. }
  30463. ]
  30464. ))
  30465. characterMakers.push(() => makeCharacter(
  30466. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30467. {
  30468. front: {
  30469. height: math.unit(6 + 7 / 12, "feet"),
  30470. weight: math.unit(250, "lb"),
  30471. name: "Front",
  30472. image: {
  30473. source: "./media/characters/nemoskii/front.svg",
  30474. extra: 2270 / 1734,
  30475. bottom: 86 / 2354
  30476. }
  30477. },
  30478. back: {
  30479. height: math.unit(6 + 7 / 12, "feet"),
  30480. weight: math.unit(250, "lb"),
  30481. name: "Back",
  30482. image: {
  30483. source: "./media/characters/nemoskii/back.svg",
  30484. extra: 1845 / 1788,
  30485. bottom: 10.5 / 1852
  30486. }
  30487. },
  30488. head: {
  30489. height: math.unit(1.31, "feet"),
  30490. name: "Head",
  30491. image: {
  30492. source: "./media/characters/nemoskii/head.svg"
  30493. }
  30494. },
  30495. },
  30496. [
  30497. {
  30498. name: "Micro",
  30499. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30500. },
  30501. {
  30502. name: "Normal",
  30503. height: math.unit(6 + 7 / 12, "feet"),
  30504. default: true
  30505. },
  30506. {
  30507. name: "Macro",
  30508. height: math.unit((6 + 7 / 12) * 150, "feet")
  30509. },
  30510. {
  30511. name: "Macro+",
  30512. height: math.unit((6 + 7 / 12) * 500, "feet")
  30513. },
  30514. {
  30515. name: "Megamacro",
  30516. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30517. },
  30518. ]
  30519. ))
  30520. characterMakers.push(() => makeCharacter(
  30521. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30522. {
  30523. front: {
  30524. height: math.unit(1, "mile"),
  30525. weight: math.unit(265261.9, "lb"),
  30526. name: "Front",
  30527. image: {
  30528. source: "./media/characters/shui/front.svg",
  30529. extra: 1633 / 1564,
  30530. bottom: 91.5 / 1726
  30531. }
  30532. },
  30533. },
  30534. [
  30535. {
  30536. name: "Macro",
  30537. height: math.unit(1, "mile"),
  30538. default: true
  30539. },
  30540. ]
  30541. ))
  30542. characterMakers.push(() => makeCharacter(
  30543. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30544. {
  30545. front: {
  30546. height: math.unit(12 + 6 / 12, "feet"),
  30547. weight: math.unit(1342, "lb"),
  30548. name: "Front",
  30549. image: {
  30550. source: "./media/characters/arokh-takakura/front.svg",
  30551. extra: 1089 / 1043,
  30552. bottom: 77.4 / 1176.7
  30553. }
  30554. },
  30555. back: {
  30556. height: math.unit(12 + 6 / 12, "feet"),
  30557. weight: math.unit(1342, "lb"),
  30558. name: "Back",
  30559. image: {
  30560. source: "./media/characters/arokh-takakura/back.svg",
  30561. extra: 1046 / 1019,
  30562. bottom: 102 / 1150
  30563. }
  30564. },
  30565. },
  30566. [
  30567. {
  30568. name: "Big",
  30569. height: math.unit(12 + 6 / 12, "feet"),
  30570. default: true
  30571. },
  30572. ]
  30573. ))
  30574. characterMakers.push(() => makeCharacter(
  30575. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30576. {
  30577. front: {
  30578. height: math.unit(5 + 6 / 12, "feet"),
  30579. weight: math.unit(150, "lb"),
  30580. name: "Front",
  30581. image: {
  30582. source: "./media/characters/theo/front.svg",
  30583. extra: 1184 / 1131,
  30584. bottom: 7.4 / 1191
  30585. }
  30586. },
  30587. },
  30588. [
  30589. {
  30590. name: "Micro",
  30591. height: math.unit(5, "inches")
  30592. },
  30593. {
  30594. name: "Normal",
  30595. height: math.unit(5 + 6 / 12, "feet"),
  30596. default: true
  30597. },
  30598. ]
  30599. ))
  30600. characterMakers.push(() => makeCharacter(
  30601. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30602. {
  30603. front: {
  30604. height: math.unit(5 + 9 / 12, "feet"),
  30605. weight: math.unit(130, "lb"),
  30606. name: "Front",
  30607. image: {
  30608. source: "./media/characters/cecelia-swift/front.svg",
  30609. extra: 502 / 484,
  30610. bottom: 23 / 523
  30611. }
  30612. },
  30613. back: {
  30614. height: math.unit(5 + 9 / 12, "feet"),
  30615. weight: math.unit(130, "lb"),
  30616. name: "Back",
  30617. image: {
  30618. source: "./media/characters/cecelia-swift/back.svg",
  30619. extra: 499 / 485,
  30620. bottom: 12 / 511
  30621. }
  30622. },
  30623. head: {
  30624. height: math.unit(0.90, "feet"),
  30625. name: "Head",
  30626. image: {
  30627. source: "./media/characters/cecelia-swift/head.svg"
  30628. }
  30629. },
  30630. rump: {
  30631. height: math.unit(1.75, "feet"),
  30632. name: "Rump",
  30633. image: {
  30634. source: "./media/characters/cecelia-swift/rump.svg"
  30635. }
  30636. },
  30637. },
  30638. [
  30639. {
  30640. name: "Normal",
  30641. height: math.unit(5 + 9 / 12, "feet"),
  30642. default: true
  30643. },
  30644. {
  30645. name: "Big",
  30646. height: math.unit(50, "feet")
  30647. },
  30648. {
  30649. name: "Macro",
  30650. height: math.unit(100, "feet")
  30651. },
  30652. {
  30653. name: "Macro+",
  30654. height: math.unit(500, "feet")
  30655. },
  30656. {
  30657. name: "Macro++",
  30658. height: math.unit(1000, "feet")
  30659. },
  30660. ]
  30661. ))
  30662. characterMakers.push(() => makeCharacter(
  30663. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30664. {
  30665. front: {
  30666. height: math.unit(6, "feet"),
  30667. weight: math.unit(150, "lb"),
  30668. name: "Front",
  30669. image: {
  30670. source: "./media/characters/kaunan/front.svg",
  30671. extra: 2890 / 2523,
  30672. bottom: 49 / 2939
  30673. }
  30674. },
  30675. },
  30676. [
  30677. {
  30678. name: "Macro",
  30679. height: math.unit(150, "feet"),
  30680. default: true
  30681. },
  30682. ]
  30683. ))
  30684. characterMakers.push(() => makeCharacter(
  30685. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30686. {
  30687. dressed: {
  30688. height: math.unit(175, "cm"),
  30689. weight: math.unit(60, "kg"),
  30690. name: "Dressed",
  30691. image: {
  30692. source: "./media/characters/fei/dressed.svg",
  30693. extra: 1402/1278,
  30694. bottom: 27/1429
  30695. }
  30696. },
  30697. nude: {
  30698. height: math.unit(175, "cm"),
  30699. weight: math.unit(60, "kg"),
  30700. name: "Nude",
  30701. image: {
  30702. source: "./media/characters/fei/nude.svg",
  30703. extra: 1402/1278,
  30704. bottom: 27/1429
  30705. }
  30706. },
  30707. heels: {
  30708. height: math.unit(0.466, "feet"),
  30709. name: "Heels",
  30710. image: {
  30711. source: "./media/characters/fei/heels.svg",
  30712. extra: 156/152,
  30713. bottom: 28/184
  30714. }
  30715. },
  30716. },
  30717. [
  30718. {
  30719. name: "Mortal",
  30720. height: math.unit(175, "cm")
  30721. },
  30722. {
  30723. name: "Normal",
  30724. height: math.unit(3500, "m")
  30725. },
  30726. {
  30727. name: "Stroll",
  30728. height: math.unit(18.4, "km"),
  30729. default: true
  30730. },
  30731. {
  30732. name: "Showoff",
  30733. height: math.unit(175, "km")
  30734. },
  30735. ]
  30736. ))
  30737. characterMakers.push(() => makeCharacter(
  30738. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30739. {
  30740. front: {
  30741. height: math.unit(7, "feet"),
  30742. weight: math.unit(1000, "kg"),
  30743. name: "Front",
  30744. image: {
  30745. source: "./media/characters/edrax/front.svg",
  30746. extra: 2838 / 2550,
  30747. bottom: 130 / 2968
  30748. }
  30749. },
  30750. },
  30751. [
  30752. {
  30753. name: "Small",
  30754. height: math.unit(7, "feet")
  30755. },
  30756. {
  30757. name: "Normal",
  30758. height: math.unit(1500, "meters")
  30759. },
  30760. {
  30761. name: "Mega",
  30762. height: math.unit(12000000, "km"),
  30763. default: true
  30764. },
  30765. {
  30766. name: "Megamacro",
  30767. height: math.unit(10600000, "lightyears")
  30768. },
  30769. {
  30770. name: "Hypermacro",
  30771. height: math.unit(256, "yottameters")
  30772. },
  30773. ]
  30774. ))
  30775. characterMakers.push(() => makeCharacter(
  30776. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30777. {
  30778. front: {
  30779. height: math.unit(10, "feet"),
  30780. weight: math.unit(750, "lb"),
  30781. name: "Front",
  30782. image: {
  30783. source: "./media/characters/clove/front.svg",
  30784. extra: 1918/1751,
  30785. bottom: 52/1970
  30786. }
  30787. },
  30788. back: {
  30789. height: math.unit(10, "feet"),
  30790. weight: math.unit(750, "lb"),
  30791. name: "Back",
  30792. image: {
  30793. source: "./media/characters/clove/back.svg",
  30794. extra: 1912/1747,
  30795. bottom: 50/1962
  30796. }
  30797. },
  30798. },
  30799. [
  30800. {
  30801. name: "Normal",
  30802. height: math.unit(10, "feet"),
  30803. default: true
  30804. },
  30805. ]
  30806. ))
  30807. characterMakers.push(() => makeCharacter(
  30808. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30809. {
  30810. front: {
  30811. height: math.unit(4, "feet"),
  30812. weight: math.unit(50, "lb"),
  30813. name: "Front",
  30814. image: {
  30815. source: "./media/characters/alex-rabbit/front.svg",
  30816. extra: 507 / 458,
  30817. bottom: 18.5 / 527
  30818. }
  30819. },
  30820. back: {
  30821. height: math.unit(4, "feet"),
  30822. weight: math.unit(50, "lb"),
  30823. name: "Back",
  30824. image: {
  30825. source: "./media/characters/alex-rabbit/back.svg",
  30826. extra: 502 / 460,
  30827. bottom: 18.9 / 521
  30828. }
  30829. },
  30830. },
  30831. [
  30832. {
  30833. name: "Normal",
  30834. height: math.unit(4, "feet"),
  30835. default: true
  30836. },
  30837. ]
  30838. ))
  30839. characterMakers.push(() => makeCharacter(
  30840. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30841. {
  30842. front: {
  30843. height: math.unit(1 + 3 / 12, "feet"),
  30844. weight: math.unit(80, "lb"),
  30845. name: "Front",
  30846. image: {
  30847. source: "./media/characters/zander-rose/front.svg",
  30848. extra: 916 / 797,
  30849. bottom: 17 / 933
  30850. }
  30851. },
  30852. back: {
  30853. height: math.unit(1 + 3 / 12, "feet"),
  30854. weight: math.unit(80, "lb"),
  30855. name: "Back",
  30856. image: {
  30857. source: "./media/characters/zander-rose/back.svg",
  30858. extra: 903 / 779,
  30859. bottom: 31 / 934
  30860. }
  30861. },
  30862. },
  30863. [
  30864. {
  30865. name: "Normal",
  30866. height: math.unit(1 + 3 / 12, "feet"),
  30867. default: true
  30868. },
  30869. ]
  30870. ))
  30871. characterMakers.push(() => makeCharacter(
  30872. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30873. {
  30874. anthro: {
  30875. height: math.unit(6, "feet"),
  30876. weight: math.unit(150, "lb"),
  30877. name: "Anthro",
  30878. image: {
  30879. source: "./media/characters/razz/anthro.svg",
  30880. extra: 1437 / 1343,
  30881. bottom: 48 / 1485
  30882. }
  30883. },
  30884. feral: {
  30885. height: math.unit(6, "feet"),
  30886. weight: math.unit(150, "lb"),
  30887. name: "Feral",
  30888. image: {
  30889. source: "./media/characters/razz/feral.svg",
  30890. extra: 2569 / 1385,
  30891. bottom: 95 / 2664
  30892. }
  30893. },
  30894. },
  30895. [
  30896. {
  30897. name: "Normal",
  30898. height: math.unit(6, "feet"),
  30899. default: true
  30900. },
  30901. ]
  30902. ))
  30903. characterMakers.push(() => makeCharacter(
  30904. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30905. {
  30906. front: {
  30907. height: math.unit(9 + 4 / 12, "feet"),
  30908. weight: math.unit(500, "lb"),
  30909. name: "Front",
  30910. image: {
  30911. source: "./media/characters/morrigan/front.svg",
  30912. extra: 2707 / 2579,
  30913. bottom: 156 / 2863
  30914. }
  30915. },
  30916. },
  30917. [
  30918. {
  30919. name: "Normal",
  30920. height: math.unit(9 + 4 / 12, "feet"),
  30921. default: true
  30922. },
  30923. ]
  30924. ))
  30925. characterMakers.push(() => makeCharacter(
  30926. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30927. {
  30928. front: {
  30929. height: math.unit(5, "stories"),
  30930. weight: math.unit(4000, "lb"),
  30931. name: "Front",
  30932. image: {
  30933. source: "./media/characters/jenene/front.svg",
  30934. extra: 1780 / 1710,
  30935. bottom: 57 / 1837
  30936. }
  30937. },
  30938. },
  30939. [
  30940. {
  30941. name: "Normal",
  30942. height: math.unit(5, "stories"),
  30943. default: true
  30944. },
  30945. ]
  30946. ))
  30947. characterMakers.push(() => makeCharacter(
  30948. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30949. {
  30950. taurSfw: {
  30951. height: math.unit(10, "meters"),
  30952. weight: math.unit(17500, "kg"),
  30953. name: "Taur",
  30954. image: {
  30955. source: "./media/characters/faey/taur-sfw.svg",
  30956. extra: 1200 / 968,
  30957. bottom: 41 / 1241
  30958. }
  30959. },
  30960. chestmaw: {
  30961. height: math.unit(2.01, "meters"),
  30962. name: "Chestmaw",
  30963. image: {
  30964. source: "./media/characters/faey/chestmaw.svg"
  30965. }
  30966. },
  30967. foot: {
  30968. height: math.unit(2.43, "meters"),
  30969. name: "Foot",
  30970. image: {
  30971. source: "./media/characters/faey/foot.svg"
  30972. }
  30973. },
  30974. jaws: {
  30975. height: math.unit(1.66, "meters"),
  30976. name: "Jaws",
  30977. image: {
  30978. source: "./media/characters/faey/jaws.svg"
  30979. }
  30980. },
  30981. tongues: {
  30982. height: math.unit(2.01, "meters"),
  30983. name: "Tongues",
  30984. image: {
  30985. source: "./media/characters/faey/tongues.svg"
  30986. }
  30987. },
  30988. },
  30989. [
  30990. {
  30991. name: "Small",
  30992. height: math.unit(10, "meters"),
  30993. default: true
  30994. },
  30995. {
  30996. name: "Big",
  30997. height: math.unit(500000, "km")
  30998. },
  30999. ]
  31000. ))
  31001. characterMakers.push(() => makeCharacter(
  31002. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  31003. {
  31004. front: {
  31005. height: math.unit(7, "feet"),
  31006. weight: math.unit(275, "lb"),
  31007. name: "Front",
  31008. image: {
  31009. source: "./media/characters/roku/front.svg",
  31010. extra: 903 / 878,
  31011. bottom: 37 / 940
  31012. }
  31013. },
  31014. },
  31015. [
  31016. {
  31017. name: "Normal",
  31018. height: math.unit(7, "feet"),
  31019. default: true
  31020. },
  31021. {
  31022. name: "Macro",
  31023. height: math.unit(500, "feet")
  31024. },
  31025. {
  31026. name: "Megamacro",
  31027. height: math.unit(200, "miles")
  31028. },
  31029. ]
  31030. ))
  31031. characterMakers.push(() => makeCharacter(
  31032. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  31033. {
  31034. front: {
  31035. height: math.unit(6 + 2 / 12, "feet"),
  31036. weight: math.unit(150, "lb"),
  31037. name: "Front",
  31038. image: {
  31039. source: "./media/characters/lira/front.svg",
  31040. extra: 1727 / 1605,
  31041. bottom: 26 / 1753
  31042. }
  31043. },
  31044. back: {
  31045. height: math.unit(6 + 2 / 12, "feet"),
  31046. weight: math.unit(150, "lb"),
  31047. name: "Back",
  31048. image: {
  31049. source: "./media/characters/lira/back.svg",
  31050. extra: 1713/1621,
  31051. bottom: 20/1733
  31052. }
  31053. },
  31054. hand: {
  31055. height: math.unit(0.75, "feet"),
  31056. name: "Hand",
  31057. image: {
  31058. source: "./media/characters/lira/hand.svg"
  31059. }
  31060. },
  31061. maw: {
  31062. height: math.unit(0.65, "feet"),
  31063. name: "Maw",
  31064. image: {
  31065. source: "./media/characters/lira/maw.svg"
  31066. }
  31067. },
  31068. pawDigi: {
  31069. height: math.unit(1.6, "feet"),
  31070. name: "Paw Digi",
  31071. image: {
  31072. source: "./media/characters/lira/paw-digi.svg"
  31073. }
  31074. },
  31075. pawPlanti: {
  31076. height: math.unit(1.4, "feet"),
  31077. name: "Paw Planti",
  31078. image: {
  31079. source: "./media/characters/lira/paw-planti.svg"
  31080. }
  31081. },
  31082. },
  31083. [
  31084. {
  31085. name: "Normal",
  31086. height: math.unit(6 + 2 / 12, "feet"),
  31087. default: true
  31088. },
  31089. {
  31090. name: "Macro",
  31091. height: math.unit(100, "feet")
  31092. },
  31093. {
  31094. name: "Macro²",
  31095. height: math.unit(1600, "feet")
  31096. },
  31097. {
  31098. name: "Planetary",
  31099. height: math.unit(20, "earths")
  31100. },
  31101. ]
  31102. ))
  31103. characterMakers.push(() => makeCharacter(
  31104. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  31105. {
  31106. front: {
  31107. height: math.unit(6, "feet"),
  31108. weight: math.unit(150, "lb"),
  31109. name: "Front",
  31110. image: {
  31111. source: "./media/characters/hadjet/front.svg",
  31112. extra: 1480 / 1346,
  31113. bottom: 26 / 1506
  31114. }
  31115. },
  31116. frontNsfw: {
  31117. height: math.unit(6, "feet"),
  31118. weight: math.unit(150, "lb"),
  31119. name: "Front (NSFW)",
  31120. image: {
  31121. source: "./media/characters/hadjet/front-nsfw.svg",
  31122. extra: 1440 / 1358,
  31123. bottom: 52 / 1492
  31124. }
  31125. },
  31126. },
  31127. [
  31128. {
  31129. name: "Macro",
  31130. height: math.unit(10, "stories"),
  31131. default: true
  31132. },
  31133. {
  31134. name: "Megamacro",
  31135. height: math.unit(1.5, "miles")
  31136. },
  31137. {
  31138. name: "Megamacro+",
  31139. height: math.unit(5, "miles")
  31140. },
  31141. ]
  31142. ))
  31143. characterMakers.push(() => makeCharacter(
  31144. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  31145. {
  31146. side: {
  31147. height: math.unit(106, "feet"),
  31148. weight: math.unit(500, "tonnes"),
  31149. name: "Side",
  31150. image: {
  31151. source: "./media/characters/kodran/side.svg",
  31152. extra: 553 / 480,
  31153. bottom: 33 / 586
  31154. }
  31155. },
  31156. front: {
  31157. height: math.unit(132, "feet"),
  31158. weight: math.unit(500, "tonnes"),
  31159. name: "Front",
  31160. image: {
  31161. source: "./media/characters/kodran/front.svg",
  31162. extra: 667 / 643,
  31163. bottom: 42 / 709
  31164. }
  31165. },
  31166. flying: {
  31167. height: math.unit(350, "feet"),
  31168. weight: math.unit(500, "tonnes"),
  31169. name: "Flying",
  31170. image: {
  31171. source: "./media/characters/kodran/flying.svg"
  31172. }
  31173. },
  31174. foot: {
  31175. height: math.unit(33, "feet"),
  31176. name: "Foot",
  31177. image: {
  31178. source: "./media/characters/kodran/foot.svg"
  31179. }
  31180. },
  31181. footFront: {
  31182. height: math.unit(19, "feet"),
  31183. name: "Foot (Front)",
  31184. image: {
  31185. source: "./media/characters/kodran/foot-front.svg",
  31186. extra: 261 / 261,
  31187. bottom: 91 / 352
  31188. }
  31189. },
  31190. headFront: {
  31191. height: math.unit(53, "feet"),
  31192. name: "Head (Front)",
  31193. image: {
  31194. source: "./media/characters/kodran/head-front.svg"
  31195. }
  31196. },
  31197. headSide: {
  31198. height: math.unit(65, "feet"),
  31199. name: "Head (Side)",
  31200. image: {
  31201. source: "./media/characters/kodran/head-side.svg"
  31202. }
  31203. },
  31204. throat: {
  31205. height: math.unit(79, "feet"),
  31206. name: "Throat",
  31207. image: {
  31208. source: "./media/characters/kodran/throat.svg"
  31209. }
  31210. },
  31211. },
  31212. [
  31213. {
  31214. name: "Large",
  31215. height: math.unit(106, "feet"),
  31216. default: true
  31217. },
  31218. ]
  31219. ))
  31220. characterMakers.push(() => makeCharacter(
  31221. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31222. {
  31223. side: {
  31224. height: math.unit(11, "feet"),
  31225. weight: math.unit(150, "lb"),
  31226. name: "Side",
  31227. image: {
  31228. source: "./media/characters/pyxaron/side.svg",
  31229. extra: 305 / 195,
  31230. bottom: 17 / 322
  31231. }
  31232. },
  31233. },
  31234. [
  31235. {
  31236. name: "Normal",
  31237. height: math.unit(11, "feet"),
  31238. default: true
  31239. },
  31240. ]
  31241. ))
  31242. characterMakers.push(() => makeCharacter(
  31243. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31244. {
  31245. front: {
  31246. height: math.unit(6, "feet"),
  31247. weight: math.unit(150, "lb"),
  31248. name: "Front",
  31249. image: {
  31250. source: "./media/characters/meep/front.svg",
  31251. extra: 88 / 80,
  31252. bottom: 6 / 94
  31253. }
  31254. },
  31255. },
  31256. [
  31257. {
  31258. name: "Fun Sized",
  31259. height: math.unit(2, "inches"),
  31260. default: true
  31261. },
  31262. {
  31263. name: "Friend Sized",
  31264. height: math.unit(8, "inches")
  31265. },
  31266. ]
  31267. ))
  31268. characterMakers.push(() => makeCharacter(
  31269. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31270. {
  31271. front: {
  31272. height: math.unit(15, "feet"),
  31273. weight: math.unit(2500, "lb"),
  31274. name: "Front",
  31275. image: {
  31276. source: "./media/characters/holly-rabbit/front.svg",
  31277. extra: 1433 / 1233,
  31278. bottom: 125 / 1558
  31279. }
  31280. },
  31281. dick: {
  31282. height: math.unit(4.6, "feet"),
  31283. name: "Dick",
  31284. image: {
  31285. source: "./media/characters/holly-rabbit/dick.svg"
  31286. }
  31287. },
  31288. },
  31289. [
  31290. {
  31291. name: "Normal",
  31292. height: math.unit(15, "feet"),
  31293. default: true
  31294. },
  31295. {
  31296. name: "Macro",
  31297. height: math.unit(250, "feet")
  31298. },
  31299. {
  31300. name: "Macro+",
  31301. height: math.unit(2500, "feet")
  31302. },
  31303. ]
  31304. ))
  31305. characterMakers.push(() => makeCharacter(
  31306. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31307. {
  31308. front: {
  31309. height: math.unit(3.02, "meters"),
  31310. weight: math.unit(500, "kg"),
  31311. name: "Front",
  31312. image: {
  31313. source: "./media/characters/drena/front.svg",
  31314. extra: 282 / 243,
  31315. bottom: 8 / 290
  31316. }
  31317. },
  31318. side: {
  31319. height: math.unit(3.02, "meters"),
  31320. weight: math.unit(500, "kg"),
  31321. name: "Side",
  31322. image: {
  31323. source: "./media/characters/drena/side.svg",
  31324. extra: 280 / 245,
  31325. bottom: 10 / 290
  31326. }
  31327. },
  31328. back: {
  31329. height: math.unit(3.02, "meters"),
  31330. weight: math.unit(500, "kg"),
  31331. name: "Back",
  31332. image: {
  31333. source: "./media/characters/drena/back.svg",
  31334. extra: 278 / 243,
  31335. bottom: 2 / 280
  31336. }
  31337. },
  31338. foot: {
  31339. height: math.unit(0.75, "meters"),
  31340. name: "Foot",
  31341. image: {
  31342. source: "./media/characters/drena/foot.svg"
  31343. }
  31344. },
  31345. maw: {
  31346. height: math.unit(0.82, "meters"),
  31347. name: "Maw",
  31348. image: {
  31349. source: "./media/characters/drena/maw.svg"
  31350. }
  31351. },
  31352. eating: {
  31353. height: math.unit(0.75, "meters"),
  31354. name: "Eating",
  31355. image: {
  31356. source: "./media/characters/drena/eating.svg"
  31357. }
  31358. },
  31359. rump: {
  31360. height: math.unit(0.93, "meters"),
  31361. name: "Rump",
  31362. image: {
  31363. source: "./media/characters/drena/rump.svg"
  31364. }
  31365. },
  31366. },
  31367. [
  31368. {
  31369. name: "Normal",
  31370. height: math.unit(3.02, "meters"),
  31371. default: true
  31372. },
  31373. ]
  31374. ))
  31375. characterMakers.push(() => makeCharacter(
  31376. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31377. {
  31378. front: {
  31379. height: math.unit(6 + 4 / 12, "feet"),
  31380. weight: math.unit(250, "lb"),
  31381. name: "Front",
  31382. image: {
  31383. source: "./media/characters/remmyzilla/front.svg",
  31384. extra: 4033 / 3588,
  31385. bottom: 123 / 4156
  31386. }
  31387. },
  31388. back: {
  31389. height: math.unit(6 + 4 / 12, "feet"),
  31390. weight: math.unit(250, "lb"),
  31391. name: "Back",
  31392. image: {
  31393. source: "./media/characters/remmyzilla/back.svg",
  31394. extra: 1696/1602,
  31395. bottom: 63/1759
  31396. }
  31397. },
  31398. paw: {
  31399. height: math.unit(1.73, "feet"),
  31400. name: "Paw",
  31401. image: {
  31402. source: "./media/characters/remmyzilla/paw.svg"
  31403. },
  31404. extraAttributes: {
  31405. "toeSize": {
  31406. name: "Toe Size",
  31407. power: 2,
  31408. type: "area",
  31409. base: math.unit(0.0035, "m^2")
  31410. },
  31411. "padSize": {
  31412. name: "Pad Size",
  31413. power: 2,
  31414. type: "area",
  31415. base: math.unit(0.015, "m^2")
  31416. },
  31417. "pawsize": {
  31418. name: "Paw Size",
  31419. power: 2,
  31420. type: "area",
  31421. base: math.unit(0.072, "m^2")
  31422. },
  31423. }
  31424. },
  31425. maw: {
  31426. height: math.unit(1.73, "feet"),
  31427. name: "Maw",
  31428. image: {
  31429. source: "./media/characters/remmyzilla/maw.svg"
  31430. }
  31431. },
  31432. },
  31433. [
  31434. {
  31435. name: "Normal",
  31436. height: math.unit(6 + 4 / 12, "feet")
  31437. },
  31438. {
  31439. name: "Minimacro",
  31440. height: math.unit(12 + 8 / 12, "feet")
  31441. },
  31442. {
  31443. name: "Normal",
  31444. height: math.unit(640, "feet"),
  31445. default: true
  31446. },
  31447. {
  31448. name: "Megamacro",
  31449. height: math.unit(6400, "feet")
  31450. },
  31451. {
  31452. name: "Gigamacro",
  31453. height: math.unit(64000, "miles")
  31454. },
  31455. ]
  31456. ))
  31457. characterMakers.push(() => makeCharacter(
  31458. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31459. {
  31460. front: {
  31461. height: math.unit(2.5, "meters"),
  31462. weight: math.unit(300, "lb"),
  31463. name: "Front",
  31464. image: {
  31465. source: "./media/characters/lawrence/front.svg",
  31466. extra: 357 / 335,
  31467. bottom: 30 / 387
  31468. }
  31469. },
  31470. back: {
  31471. height: math.unit(2.5, "meters"),
  31472. weight: math.unit(300, "lb"),
  31473. name: "Back",
  31474. image: {
  31475. source: "./media/characters/lawrence/back.svg",
  31476. extra: 357 / 338,
  31477. bottom: 16 / 373
  31478. }
  31479. },
  31480. head: {
  31481. height: math.unit(0.9, "meter"),
  31482. name: "Head",
  31483. image: {
  31484. source: "./media/characters/lawrence/head.svg"
  31485. }
  31486. },
  31487. maw: {
  31488. height: math.unit(0.7, "meter"),
  31489. name: "Maw",
  31490. image: {
  31491. source: "./media/characters/lawrence/maw.svg"
  31492. }
  31493. },
  31494. footBottom: {
  31495. height: math.unit(0.5, "meter"),
  31496. name: "Foot (Bottom)",
  31497. image: {
  31498. source: "./media/characters/lawrence/foot-bottom.svg"
  31499. }
  31500. },
  31501. footTop: {
  31502. height: math.unit(0.5, "meter"),
  31503. name: "Foot (Top)",
  31504. image: {
  31505. source: "./media/characters/lawrence/foot-top.svg"
  31506. }
  31507. },
  31508. },
  31509. [
  31510. {
  31511. name: "Normal",
  31512. height: math.unit(2.5, "meters"),
  31513. default: true
  31514. },
  31515. {
  31516. name: "Macro",
  31517. height: math.unit(95, "meters")
  31518. },
  31519. {
  31520. name: "Megamacro",
  31521. height: math.unit(150, "km")
  31522. },
  31523. ]
  31524. ))
  31525. characterMakers.push(() => makeCharacter(
  31526. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31527. {
  31528. front: {
  31529. height: math.unit(4.2, "meters"),
  31530. preyCapacity: math.unit(50, "m^3"),
  31531. weight: math.unit(30, "tonnes"),
  31532. name: "Front",
  31533. image: {
  31534. source: "./media/characters/sydney/front.svg",
  31535. extra: 1177/1129,
  31536. bottom: 197/1374
  31537. },
  31538. extraAttributes: {
  31539. "length": {
  31540. name: "Length",
  31541. power: 1,
  31542. type: "length",
  31543. base: math.unit(21, "meters")
  31544. },
  31545. }
  31546. },
  31547. },
  31548. [
  31549. {
  31550. name: "Normal",
  31551. height: math.unit(4.2, "meters"),
  31552. default: true
  31553. },
  31554. ]
  31555. ))
  31556. characterMakers.push(() => makeCharacter(
  31557. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31558. {
  31559. back: {
  31560. height: math.unit(201, "feet"),
  31561. name: "Back",
  31562. image: {
  31563. source: "./media/characters/jessica/back.svg",
  31564. extra: 273 / 259,
  31565. bottom: 7 / 280
  31566. }
  31567. },
  31568. },
  31569. [
  31570. {
  31571. name: "Normal",
  31572. height: math.unit(201, "feet"),
  31573. default: true
  31574. },
  31575. {
  31576. name: "Megamacro",
  31577. height: math.unit(8, "miles")
  31578. },
  31579. ]
  31580. ))
  31581. characterMakers.push(() => makeCharacter(
  31582. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31583. {
  31584. side: {
  31585. height: math.unit(5.6, "m"),
  31586. weight: math.unit(8000, "kg"),
  31587. name: "Side",
  31588. image: {
  31589. source: "./media/characters/victoria/side.svg",
  31590. extra: 1542/1229,
  31591. bottom: 124/1666
  31592. }
  31593. },
  31594. maw: {
  31595. height: math.unit(7.14, "feet"),
  31596. name: "Maw",
  31597. image: {
  31598. source: "./media/characters/victoria/maw.svg"
  31599. }
  31600. },
  31601. },
  31602. [
  31603. {
  31604. name: "Normal",
  31605. height: math.unit(5.6, "m"),
  31606. default: true
  31607. },
  31608. ]
  31609. ))
  31610. characterMakers.push(() => makeCharacter(
  31611. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  31612. {
  31613. front: {
  31614. height: math.unit(5 + 6 / 12, "feet"),
  31615. name: "Front",
  31616. image: {
  31617. source: "./media/characters/cat/cat-front.svg",
  31618. extra: 1422/1262,
  31619. bottom: 61/1483
  31620. },
  31621. form: "cat",
  31622. default: true
  31623. },
  31624. back: {
  31625. height: math.unit(5 + 6 / 12, "feet"),
  31626. name: "Back",
  31627. image: {
  31628. source: "./media/characters/cat/cat-back.svg",
  31629. extra: 1466/1301,
  31630. bottom: 19/1485
  31631. },
  31632. form: "cat"
  31633. },
  31634. taur: {
  31635. height: math.unit(7, "feet"),
  31636. name: "Side",
  31637. image: {
  31638. source: "./media/characters/cat/taur-side.svg",
  31639. extra: 1389/1233,
  31640. bottom: 83/1472
  31641. },
  31642. form: "taur",
  31643. default: true
  31644. },
  31645. lucarioFront: {
  31646. height: math.unit(4, "feet"),
  31647. name: "Front",
  31648. image: {
  31649. source: "./media/characters/cat/lucario-front.svg",
  31650. extra: 1149/1019,
  31651. bottom: 84/1233
  31652. },
  31653. form: "lucario",
  31654. default: true
  31655. },
  31656. lucarioBack: {
  31657. height: math.unit(4, "feet"),
  31658. name: "Back",
  31659. image: {
  31660. source: "./media/characters/cat/lucario-back.svg",
  31661. extra: 1190/1059,
  31662. bottom: 33/1223
  31663. },
  31664. form: "lucario"
  31665. },
  31666. riolu_front: {
  31667. height: math.unit(2 + 4/12, "feet"),
  31668. name: "Front",
  31669. image: {
  31670. source: "./media/characters/cat/riolu-front.svg",
  31671. extra: 1104/956,
  31672. bottom: 70/1174
  31673. },
  31674. form: "riolu",
  31675. default: true
  31676. },
  31677. nickit: {
  31678. height: math.unit(2, "feet"),
  31679. name: "Side",
  31680. image: {
  31681. source: "./media/characters/cat/nickit-side.svg",
  31682. extra: 1087/852,
  31683. bottom: 67/1154
  31684. },
  31685. form: "nickit",
  31686. default: true
  31687. },
  31688. lopunnyFront: {
  31689. height: math.unit(5, "feet"),
  31690. name: "Front",
  31691. image: {
  31692. source: "./media/characters/cat/lopunny-front.svg",
  31693. extra: 1217/1078,
  31694. bottom: 23/1240
  31695. },
  31696. form: "lopunny",
  31697. default: true
  31698. },
  31699. lopunnyBack: {
  31700. height: math.unit(5, "feet"),
  31701. name: "Back",
  31702. image: {
  31703. source: "./media/characters/cat/lopunny-back.svg",
  31704. extra: 1205/1057,
  31705. bottom: 33/1238
  31706. },
  31707. form: "lopunny"
  31708. },
  31709. dog_front: {
  31710. height: math.unit(5 + 9/12, "feet"),
  31711. name: "Front",
  31712. image: {
  31713. source: "./media/characters/cat/dog-front.svg",
  31714. extra: 1403/1309,
  31715. bottom: 31/1434
  31716. },
  31717. form: "dog",
  31718. default: true
  31719. },
  31720. dog_back: {
  31721. height: math.unit(5 + 9/12, "feet"),
  31722. name: "Back",
  31723. image: {
  31724. source: "./media/characters/cat/dog-back.svg",
  31725. extra: 1393/1297,
  31726. bottom: 38/1431
  31727. },
  31728. form: "dog",
  31729. },
  31730. pikachu_front: {
  31731. height: math.unit(2.64, "feet"),
  31732. name: "Front",
  31733. image: {
  31734. source: "./media/characters/cat/pikachu-front.svg",
  31735. extra: 1224/958,
  31736. bottom: 34/1258
  31737. },
  31738. form: "pikachu",
  31739. default: true
  31740. },
  31741. pikachu_back: {
  31742. height: math.unit(2.64, "feet"),
  31743. name: "Back",
  31744. image: {
  31745. source: "./media/characters/cat/pikachu-back.svg",
  31746. extra: 1228/958,
  31747. bottom: 16/1244
  31748. },
  31749. form: "pikachu",
  31750. },
  31751. gigachuFront: {
  31752. height: math.unit(75, "feet"),
  31753. name: "Front",
  31754. image: {
  31755. source: "./media/characters/cat/gigachu-front.svg",
  31756. extra: 1239/1027,
  31757. bottom: 32/1271
  31758. },
  31759. form: "gigachu",
  31760. default: true
  31761. },
  31762. gigachuBack: {
  31763. height: math.unit(75, "feet"),
  31764. name: "Back",
  31765. image: {
  31766. source: "./media/characters/cat/gigachu-back.svg",
  31767. extra: 1229/1030,
  31768. bottom: 9/1238
  31769. },
  31770. form: "gigachu"
  31771. },
  31772. },
  31773. [
  31774. {
  31775. name: "Really small",
  31776. height: math.unit(1, "nm"),
  31777. allForms: true
  31778. },
  31779. {
  31780. name: "Micro",
  31781. height: math.unit(5, "inches"),
  31782. allForms: true
  31783. },
  31784. {
  31785. name: "Normal",
  31786. height: math.unit(5 + 6 / 12, "feet"),
  31787. default: true,
  31788. form: "cat"
  31789. },
  31790. {
  31791. name: "Normal",
  31792. height: math.unit(7, "feet"),
  31793. default: true,
  31794. form: "taur"
  31795. },
  31796. {
  31797. name: "Normal",
  31798. height: math.unit(4, "feet"),
  31799. default: true,
  31800. form: "lucario"
  31801. },
  31802. {
  31803. name: "Normal",
  31804. height: math.unit(2, "feet"),
  31805. default: true,
  31806. form: "nickit"
  31807. },
  31808. {
  31809. name: "Normal",
  31810. height: math.unit(5, "feet"),
  31811. default: true,
  31812. form: "lopunny"
  31813. },
  31814. {
  31815. name: "Normal",
  31816. height: math.unit(2 + 4/12, "feet"),
  31817. default: true,
  31818. form: "riolu"
  31819. },
  31820. {
  31821. name: "Normal",
  31822. height: math.unit(5 + 6 / 12, "feet"),
  31823. default: true,
  31824. form: "dog"
  31825. },
  31826. {
  31827. name: "Macro",
  31828. height: math.unit(50, "feet"),
  31829. allForms: true
  31830. },
  31831. {
  31832. name: "Normal",
  31833. height: math.unit(2.64, "feet"),
  31834. default: true,
  31835. form: "pikachu"
  31836. },
  31837. {
  31838. name: "Dynamax",
  31839. height: math.unit(75, "feet"),
  31840. form: "gigachu",
  31841. default: true
  31842. },
  31843. {
  31844. name: "Macro+",
  31845. height: math.unit(150, "feet"),
  31846. allForms: true
  31847. },
  31848. {
  31849. name: "Megamacro",
  31850. height: math.unit(100, "miles"),
  31851. allForms: true
  31852. },
  31853. ],
  31854. {
  31855. "cat": {
  31856. name: "Cat",
  31857. default: true
  31858. },
  31859. "taur": {
  31860. name: "Taur",
  31861. },
  31862. "lucario": {
  31863. name: "Lucario",
  31864. },
  31865. "riolu": {
  31866. name: "Riolu",
  31867. },
  31868. "nickit": {
  31869. name: "Nickit",
  31870. },
  31871. "lopunny": {
  31872. name: "Lopunny",
  31873. },
  31874. "dog": {
  31875. name: "Dog",
  31876. },
  31877. "pikachu": {
  31878. name: "Pikachu",
  31879. },
  31880. "gigachu": {
  31881. name: "Gigachu",
  31882. ignoreAllFormSizes: true
  31883. }
  31884. }
  31885. ))
  31886. characterMakers.push(() => makeCharacter(
  31887. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31888. {
  31889. front: {
  31890. height: math.unit(63.4, "meters"),
  31891. weight: math.unit(3.28349e+6, "kilograms"),
  31892. name: "Front",
  31893. image: {
  31894. source: "./media/characters/kirina-violet/front.svg",
  31895. extra: 2812 / 2725,
  31896. bottom: 0 / 2812
  31897. }
  31898. },
  31899. back: {
  31900. height: math.unit(63.4, "meters"),
  31901. weight: math.unit(3.28349e+6, "kilograms"),
  31902. name: "Back",
  31903. image: {
  31904. source: "./media/characters/kirina-violet/back.svg",
  31905. extra: 2812 / 2725,
  31906. bottom: 0 / 2812
  31907. }
  31908. },
  31909. mouth: {
  31910. height: math.unit(4.35, "meters"),
  31911. name: "Mouth",
  31912. image: {
  31913. source: "./media/characters/kirina-violet/mouth.svg"
  31914. }
  31915. },
  31916. paw: {
  31917. height: math.unit(5.6, "meters"),
  31918. name: "Paw",
  31919. image: {
  31920. source: "./media/characters/kirina-violet/paw.svg"
  31921. }
  31922. },
  31923. tail: {
  31924. height: math.unit(18, "meters"),
  31925. name: "Tail",
  31926. image: {
  31927. source: "./media/characters/kirina-violet/tail.svg"
  31928. }
  31929. },
  31930. },
  31931. [
  31932. {
  31933. name: "Macro",
  31934. height: math.unit(63.4, "meters"),
  31935. default: true
  31936. },
  31937. ]
  31938. ))
  31939. characterMakers.push(() => makeCharacter(
  31940. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31941. {
  31942. front: {
  31943. height: math.unit(6, "feet"),
  31944. weight: math.unit(150, "lb"),
  31945. name: "Front",
  31946. image: {
  31947. source: "./media/characters/sfaiyan/front.svg",
  31948. extra: 999 / 978,
  31949. bottom: 5 / 1004
  31950. }
  31951. },
  31952. },
  31953. [
  31954. {
  31955. name: "Normal",
  31956. height: math.unit(1.82, "meters")
  31957. },
  31958. {
  31959. name: "Giant",
  31960. height: math.unit(2.27, "km"),
  31961. default: true
  31962. },
  31963. ]
  31964. ))
  31965. characterMakers.push(() => makeCharacter(
  31966. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31967. {
  31968. front: {
  31969. height: math.unit(179, "cm"),
  31970. weight: math.unit(100, "kg"),
  31971. name: "Front",
  31972. image: {
  31973. source: "./media/characters/raunehkeli/front.svg",
  31974. extra: 1934 / 1926,
  31975. bottom: 0 / 1934
  31976. }
  31977. },
  31978. },
  31979. [
  31980. {
  31981. name: "Normal",
  31982. height: math.unit(179, "cm")
  31983. },
  31984. {
  31985. name: "Maximum",
  31986. height: math.unit(575, "meters"),
  31987. default: true
  31988. },
  31989. ]
  31990. ))
  31991. characterMakers.push(() => makeCharacter(
  31992. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31993. {
  31994. front: {
  31995. height: math.unit(6, "feet"),
  31996. weight: math.unit(150, "lb"),
  31997. name: "Front",
  31998. image: {
  31999. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  32000. extra: 2625 / 2518,
  32001. bottom: 60 / 2685
  32002. }
  32003. },
  32004. },
  32005. [
  32006. {
  32007. name: "Normal",
  32008. height: math.unit(6 + 2 / 12, "feet")
  32009. },
  32010. {
  32011. name: "Macro",
  32012. height: math.unit(1180, "feet"),
  32013. default: true
  32014. },
  32015. ]
  32016. ))
  32017. characterMakers.push(() => makeCharacter(
  32018. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  32019. {
  32020. front: {
  32021. height: math.unit(5 + 6 / 12, "feet"),
  32022. weight: math.unit(108, "lb"),
  32023. name: "Front",
  32024. image: {
  32025. source: "./media/characters/lilith-zott/front.svg",
  32026. extra: 2510 / 2238,
  32027. bottom: 100 / 2610
  32028. }
  32029. },
  32030. frontDressed: {
  32031. height: math.unit(5 + 6 / 12, "feet"),
  32032. weight: math.unit(108, "lb"),
  32033. name: "Front (Dressed)",
  32034. image: {
  32035. source: "./media/characters/lilith-zott/front-dressed.svg",
  32036. extra: 2510 / 2238,
  32037. bottom: 100 / 2610
  32038. }
  32039. },
  32040. },
  32041. [
  32042. {
  32043. name: "Normal",
  32044. height: math.unit(5 + 6 / 12, "feet")
  32045. },
  32046. {
  32047. name: "Macro",
  32048. height: math.unit(1030, "feet"),
  32049. default: true
  32050. },
  32051. ]
  32052. ))
  32053. characterMakers.push(() => makeCharacter(
  32054. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  32055. {
  32056. front: {
  32057. height: math.unit(6, "feet"),
  32058. weight: math.unit(150, "lb"),
  32059. name: "Front",
  32060. image: {
  32061. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  32062. extra: 2567 / 2435,
  32063. bottom: 39 / 2606
  32064. }
  32065. },
  32066. frontSuper: {
  32067. height: math.unit(6, "feet"),
  32068. name: "Front (Super)",
  32069. image: {
  32070. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  32071. extra: 2567 / 2435,
  32072. bottom: 39 / 2606
  32073. }
  32074. },
  32075. },
  32076. [
  32077. {
  32078. name: "Normal",
  32079. height: math.unit(5 + 10 / 12, "feet")
  32080. },
  32081. {
  32082. name: "Macro",
  32083. height: math.unit(1100, "feet"),
  32084. default: true
  32085. },
  32086. ]
  32087. ))
  32088. characterMakers.push(() => makeCharacter(
  32089. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  32090. {
  32091. front: {
  32092. height: math.unit(100, "miles"),
  32093. name: "Front",
  32094. image: {
  32095. source: "./media/characters/sona/front.svg",
  32096. extra: 2433 / 2201,
  32097. bottom: 53 / 2486
  32098. }
  32099. },
  32100. foot: {
  32101. height: math.unit(16.1, "miles"),
  32102. name: "Foot",
  32103. image: {
  32104. source: "./media/characters/sona/foot.svg"
  32105. }
  32106. },
  32107. },
  32108. [
  32109. {
  32110. name: "Macro",
  32111. height: math.unit(100, "miles"),
  32112. default: true
  32113. },
  32114. ]
  32115. ))
  32116. characterMakers.push(() => makeCharacter(
  32117. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  32118. {
  32119. front: {
  32120. height: math.unit(6, "feet"),
  32121. weight: math.unit(150, "lb"),
  32122. name: "Front",
  32123. image: {
  32124. source: "./media/characters/bailey/front.svg",
  32125. extra: 1778 / 1724,
  32126. bottom: 30 / 1808
  32127. }
  32128. },
  32129. },
  32130. [
  32131. {
  32132. name: "Micro",
  32133. height: math.unit(4, "inches")
  32134. },
  32135. {
  32136. name: "Normal",
  32137. height: math.unit(5 + 5 / 12, "feet"),
  32138. default: true
  32139. },
  32140. {
  32141. name: "Macro",
  32142. height: math.unit(250, "feet")
  32143. },
  32144. {
  32145. name: "Megamacro",
  32146. height: math.unit(100, "miles")
  32147. },
  32148. ]
  32149. ))
  32150. characterMakers.push(() => makeCharacter(
  32151. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  32152. {
  32153. front: {
  32154. height: math.unit(5 + 2 / 12, "feet"),
  32155. weight: math.unit(120, "lb"),
  32156. name: "Front",
  32157. image: {
  32158. source: "./media/characters/snaps/front.svg",
  32159. extra: 2370 / 2177,
  32160. bottom: 48 / 2418
  32161. }
  32162. },
  32163. back: {
  32164. height: math.unit(5 + 2 / 12, "feet"),
  32165. weight: math.unit(120, "lb"),
  32166. name: "Back",
  32167. image: {
  32168. source: "./media/characters/snaps/back.svg",
  32169. extra: 2408 / 2258,
  32170. bottom: 15 / 2423
  32171. }
  32172. },
  32173. },
  32174. [
  32175. {
  32176. name: "Micro",
  32177. height: math.unit(9, "inches")
  32178. },
  32179. {
  32180. name: "Normal",
  32181. height: math.unit(5 + 2 / 12, "feet"),
  32182. default: true
  32183. },
  32184. {
  32185. name: "Mini Macro",
  32186. height: math.unit(10, "feet")
  32187. },
  32188. ]
  32189. ))
  32190. characterMakers.push(() => makeCharacter(
  32191. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32192. {
  32193. front: {
  32194. height: math.unit(1.8, "meters"),
  32195. weight: math.unit(85, "kg"),
  32196. name: "Front",
  32197. image: {
  32198. source: "./media/characters/azteck/front.svg",
  32199. extra: 2815 / 2625,
  32200. bottom: 89 / 2904
  32201. }
  32202. },
  32203. back: {
  32204. height: math.unit(1.8, "meters"),
  32205. weight: math.unit(85, "kg"),
  32206. name: "Back",
  32207. image: {
  32208. source: "./media/characters/azteck/back.svg",
  32209. extra: 2856 / 2648,
  32210. bottom: 85 / 2941
  32211. }
  32212. },
  32213. frontDressed: {
  32214. height: math.unit(1.8, "meters"),
  32215. weight: math.unit(85, "kg"),
  32216. name: "Front (Dressed)",
  32217. image: {
  32218. source: "./media/characters/azteck/front-dressed.svg",
  32219. extra: 2147 / 2003,
  32220. bottom: 68 / 2215
  32221. }
  32222. },
  32223. head: {
  32224. height: math.unit(0.47, "meters"),
  32225. weight: math.unit(85, "kg"),
  32226. name: "Head",
  32227. image: {
  32228. source: "./media/characters/azteck/head.svg"
  32229. }
  32230. },
  32231. },
  32232. [
  32233. {
  32234. name: "Bite sized",
  32235. height: math.unit(16, "cm")
  32236. },
  32237. {
  32238. name: "Normal",
  32239. height: math.unit(1.8, "meters"),
  32240. default: true
  32241. },
  32242. ]
  32243. ))
  32244. characterMakers.push(() => makeCharacter(
  32245. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32246. {
  32247. front: {
  32248. height: math.unit(6, "feet"),
  32249. weight: math.unit(150, "lb"),
  32250. name: "Front",
  32251. image: {
  32252. source: "./media/characters/pidge/front.svg",
  32253. extra: 1936/1820,
  32254. bottom: 0/1936
  32255. }
  32256. },
  32257. back: {
  32258. height: math.unit(6, "feet"),
  32259. weight: math.unit(150, "lb"),
  32260. name: "Back",
  32261. image: {
  32262. source: "./media/characters/pidge/back.svg",
  32263. extra: 1938/1843,
  32264. bottom: 0/1938
  32265. }
  32266. },
  32267. casual: {
  32268. height: math.unit(6, "feet"),
  32269. weight: math.unit(150, "lb"),
  32270. name: "Casual",
  32271. image: {
  32272. source: "./media/characters/pidge/casual.svg",
  32273. extra: 1936/1820,
  32274. bottom: 0/1936
  32275. }
  32276. },
  32277. tech: {
  32278. height: math.unit(6, "feet"),
  32279. weight: math.unit(150, "lb"),
  32280. name: "Tech",
  32281. image: {
  32282. source: "./media/characters/pidge/tech.svg",
  32283. extra: 1802/1682,
  32284. bottom: 0/1802
  32285. }
  32286. },
  32287. head: {
  32288. height: math.unit(1.61, "feet"),
  32289. name: "Head",
  32290. image: {
  32291. source: "./media/characters/pidge/head.svg"
  32292. }
  32293. },
  32294. collar: {
  32295. height: math.unit(0.82, "feet"),
  32296. name: "Collar",
  32297. image: {
  32298. source: "./media/characters/pidge/collar.svg"
  32299. }
  32300. },
  32301. },
  32302. [
  32303. {
  32304. name: "Macro",
  32305. height: math.unit(2, "mile"),
  32306. default: true
  32307. },
  32308. {
  32309. name: "PUPPY",
  32310. height: math.unit(20, "miles")
  32311. },
  32312. ]
  32313. ))
  32314. characterMakers.push(() => makeCharacter(
  32315. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32316. {
  32317. front: {
  32318. height: math.unit(6, "feet"),
  32319. weight: math.unit(150, "lb"),
  32320. name: "Front",
  32321. image: {
  32322. source: "./media/characters/en/front.svg",
  32323. extra: 1697 / 1563,
  32324. bottom: 103 / 1800
  32325. }
  32326. },
  32327. back: {
  32328. height: math.unit(6, "feet"),
  32329. weight: math.unit(150, "lb"),
  32330. name: "Back",
  32331. image: {
  32332. source: "./media/characters/en/back.svg",
  32333. extra: 1700 / 1570,
  32334. bottom: 51 / 1751
  32335. }
  32336. },
  32337. frontDressed: {
  32338. height: math.unit(6, "feet"),
  32339. weight: math.unit(150, "lb"),
  32340. name: "Front (Dressed)",
  32341. image: {
  32342. source: "./media/characters/en/front-dressed.svg",
  32343. extra: 1697 / 1563,
  32344. bottom: 103 / 1800
  32345. }
  32346. },
  32347. backDressed: {
  32348. height: math.unit(6, "feet"),
  32349. weight: math.unit(150, "lb"),
  32350. name: "Back (Dressed)",
  32351. image: {
  32352. source: "./media/characters/en/back-dressed.svg",
  32353. extra: 1700 / 1570,
  32354. bottom: 51 / 1751
  32355. }
  32356. },
  32357. },
  32358. [
  32359. {
  32360. name: "Macro",
  32361. height: math.unit(210, "feet"),
  32362. default: true
  32363. },
  32364. ]
  32365. ))
  32366. characterMakers.push(() => makeCharacter(
  32367. { name: "Haze Orris", species: ["cat", "undead"], 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/haze-orris/front.svg",
  32375. extra: 3975 / 3525,
  32376. bottom: 137 / 4112
  32377. }
  32378. },
  32379. },
  32380. [
  32381. {
  32382. name: "Micro",
  32383. height: math.unit(150, "mm"),
  32384. default: true
  32385. },
  32386. ]
  32387. ))
  32388. characterMakers.push(() => makeCharacter(
  32389. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32390. {
  32391. front: {
  32392. height: math.unit(6, "feet"),
  32393. weight: math.unit(150, "lb"),
  32394. name: "Front",
  32395. image: {
  32396. source: "./media/characters/casselene-yaro/front.svg",
  32397. extra: 4721 / 4541,
  32398. bottom: 82 / 4803
  32399. }
  32400. },
  32401. back: {
  32402. height: math.unit(6, "feet"),
  32403. weight: math.unit(150, "lb"),
  32404. name: "Back",
  32405. image: {
  32406. source: "./media/characters/casselene-yaro/back.svg",
  32407. extra: 4569 / 4377,
  32408. bottom: 69 / 4638
  32409. }
  32410. },
  32411. dressed: {
  32412. height: math.unit(6, "feet"),
  32413. weight: math.unit(150, "lb"),
  32414. name: "Dressed",
  32415. image: {
  32416. source: "./media/characters/casselene-yaro/dressed.svg",
  32417. extra: 4721 / 4541,
  32418. bottom: 82 / 4803
  32419. }
  32420. },
  32421. maw: {
  32422. height: math.unit(1, "feet"),
  32423. name: "Maw",
  32424. image: {
  32425. source: "./media/characters/casselene-yaro/maw.svg"
  32426. }
  32427. },
  32428. },
  32429. [
  32430. {
  32431. name: "Macro",
  32432. height: math.unit(190, "feet"),
  32433. default: true
  32434. },
  32435. ]
  32436. ))
  32437. characterMakers.push(() => makeCharacter(
  32438. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32439. {
  32440. front: {
  32441. height: math.unit(10, "feet"),
  32442. weight: math.unit(15015, "lb"),
  32443. name: "Front",
  32444. image: {
  32445. source: "./media/characters/platine/front.svg",
  32446. extra: 1741/1650,
  32447. bottom: 84/1825
  32448. }
  32449. },
  32450. side: {
  32451. height: math.unit(10, "feet"),
  32452. weight: math.unit(15015, "lb"),
  32453. name: "Side",
  32454. image: {
  32455. source: "./media/characters/platine/side.svg",
  32456. extra: 1790/1705,
  32457. bottom: 29/1819
  32458. }
  32459. },
  32460. },
  32461. [
  32462. {
  32463. name: "Normal",
  32464. height: math.unit(10, "feet"),
  32465. default: true
  32466. },
  32467. {
  32468. name: "Macro",
  32469. height: math.unit(100, "feet")
  32470. },
  32471. {
  32472. name: "Megamacro",
  32473. height: math.unit(1000, "feet")
  32474. },
  32475. ]
  32476. ))
  32477. characterMakers.push(() => makeCharacter(
  32478. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32479. {
  32480. front: {
  32481. height: math.unit(15 + 5 / 12, "feet"),
  32482. weight: math.unit(4600, "lb"),
  32483. name: "Front",
  32484. image: {
  32485. source: "./media/characters/neapolitan-ananassa/front.svg",
  32486. extra: 2903 / 2736,
  32487. bottom: 0 / 2903
  32488. }
  32489. },
  32490. side: {
  32491. height: math.unit(15 + 5 / 12, "feet"),
  32492. weight: math.unit(4600, "lb"),
  32493. name: "Side",
  32494. image: {
  32495. source: "./media/characters/neapolitan-ananassa/side.svg",
  32496. extra: 2925 / 2719,
  32497. bottom: 0 / 2925
  32498. }
  32499. },
  32500. back: {
  32501. height: math.unit(15 + 5 / 12, "feet"),
  32502. weight: math.unit(4600, "lb"),
  32503. name: "Back",
  32504. image: {
  32505. source: "./media/characters/neapolitan-ananassa/back.svg",
  32506. extra: 2903 / 2736,
  32507. bottom: 0 / 2903
  32508. }
  32509. },
  32510. },
  32511. [
  32512. {
  32513. name: "Normal",
  32514. height: math.unit(15 + 5 / 12, "feet"),
  32515. default: true
  32516. },
  32517. {
  32518. name: "Post-Millenium",
  32519. height: math.unit(35 + 5 / 12, "feet")
  32520. },
  32521. {
  32522. name: "Post-Era",
  32523. height: math.unit(450 + 5 / 12, "feet")
  32524. },
  32525. ]
  32526. ))
  32527. characterMakers.push(() => makeCharacter(
  32528. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32529. {
  32530. front: {
  32531. height: math.unit(300, "meters"),
  32532. weight: math.unit(125000, "tonnes"),
  32533. name: "Front",
  32534. image: {
  32535. source: "./media/characters/pazuzu/front.svg",
  32536. extra: 877 / 794,
  32537. bottom: 47 / 924
  32538. }
  32539. },
  32540. },
  32541. [
  32542. {
  32543. name: "Macro",
  32544. height: math.unit(300, "meters"),
  32545. default: true
  32546. },
  32547. ]
  32548. ))
  32549. characterMakers.push(() => makeCharacter(
  32550. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32551. {
  32552. side: {
  32553. height: math.unit(10 + 7 / 12, "feet"),
  32554. weight: math.unit(2.5, "tons"),
  32555. name: "Side",
  32556. image: {
  32557. source: "./media/characters/aasha/side.svg",
  32558. extra: 1345 / 1245,
  32559. bottom: 111 / 1456
  32560. }
  32561. },
  32562. back: {
  32563. height: math.unit(10 + 7 / 12, "feet"),
  32564. weight: math.unit(2.5, "tons"),
  32565. name: "Back",
  32566. image: {
  32567. source: "./media/characters/aasha/back.svg",
  32568. extra: 1133 / 1057,
  32569. bottom: 257 / 1390
  32570. }
  32571. },
  32572. },
  32573. [
  32574. {
  32575. name: "Normal",
  32576. height: math.unit(10 + 7 / 12, "feet"),
  32577. default: true
  32578. },
  32579. ]
  32580. ))
  32581. characterMakers.push(() => makeCharacter(
  32582. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32583. {
  32584. front: {
  32585. height: math.unit(6 + 3 / 12, "feet"),
  32586. name: "Front",
  32587. image: {
  32588. source: "./media/characters/nevan/front.svg",
  32589. extra: 704 / 704,
  32590. bottom: 28 / 732
  32591. }
  32592. },
  32593. back: {
  32594. height: math.unit(6 + 3 / 12, "feet"),
  32595. name: "Back",
  32596. image: {
  32597. source: "./media/characters/nevan/back.svg",
  32598. extra: 714 / 714,
  32599. bottom: 21 / 735
  32600. }
  32601. },
  32602. frontFlaccid: {
  32603. height: math.unit(6 + 3 / 12, "feet"),
  32604. name: "Front (Flaccid)",
  32605. image: {
  32606. source: "./media/characters/nevan/front-flaccid.svg",
  32607. extra: 704 / 704,
  32608. bottom: 28 / 732
  32609. }
  32610. },
  32611. frontErect: {
  32612. height: math.unit(6 + 3 / 12, "feet"),
  32613. name: "Front (Erect)",
  32614. image: {
  32615. source: "./media/characters/nevan/front-erect.svg",
  32616. extra: 704 / 704,
  32617. bottom: 28 / 732
  32618. }
  32619. },
  32620. backFlaccid: {
  32621. height: math.unit(6 + 3 / 12, "feet"),
  32622. name: "Back (Flaccid)",
  32623. image: {
  32624. source: "./media/characters/nevan/back-flaccid.svg",
  32625. extra: 714 / 714,
  32626. bottom: 21 / 735
  32627. }
  32628. },
  32629. },
  32630. [
  32631. {
  32632. name: "Normal",
  32633. height: math.unit(6 + 3 / 12, "feet"),
  32634. default: true
  32635. },
  32636. ]
  32637. ))
  32638. characterMakers.push(() => makeCharacter(
  32639. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32640. {
  32641. front: {
  32642. height: math.unit(4, "feet"),
  32643. name: "Front",
  32644. image: {
  32645. source: "./media/characters/arhan/front.svg",
  32646. extra: 3368 / 3133,
  32647. bottom: 0 / 3368
  32648. }
  32649. },
  32650. side: {
  32651. height: math.unit(4, "feet"),
  32652. name: "Side",
  32653. image: {
  32654. source: "./media/characters/arhan/side.svg",
  32655. extra: 3347 / 3105,
  32656. bottom: 0 / 3347
  32657. }
  32658. },
  32659. tongue: {
  32660. height: math.unit(1.42, "feet"),
  32661. name: "Tongue",
  32662. image: {
  32663. source: "./media/characters/arhan/tongue.svg"
  32664. }
  32665. },
  32666. head: {
  32667. height: math.unit(0.85, "feet"),
  32668. name: "Head",
  32669. image: {
  32670. source: "./media/characters/arhan/head.svg"
  32671. }
  32672. },
  32673. },
  32674. [
  32675. {
  32676. name: "Normal",
  32677. height: math.unit(4, "feet"),
  32678. default: true
  32679. },
  32680. ]
  32681. ))
  32682. characterMakers.push(() => makeCharacter(
  32683. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32684. {
  32685. front: {
  32686. height: math.unit(5 + 7.5 / 12, "feet"),
  32687. weight: math.unit(120, "lb"),
  32688. name: "Front",
  32689. image: {
  32690. source: "./media/characters/digi-duncan/front.svg",
  32691. extra: 330 / 326,
  32692. bottom: 16 / 346
  32693. }
  32694. },
  32695. side: {
  32696. height: math.unit(5 + 7.5 / 12, "feet"),
  32697. weight: math.unit(120, "lb"),
  32698. name: "Side",
  32699. image: {
  32700. source: "./media/characters/digi-duncan/side.svg",
  32701. extra: 341 / 337,
  32702. bottom: 1 / 342
  32703. }
  32704. },
  32705. back: {
  32706. height: math.unit(5 + 7.5 / 12, "feet"),
  32707. weight: math.unit(120, "lb"),
  32708. name: "Back",
  32709. image: {
  32710. source: "./media/characters/digi-duncan/back.svg",
  32711. extra: 330 / 326,
  32712. bottom: 12 / 342
  32713. }
  32714. },
  32715. },
  32716. [
  32717. {
  32718. name: "Speck",
  32719. height: math.unit(0.25, "mm")
  32720. },
  32721. {
  32722. name: "Micro",
  32723. height: math.unit(5, "mm")
  32724. },
  32725. {
  32726. name: "Tiny",
  32727. height: math.unit(0.5, "inches"),
  32728. default: true
  32729. },
  32730. {
  32731. name: "Human",
  32732. height: math.unit(5 + 7.5 / 12, "feet")
  32733. },
  32734. {
  32735. name: "Minigiant",
  32736. height: math.unit(8 + 5.25, "feet")
  32737. },
  32738. {
  32739. name: "Giant",
  32740. height: math.unit(2000, "feet")
  32741. },
  32742. {
  32743. name: "Mega",
  32744. height: math.unit(371.1, "miles")
  32745. },
  32746. ]
  32747. ))
  32748. characterMakers.push(() => makeCharacter(
  32749. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32750. {
  32751. front: {
  32752. height: math.unit(2, "meters"),
  32753. weight: math.unit(350, "kg"),
  32754. name: "Front",
  32755. image: {
  32756. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32757. extra: 898 / 838,
  32758. bottom: 9 / 907
  32759. }
  32760. },
  32761. },
  32762. [
  32763. {
  32764. name: "Micro",
  32765. height: math.unit(8, "meters")
  32766. },
  32767. {
  32768. name: "Normal",
  32769. height: math.unit(50, "meters"),
  32770. default: true
  32771. },
  32772. {
  32773. name: "Macro",
  32774. height: math.unit(500, "meters")
  32775. },
  32776. ]
  32777. ))
  32778. characterMakers.push(() => makeCharacter(
  32779. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32780. {
  32781. front: {
  32782. height: math.unit(6 + 6 / 12, "feet"),
  32783. name: "Front",
  32784. image: {
  32785. source: "./media/characters/khardesh/front.svg",
  32786. extra: 1788/1596,
  32787. bottom: 66/1854
  32788. }
  32789. },
  32790. back: {
  32791. height: math.unit(6 + 6 / 12, "feet"),
  32792. name: "Back",
  32793. image: {
  32794. source: "./media/characters/khardesh/back.svg",
  32795. extra: 1781/1584,
  32796. bottom: 68/1849
  32797. }
  32798. },
  32799. },
  32800. [
  32801. {
  32802. name: "Normal",
  32803. height: math.unit(6 + 6 / 12, "feet"),
  32804. default: true
  32805. },
  32806. {
  32807. name: "Normal+",
  32808. height: math.unit(4, "meters")
  32809. },
  32810. {
  32811. name: "Macro",
  32812. height: math.unit(50, "meters")
  32813. },
  32814. {
  32815. name: "Macro+",
  32816. height: math.unit(100, "meters")
  32817. },
  32818. {
  32819. name: "Megamacro",
  32820. height: math.unit(20, "km")
  32821. },
  32822. ]
  32823. ))
  32824. characterMakers.push(() => makeCharacter(
  32825. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32826. {
  32827. front: {
  32828. height: math.unit(6, "feet"),
  32829. weight: math.unit(150, "lb"),
  32830. name: "Front",
  32831. image: {
  32832. source: "./media/characters/kosho/front.svg",
  32833. extra: 1847 / 1847,
  32834. bottom: 86 / 1933
  32835. }
  32836. },
  32837. },
  32838. [
  32839. {
  32840. name: "Second-stage micro",
  32841. height: math.unit(0.5, "inches")
  32842. },
  32843. {
  32844. name: "First-stage micro",
  32845. height: math.unit(6, "inches")
  32846. },
  32847. {
  32848. name: "Normal",
  32849. height: math.unit(6, "feet"),
  32850. default: true
  32851. },
  32852. {
  32853. name: "First-stage macro",
  32854. height: math.unit(72, "feet")
  32855. },
  32856. {
  32857. name: "Second-stage macro",
  32858. height: math.unit(864, "feet")
  32859. },
  32860. ]
  32861. ))
  32862. characterMakers.push(() => makeCharacter(
  32863. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32864. {
  32865. normal: {
  32866. height: math.unit(4 + 6 / 12, "feet"),
  32867. name: "Normal",
  32868. image: {
  32869. source: "./media/characters/hydra/normal.svg",
  32870. extra: 2833 / 2634,
  32871. bottom: 68 / 2901
  32872. }
  32873. },
  32874. smol: {
  32875. height: math.unit(0.705, "inches"),
  32876. name: "Smol",
  32877. image: {
  32878. source: "./media/characters/hydra/smol.svg",
  32879. extra: 2715 / 2540,
  32880. bottom: 0 / 2715
  32881. }
  32882. },
  32883. },
  32884. [
  32885. {
  32886. name: "Normal",
  32887. height: math.unit(4 + 6 / 12, "feet"),
  32888. default: true
  32889. }
  32890. ]
  32891. ))
  32892. characterMakers.push(() => makeCharacter(
  32893. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32894. {
  32895. front: {
  32896. height: math.unit(0.6, "cm"),
  32897. name: "Front",
  32898. image: {
  32899. source: "./media/characters/daz/front.svg",
  32900. extra: 1682 / 1164,
  32901. bottom: 42 / 1724
  32902. }
  32903. },
  32904. },
  32905. [
  32906. {
  32907. name: "Normal",
  32908. height: math.unit(0.6, "cm"),
  32909. default: true
  32910. },
  32911. ]
  32912. ))
  32913. characterMakers.push(() => makeCharacter(
  32914. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32915. {
  32916. front: {
  32917. height: math.unit(6, "feet"),
  32918. weight: math.unit(235, "lb"),
  32919. name: "Front",
  32920. image: {
  32921. source: "./media/characters/theo-pangolin/front.svg",
  32922. extra: 1996 / 1969,
  32923. bottom: 115 / 2111
  32924. }
  32925. },
  32926. back: {
  32927. height: math.unit(6, "feet"),
  32928. weight: math.unit(235, "lb"),
  32929. name: "Back",
  32930. image: {
  32931. source: "./media/characters/theo-pangolin/back.svg",
  32932. extra: 1979 / 1979,
  32933. bottom: 40 / 2019
  32934. }
  32935. },
  32936. feral: {
  32937. height: math.unit(2, "feet"),
  32938. weight: math.unit(30, "lb"),
  32939. name: "Feral",
  32940. image: {
  32941. source: "./media/characters/theo-pangolin/feral.svg",
  32942. extra: 803 / 791,
  32943. bottom: 181 / 984
  32944. }
  32945. },
  32946. footFive: {
  32947. height: math.unit(1.43, "feet"),
  32948. name: "Foot (Five Toes)",
  32949. image: {
  32950. source: "./media/characters/theo-pangolin/foot-five.svg"
  32951. }
  32952. },
  32953. footFour: {
  32954. height: math.unit(1.43, "feet"),
  32955. name: "Foot (Four Toes)",
  32956. image: {
  32957. source: "./media/characters/theo-pangolin/foot-four.svg"
  32958. }
  32959. },
  32960. handFour: {
  32961. height: math.unit(0.81, "feet"),
  32962. name: "Hand (Four Fingers)",
  32963. image: {
  32964. source: "./media/characters/theo-pangolin/hand-four.svg"
  32965. }
  32966. },
  32967. handThree: {
  32968. height: math.unit(0.81, "feet"),
  32969. name: "Hand (Three Fingers)",
  32970. image: {
  32971. source: "./media/characters/theo-pangolin/hand-three.svg"
  32972. }
  32973. },
  32974. headFront: {
  32975. height: math.unit(1.37, "feet"),
  32976. name: "Head (Front)",
  32977. image: {
  32978. source: "./media/characters/theo-pangolin/head-front.svg"
  32979. }
  32980. },
  32981. headSide: {
  32982. height: math.unit(1.43, "feet"),
  32983. name: "Head (Side)",
  32984. image: {
  32985. source: "./media/characters/theo-pangolin/head-side.svg"
  32986. }
  32987. },
  32988. tongue: {
  32989. height: math.unit(2.29, "feet"),
  32990. name: "Tongue",
  32991. image: {
  32992. source: "./media/characters/theo-pangolin/tongue.svg"
  32993. }
  32994. },
  32995. },
  32996. [
  32997. {
  32998. name: "Normal",
  32999. height: math.unit(6, "feet")
  33000. },
  33001. {
  33002. name: "Macro",
  33003. height: math.unit(400, "feet"),
  33004. default: true
  33005. },
  33006. ]
  33007. ))
  33008. characterMakers.push(() => makeCharacter(
  33009. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  33010. {
  33011. front: {
  33012. height: math.unit(6, "inches"),
  33013. weight: math.unit(0.036, "kg"),
  33014. name: "Front",
  33015. image: {
  33016. source: "./media/characters/renée/front.svg",
  33017. extra: 900 / 886,
  33018. bottom: 8 / 908
  33019. }
  33020. },
  33021. },
  33022. [
  33023. {
  33024. name: "Nano",
  33025. height: math.unit(1, "nm")
  33026. },
  33027. {
  33028. name: "Micro",
  33029. height: math.unit(1, "mm")
  33030. },
  33031. {
  33032. name: "Normal",
  33033. height: math.unit(6, "inches")
  33034. },
  33035. {
  33036. name: "Macro",
  33037. height: math.unit(2000, "feet"),
  33038. default: true
  33039. },
  33040. {
  33041. name: "Megamacro",
  33042. height: math.unit(2, "km")
  33043. },
  33044. {
  33045. name: "Gigamacro",
  33046. height: math.unit(2000, "km")
  33047. },
  33048. {
  33049. name: "Teramacro",
  33050. height: math.unit(250000, "km")
  33051. },
  33052. ]
  33053. ))
  33054. characterMakers.push(() => makeCharacter(
  33055. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  33056. {
  33057. front: {
  33058. height: math.unit(4, "meters"),
  33059. weight: math.unit(150, "kg"),
  33060. name: "Front",
  33061. image: {
  33062. source: "./media/characters/caledvwlch/front.svg",
  33063. extra: 1757/1537,
  33064. bottom: 31/1788
  33065. }
  33066. },
  33067. side: {
  33068. height: math.unit(4, "meters"),
  33069. weight: math.unit(150, "kg"),
  33070. name: "Side",
  33071. image: {
  33072. source: "./media/characters/caledvwlch/side.svg",
  33073. extra: 1605 / 1536,
  33074. bottom: 31 / 1636
  33075. }
  33076. },
  33077. back: {
  33078. height: math.unit(4, "meters"),
  33079. weight: math.unit(150, "kg"),
  33080. name: "Back",
  33081. image: {
  33082. source: "./media/characters/caledvwlch/back.svg",
  33083. extra: 1635 / 1565,
  33084. bottom: 27 / 1662
  33085. }
  33086. },
  33087. },
  33088. [
  33089. {
  33090. name: "\"Incognito\"",
  33091. height: math.unit(4, "meters")
  33092. },
  33093. {
  33094. name: "Small rampage",
  33095. height: math.unit(600, "meters")
  33096. },
  33097. {
  33098. name: "Mega",
  33099. height: math.unit(30, "km")
  33100. },
  33101. {
  33102. name: "Home-size",
  33103. height: math.unit(50, "km"),
  33104. default: true
  33105. },
  33106. {
  33107. name: "Giga",
  33108. height: math.unit(300, "km")
  33109. },
  33110. {
  33111. name: "Lounging",
  33112. height: math.unit(11000, "km")
  33113. },
  33114. {
  33115. name: "Planet snacking",
  33116. height: math.unit(2000000, "km")
  33117. },
  33118. ]
  33119. ))
  33120. characterMakers.push(() => makeCharacter(
  33121. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  33122. {
  33123. front: {
  33124. height: math.unit(6, "feet"),
  33125. weight: math.unit(215, "lb"),
  33126. name: "Front",
  33127. image: {
  33128. source: "./media/characters/sapphire-svell/front.svg",
  33129. extra: 495 / 455,
  33130. bottom: 20 / 515
  33131. }
  33132. },
  33133. back: {
  33134. height: math.unit(6, "feet"),
  33135. weight: math.unit(216, "lb"),
  33136. name: "Back",
  33137. image: {
  33138. source: "./media/characters/sapphire-svell/back.svg",
  33139. extra: 497 / 477,
  33140. bottom: 7 / 504
  33141. }
  33142. },
  33143. maw: {
  33144. height: math.unit(1.57, "feet"),
  33145. name: "Maw",
  33146. image: {
  33147. source: "./media/characters/sapphire-svell/maw.svg"
  33148. }
  33149. },
  33150. foot: {
  33151. height: math.unit(1.07, "feet"),
  33152. name: "Foot",
  33153. image: {
  33154. source: "./media/characters/sapphire-svell/foot.svg"
  33155. }
  33156. },
  33157. toering: {
  33158. height: math.unit(1.7, "inch"),
  33159. name: "Toering",
  33160. image: {
  33161. source: "./media/characters/sapphire-svell/toering.svg"
  33162. }
  33163. },
  33164. },
  33165. [
  33166. {
  33167. name: "Normal",
  33168. height: math.unit(300, "feet"),
  33169. default: true
  33170. },
  33171. {
  33172. name: "Augmented",
  33173. height: math.unit(1250, "feet")
  33174. },
  33175. {
  33176. name: "Unleashed",
  33177. height: math.unit(3000, "feet")
  33178. },
  33179. ]
  33180. ))
  33181. characterMakers.push(() => makeCharacter(
  33182. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  33183. {
  33184. side: {
  33185. height: math.unit(2 + 3 / 12, "feet"),
  33186. weight: math.unit(110, "lb"),
  33187. name: "Side",
  33188. image: {
  33189. source: "./media/characters/glitch-flux/side.svg",
  33190. extra: 997 / 805,
  33191. bottom: 20 / 1017
  33192. }
  33193. },
  33194. },
  33195. [
  33196. {
  33197. name: "Normal",
  33198. height: math.unit(2 + 3 / 12, "feet"),
  33199. default: true
  33200. },
  33201. ]
  33202. ))
  33203. characterMakers.push(() => makeCharacter(
  33204. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33205. {
  33206. front: {
  33207. height: math.unit(4, "meters"),
  33208. name: "Front",
  33209. image: {
  33210. source: "./media/characters/mid/front.svg",
  33211. extra: 507 / 476,
  33212. bottom: 17 / 524
  33213. }
  33214. },
  33215. back: {
  33216. height: math.unit(4, "meters"),
  33217. name: "Back",
  33218. image: {
  33219. source: "./media/characters/mid/back.svg",
  33220. extra: 519 / 487,
  33221. bottom: 7 / 526
  33222. }
  33223. },
  33224. stuck: {
  33225. height: math.unit(2.2, "meters"),
  33226. name: "Stuck",
  33227. image: {
  33228. source: "./media/characters/mid/stuck.svg",
  33229. extra: 1951 / 1869,
  33230. bottom: 88 / 2039
  33231. }
  33232. }
  33233. },
  33234. [
  33235. {
  33236. name: "Normal",
  33237. height: math.unit(4, "meters"),
  33238. default: true
  33239. },
  33240. {
  33241. name: "Big",
  33242. height: math.unit(10, "meters")
  33243. },
  33244. {
  33245. name: "Macro",
  33246. height: math.unit(800, "meters")
  33247. },
  33248. {
  33249. name: "Megamacro",
  33250. height: math.unit(100, "km")
  33251. },
  33252. {
  33253. name: "Overgrown",
  33254. height: math.unit(1, "parsec")
  33255. },
  33256. ]
  33257. ))
  33258. characterMakers.push(() => makeCharacter(
  33259. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33260. {
  33261. front: {
  33262. height: math.unit(2.5, "meters"),
  33263. weight: math.unit(225, "kg"),
  33264. name: "Front",
  33265. image: {
  33266. source: "./media/characters/iris/front.svg",
  33267. extra: 3348 / 3251,
  33268. bottom: 205 / 3553
  33269. }
  33270. },
  33271. maw: {
  33272. height: math.unit(0.56, "meter"),
  33273. name: "Maw",
  33274. image: {
  33275. source: "./media/characters/iris/maw.svg"
  33276. }
  33277. },
  33278. },
  33279. [
  33280. {
  33281. name: "Mewter cat",
  33282. height: math.unit(1.2, "meters")
  33283. },
  33284. {
  33285. name: "Normal",
  33286. height: math.unit(2.5, "meters"),
  33287. default: true
  33288. },
  33289. {
  33290. name: "Minimacro",
  33291. height: math.unit(18, "feet")
  33292. },
  33293. {
  33294. name: "Macro",
  33295. height: math.unit(140, "feet")
  33296. },
  33297. {
  33298. name: "Macro+",
  33299. height: math.unit(180, "meters")
  33300. },
  33301. {
  33302. name: "Megamacro",
  33303. height: math.unit(2746, "meters")
  33304. },
  33305. ]
  33306. ))
  33307. characterMakers.push(() => makeCharacter(
  33308. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33309. {
  33310. front: {
  33311. height: math.unit(6, "feet"),
  33312. weight: math.unit(135, "lb"),
  33313. name: "Front",
  33314. image: {
  33315. source: "./media/characters/axel/front.svg",
  33316. extra: 908 / 908,
  33317. bottom: 58 / 966
  33318. }
  33319. },
  33320. side: {
  33321. height: math.unit(6, "feet"),
  33322. weight: math.unit(135, "lb"),
  33323. name: "Side",
  33324. image: {
  33325. source: "./media/characters/axel/side.svg",
  33326. extra: 958 / 958,
  33327. bottom: 11 / 969
  33328. }
  33329. },
  33330. back: {
  33331. height: math.unit(6, "feet"),
  33332. weight: math.unit(135, "lb"),
  33333. name: "Back",
  33334. image: {
  33335. source: "./media/characters/axel/back.svg",
  33336. extra: 887 / 887,
  33337. bottom: 34 / 921
  33338. }
  33339. },
  33340. head: {
  33341. height: math.unit(1.07, "feet"),
  33342. name: "Head",
  33343. image: {
  33344. source: "./media/characters/axel/head.svg"
  33345. }
  33346. },
  33347. beak: {
  33348. height: math.unit(1.4, "feet"),
  33349. name: "Beak",
  33350. image: {
  33351. source: "./media/characters/axel/beak.svg"
  33352. }
  33353. },
  33354. beakSide: {
  33355. height: math.unit(1.4, "feet"),
  33356. name: "Beak Side",
  33357. image: {
  33358. source: "./media/characters/axel/beak-side.svg"
  33359. }
  33360. },
  33361. sheath: {
  33362. height: math.unit(0.5, "feet"),
  33363. name: "Sheath",
  33364. image: {
  33365. source: "./media/characters/axel/sheath.svg"
  33366. }
  33367. },
  33368. dick: {
  33369. height: math.unit(0.98, "feet"),
  33370. name: "Dick",
  33371. image: {
  33372. source: "./media/characters/axel/dick.svg"
  33373. }
  33374. },
  33375. },
  33376. [
  33377. {
  33378. name: "Macro",
  33379. height: math.unit(68, "meters"),
  33380. default: true
  33381. },
  33382. ]
  33383. ))
  33384. characterMakers.push(() => makeCharacter(
  33385. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33386. {
  33387. front: {
  33388. height: math.unit(3.5, "meters"),
  33389. weight: math.unit(1200, "kg"),
  33390. name: "Front",
  33391. image: {
  33392. source: "./media/characters/joanna/front.svg",
  33393. extra: 1596 / 1488,
  33394. bottom: 29 / 1625
  33395. }
  33396. },
  33397. back: {
  33398. height: math.unit(3.5, "meters"),
  33399. weight: math.unit(1200, "kg"),
  33400. name: "Back",
  33401. image: {
  33402. source: "./media/characters/joanna/back.svg",
  33403. extra: 1594 / 1495,
  33404. bottom: 26 / 1620
  33405. }
  33406. },
  33407. frontShorts: {
  33408. height: math.unit(3.5, "meters"),
  33409. weight: math.unit(1200, "kg"),
  33410. name: "Front (Shorts)",
  33411. image: {
  33412. source: "./media/characters/joanna/front-shorts.svg",
  33413. extra: 1596 / 1488,
  33414. bottom: 29 / 1625
  33415. }
  33416. },
  33417. frontBiker: {
  33418. height: math.unit(3.5, "meters"),
  33419. weight: math.unit(1200, "kg"),
  33420. name: "Front (Biker)",
  33421. image: {
  33422. source: "./media/characters/joanna/front-biker.svg",
  33423. extra: 1596 / 1488,
  33424. bottom: 29 / 1625
  33425. }
  33426. },
  33427. backBiker: {
  33428. height: math.unit(3.5, "meters"),
  33429. weight: math.unit(1200, "kg"),
  33430. name: "Back (Biker)",
  33431. image: {
  33432. source: "./media/characters/joanna/back-biker.svg",
  33433. extra: 1594 / 1495,
  33434. bottom: 88 / 1682
  33435. }
  33436. },
  33437. bikeLeft: {
  33438. height: math.unit(2.4, "meters"),
  33439. weight: math.unit(1600, "kg"),
  33440. name: "Bike (Left)",
  33441. image: {
  33442. source: "./media/characters/joanna/bike-left.svg",
  33443. extra: 720 / 720,
  33444. bottom: 8 / 728
  33445. }
  33446. },
  33447. bikeRight: {
  33448. height: math.unit(2.4, "meters"),
  33449. weight: math.unit(1600, "kg"),
  33450. name: "Bike (Right)",
  33451. image: {
  33452. source: "./media/characters/joanna/bike-right.svg",
  33453. extra: 720 / 720,
  33454. bottom: 8 / 728
  33455. }
  33456. },
  33457. },
  33458. [
  33459. {
  33460. name: "Incognito",
  33461. height: math.unit(3.5, "meters")
  33462. },
  33463. {
  33464. name: "Casual Big",
  33465. height: math.unit(200, "meters")
  33466. },
  33467. {
  33468. name: "Macro",
  33469. height: math.unit(600, "meters")
  33470. },
  33471. {
  33472. name: "Original",
  33473. height: math.unit(20, "km"),
  33474. default: true
  33475. },
  33476. {
  33477. name: "Giga",
  33478. height: math.unit(400, "km")
  33479. },
  33480. {
  33481. name: "Lounging",
  33482. height: math.unit(1500, "km")
  33483. },
  33484. {
  33485. name: "Planetary",
  33486. height: math.unit(200000, "km")
  33487. },
  33488. ]
  33489. ))
  33490. characterMakers.push(() => makeCharacter(
  33491. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33492. {
  33493. front: {
  33494. height: math.unit(6, "feet"),
  33495. weight: math.unit(150, "lb"),
  33496. name: "Front",
  33497. image: {
  33498. source: "./media/characters/hugo-sigil/front.svg",
  33499. extra: 522 / 500,
  33500. bottom: 2 / 524
  33501. }
  33502. },
  33503. back: {
  33504. height: math.unit(6, "feet"),
  33505. weight: math.unit(150, "lb"),
  33506. name: "Back",
  33507. image: {
  33508. source: "./media/characters/hugo-sigil/back.svg",
  33509. extra: 519 / 495,
  33510. bottom: 5 / 524
  33511. }
  33512. },
  33513. maw: {
  33514. height: math.unit(1.4, "feet"),
  33515. weight: math.unit(150, "lb"),
  33516. name: "Maw",
  33517. image: {
  33518. source: "./media/characters/hugo-sigil/maw.svg"
  33519. }
  33520. },
  33521. feet: {
  33522. height: math.unit(1.56, "feet"),
  33523. weight: math.unit(150, "lb"),
  33524. name: "Feet",
  33525. image: {
  33526. source: "./media/characters/hugo-sigil/feet.svg",
  33527. extra: 177 / 177,
  33528. bottom: 12 / 189
  33529. }
  33530. },
  33531. },
  33532. [
  33533. {
  33534. name: "Normal",
  33535. height: math.unit(6, "feet")
  33536. },
  33537. {
  33538. name: "Macro",
  33539. height: math.unit(200, "feet"),
  33540. default: true
  33541. },
  33542. ]
  33543. ))
  33544. characterMakers.push(() => makeCharacter(
  33545. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33546. {
  33547. front: {
  33548. height: math.unit(6, "feet"),
  33549. weight: math.unit(150, "lb"),
  33550. name: "Front",
  33551. image: {
  33552. source: "./media/characters/peri/front.svg",
  33553. extra: 2354 / 2233,
  33554. bottom: 49 / 2403
  33555. }
  33556. },
  33557. },
  33558. [
  33559. {
  33560. name: "Really Small",
  33561. height: math.unit(1, "nm")
  33562. },
  33563. {
  33564. name: "Micro",
  33565. height: math.unit(4, "inches")
  33566. },
  33567. {
  33568. name: "Normal",
  33569. height: math.unit(7, "inches"),
  33570. default: true
  33571. },
  33572. {
  33573. name: "Macro",
  33574. height: math.unit(400, "feet")
  33575. },
  33576. {
  33577. name: "Megamacro",
  33578. height: math.unit(100, "miles")
  33579. },
  33580. ]
  33581. ))
  33582. characterMakers.push(() => makeCharacter(
  33583. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33584. {
  33585. frontSlim: {
  33586. height: math.unit(7, "feet"),
  33587. name: "Front (Slim)",
  33588. image: {
  33589. source: "./media/characters/issilora/front-slim.svg",
  33590. extra: 529 / 449,
  33591. bottom: 53 / 582
  33592. }
  33593. },
  33594. sideSlim: {
  33595. height: math.unit(7, "feet"),
  33596. name: "Side (Slim)",
  33597. image: {
  33598. source: "./media/characters/issilora/side-slim.svg",
  33599. extra: 570 / 480,
  33600. bottom: 30 / 600
  33601. }
  33602. },
  33603. backSlim: {
  33604. height: math.unit(7, "feet"),
  33605. name: "Back (Slim)",
  33606. image: {
  33607. source: "./media/characters/issilora/back-slim.svg",
  33608. extra: 537 / 455,
  33609. bottom: 46 / 583
  33610. }
  33611. },
  33612. frontBuff: {
  33613. height: math.unit(7, "feet"),
  33614. name: "Front (Buff)",
  33615. image: {
  33616. source: "./media/characters/issilora/front-buff.svg",
  33617. extra: 2310 / 2035,
  33618. bottom: 335 / 2645
  33619. }
  33620. },
  33621. head: {
  33622. height: math.unit(1.94, "feet"),
  33623. name: "Head",
  33624. image: {
  33625. source: "./media/characters/issilora/head.svg"
  33626. }
  33627. },
  33628. },
  33629. [
  33630. {
  33631. name: "Minimum",
  33632. height: math.unit(7, "feet")
  33633. },
  33634. {
  33635. name: "Comfortable",
  33636. height: math.unit(17, "feet")
  33637. },
  33638. {
  33639. name: "Fun Size",
  33640. height: math.unit(47, "feet")
  33641. },
  33642. {
  33643. name: "Natural Macro",
  33644. height: math.unit(137, "feet"),
  33645. default: true
  33646. },
  33647. {
  33648. name: "Maximum Kaiju",
  33649. height: math.unit(397, "feet")
  33650. },
  33651. ]
  33652. ))
  33653. characterMakers.push(() => makeCharacter(
  33654. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33655. {
  33656. front: {
  33657. height: math.unit(50 + 9/12, "feet"),
  33658. weight: math.unit(32.8, "tons"),
  33659. name: "Front",
  33660. image: {
  33661. source: "./media/characters/irb'iiritaahn/front.svg",
  33662. extra: 1878/1826,
  33663. bottom: 326/2204
  33664. }
  33665. },
  33666. back: {
  33667. height: math.unit(50 + 9/12, "feet"),
  33668. weight: math.unit(32.8, "tons"),
  33669. name: "Back",
  33670. image: {
  33671. source: "./media/characters/irb'iiritaahn/back.svg",
  33672. extra: 2052/2018,
  33673. bottom: 152/2204
  33674. }
  33675. },
  33676. head: {
  33677. height: math.unit(12.86, "feet"),
  33678. name: "Head",
  33679. image: {
  33680. source: "./media/characters/irb'iiritaahn/head.svg"
  33681. }
  33682. },
  33683. maw: {
  33684. height: math.unit(9.66, "feet"),
  33685. name: "Maw",
  33686. image: {
  33687. source: "./media/characters/irb'iiritaahn/maw.svg"
  33688. }
  33689. },
  33690. frontDick: {
  33691. height: math.unit(8.78461, "feet"),
  33692. name: "Front Dick",
  33693. image: {
  33694. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33695. }
  33696. },
  33697. rearDick: {
  33698. height: math.unit(8.78461, "feet"),
  33699. name: "Rear Dick",
  33700. image: {
  33701. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33702. }
  33703. },
  33704. rearDickUnfolded: {
  33705. height: math.unit(8.78, "feet"),
  33706. name: "Rear Dick (Unfolded)",
  33707. image: {
  33708. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33709. }
  33710. },
  33711. wings: {
  33712. height: math.unit(43, "feet"),
  33713. name: "Wings",
  33714. image: {
  33715. source: "./media/characters/irb'iiritaahn/wings.svg"
  33716. }
  33717. },
  33718. },
  33719. [
  33720. {
  33721. name: "Macro",
  33722. height: math.unit(50 + 9/12, "feet"),
  33723. default: true
  33724. },
  33725. ]
  33726. ))
  33727. characterMakers.push(() => makeCharacter(
  33728. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33729. {
  33730. front: {
  33731. height: math.unit(205, "cm"),
  33732. weight: math.unit(102, "kg"),
  33733. name: "Front",
  33734. image: {
  33735. source: "./media/characters/irbisgreif/front.svg",
  33736. extra: 785/706,
  33737. bottom: 13/798
  33738. }
  33739. },
  33740. back: {
  33741. height: math.unit(205, "cm"),
  33742. weight: math.unit(102, "kg"),
  33743. name: "Back",
  33744. image: {
  33745. source: "./media/characters/irbisgreif/back.svg",
  33746. extra: 713/701,
  33747. bottom: 26/739
  33748. }
  33749. },
  33750. frontDressed: {
  33751. height: math.unit(216, "cm"),
  33752. weight: math.unit(102, "kg"),
  33753. name: "Front-dressed",
  33754. image: {
  33755. source: "./media/characters/irbisgreif/front-dressed.svg",
  33756. extra: 902/776,
  33757. bottom: 14/916
  33758. }
  33759. },
  33760. sideDressed: {
  33761. height: math.unit(195, "cm"),
  33762. weight: math.unit(102, "kg"),
  33763. name: "Side-dressed",
  33764. image: {
  33765. source: "./media/characters/irbisgreif/side-dressed.svg",
  33766. extra: 788/688,
  33767. bottom: 21/809
  33768. }
  33769. },
  33770. backDressed: {
  33771. height: math.unit(216, "cm"),
  33772. weight: math.unit(102, "kg"),
  33773. name: "Back-dressed",
  33774. image: {
  33775. source: "./media/characters/irbisgreif/back-dressed.svg",
  33776. extra: 901/783,
  33777. bottom: 10/911
  33778. }
  33779. },
  33780. dick: {
  33781. height: math.unit(0.49, "feet"),
  33782. name: "Dick",
  33783. image: {
  33784. source: "./media/characters/irbisgreif/dick.svg"
  33785. }
  33786. },
  33787. wingTop: {
  33788. height: math.unit(1.93 , "feet"),
  33789. name: "Wing-top",
  33790. image: {
  33791. source: "./media/characters/irbisgreif/wing-top.svg"
  33792. }
  33793. },
  33794. wingBottom: {
  33795. height: math.unit(1.93 , "feet"),
  33796. name: "Wing-bottom",
  33797. image: {
  33798. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33799. }
  33800. },
  33801. },
  33802. [
  33803. {
  33804. name: "Normal",
  33805. height: math.unit(216, "cm"),
  33806. default: true
  33807. },
  33808. ]
  33809. ))
  33810. characterMakers.push(() => makeCharacter(
  33811. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33812. {
  33813. front: {
  33814. height: math.unit(6, "feet"),
  33815. weight: math.unit(150, "lb"),
  33816. name: "Front",
  33817. image: {
  33818. source: "./media/characters/pride/front.svg",
  33819. extra: 1299/1230,
  33820. bottom: 18/1317
  33821. }
  33822. },
  33823. },
  33824. [
  33825. {
  33826. name: "Normal",
  33827. height: math.unit(7, "feet")
  33828. },
  33829. {
  33830. name: "Mini-macro",
  33831. height: math.unit(11, "feet")
  33832. },
  33833. {
  33834. name: "Macro",
  33835. height: math.unit(15, "meters"),
  33836. default: true
  33837. },
  33838. {
  33839. name: "Macro+",
  33840. height: math.unit(40, "meters")
  33841. },
  33842. ]
  33843. ))
  33844. characterMakers.push(() => makeCharacter(
  33845. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33846. {
  33847. front: {
  33848. height: math.unit(4 + 2 / 12, "feet"),
  33849. weight: math.unit(95, "lb"),
  33850. name: "Front",
  33851. image: {
  33852. source: "./media/characters/vaelophis-nyx/front.svg",
  33853. extra: 2532/2330,
  33854. bottom: 0/2532
  33855. }
  33856. },
  33857. back: {
  33858. height: math.unit(4 + 2 / 12, "feet"),
  33859. weight: math.unit(95, "lb"),
  33860. name: "Back",
  33861. image: {
  33862. source: "./media/characters/vaelophis-nyx/back.svg",
  33863. extra: 2484/2361,
  33864. bottom: 0/2484
  33865. }
  33866. },
  33867. feralSide: {
  33868. height: math.unit(2 + 1/12, "feet"),
  33869. weight: math.unit(20, "lb"),
  33870. name: "Feral (Side)",
  33871. image: {
  33872. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33873. extra: 1721/1581,
  33874. bottom: 70/1791
  33875. }
  33876. },
  33877. feralLazing: {
  33878. height: math.unit(1.08, "feet"),
  33879. weight: math.unit(20, "lb"),
  33880. name: "Feral (Lazing)",
  33881. image: {
  33882. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33883. extra: 822/822,
  33884. bottom: 248/1070
  33885. }
  33886. },
  33887. ear: {
  33888. height: math.unit(0.416, "feet"),
  33889. name: "Ear",
  33890. image: {
  33891. source: "./media/characters/vaelophis-nyx/ear.svg"
  33892. }
  33893. },
  33894. eye: {
  33895. height: math.unit(0.0748, "feet"),
  33896. name: "Eye",
  33897. image: {
  33898. source: "./media/characters/vaelophis-nyx/eye.svg"
  33899. }
  33900. },
  33901. mouth: {
  33902. height: math.unit(0.378, "feet"),
  33903. name: "Mouth",
  33904. image: {
  33905. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33906. }
  33907. },
  33908. spade: {
  33909. height: math.unit(0.55, "feet"),
  33910. name: "Spade",
  33911. image: {
  33912. source: "./media/characters/vaelophis-nyx/spade.svg"
  33913. }
  33914. },
  33915. },
  33916. [
  33917. {
  33918. name: "Normal",
  33919. height: math.unit(4 + 2/12, "feet"),
  33920. default: true
  33921. },
  33922. ]
  33923. ))
  33924. characterMakers.push(() => makeCharacter(
  33925. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33926. {
  33927. front: {
  33928. height: math.unit(7, "feet"),
  33929. weight: math.unit(231, "lb"),
  33930. name: "Front",
  33931. image: {
  33932. source: "./media/characters/flux/front.svg",
  33933. extra: 919/871,
  33934. bottom: 0/919
  33935. }
  33936. },
  33937. back: {
  33938. height: math.unit(7, "feet"),
  33939. weight: math.unit(231, "lb"),
  33940. name: "Back",
  33941. image: {
  33942. source: "./media/characters/flux/back.svg",
  33943. extra: 1040/992,
  33944. bottom: 0/1040
  33945. }
  33946. },
  33947. frontDressed: {
  33948. height: math.unit(7, "feet"),
  33949. weight: math.unit(231, "lb"),
  33950. name: "Front (Dressed)",
  33951. image: {
  33952. source: "./media/characters/flux/front-dressed.svg",
  33953. extra: 919/871,
  33954. bottom: 0/919
  33955. }
  33956. },
  33957. feralSide: {
  33958. height: math.unit(5, "feet"),
  33959. weight: math.unit(150, "lb"),
  33960. name: "Feral (Side)",
  33961. image: {
  33962. source: "./media/characters/flux/feral-side.svg",
  33963. extra: 598/528,
  33964. bottom: 28/626
  33965. }
  33966. },
  33967. head: {
  33968. height: math.unit(1.585, "feet"),
  33969. name: "Head",
  33970. image: {
  33971. source: "./media/characters/flux/head.svg"
  33972. }
  33973. },
  33974. headSide: {
  33975. height: math.unit(1.74, "feet"),
  33976. name: "Head (Side)",
  33977. image: {
  33978. source: "./media/characters/flux/head-side.svg"
  33979. }
  33980. },
  33981. headSideFire: {
  33982. height: math.unit(1.76, "feet"),
  33983. name: "Head (Side, Fire)",
  33984. image: {
  33985. source: "./media/characters/flux/head-side-fire.svg"
  33986. }
  33987. },
  33988. },
  33989. [
  33990. {
  33991. name: "Normal",
  33992. height: math.unit(7, "feet"),
  33993. default: true
  33994. },
  33995. ]
  33996. ))
  33997. characterMakers.push(() => makeCharacter(
  33998. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33999. {
  34000. front: {
  34001. height: math.unit(9, "feet"),
  34002. weight: math.unit(1012, "lb"),
  34003. name: "Front",
  34004. image: {
  34005. source: "./media/characters/ulfra-lupae/front.svg",
  34006. extra: 1083/1011,
  34007. bottom: 67/1150
  34008. }
  34009. },
  34010. },
  34011. [
  34012. {
  34013. name: "Micro",
  34014. height: math.unit(6, "inches")
  34015. },
  34016. {
  34017. name: "Socializing",
  34018. height: math.unit(6 + 5/12, "feet")
  34019. },
  34020. {
  34021. name: "Normal",
  34022. height: math.unit(9, "feet"),
  34023. default: true
  34024. },
  34025. {
  34026. name: "Macro",
  34027. height: math.unit(150, "feet")
  34028. },
  34029. ]
  34030. ))
  34031. characterMakers.push(() => makeCharacter(
  34032. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  34033. {
  34034. front: {
  34035. height: math.unit(5 + 2/12, "feet"),
  34036. weight: math.unit(120, "lb"),
  34037. name: "Front",
  34038. image: {
  34039. source: "./media/characters/timber/front.svg",
  34040. extra: 2814/2705,
  34041. bottom: 181/2995
  34042. }
  34043. },
  34044. },
  34045. [
  34046. {
  34047. name: "Normal",
  34048. height: math.unit(5 + 2/12, "feet"),
  34049. default: true
  34050. },
  34051. ]
  34052. ))
  34053. characterMakers.push(() => makeCharacter(
  34054. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  34055. {
  34056. front: {
  34057. height: math.unit(9, "feet"),
  34058. name: "Front",
  34059. image: {
  34060. source: "./media/characters/nicki/front.svg",
  34061. extra: 1240/990,
  34062. bottom: 45/1285
  34063. },
  34064. form: "anthro",
  34065. default: true
  34066. },
  34067. side: {
  34068. height: math.unit(9, "feet"),
  34069. name: "Side",
  34070. image: {
  34071. source: "./media/characters/nicki/side.svg",
  34072. extra: 1047/973,
  34073. bottom: 61/1108
  34074. },
  34075. form: "anthro"
  34076. },
  34077. back: {
  34078. height: math.unit(9, "feet"),
  34079. name: "Back",
  34080. image: {
  34081. source: "./media/characters/nicki/back.svg",
  34082. extra: 1006/965,
  34083. bottom: 39/1045
  34084. },
  34085. form: "anthro"
  34086. },
  34087. taur: {
  34088. height: math.unit(15, "feet"),
  34089. name: "Taur",
  34090. image: {
  34091. source: "./media/characters/nicki/taur.svg",
  34092. extra: 1592/1347,
  34093. bottom: 0/1592
  34094. },
  34095. form: "taur",
  34096. default: true
  34097. },
  34098. },
  34099. [
  34100. {
  34101. name: "Normal",
  34102. height: math.unit(9, "feet"),
  34103. form: "anthro",
  34104. default: true
  34105. },
  34106. {
  34107. name: "Normal",
  34108. height: math.unit(15, "feet"),
  34109. form: "taur",
  34110. default: true
  34111. }
  34112. ],
  34113. {
  34114. "anthro": {
  34115. name: "Anthro",
  34116. default: true
  34117. },
  34118. "taur": {
  34119. name: "Taur"
  34120. }
  34121. }
  34122. ))
  34123. characterMakers.push(() => makeCharacter(
  34124. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  34125. {
  34126. front: {
  34127. height: math.unit(7 + 10/12, "feet"),
  34128. weight: math.unit(3.5, "tons"),
  34129. name: "Front",
  34130. image: {
  34131. source: "./media/characters/lee/front.svg",
  34132. extra: 1773/1615,
  34133. bottom: 86/1859
  34134. }
  34135. },
  34136. hand: {
  34137. height: math.unit(1.78, "feet"),
  34138. name: "Hand",
  34139. image: {
  34140. source: "./media/characters/lee/hand.svg"
  34141. }
  34142. },
  34143. maw: {
  34144. height: math.unit(1.18, "feet"),
  34145. name: "Maw",
  34146. image: {
  34147. source: "./media/characters/lee/maw.svg"
  34148. }
  34149. },
  34150. },
  34151. [
  34152. {
  34153. name: "Normal",
  34154. height: math.unit(7 + 10/12, "feet"),
  34155. default: true
  34156. },
  34157. ]
  34158. ))
  34159. characterMakers.push(() => makeCharacter(
  34160. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  34161. {
  34162. front: {
  34163. height: math.unit(9, "feet"),
  34164. name: "Front",
  34165. image: {
  34166. source: "./media/characters/guti/front.svg",
  34167. extra: 4551/4355,
  34168. bottom: 123/4674
  34169. }
  34170. },
  34171. tongue: {
  34172. height: math.unit(1, "feet"),
  34173. name: "Tongue",
  34174. image: {
  34175. source: "./media/characters/guti/tongue.svg"
  34176. }
  34177. },
  34178. paw: {
  34179. height: math.unit(1.18, "feet"),
  34180. name: "Paw",
  34181. image: {
  34182. source: "./media/characters/guti/paw.svg"
  34183. }
  34184. },
  34185. },
  34186. [
  34187. {
  34188. name: "Normal",
  34189. height: math.unit(9, "feet"),
  34190. default: true
  34191. },
  34192. ]
  34193. ))
  34194. characterMakers.push(() => makeCharacter(
  34195. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34196. {
  34197. side: {
  34198. height: math.unit(5, "meters"),
  34199. name: "Side",
  34200. image: {
  34201. source: "./media/characters/vesper/side.svg",
  34202. extra: 1605/1518,
  34203. bottom: 0/1605
  34204. }
  34205. },
  34206. },
  34207. [
  34208. {
  34209. name: "Small",
  34210. height: math.unit(5, "meters")
  34211. },
  34212. {
  34213. name: "Sage",
  34214. height: math.unit(100, "meters"),
  34215. default: true
  34216. },
  34217. {
  34218. name: "Fun Size",
  34219. height: math.unit(600, "meters")
  34220. },
  34221. {
  34222. name: "Goddess",
  34223. height: math.unit(20000, "km")
  34224. },
  34225. {
  34226. name: "Maximum",
  34227. height: math.unit(5, "galaxies")
  34228. },
  34229. ]
  34230. ))
  34231. characterMakers.push(() => makeCharacter(
  34232. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34233. {
  34234. front: {
  34235. height: math.unit(6 + 3/12, "feet"),
  34236. weight: math.unit(190, "lb"),
  34237. name: "Front",
  34238. image: {
  34239. source: "./media/characters/gawain/front.svg",
  34240. extra: 2222/2139,
  34241. bottom: 90/2312
  34242. }
  34243. },
  34244. back: {
  34245. height: math.unit(6 + 3/12, "feet"),
  34246. weight: math.unit(190, "lb"),
  34247. name: "Back",
  34248. image: {
  34249. source: "./media/characters/gawain/back.svg",
  34250. extra: 2199/2111,
  34251. bottom: 73/2272
  34252. }
  34253. },
  34254. },
  34255. [
  34256. {
  34257. name: "Normal",
  34258. height: math.unit(6 + 3/12, "feet"),
  34259. default: true
  34260. },
  34261. ]
  34262. ))
  34263. characterMakers.push(() => makeCharacter(
  34264. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34265. {
  34266. side: {
  34267. height: math.unit(3.5, "meters"),
  34268. weight: math.unit(16000, "lb"),
  34269. name: "Side",
  34270. image: {
  34271. source: "./media/characters/dascalti/side.svg",
  34272. extra: 392/273,
  34273. bottom: 47/439
  34274. }
  34275. },
  34276. breath: {
  34277. height: math.unit(7.4, "feet"),
  34278. name: "Breath",
  34279. image: {
  34280. source: "./media/characters/dascalti/breath.svg"
  34281. }
  34282. },
  34283. fed: {
  34284. height: math.unit(3.6, "meters"),
  34285. weight: math.unit(16000, "lb"),
  34286. name: "Fed",
  34287. image: {
  34288. source: "./media/characters/dascalti/fed.svg",
  34289. extra: 1419/820,
  34290. bottom: 95/1514
  34291. }
  34292. },
  34293. },
  34294. [
  34295. {
  34296. name: "Normal",
  34297. height: math.unit(3.5, "meters"),
  34298. default: true
  34299. },
  34300. ]
  34301. ))
  34302. characterMakers.push(() => makeCharacter(
  34303. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34304. {
  34305. front: {
  34306. height: math.unit(3 + 5/12, "feet"),
  34307. name: "Front",
  34308. image: {
  34309. source: "./media/characters/mauve/front.svg",
  34310. extra: 1126/1033,
  34311. bottom: 65/1191
  34312. }
  34313. },
  34314. side: {
  34315. height: math.unit(3 + 5/12, "feet"),
  34316. name: "Side",
  34317. image: {
  34318. source: "./media/characters/mauve/side.svg",
  34319. extra: 1089/1001,
  34320. bottom: 29/1118
  34321. }
  34322. },
  34323. back: {
  34324. height: math.unit(3 + 5/12, "feet"),
  34325. name: "Back",
  34326. image: {
  34327. source: "./media/characters/mauve/back.svg",
  34328. extra: 1173/1053,
  34329. bottom: 109/1282
  34330. }
  34331. },
  34332. },
  34333. [
  34334. {
  34335. name: "Normal",
  34336. height: math.unit(3 + 5/12, "feet"),
  34337. default: true
  34338. },
  34339. ]
  34340. ))
  34341. characterMakers.push(() => makeCharacter(
  34342. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34343. {
  34344. front: {
  34345. height: math.unit(6 + 3/12, "feet"),
  34346. weight: math.unit(430, "lb"),
  34347. name: "Front",
  34348. image: {
  34349. source: "./media/characters/carlos/front.svg",
  34350. extra: 1964/1913,
  34351. bottom: 70/2034
  34352. }
  34353. },
  34354. },
  34355. [
  34356. {
  34357. name: "Normal",
  34358. height: math.unit(6 + 3/12, "feet"),
  34359. default: true
  34360. },
  34361. ]
  34362. ))
  34363. characterMakers.push(() => makeCharacter(
  34364. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34365. {
  34366. back: {
  34367. height: math.unit(5 + 10/12, "feet"),
  34368. weight: math.unit(200, "lb"),
  34369. name: "Back",
  34370. image: {
  34371. source: "./media/characters/jax/back.svg",
  34372. extra: 764/739,
  34373. bottom: 25/789
  34374. }
  34375. },
  34376. },
  34377. [
  34378. {
  34379. name: "Normal",
  34380. height: math.unit(5 + 10/12, "feet"),
  34381. default: true
  34382. },
  34383. ]
  34384. ))
  34385. characterMakers.push(() => makeCharacter(
  34386. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34387. {
  34388. front: {
  34389. height: math.unit(8, "feet"),
  34390. weight: math.unit(250, "lb"),
  34391. name: "Front",
  34392. image: {
  34393. source: "./media/characters/eikthynir/front.svg",
  34394. extra: 1332/1166,
  34395. bottom: 82/1414
  34396. }
  34397. },
  34398. back: {
  34399. height: math.unit(8, "feet"),
  34400. weight: math.unit(250, "lb"),
  34401. name: "Back",
  34402. image: {
  34403. source: "./media/characters/eikthynir/back.svg",
  34404. extra: 1342/1190,
  34405. bottom: 19/1361
  34406. }
  34407. },
  34408. dick: {
  34409. height: math.unit(2.35, "feet"),
  34410. name: "Dick",
  34411. image: {
  34412. source: "./media/characters/eikthynir/dick.svg"
  34413. }
  34414. },
  34415. },
  34416. [
  34417. {
  34418. name: "Normal",
  34419. height: math.unit(8, "feet"),
  34420. default: true
  34421. },
  34422. ]
  34423. ))
  34424. characterMakers.push(() => makeCharacter(
  34425. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34426. {
  34427. front: {
  34428. height: math.unit(99, "meters"),
  34429. weight: math.unit(13000, "tons"),
  34430. name: "Front",
  34431. image: {
  34432. source: "./media/characters/zlmos/front.svg",
  34433. extra: 2202/1992,
  34434. bottom: 315/2517
  34435. }
  34436. },
  34437. },
  34438. [
  34439. {
  34440. name: "Macro",
  34441. height: math.unit(99, "meters"),
  34442. default: true
  34443. },
  34444. ]
  34445. ))
  34446. characterMakers.push(() => makeCharacter(
  34447. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34448. {
  34449. front: {
  34450. height: math.unit(6 + 5/12, "feet"),
  34451. name: "Front",
  34452. image: {
  34453. source: "./media/characters/purri/front.svg",
  34454. extra: 1698/1610,
  34455. bottom: 32/1730
  34456. }
  34457. },
  34458. frontAlt: {
  34459. height: math.unit(6 + 5/12, "feet"),
  34460. name: "Front (Alt)",
  34461. image: {
  34462. source: "./media/characters/purri/front-alt.svg",
  34463. extra: 450/420,
  34464. bottom: 26/476
  34465. }
  34466. },
  34467. boots: {
  34468. height: math.unit(5.5, "feet"),
  34469. name: "Boots",
  34470. image: {
  34471. source: "./media/characters/purri/boots.svg",
  34472. extra: 905/853,
  34473. bottom: 18/923
  34474. },
  34475. extraAttributes: {
  34476. "shoeSize": {
  34477. name: "Shoe Size",
  34478. power: 1,
  34479. type: "length",
  34480. base: math.unit(12, "ShoeSizeMensUS")
  34481. },
  34482. "platformHeight": {
  34483. name: "Platform Height",
  34484. power: 1,
  34485. type: "length",
  34486. base: math.unit(2, "inches")
  34487. },
  34488. }
  34489. },
  34490. lying: {
  34491. height: math.unit(2, "feet"),
  34492. name: "Lying",
  34493. image: {
  34494. source: "./media/characters/purri/lying.svg",
  34495. extra: 940/843,
  34496. bottom: 146/1086
  34497. }
  34498. },
  34499. devious: {
  34500. height: math.unit(1.77, "feet"),
  34501. name: "Devious",
  34502. image: {
  34503. source: "./media/characters/purri/devious.svg",
  34504. extra: 1440/1155,
  34505. bottom: 147/1587
  34506. }
  34507. },
  34508. bean: {
  34509. height: math.unit(1.94, "feet"),
  34510. name: "Bean",
  34511. image: {
  34512. source: "./media/characters/purri/bean.svg"
  34513. }
  34514. },
  34515. },
  34516. [
  34517. {
  34518. name: "Micro",
  34519. height: math.unit(1, "mm")
  34520. },
  34521. {
  34522. name: "Normal",
  34523. height: math.unit(6 + 5/12, "feet"),
  34524. default: true
  34525. },
  34526. {
  34527. name: "Macro :3c",
  34528. height: math.unit(2, "miles")
  34529. },
  34530. ]
  34531. ))
  34532. characterMakers.push(() => makeCharacter(
  34533. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34534. {
  34535. front: {
  34536. height: math.unit(6 + 2/12, "feet"),
  34537. weight: math.unit(250, "lb"),
  34538. name: "Front",
  34539. image: {
  34540. source: "./media/characters/moonlight/front.svg",
  34541. extra: 1044/908,
  34542. bottom: 56/1100
  34543. }
  34544. },
  34545. feral: {
  34546. height: math.unit(3 + 1/12, "feet"),
  34547. weight: math.unit(50, "kg"),
  34548. name: "Feral",
  34549. image: {
  34550. source: "./media/characters/moonlight/feral.svg",
  34551. extra: 3705/2791,
  34552. bottom: 145/3850
  34553. }
  34554. },
  34555. paw: {
  34556. height: math.unit(1, "feet"),
  34557. name: "Paw",
  34558. image: {
  34559. source: "./media/characters/moonlight/paw.svg"
  34560. }
  34561. },
  34562. paws: {
  34563. height: math.unit(0.98, "feet"),
  34564. name: "Paws",
  34565. image: {
  34566. source: "./media/characters/moonlight/paws.svg",
  34567. extra: 939/939,
  34568. bottom: 50/989
  34569. }
  34570. },
  34571. mouth: {
  34572. height: math.unit(0.48, "feet"),
  34573. name: "Mouth",
  34574. image: {
  34575. source: "./media/characters/moonlight/mouth.svg"
  34576. }
  34577. },
  34578. dick: {
  34579. height: math.unit(1.46, "feet"),
  34580. name: "Dick",
  34581. image: {
  34582. source: "./media/characters/moonlight/dick.svg"
  34583. }
  34584. },
  34585. },
  34586. [
  34587. {
  34588. name: "Normal",
  34589. height: math.unit(6 + 2/12, "feet"),
  34590. default: true
  34591. },
  34592. {
  34593. name: "Macro",
  34594. height: math.unit(300, "feet")
  34595. },
  34596. {
  34597. name: "Macro+",
  34598. height: math.unit(1, "mile")
  34599. },
  34600. {
  34601. name: "Mt. Moon",
  34602. height: math.unit(5, "miles")
  34603. },
  34604. {
  34605. name: "Megamacro",
  34606. height: math.unit(15, "miles")
  34607. },
  34608. ]
  34609. ))
  34610. characterMakers.push(() => makeCharacter(
  34611. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34612. {
  34613. back: {
  34614. height: math.unit(6, "feet"),
  34615. weight: math.unit(150, "lb"),
  34616. name: "Back",
  34617. image: {
  34618. source: "./media/characters/sylen/back.svg",
  34619. extra: 1335/1273,
  34620. bottom: 107/1442
  34621. }
  34622. },
  34623. },
  34624. [
  34625. {
  34626. name: "Normal",
  34627. height: math.unit(5 + 5/12, "feet")
  34628. },
  34629. {
  34630. name: "Megamacro",
  34631. height: math.unit(3, "miles"),
  34632. default: true
  34633. },
  34634. ]
  34635. ))
  34636. characterMakers.push(() => makeCharacter(
  34637. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34638. {
  34639. front: {
  34640. height: math.unit(6, "feet"),
  34641. weight: math.unit(190, "lb"),
  34642. name: "Front",
  34643. image: {
  34644. source: "./media/characters/huttser/front.svg",
  34645. extra: 1152/1058,
  34646. bottom: 23/1175
  34647. }
  34648. },
  34649. side: {
  34650. height: math.unit(6, "feet"),
  34651. weight: math.unit(190, "lb"),
  34652. name: "Side",
  34653. image: {
  34654. source: "./media/characters/huttser/side.svg",
  34655. extra: 1174/1065,
  34656. bottom: 18/1192
  34657. }
  34658. },
  34659. back: {
  34660. height: math.unit(6, "feet"),
  34661. weight: math.unit(190, "lb"),
  34662. name: "Back",
  34663. image: {
  34664. source: "./media/characters/huttser/back.svg",
  34665. extra: 1158/1056,
  34666. bottom: 12/1170
  34667. }
  34668. },
  34669. },
  34670. [
  34671. ]
  34672. ))
  34673. characterMakers.push(() => makeCharacter(
  34674. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34675. {
  34676. side: {
  34677. height: math.unit(12 + 9/12, "feet"),
  34678. weight: math.unit(15000, "lb"),
  34679. name: "Side",
  34680. image: {
  34681. source: "./media/characters/faan/side.svg",
  34682. extra: 2747/2697,
  34683. bottom: 0/2747
  34684. }
  34685. },
  34686. front: {
  34687. height: math.unit(12 + 9/12, "feet"),
  34688. weight: math.unit(15000, "lb"),
  34689. name: "Front",
  34690. image: {
  34691. source: "./media/characters/faan/front.svg",
  34692. extra: 607/571,
  34693. bottom: 24/631
  34694. }
  34695. },
  34696. head: {
  34697. height: math.unit(2.85, "feet"),
  34698. name: "Head",
  34699. image: {
  34700. source: "./media/characters/faan/head.svg"
  34701. }
  34702. },
  34703. headAlt: {
  34704. height: math.unit(3.13, "feet"),
  34705. name: "Head-alt",
  34706. image: {
  34707. source: "./media/characters/faan/head-alt.svg"
  34708. }
  34709. },
  34710. },
  34711. [
  34712. {
  34713. name: "Normal",
  34714. height: math.unit(12 + 9/12, "feet"),
  34715. default: true
  34716. },
  34717. ]
  34718. ))
  34719. characterMakers.push(() => makeCharacter(
  34720. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34721. {
  34722. front: {
  34723. height: math.unit(6, "feet"),
  34724. weight: math.unit(300, "lb"),
  34725. name: "Front",
  34726. image: {
  34727. source: "./media/characters/tanio/front.svg",
  34728. extra: 711/673,
  34729. bottom: 25/736
  34730. }
  34731. },
  34732. },
  34733. [
  34734. {
  34735. name: "Normal",
  34736. height: math.unit(6, "feet"),
  34737. default: true
  34738. },
  34739. ]
  34740. ))
  34741. characterMakers.push(() => makeCharacter(
  34742. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34743. {
  34744. front: {
  34745. height: math.unit(3, "inches"),
  34746. name: "Front",
  34747. image: {
  34748. source: "./media/characters/noboru/front.svg",
  34749. extra: 1039/932,
  34750. bottom: 18/1057
  34751. }
  34752. },
  34753. },
  34754. [
  34755. {
  34756. name: "Micro",
  34757. height: math.unit(3, "inches"),
  34758. default: true
  34759. },
  34760. ]
  34761. ))
  34762. characterMakers.push(() => makeCharacter(
  34763. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34764. {
  34765. front: {
  34766. height: math.unit(1.85, "meters"),
  34767. weight: math.unit(80, "kg"),
  34768. name: "Front",
  34769. image: {
  34770. source: "./media/characters/daniel-barrett/front.svg",
  34771. extra: 355/337,
  34772. bottom: 9/364
  34773. }
  34774. },
  34775. },
  34776. [
  34777. {
  34778. name: "Pico",
  34779. height: math.unit(0.0433, "mm")
  34780. },
  34781. {
  34782. name: "Nano",
  34783. height: math.unit(1.5, "mm")
  34784. },
  34785. {
  34786. name: "Micro",
  34787. height: math.unit(5.3, "cm"),
  34788. default: true
  34789. },
  34790. {
  34791. name: "Normal",
  34792. height: math.unit(1.85, "meters")
  34793. },
  34794. {
  34795. name: "Macro",
  34796. height: math.unit(64.7, "meters")
  34797. },
  34798. {
  34799. name: "Megamacro",
  34800. height: math.unit(2.26, "km")
  34801. },
  34802. {
  34803. name: "Gigamacro",
  34804. height: math.unit(79, "km")
  34805. },
  34806. {
  34807. name: "Teramacro",
  34808. height: math.unit(2765, "km")
  34809. },
  34810. {
  34811. name: "Petamacro",
  34812. height: math.unit(96678, "km")
  34813. },
  34814. ]
  34815. ))
  34816. characterMakers.push(() => makeCharacter(
  34817. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34818. {
  34819. front: {
  34820. height: math.unit(30, "meters"),
  34821. weight: math.unit(400, "tons"),
  34822. name: "Front",
  34823. image: {
  34824. source: "./media/characters/zeel/front.svg",
  34825. extra: 2599/2599,
  34826. bottom: 226/2825
  34827. }
  34828. },
  34829. },
  34830. [
  34831. {
  34832. name: "Macro",
  34833. height: math.unit(30, "meters"),
  34834. default: true
  34835. },
  34836. ]
  34837. ))
  34838. characterMakers.push(() => makeCharacter(
  34839. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34840. {
  34841. front: {
  34842. height: math.unit(6 + 7/12, "feet"),
  34843. weight: math.unit(210, "lb"),
  34844. name: "Front",
  34845. image: {
  34846. source: "./media/characters/tarn/front.svg",
  34847. extra: 3517/3220,
  34848. bottom: 91/3608
  34849. }
  34850. },
  34851. back: {
  34852. height: math.unit(6 + 7/12, "feet"),
  34853. weight: math.unit(210, "lb"),
  34854. name: "Back",
  34855. image: {
  34856. source: "./media/characters/tarn/back.svg",
  34857. extra: 3566/3241,
  34858. bottom: 34/3600
  34859. }
  34860. },
  34861. dick: {
  34862. height: math.unit(1.65, "feet"),
  34863. name: "Dick",
  34864. image: {
  34865. source: "./media/characters/tarn/dick.svg"
  34866. }
  34867. },
  34868. paw: {
  34869. height: math.unit(1.80, "feet"),
  34870. name: "Paw",
  34871. image: {
  34872. source: "./media/characters/tarn/paw.svg"
  34873. }
  34874. },
  34875. tongue: {
  34876. height: math.unit(0.97, "feet"),
  34877. name: "Tongue",
  34878. image: {
  34879. source: "./media/characters/tarn/tongue.svg"
  34880. }
  34881. },
  34882. },
  34883. [
  34884. {
  34885. name: "Micro",
  34886. height: math.unit(4, "inches")
  34887. },
  34888. {
  34889. name: "Normal",
  34890. height: math.unit(6 + 7/12, "feet"),
  34891. default: true
  34892. },
  34893. {
  34894. name: "Macro",
  34895. height: math.unit(300, "feet")
  34896. },
  34897. ]
  34898. ))
  34899. characterMakers.push(() => makeCharacter(
  34900. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34901. {
  34902. front: {
  34903. height: math.unit(5 + 7/12, "feet"),
  34904. weight: math.unit(80, "kg"),
  34905. name: "Front",
  34906. image: {
  34907. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34908. extra: 3023/2865,
  34909. bottom: 33/3056
  34910. }
  34911. },
  34912. back: {
  34913. height: math.unit(5 + 7/12, "feet"),
  34914. weight: math.unit(80, "kg"),
  34915. name: "Back",
  34916. image: {
  34917. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34918. extra: 3020/2886,
  34919. bottom: 30/3050
  34920. }
  34921. },
  34922. dick: {
  34923. height: math.unit(0.98, "feet"),
  34924. name: "Dick",
  34925. image: {
  34926. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34927. }
  34928. },
  34929. anatomy: {
  34930. height: math.unit(2.86, "feet"),
  34931. name: "Anatomy",
  34932. image: {
  34933. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34934. }
  34935. },
  34936. },
  34937. [
  34938. {
  34939. name: "Really Small",
  34940. height: math.unit(2, "inches")
  34941. },
  34942. {
  34943. name: "Micro",
  34944. height: math.unit(5.583, "inches")
  34945. },
  34946. {
  34947. name: "Normal",
  34948. height: math.unit(5 + 7/12, "feet"),
  34949. default: true
  34950. },
  34951. {
  34952. name: "Macro",
  34953. height: math.unit(67, "feet")
  34954. },
  34955. {
  34956. name: "Megamacro",
  34957. height: math.unit(134, "feet")
  34958. },
  34959. ]
  34960. ))
  34961. characterMakers.push(() => makeCharacter(
  34962. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34963. {
  34964. front: {
  34965. height: math.unit(9, "feet"),
  34966. weight: math.unit(120, "lb"),
  34967. name: "Front",
  34968. image: {
  34969. source: "./media/characters/sally/front.svg",
  34970. extra: 1506/1349,
  34971. bottom: 66/1572
  34972. }
  34973. },
  34974. },
  34975. [
  34976. {
  34977. name: "Normal",
  34978. height: math.unit(9, "feet"),
  34979. default: true
  34980. },
  34981. ]
  34982. ))
  34983. characterMakers.push(() => makeCharacter(
  34984. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34985. {
  34986. front: {
  34987. height: math.unit(8, "feet"),
  34988. weight: math.unit(900, "lb"),
  34989. name: "Front",
  34990. image: {
  34991. source: "./media/characters/owen/front.svg",
  34992. extra: 1761/1657,
  34993. bottom: 74/1835
  34994. }
  34995. },
  34996. side: {
  34997. height: math.unit(8, "feet"),
  34998. weight: math.unit(900, "lb"),
  34999. name: "Side",
  35000. image: {
  35001. source: "./media/characters/owen/side.svg",
  35002. extra: 1797/1734,
  35003. bottom: 30/1827
  35004. }
  35005. },
  35006. back: {
  35007. height: math.unit(8, "feet"),
  35008. weight: math.unit(900, "lb"),
  35009. name: "Back",
  35010. image: {
  35011. source: "./media/characters/owen/back.svg",
  35012. extra: 1796/1706,
  35013. bottom: 59/1855
  35014. }
  35015. },
  35016. maw: {
  35017. height: math.unit(1.76, "feet"),
  35018. name: "Maw",
  35019. image: {
  35020. source: "./media/characters/owen/maw.svg"
  35021. }
  35022. },
  35023. },
  35024. [
  35025. {
  35026. name: "Normal",
  35027. height: math.unit(8, "feet"),
  35028. default: true
  35029. },
  35030. ]
  35031. ))
  35032. characterMakers.push(() => makeCharacter(
  35033. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  35034. {
  35035. front: {
  35036. height: math.unit(4, "feet"),
  35037. weight: math.unit(400, "lb"),
  35038. name: "Front",
  35039. image: {
  35040. source: "./media/characters/ryth/front.svg",
  35041. extra: 1920/1748,
  35042. bottom: 42/1962
  35043. }
  35044. },
  35045. back: {
  35046. height: math.unit(4, "feet"),
  35047. weight: math.unit(400, "lb"),
  35048. name: "Back",
  35049. image: {
  35050. source: "./media/characters/ryth/back.svg",
  35051. extra: 1897/1690,
  35052. bottom: 89/1986
  35053. }
  35054. },
  35055. mouth: {
  35056. height: math.unit(1.39, "feet"),
  35057. name: "Mouth",
  35058. image: {
  35059. source: "./media/characters/ryth/mouth.svg"
  35060. }
  35061. },
  35062. tailmaw: {
  35063. height: math.unit(1.23, "feet"),
  35064. name: "Tailmaw",
  35065. image: {
  35066. source: "./media/characters/ryth/tailmaw.svg"
  35067. }
  35068. },
  35069. goia: {
  35070. height: math.unit(4, "meters"),
  35071. weight: math.unit(10800, "lb"),
  35072. name: "Goia",
  35073. image: {
  35074. source: "./media/characters/ryth/goia.svg",
  35075. extra: 745/640,
  35076. bottom: 107/852
  35077. }
  35078. },
  35079. goiaFront: {
  35080. height: math.unit(4, "meters"),
  35081. weight: math.unit(10800, "lb"),
  35082. name: "Goia (Front)",
  35083. image: {
  35084. source: "./media/characters/ryth/goia-front.svg",
  35085. extra: 750/586,
  35086. bottom: 114/864
  35087. }
  35088. },
  35089. goiaMaw: {
  35090. height: math.unit(5.55, "feet"),
  35091. name: "Goia Maw",
  35092. image: {
  35093. source: "./media/characters/ryth/goia-maw.svg"
  35094. }
  35095. },
  35096. goiaForepaw: {
  35097. height: math.unit(3.5, "feet"),
  35098. name: "Goia Forepaw",
  35099. image: {
  35100. source: "./media/characters/ryth/goia-forepaw.svg"
  35101. }
  35102. },
  35103. goiaHindpaw: {
  35104. height: math.unit(5.55, "feet"),
  35105. name: "Goia Hindpaw",
  35106. image: {
  35107. source: "./media/characters/ryth/goia-hindpaw.svg"
  35108. }
  35109. },
  35110. },
  35111. [
  35112. {
  35113. name: "Normal",
  35114. height: math.unit(4, "feet"),
  35115. default: true
  35116. },
  35117. ]
  35118. ))
  35119. characterMakers.push(() => makeCharacter(
  35120. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  35121. {
  35122. front: {
  35123. height: math.unit(7, "feet"),
  35124. weight: math.unit(180, "lb"),
  35125. name: "Front",
  35126. image: {
  35127. source: "./media/characters/necrolance/front.svg",
  35128. extra: 1062/947,
  35129. bottom: 41/1103
  35130. }
  35131. },
  35132. back: {
  35133. height: math.unit(7, "feet"),
  35134. weight: math.unit(180, "lb"),
  35135. name: "Back",
  35136. image: {
  35137. source: "./media/characters/necrolance/back.svg",
  35138. extra: 1045/984,
  35139. bottom: 14/1059
  35140. }
  35141. },
  35142. wing: {
  35143. height: math.unit(2.67, "feet"),
  35144. name: "Wing",
  35145. image: {
  35146. source: "./media/characters/necrolance/wing.svg"
  35147. }
  35148. },
  35149. },
  35150. [
  35151. {
  35152. name: "Normal",
  35153. height: math.unit(7, "feet"),
  35154. default: true
  35155. },
  35156. ]
  35157. ))
  35158. characterMakers.push(() => makeCharacter(
  35159. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  35160. {
  35161. front: {
  35162. height: math.unit(76, "meters"),
  35163. weight: math.unit(30000, "tons"),
  35164. name: "Front",
  35165. image: {
  35166. source: "./media/characters/tyler/front.svg",
  35167. extra: 1640/1640,
  35168. bottom: 114/1754
  35169. }
  35170. },
  35171. },
  35172. [
  35173. {
  35174. name: "Macro",
  35175. height: math.unit(76, "meters"),
  35176. default: true
  35177. },
  35178. ]
  35179. ))
  35180. characterMakers.push(() => makeCharacter(
  35181. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  35182. {
  35183. front: {
  35184. height: math.unit(4 + 11/12, "feet"),
  35185. weight: math.unit(132, "lb"),
  35186. name: "Front",
  35187. image: {
  35188. source: "./media/characters/icey/front.svg",
  35189. extra: 2750/2550,
  35190. bottom: 33/2783
  35191. }
  35192. },
  35193. back: {
  35194. height: math.unit(4 + 11/12, "feet"),
  35195. weight: math.unit(132, "lb"),
  35196. name: "Back",
  35197. image: {
  35198. source: "./media/characters/icey/back.svg",
  35199. extra: 2624/2481,
  35200. bottom: 35/2659
  35201. }
  35202. },
  35203. },
  35204. [
  35205. {
  35206. name: "Normal",
  35207. height: math.unit(4 + 11/12, "feet"),
  35208. default: true
  35209. },
  35210. ]
  35211. ))
  35212. characterMakers.push(() => makeCharacter(
  35213. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35214. {
  35215. front: {
  35216. height: math.unit(100, "feet"),
  35217. weight: math.unit(0, "lb"),
  35218. name: "Front",
  35219. image: {
  35220. source: "./media/characters/smile/front.svg",
  35221. extra: 2983/2912,
  35222. bottom: 162/3145
  35223. }
  35224. },
  35225. back: {
  35226. height: math.unit(100, "feet"),
  35227. weight: math.unit(0, "lb"),
  35228. name: "Back",
  35229. image: {
  35230. source: "./media/characters/smile/back.svg",
  35231. extra: 3143/3031,
  35232. bottom: 91/3234
  35233. }
  35234. },
  35235. head: {
  35236. height: math.unit(26.3, "feet"),
  35237. weight: math.unit(0, "lb"),
  35238. name: "Head",
  35239. image: {
  35240. source: "./media/characters/smile/head.svg"
  35241. }
  35242. },
  35243. collar: {
  35244. height: math.unit(5.3, "feet"),
  35245. weight: math.unit(0, "lb"),
  35246. name: "Collar",
  35247. image: {
  35248. source: "./media/characters/smile/collar.svg"
  35249. }
  35250. },
  35251. },
  35252. [
  35253. {
  35254. name: "Macro",
  35255. height: math.unit(100, "feet"),
  35256. default: true
  35257. },
  35258. ]
  35259. ))
  35260. characterMakers.push(() => makeCharacter(
  35261. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35262. {
  35263. dragon: {
  35264. height: math.unit(26, "feet"),
  35265. weight: math.unit(36, "tons"),
  35266. name: "Dragon",
  35267. image: {
  35268. source: "./media/characters/arimphae/dragon.svg",
  35269. extra: 1574/983,
  35270. bottom: 357/1931
  35271. }
  35272. },
  35273. drake: {
  35274. height: math.unit(9, "feet"),
  35275. weight: math.unit(1.5, "tons"),
  35276. name: "Drake",
  35277. image: {
  35278. source: "./media/characters/arimphae/drake.svg",
  35279. extra: 1120/925,
  35280. bottom: 435/1555
  35281. }
  35282. },
  35283. },
  35284. [
  35285. {
  35286. name: "Small",
  35287. height: math.unit(26*5/9, "feet")
  35288. },
  35289. {
  35290. name: "Normal",
  35291. height: math.unit(26, "feet"),
  35292. default: true
  35293. },
  35294. ]
  35295. ))
  35296. characterMakers.push(() => makeCharacter(
  35297. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35298. {
  35299. front: {
  35300. height: math.unit(8 + 9/12, "feet"),
  35301. name: "Front",
  35302. image: {
  35303. source: "./media/characters/xander/front.svg",
  35304. extra: 1237/974,
  35305. bottom: 94/1331
  35306. }
  35307. },
  35308. },
  35309. [
  35310. {
  35311. name: "Normal",
  35312. height: math.unit(8 + 9/12, "feet"),
  35313. default: true
  35314. },
  35315. {
  35316. name: "Gaze Grabber",
  35317. height: math.unit(13 + 8/12, "feet")
  35318. },
  35319. {
  35320. name: "Jaw Dropper",
  35321. height: math.unit(27, "feet")
  35322. },
  35323. {
  35324. name: "Show Stopper",
  35325. height: math.unit(136, "feet")
  35326. },
  35327. {
  35328. name: "Superstar",
  35329. height: math.unit(1.9e6, "miles")
  35330. },
  35331. ]
  35332. ))
  35333. characterMakers.push(() => makeCharacter(
  35334. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35335. {
  35336. side: {
  35337. height: math.unit(2100, "feet"),
  35338. name: "Side",
  35339. image: {
  35340. source: "./media/characters/osiris/side.svg",
  35341. extra: 1105/939,
  35342. bottom: 167/1272
  35343. }
  35344. },
  35345. },
  35346. [
  35347. {
  35348. name: "Macro",
  35349. height: math.unit(2100, "feet"),
  35350. default: true
  35351. },
  35352. ]
  35353. ))
  35354. characterMakers.push(() => makeCharacter(
  35355. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35356. {
  35357. front: {
  35358. height: math.unit(6 + 8/12, "feet"),
  35359. weight: math.unit(225, "lb"),
  35360. name: "Front",
  35361. image: {
  35362. source: "./media/characters/rhys-londe/front.svg",
  35363. extra: 2258/2141,
  35364. bottom: 188/2446
  35365. }
  35366. },
  35367. back: {
  35368. height: math.unit(6 + 8/12, "feet"),
  35369. weight: math.unit(225, "lb"),
  35370. name: "Back",
  35371. image: {
  35372. source: "./media/characters/rhys-londe/back.svg",
  35373. extra: 2237/2137,
  35374. bottom: 63/2300
  35375. }
  35376. },
  35377. frontNsfw: {
  35378. height: math.unit(6 + 8/12, "feet"),
  35379. weight: math.unit(225, "lb"),
  35380. name: "Front (NSFW)",
  35381. image: {
  35382. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35383. extra: 2258/2141,
  35384. bottom: 188/2446
  35385. }
  35386. },
  35387. backNsfw: {
  35388. height: math.unit(6 + 8/12, "feet"),
  35389. weight: math.unit(225, "lb"),
  35390. name: "Back (NSFW)",
  35391. image: {
  35392. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35393. extra: 2237/2137,
  35394. bottom: 63/2300
  35395. }
  35396. },
  35397. dick: {
  35398. height: math.unit(30, "inches"),
  35399. name: "Dick",
  35400. image: {
  35401. source: "./media/characters/rhys-londe/dick.svg"
  35402. }
  35403. },
  35404. maw: {
  35405. height: math.unit(1.6, "feet"),
  35406. name: "Maw",
  35407. image: {
  35408. source: "./media/characters/rhys-londe/maw.svg"
  35409. }
  35410. },
  35411. },
  35412. [
  35413. {
  35414. name: "Normal",
  35415. height: math.unit(6 + 8/12, "feet"),
  35416. default: true
  35417. },
  35418. ]
  35419. ))
  35420. characterMakers.push(() => makeCharacter(
  35421. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35422. {
  35423. front: {
  35424. height: math.unit(3 + 10/12, "feet"),
  35425. weight: math.unit(90, "lb"),
  35426. name: "Front",
  35427. image: {
  35428. source: "./media/characters/taivas-ensim/front.svg",
  35429. extra: 1327/1216,
  35430. bottom: 96/1423
  35431. }
  35432. },
  35433. back: {
  35434. height: math.unit(3 + 10/12, "feet"),
  35435. weight: math.unit(90, "lb"),
  35436. name: "Back",
  35437. image: {
  35438. source: "./media/characters/taivas-ensim/back.svg",
  35439. extra: 1355/1247,
  35440. bottom: 11/1366
  35441. }
  35442. },
  35443. frontNsfw: {
  35444. height: math.unit(3 + 10/12, "feet"),
  35445. weight: math.unit(90, "lb"),
  35446. name: "Front (NSFW)",
  35447. image: {
  35448. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35449. extra: 1327/1216,
  35450. bottom: 96/1423
  35451. }
  35452. },
  35453. backNsfw: {
  35454. height: math.unit(3 + 10/12, "feet"),
  35455. weight: math.unit(90, "lb"),
  35456. name: "Back (NSFW)",
  35457. image: {
  35458. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35459. extra: 1355/1247,
  35460. bottom: 11/1366
  35461. }
  35462. },
  35463. },
  35464. [
  35465. {
  35466. name: "Normal",
  35467. height: math.unit(3 + 10/12, "feet"),
  35468. default: true
  35469. },
  35470. ]
  35471. ))
  35472. characterMakers.push(() => makeCharacter(
  35473. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35474. {
  35475. front: {
  35476. height: math.unit(9 + 6/12, "feet"),
  35477. weight: math.unit(940, "lb"),
  35478. name: "Front",
  35479. image: {
  35480. source: "./media/characters/byliss/front.svg",
  35481. extra: 1327/1290,
  35482. bottom: 82/1409
  35483. }
  35484. },
  35485. back: {
  35486. height: math.unit(9 + 6/12, "feet"),
  35487. weight: math.unit(940, "lb"),
  35488. name: "Back",
  35489. image: {
  35490. source: "./media/characters/byliss/back.svg",
  35491. extra: 1376/1349,
  35492. bottom: 9/1385
  35493. }
  35494. },
  35495. frontNsfw: {
  35496. height: math.unit(9 + 6/12, "feet"),
  35497. weight: math.unit(940, "lb"),
  35498. name: "Front (NSFW)",
  35499. image: {
  35500. source: "./media/characters/byliss/front-nsfw.svg",
  35501. extra: 1327/1290,
  35502. bottom: 82/1409
  35503. }
  35504. },
  35505. backNsfw: {
  35506. height: math.unit(9 + 6/12, "feet"),
  35507. weight: math.unit(940, "lb"),
  35508. name: "Back (NSFW)",
  35509. image: {
  35510. source: "./media/characters/byliss/back-nsfw.svg",
  35511. extra: 1376/1349,
  35512. bottom: 9/1385
  35513. }
  35514. },
  35515. },
  35516. [
  35517. {
  35518. name: "Normal",
  35519. height: math.unit(9 + 6/12, "feet"),
  35520. default: true
  35521. },
  35522. ]
  35523. ))
  35524. characterMakers.push(() => makeCharacter(
  35525. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35526. {
  35527. front: {
  35528. height: math.unit(5 + 2/12, "feet"),
  35529. weight: math.unit(200, "lb"),
  35530. name: "Front",
  35531. image: {
  35532. source: "./media/characters/noraly/front.svg",
  35533. extra: 4985/4773,
  35534. bottom: 150/5135
  35535. }
  35536. },
  35537. full: {
  35538. height: math.unit(5 + 2/12, "feet"),
  35539. weight: math.unit(164, "lb"),
  35540. name: "Full",
  35541. image: {
  35542. source: "./media/characters/noraly/full.svg",
  35543. extra: 1114/1059,
  35544. bottom: 35/1149
  35545. }
  35546. },
  35547. fuller: {
  35548. height: math.unit(5 + 2/12, "feet"),
  35549. weight: math.unit(230, "lb"),
  35550. name: "Fuller",
  35551. image: {
  35552. source: "./media/characters/noraly/fuller.svg",
  35553. extra: 1114/1059,
  35554. bottom: 35/1149
  35555. }
  35556. },
  35557. fullest: {
  35558. height: math.unit(5 + 2/12, "feet"),
  35559. weight: math.unit(300, "lb"),
  35560. name: "Fullest",
  35561. image: {
  35562. source: "./media/characters/noraly/fullest.svg",
  35563. extra: 1114/1059,
  35564. bottom: 35/1149
  35565. }
  35566. },
  35567. },
  35568. [
  35569. {
  35570. name: "Normal",
  35571. height: math.unit(5 + 2/12, "feet"),
  35572. default: true
  35573. },
  35574. ]
  35575. ))
  35576. characterMakers.push(() => makeCharacter(
  35577. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35578. {
  35579. front: {
  35580. height: math.unit(5 + 2/12, "feet"),
  35581. weight: math.unit(210, "lb"),
  35582. name: "Front",
  35583. image: {
  35584. source: "./media/characters/pera/front.svg",
  35585. extra: 1560/1531,
  35586. bottom: 165/1725
  35587. }
  35588. },
  35589. back: {
  35590. height: math.unit(5 + 2/12, "feet"),
  35591. weight: math.unit(210, "lb"),
  35592. name: "Back",
  35593. image: {
  35594. source: "./media/characters/pera/back.svg",
  35595. extra: 1523/1493,
  35596. bottom: 152/1675
  35597. }
  35598. },
  35599. dick: {
  35600. height: math.unit(2.4, "feet"),
  35601. name: "Dick",
  35602. image: {
  35603. source: "./media/characters/pera/dick.svg"
  35604. }
  35605. },
  35606. },
  35607. [
  35608. {
  35609. name: "Normal",
  35610. height: math.unit(5 + 2/12, "feet"),
  35611. default: true
  35612. },
  35613. ]
  35614. ))
  35615. characterMakers.push(() => makeCharacter(
  35616. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35617. {
  35618. front: {
  35619. height: math.unit(12, "feet"),
  35620. weight: math.unit(3200, "lb"),
  35621. name: "Front",
  35622. image: {
  35623. source: "./media/characters/julian/front.svg",
  35624. extra: 2962/2701,
  35625. bottom: 184/3146
  35626. }
  35627. },
  35628. maw: {
  35629. height: math.unit(5.35, "feet"),
  35630. name: "Maw",
  35631. image: {
  35632. source: "./media/characters/julian/maw.svg"
  35633. }
  35634. },
  35635. paw: {
  35636. height: math.unit(3.07, "feet"),
  35637. name: "Paw",
  35638. image: {
  35639. source: "./media/characters/julian/paw.svg"
  35640. }
  35641. },
  35642. },
  35643. [
  35644. {
  35645. name: "Default",
  35646. height: math.unit(12, "feet"),
  35647. default: true
  35648. },
  35649. {
  35650. name: "Big",
  35651. height: math.unit(50, "feet")
  35652. },
  35653. {
  35654. name: "Really Big",
  35655. height: math.unit(1, "mile")
  35656. },
  35657. {
  35658. name: "Extremely Big",
  35659. height: math.unit(100, "miles")
  35660. },
  35661. {
  35662. name: "Planet Hugger",
  35663. height: math.unit(200, "megameters")
  35664. },
  35665. {
  35666. name: "Unreasonably Big",
  35667. height: math.unit(1e300, "meters")
  35668. },
  35669. ]
  35670. ))
  35671. characterMakers.push(() => makeCharacter(
  35672. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35673. {
  35674. solgooleo: {
  35675. height: math.unit(4, "meters"),
  35676. weight: math.unit(6000*1.5, "kg"),
  35677. volume: math.unit(6000, "liters"),
  35678. name: "Solgooleo",
  35679. image: {
  35680. source: "./media/characters/pi/solgooleo.svg",
  35681. extra: 388/331,
  35682. bottom: 29/417
  35683. }
  35684. },
  35685. },
  35686. [
  35687. {
  35688. name: "Normal",
  35689. height: math.unit(4, "meters"),
  35690. default: true
  35691. },
  35692. ]
  35693. ))
  35694. characterMakers.push(() => makeCharacter(
  35695. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35696. {
  35697. front: {
  35698. height: math.unit(8, "feet"),
  35699. weight: math.unit(4, "tons"),
  35700. name: "Front",
  35701. image: {
  35702. source: "./media/characters/shaun/front.svg",
  35703. extra: 503/495,
  35704. bottom: 20/523
  35705. }
  35706. },
  35707. back: {
  35708. height: math.unit(8, "feet"),
  35709. weight: math.unit(4, "tons"),
  35710. name: "Back",
  35711. image: {
  35712. source: "./media/characters/shaun/back.svg",
  35713. extra: 487/480,
  35714. bottom: 20/507
  35715. }
  35716. },
  35717. },
  35718. [
  35719. {
  35720. name: "Lorg",
  35721. height: math.unit(8, "feet"),
  35722. default: true
  35723. },
  35724. ]
  35725. ))
  35726. characterMakers.push(() => makeCharacter(
  35727. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35728. {
  35729. frontAnthro: {
  35730. height: math.unit(7, "feet"),
  35731. name: "Front",
  35732. image: {
  35733. source: "./media/characters/sini/front-anthro.svg",
  35734. extra: 726/678,
  35735. bottom: 35/761
  35736. },
  35737. form: "anthro",
  35738. default: true
  35739. },
  35740. backAnthro: {
  35741. height: math.unit(7, "feet"),
  35742. name: "Back",
  35743. image: {
  35744. source: "./media/characters/sini/back-anthro.svg",
  35745. extra: 743/701,
  35746. bottom: 12/755
  35747. },
  35748. form: "anthro",
  35749. },
  35750. frontAnthroNsfw: {
  35751. height: math.unit(7, "feet"),
  35752. name: "Front (NSFW)",
  35753. image: {
  35754. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35755. extra: 726/678,
  35756. bottom: 35/761
  35757. },
  35758. form: "anthro"
  35759. },
  35760. backAnthroNsfw: {
  35761. height: math.unit(7, "feet"),
  35762. name: "Back (NSFW)",
  35763. image: {
  35764. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35765. extra: 743/701,
  35766. bottom: 12/755
  35767. },
  35768. form: "anthro",
  35769. },
  35770. mawAnthro: {
  35771. height: math.unit(2.14, "feet"),
  35772. name: "Maw",
  35773. image: {
  35774. source: "./media/characters/sini/maw-anthro.svg"
  35775. },
  35776. form: "anthro"
  35777. },
  35778. dick: {
  35779. height: math.unit(1.45, "feet"),
  35780. name: "Dick",
  35781. image: {
  35782. source: "./media/characters/sini/dick-anthro.svg"
  35783. },
  35784. form: "anthro"
  35785. },
  35786. feral: {
  35787. height: math.unit(16, "feet"),
  35788. name: "Feral",
  35789. image: {
  35790. source: "./media/characters/sini/feral.svg",
  35791. extra: 814/605,
  35792. bottom: 11/825
  35793. },
  35794. form: "feral",
  35795. default: true
  35796. },
  35797. feralNsfw: {
  35798. height: math.unit(16, "feet"),
  35799. name: "Feral (NSFW)",
  35800. image: {
  35801. source: "./media/characters/sini/feral-nsfw.svg",
  35802. extra: 814/605,
  35803. bottom: 11/825
  35804. },
  35805. form: "feral"
  35806. },
  35807. mawFeral: {
  35808. height: math.unit(5.66, "feet"),
  35809. name: "Maw",
  35810. image: {
  35811. source: "./media/characters/sini/maw-feral.svg"
  35812. },
  35813. form: "feral",
  35814. },
  35815. pawFeral: {
  35816. height: math.unit(5.17, "feet"),
  35817. name: "Paw",
  35818. image: {
  35819. source: "./media/characters/sini/paw-feral.svg"
  35820. },
  35821. form: "feral",
  35822. },
  35823. rumpFeral: {
  35824. height: math.unit(13.11, "feet"),
  35825. name: "Rump",
  35826. image: {
  35827. source: "./media/characters/sini/rump-feral.svg"
  35828. },
  35829. form: "feral",
  35830. },
  35831. dickFeral: {
  35832. height: math.unit(1, "feet"),
  35833. name: "Dick",
  35834. image: {
  35835. source: "./media/characters/sini/dick-feral.svg"
  35836. },
  35837. form: "feral",
  35838. },
  35839. eyeFeral: {
  35840. height: math.unit(1.23, "feet"),
  35841. name: "Eye",
  35842. image: {
  35843. source: "./media/characters/sini/eye-feral.svg"
  35844. },
  35845. form: "feral",
  35846. },
  35847. },
  35848. [
  35849. {
  35850. name: "Normal",
  35851. height: math.unit(7, "feet"),
  35852. default: true,
  35853. form: "anthro"
  35854. },
  35855. {
  35856. name: "Normal",
  35857. height: math.unit(16, "feet"),
  35858. default: true,
  35859. form: "feral"
  35860. },
  35861. ],
  35862. {
  35863. "anthro": {
  35864. name: "Anthro",
  35865. default: true
  35866. },
  35867. "feral": {
  35868. name: "Feral",
  35869. }
  35870. }
  35871. ))
  35872. characterMakers.push(() => makeCharacter(
  35873. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35874. {
  35875. side: {
  35876. height: math.unit(47.2, "meters"),
  35877. weight: math.unit(10000, "tons"),
  35878. name: "Side",
  35879. image: {
  35880. source: "./media/characters/raylldo/side.svg",
  35881. extra: 2363/642,
  35882. bottom: 221/2584
  35883. }
  35884. },
  35885. top: {
  35886. height: math.unit(240, "meters"),
  35887. weight: math.unit(10000, "tons"),
  35888. name: "Top",
  35889. image: {
  35890. source: "./media/characters/raylldo/top.svg"
  35891. }
  35892. },
  35893. bottom: {
  35894. height: math.unit(240, "meters"),
  35895. weight: math.unit(10000, "tons"),
  35896. name: "Bottom",
  35897. image: {
  35898. source: "./media/characters/raylldo/bottom.svg"
  35899. }
  35900. },
  35901. head: {
  35902. height: math.unit(38.6, "meters"),
  35903. name: "Head",
  35904. image: {
  35905. source: "./media/characters/raylldo/head.svg",
  35906. extra: 1335/1112,
  35907. bottom: 0/1335
  35908. }
  35909. },
  35910. maw: {
  35911. height: math.unit(16.37, "meters"),
  35912. name: "Maw",
  35913. image: {
  35914. source: "./media/characters/raylldo/maw.svg",
  35915. extra: 883/660,
  35916. bottom: 0/883
  35917. },
  35918. extraAttributes: {
  35919. preyCapacity: {
  35920. name: "Capacity",
  35921. power: 3,
  35922. type: "volume",
  35923. base: math.unit(1000, "people")
  35924. },
  35925. tongueSize: {
  35926. name: "Tongue Size",
  35927. power: 2,
  35928. type: "area",
  35929. base: math.unit(21, "m^2")
  35930. }
  35931. }
  35932. },
  35933. forepaw: {
  35934. height: math.unit(18, "meters"),
  35935. name: "Forepaw",
  35936. image: {
  35937. source: "./media/characters/raylldo/forepaw.svg"
  35938. }
  35939. },
  35940. hindpaw: {
  35941. height: math.unit(23, "meters"),
  35942. name: "Hindpaw",
  35943. image: {
  35944. source: "./media/characters/raylldo/hindpaw.svg"
  35945. }
  35946. },
  35947. genitals: {
  35948. height: math.unit(42, "meters"),
  35949. name: "Genitals",
  35950. image: {
  35951. source: "./media/characters/raylldo/genitals.svg"
  35952. }
  35953. },
  35954. },
  35955. [
  35956. {
  35957. name: "Normal",
  35958. height: math.unit(47.2, "meters"),
  35959. default: true
  35960. },
  35961. ]
  35962. ))
  35963. characterMakers.push(() => makeCharacter(
  35964. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35965. {
  35966. anthroFront: {
  35967. height: math.unit(9, "feet"),
  35968. weight: math.unit(600, "lb"),
  35969. name: "Anthro (Front)",
  35970. image: {
  35971. source: "./media/characters/glint/anthro-front.svg",
  35972. extra: 1097/1018,
  35973. bottom: 28/1125
  35974. }
  35975. },
  35976. anthroBack: {
  35977. height: math.unit(9, "feet"),
  35978. weight: math.unit(600, "lb"),
  35979. name: "Anthro (Back)",
  35980. image: {
  35981. source: "./media/characters/glint/anthro-back.svg",
  35982. extra: 1154/997,
  35983. bottom: 36/1190
  35984. }
  35985. },
  35986. feral: {
  35987. height: math.unit(11, "feet"),
  35988. weight: math.unit(50000, "lb"),
  35989. name: "Feral",
  35990. image: {
  35991. source: "./media/characters/glint/feral.svg",
  35992. extra: 3035/1585,
  35993. bottom: 1169/4204
  35994. }
  35995. },
  35996. dickAnthro: {
  35997. height: math.unit(0.7, "meters"),
  35998. name: "Dick (Anthro)",
  35999. image: {
  36000. source: "./media/characters/glint/dick-anthro.svg"
  36001. }
  36002. },
  36003. dickFeral: {
  36004. height: math.unit(2.65, "meters"),
  36005. name: "Dick (Feral)",
  36006. image: {
  36007. source: "./media/characters/glint/dick-feral.svg"
  36008. }
  36009. },
  36010. slitHidden: {
  36011. height: math.unit(5.85, "meters"),
  36012. name: "Slit (Hidden)",
  36013. image: {
  36014. source: "./media/characters/glint/slit-hidden.svg"
  36015. }
  36016. },
  36017. slitErect: {
  36018. height: math.unit(5.85, "meters"),
  36019. name: "Slit (Erect)",
  36020. image: {
  36021. source: "./media/characters/glint/slit-erect.svg"
  36022. }
  36023. },
  36024. mawAnthro: {
  36025. height: math.unit(0.63, "meters"),
  36026. name: "Maw (Anthro)",
  36027. image: {
  36028. source: "./media/characters/glint/maw.svg"
  36029. }
  36030. },
  36031. mawFeral: {
  36032. height: math.unit(2.89, "meters"),
  36033. name: "Maw (Feral)",
  36034. image: {
  36035. source: "./media/characters/glint/maw.svg"
  36036. }
  36037. },
  36038. },
  36039. [
  36040. {
  36041. name: "Normal",
  36042. height: math.unit(9, "feet"),
  36043. default: true
  36044. },
  36045. ]
  36046. ))
  36047. characterMakers.push(() => makeCharacter(
  36048. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  36049. {
  36050. side: {
  36051. height: math.unit(15, "feet"),
  36052. weight: math.unit(5000, "kg"),
  36053. name: "Side",
  36054. image: {
  36055. source: "./media/characters/kairne/side.svg",
  36056. extra: 979/811,
  36057. bottom: 13/992
  36058. }
  36059. },
  36060. front: {
  36061. height: math.unit(15, "feet"),
  36062. weight: math.unit(5000, "kg"),
  36063. name: "Front",
  36064. image: {
  36065. source: "./media/characters/kairne/front.svg",
  36066. extra: 908/814,
  36067. bottom: 26/934
  36068. }
  36069. },
  36070. sideNsfw: {
  36071. height: math.unit(15, "feet"),
  36072. weight: math.unit(5000, "kg"),
  36073. name: "Side (NSFW)",
  36074. image: {
  36075. source: "./media/characters/kairne/side-nsfw.svg",
  36076. extra: 979/811,
  36077. bottom: 13/992
  36078. }
  36079. },
  36080. frontNsfw: {
  36081. height: math.unit(15, "feet"),
  36082. weight: math.unit(5000, "kg"),
  36083. name: "Front (NSFW)",
  36084. image: {
  36085. source: "./media/characters/kairne/front-nsfw.svg",
  36086. extra: 908/814,
  36087. bottom: 26/934
  36088. }
  36089. },
  36090. dickCaged: {
  36091. height: math.unit(0.65, "meters"),
  36092. name: "Dick-caged",
  36093. image: {
  36094. source: "./media/characters/kairne/dick-caged.svg"
  36095. }
  36096. },
  36097. dick: {
  36098. height: math.unit(0.79, "meters"),
  36099. name: "Dick",
  36100. image: {
  36101. source: "./media/characters/kairne/dick.svg"
  36102. }
  36103. },
  36104. genitals: {
  36105. height: math.unit(1.29, "meters"),
  36106. name: "Genitals",
  36107. image: {
  36108. source: "./media/characters/kairne/genitals.svg"
  36109. }
  36110. },
  36111. maw: {
  36112. height: math.unit(1.73, "meters"),
  36113. name: "Maw",
  36114. image: {
  36115. source: "./media/characters/kairne/maw.svg"
  36116. }
  36117. },
  36118. },
  36119. [
  36120. {
  36121. name: "Normal",
  36122. height: math.unit(15, "feet"),
  36123. default: true
  36124. },
  36125. ]
  36126. ))
  36127. characterMakers.push(() => makeCharacter(
  36128. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  36129. {
  36130. front: {
  36131. height: math.unit(5 + 8/12, "feet"),
  36132. weight: math.unit(139, "lb"),
  36133. name: "Front",
  36134. image: {
  36135. source: "./media/characters/biscuit-jackal/front.svg",
  36136. extra: 2106/1961,
  36137. bottom: 58/2164
  36138. }
  36139. },
  36140. back: {
  36141. height: math.unit(5 + 8/12, "feet"),
  36142. weight: math.unit(139, "lb"),
  36143. name: "Back",
  36144. image: {
  36145. source: "./media/characters/biscuit-jackal/back.svg",
  36146. extra: 2132/1976,
  36147. bottom: 57/2189
  36148. }
  36149. },
  36150. werejackal: {
  36151. height: math.unit(6 + 3/12, "feet"),
  36152. weight: math.unit(188, "lb"),
  36153. name: "Werejackal",
  36154. image: {
  36155. source: "./media/characters/biscuit-jackal/werejackal.svg",
  36156. extra: 2373/2178,
  36157. bottom: 53/2426
  36158. }
  36159. },
  36160. },
  36161. [
  36162. {
  36163. name: "Normal",
  36164. height: math.unit(5 + 8/12, "feet"),
  36165. default: true
  36166. },
  36167. ]
  36168. ))
  36169. characterMakers.push(() => makeCharacter(
  36170. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  36171. {
  36172. front: {
  36173. height: math.unit(140, "cm"),
  36174. weight: math.unit(45, "kg"),
  36175. name: "Front",
  36176. image: {
  36177. source: "./media/characters/tayra-white/front.svg",
  36178. extra: 2229/2192,
  36179. bottom: 75/2304
  36180. }
  36181. },
  36182. },
  36183. [
  36184. {
  36185. name: "Normal",
  36186. height: math.unit(140, "cm"),
  36187. default: true
  36188. },
  36189. ]
  36190. ))
  36191. characterMakers.push(() => makeCharacter(
  36192. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36193. {
  36194. front: {
  36195. height: math.unit(4 + 5/12, "feet"),
  36196. name: "Front",
  36197. image: {
  36198. source: "./media/characters/scoop/front.svg",
  36199. extra: 1257/1136,
  36200. bottom: 69/1326
  36201. }
  36202. },
  36203. back: {
  36204. height: math.unit(4 + 5/12, "feet"),
  36205. name: "Back",
  36206. image: {
  36207. source: "./media/characters/scoop/back.svg",
  36208. extra: 1321/1152,
  36209. bottom: 32/1353
  36210. }
  36211. },
  36212. maw: {
  36213. height: math.unit(0.68, "feet"),
  36214. name: "Maw",
  36215. image: {
  36216. source: "./media/characters/scoop/maw.svg"
  36217. }
  36218. },
  36219. },
  36220. [
  36221. {
  36222. name: "Really Small",
  36223. height: math.unit(1, "mm")
  36224. },
  36225. {
  36226. name: "Micro",
  36227. height: math.unit(1, "inch")
  36228. },
  36229. {
  36230. name: "Normal",
  36231. height: math.unit(4 + 5/12, "feet"),
  36232. default: true
  36233. },
  36234. {
  36235. name: "Macro",
  36236. height: math.unit(200, "feet")
  36237. },
  36238. {
  36239. name: "Megamacro",
  36240. height: math.unit(3240, "feet")
  36241. },
  36242. {
  36243. name: "Teramacro",
  36244. height: math.unit(2500, "miles")
  36245. },
  36246. ]
  36247. ))
  36248. characterMakers.push(() => makeCharacter(
  36249. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36250. {
  36251. front: {
  36252. height: math.unit(15 + 7/12, "feet"),
  36253. weight: math.unit(1150, "tons"),
  36254. name: "Front",
  36255. image: {
  36256. source: "./media/characters/saphinara/front.svg",
  36257. extra: 1837/1643,
  36258. bottom: 84/1921
  36259. },
  36260. form: "normal",
  36261. default: true
  36262. },
  36263. side: {
  36264. height: math.unit(15 + 7/12, "feet"),
  36265. weight: math.unit(1150, "tons"),
  36266. name: "Side",
  36267. image: {
  36268. source: "./media/characters/saphinara/side.svg",
  36269. extra: 605/547,
  36270. bottom: 6/611
  36271. },
  36272. form: "normal"
  36273. },
  36274. back: {
  36275. height: math.unit(15 + 7/12, "feet"),
  36276. weight: math.unit(1150, "tons"),
  36277. name: "Back",
  36278. image: {
  36279. source: "./media/characters/saphinara/back.svg",
  36280. extra: 591/531,
  36281. bottom: 13/604
  36282. },
  36283. form: "normal"
  36284. },
  36285. frontTail: {
  36286. height: math.unit(15 + 7/12, "feet"),
  36287. weight: math.unit(1150, "tons"),
  36288. name: "Front (Full Tail)",
  36289. image: {
  36290. source: "./media/characters/saphinara/front-tail.svg",
  36291. extra: 2256/1630,
  36292. bottom: 261/2517
  36293. },
  36294. form: "normal"
  36295. },
  36296. insides: {
  36297. height: math.unit(11.92, "feet"),
  36298. name: "Insides",
  36299. image: {
  36300. source: "./media/characters/saphinara/insides.svg"
  36301. },
  36302. form: "normal"
  36303. },
  36304. head: {
  36305. height: math.unit(4.17, "feet"),
  36306. name: "Head",
  36307. image: {
  36308. source: "./media/characters/saphinara/head.svg"
  36309. },
  36310. form: "normal"
  36311. },
  36312. tongue: {
  36313. height: math.unit(4.60, "feet"),
  36314. name: "Tongue",
  36315. image: {
  36316. source: "./media/characters/saphinara/tongue.svg"
  36317. },
  36318. form: "normal"
  36319. },
  36320. headEnraged: {
  36321. height: math.unit(5.55, "feet"),
  36322. name: "Head (Enraged)",
  36323. image: {
  36324. source: "./media/characters/saphinara/head-enraged.svg"
  36325. },
  36326. form: "normal"
  36327. },
  36328. wings: {
  36329. height: math.unit(11.95, "feet"),
  36330. name: "Wings",
  36331. image: {
  36332. source: "./media/characters/saphinara/wings.svg"
  36333. },
  36334. form: "normal"
  36335. },
  36336. feathers: {
  36337. height: math.unit(8.92, "feet"),
  36338. name: "Feathers",
  36339. image: {
  36340. source: "./media/characters/saphinara/feathers.svg"
  36341. },
  36342. form: "normal"
  36343. },
  36344. shackles: {
  36345. height: math.unit(2, "feet"),
  36346. name: "Shackles",
  36347. image: {
  36348. source: "./media/characters/saphinara/shackles.svg"
  36349. },
  36350. form: "normal"
  36351. },
  36352. eyes: {
  36353. height: math.unit(1.331, "feet"),
  36354. name: "Eyes",
  36355. image: {
  36356. source: "./media/characters/saphinara/eyes.svg"
  36357. },
  36358. form: "normal"
  36359. },
  36360. eyesEnraged: {
  36361. height: math.unit(1.331, "feet"),
  36362. name: "Eyes (Enraged)",
  36363. image: {
  36364. source: "./media/characters/saphinara/eyes-enraged.svg"
  36365. },
  36366. form: "normal"
  36367. },
  36368. trueFormSide: {
  36369. height: math.unit(200, "feet"),
  36370. weight: math.unit(1e7, "tons"),
  36371. name: "Side",
  36372. image: {
  36373. source: "./media/characters/saphinara/true-form-side.svg",
  36374. extra: 1399/770,
  36375. bottom: 97/1496
  36376. },
  36377. form: "true-form",
  36378. default: true
  36379. },
  36380. trueFormMaw: {
  36381. height: math.unit(71.5, "feet"),
  36382. name: "Maw",
  36383. image: {
  36384. source: "./media/characters/saphinara/true-form-maw.svg",
  36385. extra: 2302/1453,
  36386. bottom: 0/2302
  36387. },
  36388. form: "true-form"
  36389. },
  36390. meowberusSide: {
  36391. height: math.unit(75, "feet"),
  36392. weight: math.unit(180000, "kg"),
  36393. preyCapacity: math.unit(50000, "people"),
  36394. name: "Side",
  36395. image: {
  36396. source: "./media/characters/saphinara/meowberus-side.svg",
  36397. extra: 1400/711,
  36398. bottom: 126/1526
  36399. },
  36400. form: "meowberus",
  36401. extraAttributes: {
  36402. "pawArea": {
  36403. name: "Paw Size",
  36404. power: 2,
  36405. type: "area",
  36406. base: math.unit(35, "m^2")
  36407. }
  36408. }
  36409. },
  36410. },
  36411. [
  36412. {
  36413. name: "Normal",
  36414. height: math.unit(15 + 7/12, "feet"),
  36415. default: true,
  36416. form: "normal"
  36417. },
  36418. {
  36419. name: "Angry",
  36420. height: math.unit(30 + 6/12, "feet"),
  36421. form: "normal"
  36422. },
  36423. {
  36424. name: "Enraged",
  36425. height: math.unit(102 + 1/12, "feet"),
  36426. form: "normal"
  36427. },
  36428. {
  36429. name: "True",
  36430. height: math.unit(200, "feet"),
  36431. default: true,
  36432. form: "true-form"
  36433. },
  36434. {
  36435. name: "Normal",
  36436. height: math.unit(75, "feet"),
  36437. default: true,
  36438. form: "meowberus"
  36439. },
  36440. ],
  36441. {
  36442. "normal": {
  36443. name: "Normal",
  36444. default: true
  36445. },
  36446. "true-form": {
  36447. name: "True Form"
  36448. },
  36449. "meowberus": {
  36450. name: "Meowberus",
  36451. },
  36452. }
  36453. ))
  36454. characterMakers.push(() => makeCharacter(
  36455. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36456. {
  36457. front: {
  36458. height: math.unit(6 + 8/12, "feet"),
  36459. weight: math.unit(300, "lb"),
  36460. name: "Front",
  36461. image: {
  36462. source: "./media/characters/jrain/front.svg",
  36463. extra: 3039/2865,
  36464. bottom: 399/3438
  36465. }
  36466. },
  36467. back: {
  36468. height: math.unit(6 + 8/12, "feet"),
  36469. weight: math.unit(300, "lb"),
  36470. name: "Back",
  36471. image: {
  36472. source: "./media/characters/jrain/back.svg",
  36473. extra: 3089/2938,
  36474. bottom: 172/3261
  36475. }
  36476. },
  36477. head: {
  36478. height: math.unit(2.14, "feet"),
  36479. name: "Head",
  36480. image: {
  36481. source: "./media/characters/jrain/head.svg"
  36482. }
  36483. },
  36484. maw: {
  36485. height: math.unit(1.77, "feet"),
  36486. name: "Maw",
  36487. image: {
  36488. source: "./media/characters/jrain/maw.svg"
  36489. }
  36490. },
  36491. leftHand: {
  36492. height: math.unit(1.1, "feet"),
  36493. name: "Left Hand",
  36494. image: {
  36495. source: "./media/characters/jrain/left-hand.svg"
  36496. }
  36497. },
  36498. rightHand: {
  36499. height: math.unit(1.1, "feet"),
  36500. name: "Right Hand",
  36501. image: {
  36502. source: "./media/characters/jrain/right-hand.svg"
  36503. }
  36504. },
  36505. eye: {
  36506. height: math.unit(0.35, "feet"),
  36507. name: "Eye",
  36508. image: {
  36509. source: "./media/characters/jrain/eye.svg"
  36510. }
  36511. },
  36512. },
  36513. [
  36514. {
  36515. name: "Normal",
  36516. height: math.unit(6 + 8/12, "feet"),
  36517. default: true
  36518. },
  36519. {
  36520. name: "Casually Large",
  36521. height: math.unit(25, "feet")
  36522. },
  36523. {
  36524. name: "Giant",
  36525. height: math.unit(100, "feet")
  36526. },
  36527. {
  36528. name: "Kaiju",
  36529. height: math.unit(300, "feet")
  36530. },
  36531. ]
  36532. ))
  36533. characterMakers.push(() => makeCharacter(
  36534. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36535. {
  36536. dragon: {
  36537. height: math.unit(5, "meters"),
  36538. name: "Dragon",
  36539. image: {
  36540. source: "./media/characters/sabrina/dragon.svg",
  36541. extra: 3670 / 2365,
  36542. bottom: 333 / 4003
  36543. }
  36544. },
  36545. gryphon: {
  36546. height: math.unit(3, "meters"),
  36547. name: "Gryphon",
  36548. image: {
  36549. source: "./media/characters/sabrina/gryphon.svg",
  36550. extra: 1576 / 945,
  36551. bottom: 71 / 1647
  36552. }
  36553. },
  36554. snake: {
  36555. height: math.unit(12, "meters"),
  36556. name: "Snake",
  36557. image: {
  36558. source: "./media/characters/sabrina/snake.svg",
  36559. extra: 1758 / 1320,
  36560. bottom: 186 / 1944
  36561. }
  36562. },
  36563. collar: {
  36564. height: math.unit(1.86, "meters"),
  36565. name: "Collar",
  36566. image: {
  36567. source: "./media/characters/sabrina/collar.svg"
  36568. }
  36569. },
  36570. eye: {
  36571. height: math.unit(0.53, "meters"),
  36572. name: "Eye",
  36573. image: {
  36574. source: "./media/characters/sabrina/eye.svg"
  36575. }
  36576. },
  36577. foot: {
  36578. height: math.unit(1.86, "meters"),
  36579. name: "Foot",
  36580. image: {
  36581. source: "./media/characters/sabrina/foot.svg"
  36582. }
  36583. },
  36584. hand: {
  36585. height: math.unit(1.32, "meters"),
  36586. name: "Hand",
  36587. image: {
  36588. source: "./media/characters/sabrina/hand.svg"
  36589. }
  36590. },
  36591. head: {
  36592. height: math.unit(2.44, "meters"),
  36593. name: "Head",
  36594. image: {
  36595. source: "./media/characters/sabrina/head.svg"
  36596. }
  36597. },
  36598. headAngry: {
  36599. height: math.unit(2.44, "meters"),
  36600. name: "Head (Angry))",
  36601. image: {
  36602. source: "./media/characters/sabrina/head-angry.svg"
  36603. }
  36604. },
  36605. maw: {
  36606. height: math.unit(1.65, "meters"),
  36607. name: "Maw",
  36608. image: {
  36609. source: "./media/characters/sabrina/maw.svg"
  36610. }
  36611. },
  36612. spikes: {
  36613. height: math.unit(1.69, "meters"),
  36614. name: "Spikes",
  36615. image: {
  36616. source: "./media/characters/sabrina/spikes.svg"
  36617. }
  36618. },
  36619. stomach: {
  36620. height: math.unit(1.15, "meters"),
  36621. name: "Stomach",
  36622. image: {
  36623. source: "./media/characters/sabrina/stomach.svg"
  36624. }
  36625. },
  36626. tongue: {
  36627. height: math.unit(1.27, "meters"),
  36628. name: "Tongue",
  36629. image: {
  36630. source: "./media/characters/sabrina/tongue.svg"
  36631. }
  36632. },
  36633. wingDorsal: {
  36634. height: math.unit(4.85, "meters"),
  36635. name: "Wing (Dorsal)",
  36636. image: {
  36637. source: "./media/characters/sabrina/wing-dorsal.svg"
  36638. }
  36639. },
  36640. wingVentral: {
  36641. height: math.unit(4.85, "meters"),
  36642. name: "Wing (Ventral)",
  36643. image: {
  36644. source: "./media/characters/sabrina/wing-ventral.svg"
  36645. }
  36646. },
  36647. },
  36648. [
  36649. {
  36650. name: "Normal",
  36651. height: math.unit(5, "meters"),
  36652. default: true
  36653. },
  36654. ]
  36655. ))
  36656. characterMakers.push(() => makeCharacter(
  36657. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36658. {
  36659. frontMaid: {
  36660. height: math.unit(5 + 5/12, "feet"),
  36661. weight: math.unit(130, "lb"),
  36662. name: "Front (Maid)",
  36663. image: {
  36664. source: "./media/characters/midnight-tales/front-maid.svg",
  36665. extra: 489/454,
  36666. bottom: 61/550
  36667. }
  36668. },
  36669. frontFormal: {
  36670. height: math.unit(5 + 5/12, "feet"),
  36671. weight: math.unit(130, "lb"),
  36672. name: "Front (Formal)",
  36673. image: {
  36674. source: "./media/characters/midnight-tales/front-formal.svg",
  36675. extra: 489/454,
  36676. bottom: 61/550
  36677. }
  36678. },
  36679. back: {
  36680. height: math.unit(5 + 5/12, "feet"),
  36681. weight: math.unit(130, "lb"),
  36682. name: "Back",
  36683. image: {
  36684. source: "./media/characters/midnight-tales/back.svg",
  36685. extra: 498/456,
  36686. bottom: 33/531
  36687. }
  36688. },
  36689. frontBeast: {
  36690. height: math.unit(40, "feet"),
  36691. weight: math.unit(64000, "lb"),
  36692. name: "Front (Beast)",
  36693. image: {
  36694. source: "./media/characters/midnight-tales/front-beast.svg",
  36695. extra: 927/860,
  36696. bottom: 53/980
  36697. }
  36698. },
  36699. backBeast: {
  36700. height: math.unit(40, "feet"),
  36701. weight: math.unit(64000, "lb"),
  36702. name: "Back (Beast)",
  36703. image: {
  36704. source: "./media/characters/midnight-tales/back-beast.svg",
  36705. extra: 929/855,
  36706. bottom: 16/945
  36707. }
  36708. },
  36709. footBeast: {
  36710. height: math.unit(6.7, "feet"),
  36711. name: "Foot (Beast)",
  36712. image: {
  36713. source: "./media/characters/midnight-tales/foot-beast.svg"
  36714. }
  36715. },
  36716. headBeast: {
  36717. height: math.unit(8, "feet"),
  36718. name: "Head (Beast)",
  36719. image: {
  36720. source: "./media/characters/midnight-tales/head-beast.svg"
  36721. }
  36722. },
  36723. },
  36724. [
  36725. {
  36726. name: "Normal",
  36727. height: math.unit(5 + 5 / 12, "feet"),
  36728. default: true
  36729. },
  36730. {
  36731. name: "Macro",
  36732. height: math.unit(25, "feet")
  36733. },
  36734. ]
  36735. ))
  36736. characterMakers.push(() => makeCharacter(
  36737. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36738. {
  36739. front: {
  36740. height: math.unit(5 + 10/12, "feet"),
  36741. name: "Front",
  36742. image: {
  36743. source: "./media/characters/argon/front.svg",
  36744. extra: 2009/1935,
  36745. bottom: 118/2127
  36746. }
  36747. },
  36748. back: {
  36749. height: math.unit(5 + 10/12, "feet"),
  36750. name: "Back",
  36751. image: {
  36752. source: "./media/characters/argon/back.svg",
  36753. extra: 2047/1992,
  36754. bottom: 20/2067
  36755. }
  36756. },
  36757. frontDressed: {
  36758. height: math.unit(5 + 10/12, "feet"),
  36759. name: "Front (Dressed)",
  36760. image: {
  36761. source: "./media/characters/argon/front-dressed.svg",
  36762. extra: 2009/1935,
  36763. bottom: 118/2127
  36764. }
  36765. },
  36766. },
  36767. [
  36768. {
  36769. name: "Normal",
  36770. height: math.unit(5 + 10/12, "feet"),
  36771. default: true
  36772. },
  36773. ]
  36774. ))
  36775. characterMakers.push(() => makeCharacter(
  36776. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36777. {
  36778. front: {
  36779. height: math.unit(8 + 6/12, "feet"),
  36780. weight: math.unit(1150, "lb"),
  36781. name: "Front",
  36782. image: {
  36783. source: "./media/characters/kichi/front.svg",
  36784. extra: 1267/1164,
  36785. bottom: 61/1328
  36786. }
  36787. },
  36788. back: {
  36789. height: math.unit(8 + 6/12, "feet"),
  36790. weight: math.unit(1150, "lb"),
  36791. name: "Back",
  36792. image: {
  36793. source: "./media/characters/kichi/back.svg",
  36794. extra: 1273/1166,
  36795. bottom: 33/1306
  36796. }
  36797. },
  36798. },
  36799. [
  36800. {
  36801. name: "Normal",
  36802. height: math.unit(8 + 6/12, "feet"),
  36803. default: true
  36804. },
  36805. ]
  36806. ))
  36807. characterMakers.push(() => makeCharacter(
  36808. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36809. {
  36810. front: {
  36811. height: math.unit(6, "feet"),
  36812. weight: math.unit(210, "lb"),
  36813. name: "Front",
  36814. image: {
  36815. source: "./media/characters/manetel-greyscale/front.svg",
  36816. extra: 350/312,
  36817. bottom: 8/358
  36818. }
  36819. },
  36820. },
  36821. [
  36822. {
  36823. name: "Micro",
  36824. height: math.unit(2, "inches")
  36825. },
  36826. {
  36827. name: "Normal",
  36828. height: math.unit(6, "feet"),
  36829. default: true
  36830. },
  36831. {
  36832. name: "Minimacro",
  36833. height: math.unit(17, "feet")
  36834. },
  36835. {
  36836. name: "Macro",
  36837. height: math.unit(117, "feet")
  36838. },
  36839. ]
  36840. ))
  36841. characterMakers.push(() => makeCharacter(
  36842. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36843. {
  36844. side: {
  36845. height: math.unit(5 + 1/12, "feet"),
  36846. weight: math.unit(418, "lb"),
  36847. name: "Side",
  36848. image: {
  36849. source: "./media/characters/softpurr/side.svg",
  36850. extra: 1993/1945,
  36851. bottom: 134/2127
  36852. }
  36853. },
  36854. front: {
  36855. height: math.unit(5 + 1/12, "feet"),
  36856. weight: math.unit(418, "lb"),
  36857. name: "Front",
  36858. image: {
  36859. source: "./media/characters/softpurr/front.svg",
  36860. extra: 1950/1856,
  36861. bottom: 174/2124
  36862. }
  36863. },
  36864. paw: {
  36865. height: math.unit(1, "feet"),
  36866. name: "Paw",
  36867. image: {
  36868. source: "./media/characters/softpurr/paw.svg"
  36869. }
  36870. },
  36871. },
  36872. [
  36873. {
  36874. name: "Normal",
  36875. height: math.unit(5 + 1/12, "feet"),
  36876. default: true
  36877. },
  36878. ]
  36879. ))
  36880. characterMakers.push(() => makeCharacter(
  36881. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36882. {
  36883. front: {
  36884. height: math.unit(260, "meters"),
  36885. name: "Front",
  36886. image: {
  36887. source: "./media/characters/anahita/front.svg",
  36888. extra: 665/635,
  36889. bottom: 89/754
  36890. }
  36891. },
  36892. },
  36893. [
  36894. {
  36895. name: "Macro",
  36896. height: math.unit(260, "meters"),
  36897. default: true
  36898. },
  36899. ]
  36900. ))
  36901. characterMakers.push(() => makeCharacter(
  36902. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36903. {
  36904. front: {
  36905. height: math.unit(4 + 10/12, "feet"),
  36906. weight: math.unit(160, "lb"),
  36907. name: "Front",
  36908. image: {
  36909. source: "./media/characters/chip-mouse/front.svg",
  36910. extra: 3528/3408,
  36911. bottom: 0/3528
  36912. }
  36913. },
  36914. frontNsfw: {
  36915. height: math.unit(4 + 10/12, "feet"),
  36916. weight: math.unit(160, "lb"),
  36917. name: "Front (NSFW)",
  36918. image: {
  36919. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36920. extra: 3528/3408,
  36921. bottom: 0/3528
  36922. }
  36923. },
  36924. },
  36925. [
  36926. {
  36927. name: "Normal",
  36928. height: math.unit(4 + 10/12, "feet"),
  36929. default: true
  36930. },
  36931. ]
  36932. ))
  36933. characterMakers.push(() => makeCharacter(
  36934. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36935. {
  36936. side: {
  36937. height: math.unit(10, "feet"),
  36938. weight: math.unit(14000, "lb"),
  36939. name: "Side",
  36940. image: {
  36941. source: "./media/characters/kremm/side.svg",
  36942. extra: 1390/1053,
  36943. bottom: 90/1480
  36944. }
  36945. },
  36946. gut: {
  36947. height: math.unit(5.8, "feet"),
  36948. name: "Gut",
  36949. image: {
  36950. source: "./media/characters/kremm/gut.svg"
  36951. }
  36952. },
  36953. ass: {
  36954. height: math.unit(6.1, "feet"),
  36955. name: "Ass",
  36956. image: {
  36957. source: "./media/characters/kremm/ass.svg"
  36958. }
  36959. },
  36960. jaws: {
  36961. height: math.unit(2.2, "feet"),
  36962. name: "Jaws",
  36963. image: {
  36964. source: "./media/characters/kremm/jaws.svg"
  36965. }
  36966. },
  36967. dick: {
  36968. height: math.unit(4.26, "feet"),
  36969. name: "Dick",
  36970. image: {
  36971. source: "./media/characters/kremm/dick.svg"
  36972. }
  36973. },
  36974. },
  36975. [
  36976. {
  36977. name: "Normal",
  36978. height: math.unit(10, "feet"),
  36979. default: true
  36980. },
  36981. ]
  36982. ))
  36983. characterMakers.push(() => makeCharacter(
  36984. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36985. {
  36986. front: {
  36987. height: math.unit(30, "stories"),
  36988. name: "Front",
  36989. image: {
  36990. source: "./media/characters/kai/front.svg",
  36991. extra: 1892/1718,
  36992. bottom: 162/2054
  36993. }
  36994. },
  36995. },
  36996. [
  36997. {
  36998. name: "Macro",
  36999. height: math.unit(30, "stories"),
  37000. default: true
  37001. },
  37002. ]
  37003. ))
  37004. characterMakers.push(() => makeCharacter(
  37005. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  37006. {
  37007. front: {
  37008. height: math.unit(6 + 4/12, "feet"),
  37009. weight: math.unit(145, "lb"),
  37010. name: "Front",
  37011. image: {
  37012. source: "./media/characters/sykes/front.svg",
  37013. extra: 1321 / 1187,
  37014. bottom: 66 / 1387
  37015. }
  37016. },
  37017. back: {
  37018. height: math.unit(6 + 4/12, "feet"),
  37019. weight: math.unit(145, "lb"),
  37020. name: "Back",
  37021. image: {
  37022. source: "./media/characters/sykes/back.svg",
  37023. extra: 1326/1181,
  37024. bottom: 31/1357
  37025. }
  37026. },
  37027. traditionalOutfit: {
  37028. height: math.unit(6 + 4/12, "feet"),
  37029. weight: math.unit(145, "lb"),
  37030. name: "Traditional Outfit",
  37031. image: {
  37032. source: "./media/characters/sykes/traditional-outfit.svg",
  37033. extra: 1321 / 1187,
  37034. bottom: 66 / 1387
  37035. }
  37036. },
  37037. adventureOutfit: {
  37038. height: math.unit(6 + 4/12, "feet"),
  37039. weight: math.unit(145, "lb"),
  37040. name: "Adventure Outfit",
  37041. image: {
  37042. source: "./media/characters/sykes/adventure-outfit.svg",
  37043. extra: 1321 / 1187,
  37044. bottom: 66 / 1387
  37045. }
  37046. },
  37047. handLeft: {
  37048. height: math.unit(0.9, "feet"),
  37049. name: "Hand (Left)",
  37050. image: {
  37051. source: "./media/characters/sykes/hand-left.svg"
  37052. }
  37053. },
  37054. handRight: {
  37055. height: math.unit(0.839, "feet"),
  37056. name: "Hand (Right)",
  37057. image: {
  37058. source: "./media/characters/sykes/hand-right.svg"
  37059. }
  37060. },
  37061. leftFoot: {
  37062. height: math.unit(1.2, "feet"),
  37063. name: "Foot (Left)",
  37064. image: {
  37065. source: "./media/characters/sykes/foot-left.svg"
  37066. }
  37067. },
  37068. rightFoot: {
  37069. height: math.unit(1.2, "feet"),
  37070. name: "Foot (Right)",
  37071. image: {
  37072. source: "./media/characters/sykes/foot-right.svg"
  37073. }
  37074. },
  37075. maw: {
  37076. height: math.unit(1.93, "feet"),
  37077. name: "Maw",
  37078. image: {
  37079. source: "./media/characters/sykes/maw.svg"
  37080. }
  37081. },
  37082. teeth: {
  37083. height: math.unit(0.51, "feet"),
  37084. name: "Teeth",
  37085. image: {
  37086. source: "./media/characters/sykes/teeth.svg"
  37087. }
  37088. },
  37089. tongue: {
  37090. height: math.unit(2.13, "feet"),
  37091. name: "Tongue",
  37092. image: {
  37093. source: "./media/characters/sykes/tongue.svg"
  37094. }
  37095. },
  37096. uvula: {
  37097. height: math.unit(0.16, "feet"),
  37098. name: "Uvula",
  37099. image: {
  37100. source: "./media/characters/sykes/uvula.svg"
  37101. }
  37102. },
  37103. collar: {
  37104. height: math.unit(0.287, "feet"),
  37105. name: "Collar",
  37106. image: {
  37107. source: "./media/characters/sykes/collar.svg"
  37108. }
  37109. },
  37110. tail: {
  37111. height: math.unit(3.8, "feet"),
  37112. name: "Tail",
  37113. image: {
  37114. source: "./media/characters/sykes/tail.svg"
  37115. }
  37116. },
  37117. },
  37118. [
  37119. {
  37120. name: "Shrunken",
  37121. height: math.unit(5, "inches")
  37122. },
  37123. {
  37124. name: "Normal",
  37125. height: math.unit(6 + 4 / 12, "feet"),
  37126. default: true
  37127. },
  37128. {
  37129. name: "Big",
  37130. height: math.unit(15, "feet")
  37131. },
  37132. ]
  37133. ))
  37134. characterMakers.push(() => makeCharacter(
  37135. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  37136. {
  37137. front: {
  37138. height: math.unit(5 + 8/12, "feet"),
  37139. weight: math.unit(190, "lb"),
  37140. name: "Front",
  37141. image: {
  37142. source: "./media/characters/oven-otter/front.svg",
  37143. extra: 1809/1740,
  37144. bottom: 181/1990
  37145. }
  37146. },
  37147. back: {
  37148. height: math.unit(5 + 8/12, "feet"),
  37149. weight: math.unit(190, "lb"),
  37150. name: "Back",
  37151. image: {
  37152. source: "./media/characters/oven-otter/back.svg",
  37153. extra: 1709/1635,
  37154. bottom: 118/1827
  37155. }
  37156. },
  37157. hand: {
  37158. height: math.unit(1.07, "feet"),
  37159. name: "Hand",
  37160. image: {
  37161. source: "./media/characters/oven-otter/hand.svg"
  37162. }
  37163. },
  37164. beans: {
  37165. height: math.unit(1.74, "feet"),
  37166. name: "Beans",
  37167. image: {
  37168. source: "./media/characters/oven-otter/beans.svg"
  37169. }
  37170. },
  37171. },
  37172. [
  37173. {
  37174. name: "Micro",
  37175. height: math.unit(0.5, "inches")
  37176. },
  37177. {
  37178. name: "Normal",
  37179. height: math.unit(5 + 8/12, "feet"),
  37180. default: true
  37181. },
  37182. {
  37183. name: "Macro",
  37184. height: math.unit(250, "feet")
  37185. },
  37186. {
  37187. name: "Really High",
  37188. height: math.unit(420, "feet")
  37189. },
  37190. ]
  37191. ))
  37192. characterMakers.push(() => makeCharacter(
  37193. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37194. {
  37195. front: {
  37196. height: math.unit(5, "meters"),
  37197. weight: math.unit(292000000000000, "kg"),
  37198. name: "Front",
  37199. image: {
  37200. source: "./media/characters/devourer/front.svg",
  37201. extra: 1800/1733,
  37202. bottom: 211/2011
  37203. }
  37204. },
  37205. maw: {
  37206. height: math.unit(1.1, "meter"),
  37207. name: "Maw",
  37208. image: {
  37209. source: "./media/characters/devourer/maw.svg"
  37210. }
  37211. },
  37212. },
  37213. [
  37214. {
  37215. name: "Small",
  37216. height: math.unit(3, "meters")
  37217. },
  37218. {
  37219. name: "Large",
  37220. height: math.unit(5, "meters"),
  37221. default: true
  37222. },
  37223. ]
  37224. ))
  37225. characterMakers.push(() => makeCharacter(
  37226. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37227. {
  37228. front: {
  37229. height: math.unit(6, "feet"),
  37230. weight: math.unit(400, "lb"),
  37231. name: "Front",
  37232. image: {
  37233. source: "./media/characters/ellarby/front.svg",
  37234. extra: 1909/1763,
  37235. bottom: 80/1989
  37236. }
  37237. },
  37238. back: {
  37239. height: math.unit(6, "feet"),
  37240. weight: math.unit(400, "lb"),
  37241. name: "Back",
  37242. image: {
  37243. source: "./media/characters/ellarby/back.svg",
  37244. extra: 1914/1784,
  37245. bottom: 172/2086
  37246. }
  37247. },
  37248. },
  37249. [
  37250. {
  37251. name: "Mischief",
  37252. height: math.unit(18, "inches")
  37253. },
  37254. {
  37255. name: "Trouble",
  37256. height: math.unit(12, "feet")
  37257. },
  37258. {
  37259. name: "Havoc",
  37260. height: math.unit(200, "feet"),
  37261. default: true
  37262. },
  37263. {
  37264. name: "Pandemonium",
  37265. height: math.unit(1, "mile")
  37266. },
  37267. {
  37268. name: "Catastrophe",
  37269. height: math.unit(100, "miles")
  37270. },
  37271. ]
  37272. ))
  37273. characterMakers.push(() => makeCharacter(
  37274. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37275. {
  37276. front: {
  37277. height: math.unit(4.7, "meters"),
  37278. weight: math.unit(6500, "kg"),
  37279. name: "Front",
  37280. image: {
  37281. source: "./media/characters/vex/front.svg",
  37282. extra: 1288/1140,
  37283. bottom: 100/1388
  37284. }
  37285. },
  37286. },
  37287. [
  37288. {
  37289. name: "Normal",
  37290. height: math.unit(4.7, "meters"),
  37291. default: true
  37292. },
  37293. ]
  37294. ))
  37295. characterMakers.push(() => makeCharacter(
  37296. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37297. {
  37298. normal: {
  37299. height: math.unit(6, "feet"),
  37300. weight: math.unit(350, "lb"),
  37301. name: "Normal",
  37302. image: {
  37303. source: "./media/characters/teshy/normal.svg",
  37304. extra: 1795/1735,
  37305. bottom: 16/1811
  37306. }
  37307. },
  37308. monsterFront: {
  37309. height: math.unit(12, "feet"),
  37310. weight: math.unit(4700, "lb"),
  37311. name: "Monster (Front)",
  37312. image: {
  37313. source: "./media/characters/teshy/monster-front.svg",
  37314. extra: 2042/2034,
  37315. bottom: 128/2170
  37316. }
  37317. },
  37318. monsterSide: {
  37319. height: math.unit(12, "feet"),
  37320. weight: math.unit(4700, "lb"),
  37321. name: "Monster (Side)",
  37322. image: {
  37323. source: "./media/characters/teshy/monster-side.svg",
  37324. extra: 2067/2056,
  37325. bottom: 70/2137
  37326. }
  37327. },
  37328. monsterBack: {
  37329. height: math.unit(12, "feet"),
  37330. weight: math.unit(4700, "lb"),
  37331. name: "Monster (Back)",
  37332. image: {
  37333. source: "./media/characters/teshy/monster-back.svg",
  37334. extra: 1921/1914,
  37335. bottom: 171/2092
  37336. }
  37337. },
  37338. },
  37339. [
  37340. {
  37341. name: "Normal",
  37342. height: math.unit(6, "feet"),
  37343. default: true
  37344. },
  37345. ]
  37346. ))
  37347. characterMakers.push(() => makeCharacter(
  37348. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37349. {
  37350. front: {
  37351. height: math.unit(6, "feet"),
  37352. name: "Front",
  37353. image: {
  37354. source: "./media/characters/ramey/front.svg",
  37355. extra: 790/787,
  37356. bottom: 27/817
  37357. }
  37358. },
  37359. },
  37360. [
  37361. {
  37362. name: "Normal",
  37363. height: math.unit(6, "feet"),
  37364. default: true
  37365. },
  37366. ]
  37367. ))
  37368. characterMakers.push(() => makeCharacter(
  37369. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37370. {
  37371. front: {
  37372. height: math.unit(5 + 5/12, "feet"),
  37373. weight: math.unit(120, "lb"),
  37374. name: "Front",
  37375. image: {
  37376. source: "./media/characters/phirae/front.svg",
  37377. extra: 2491/2436,
  37378. bottom: 38/2529
  37379. }
  37380. },
  37381. },
  37382. [
  37383. {
  37384. name: "Normal",
  37385. height: math.unit(5 + 5/12, "feet"),
  37386. default: true
  37387. },
  37388. ]
  37389. ))
  37390. characterMakers.push(() => makeCharacter(
  37391. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37392. {
  37393. front: {
  37394. height: math.unit(5 + 3/12, "feet"),
  37395. name: "Front",
  37396. image: {
  37397. source: "./media/characters/stagglas/front.svg",
  37398. extra: 962/882,
  37399. bottom: 53/1015
  37400. }
  37401. },
  37402. feral: {
  37403. height: math.unit(335, "cm"),
  37404. name: "Feral",
  37405. image: {
  37406. source: "./media/characters/stagglas/feral.svg",
  37407. extra: 1732/1090,
  37408. bottom: 48/1780
  37409. }
  37410. },
  37411. },
  37412. [
  37413. {
  37414. name: "Normal",
  37415. height: math.unit(5 + 3/12, "feet"),
  37416. default: true
  37417. },
  37418. ]
  37419. ))
  37420. characterMakers.push(() => makeCharacter(
  37421. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37422. {
  37423. front: {
  37424. height: math.unit(5 + 4/12, "feet"),
  37425. weight: math.unit(145, "lb"),
  37426. name: "Front",
  37427. image: {
  37428. source: "./media/characters/starra/front.svg",
  37429. extra: 1790/1691,
  37430. bottom: 91/1881
  37431. }
  37432. },
  37433. },
  37434. [
  37435. {
  37436. name: "Normal",
  37437. height: math.unit(5 + 4/12, "feet"),
  37438. default: true
  37439. },
  37440. ]
  37441. ))
  37442. characterMakers.push(() => makeCharacter(
  37443. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37444. {
  37445. front: {
  37446. height: math.unit(3.5, "meters"),
  37447. name: "Front",
  37448. image: {
  37449. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37450. extra: 1248/972,
  37451. bottom: 38/1286
  37452. }
  37453. },
  37454. },
  37455. [
  37456. {
  37457. name: "Normal",
  37458. height: math.unit(3.5, "meters"),
  37459. default: true
  37460. },
  37461. ]
  37462. ))
  37463. characterMakers.push(() => makeCharacter(
  37464. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37465. {
  37466. side: {
  37467. height: math.unit(8 + 2/12, "feet"),
  37468. weight: math.unit(1240, "lb"),
  37469. name: "Side",
  37470. image: {
  37471. source: "./media/characters/mika-valentine/side.svg",
  37472. extra: 2670/2501,
  37473. bottom: 250/2920
  37474. }
  37475. },
  37476. },
  37477. [
  37478. {
  37479. name: "Normal",
  37480. height: math.unit(8 + 2/12, "feet"),
  37481. default: true
  37482. },
  37483. ]
  37484. ))
  37485. characterMakers.push(() => makeCharacter(
  37486. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37487. {
  37488. front: {
  37489. height: math.unit(7 + 2/12, "feet"),
  37490. name: "Front",
  37491. image: {
  37492. source: "./media/characters/xoltol/front.svg",
  37493. extra: 2212/2124,
  37494. bottom: 84/2296
  37495. }
  37496. },
  37497. side: {
  37498. height: math.unit(7 + 2/12, "feet"),
  37499. name: "Side",
  37500. image: {
  37501. source: "./media/characters/xoltol/side.svg",
  37502. extra: 2273/2197,
  37503. bottom: 26/2299
  37504. }
  37505. },
  37506. hand: {
  37507. height: math.unit(2.5, "feet"),
  37508. name: "Hand",
  37509. image: {
  37510. source: "./media/characters/xoltol/hand.svg"
  37511. }
  37512. },
  37513. },
  37514. [
  37515. {
  37516. name: "Small-ish",
  37517. height: math.unit(5 + 11/12, "feet")
  37518. },
  37519. {
  37520. name: "Normal",
  37521. height: math.unit(7 + 2/12, "feet")
  37522. },
  37523. {
  37524. name: "\"Macro\"",
  37525. height: math.unit(14 + 9/12, "feet"),
  37526. default: true
  37527. },
  37528. {
  37529. name: "Alternate Height",
  37530. height: math.unit(20, "feet")
  37531. },
  37532. {
  37533. name: "Actually Macro",
  37534. height: math.unit(100, "feet")
  37535. },
  37536. ]
  37537. ))
  37538. characterMakers.push(() => makeCharacter(
  37539. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37540. {
  37541. front: {
  37542. height: math.unit(5 + 2/12, "feet"),
  37543. weight: math.unit(75, "kg"),
  37544. name: "Front",
  37545. image: {
  37546. source: "./media/characters/kotetsu-redwood/front.svg",
  37547. extra: 1053/942,
  37548. bottom: 60/1113
  37549. }
  37550. },
  37551. },
  37552. [
  37553. {
  37554. name: "Normal",
  37555. height: math.unit(5 + 2/12, "feet"),
  37556. default: true
  37557. },
  37558. ]
  37559. ))
  37560. characterMakers.push(() => makeCharacter(
  37561. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37562. {
  37563. front: {
  37564. height: math.unit(2.4, "meters"),
  37565. weight: math.unit(125, "kg"),
  37566. name: "Front",
  37567. image: {
  37568. source: "./media/characters/lilith/front.svg",
  37569. extra: 1590/1513,
  37570. bottom: 203/1793
  37571. }
  37572. },
  37573. },
  37574. [
  37575. {
  37576. name: "Humanoid",
  37577. height: math.unit(2.4, "meters")
  37578. },
  37579. {
  37580. name: "Normal",
  37581. height: math.unit(6, "meters"),
  37582. default: true
  37583. },
  37584. {
  37585. name: "Largest",
  37586. height: math.unit(55, "meters")
  37587. },
  37588. ]
  37589. ))
  37590. characterMakers.push(() => makeCharacter(
  37591. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37592. {
  37593. front: {
  37594. height: math.unit(8 + 4/12, "feet"),
  37595. weight: math.unit(535, "lb"),
  37596. name: "Front",
  37597. image: {
  37598. source: "./media/characters/beh'kah-bolger/front.svg",
  37599. extra: 1660/1603,
  37600. bottom: 37/1697
  37601. }
  37602. },
  37603. },
  37604. [
  37605. {
  37606. name: "Normal",
  37607. height: math.unit(8 + 4/12, "feet"),
  37608. default: true
  37609. },
  37610. {
  37611. name: "Kaiju",
  37612. height: math.unit(250, "feet")
  37613. },
  37614. {
  37615. name: "Still Growing",
  37616. height: math.unit(10, "miles")
  37617. },
  37618. {
  37619. name: "Continental",
  37620. height: math.unit(5000, "miles")
  37621. },
  37622. {
  37623. name: "Final Form",
  37624. height: math.unit(2500000, "miles")
  37625. },
  37626. ]
  37627. ))
  37628. characterMakers.push(() => makeCharacter(
  37629. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37630. {
  37631. front: {
  37632. height: math.unit(7 + 2/12, "feet"),
  37633. weight: math.unit(230, "kg"),
  37634. name: "Front",
  37635. image: {
  37636. source: "./media/characters/tatyana-milewska/front.svg",
  37637. extra: 1199/1150,
  37638. bottom: 86/1285
  37639. }
  37640. },
  37641. },
  37642. [
  37643. {
  37644. name: "Normal",
  37645. height: math.unit(7 + 2/12, "feet"),
  37646. default: true
  37647. },
  37648. {
  37649. name: "Big",
  37650. height: math.unit(12, "feet")
  37651. },
  37652. {
  37653. name: "Minimacro",
  37654. height: math.unit(20, "feet")
  37655. },
  37656. {
  37657. name: "Macro",
  37658. height: math.unit(120, "feet")
  37659. },
  37660. ]
  37661. ))
  37662. characterMakers.push(() => makeCharacter(
  37663. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37664. {
  37665. front: {
  37666. height: math.unit(7 + 8/12, "feet"),
  37667. weight: math.unit(152, "kg"),
  37668. name: "Front",
  37669. image: {
  37670. source: "./media/characters/helen-arri/front.svg",
  37671. extra: 440/423,
  37672. bottom: 14/454
  37673. }
  37674. },
  37675. back: {
  37676. height: math.unit(7 + 8/12, "feet"),
  37677. weight: math.unit(152, "kg"),
  37678. name: "Back",
  37679. image: {
  37680. source: "./media/characters/helen-arri/back.svg",
  37681. extra: 443/426,
  37682. bottom: 8/451
  37683. }
  37684. },
  37685. },
  37686. [
  37687. {
  37688. name: "Normal",
  37689. height: math.unit(7 + 8/12, "feet"),
  37690. default: true
  37691. },
  37692. {
  37693. name: "Big",
  37694. height: math.unit(14, "feet")
  37695. },
  37696. {
  37697. name: "Minimacro",
  37698. height: math.unit(24, "feet")
  37699. },
  37700. {
  37701. name: "Macro",
  37702. height: math.unit(140, "feet")
  37703. },
  37704. ]
  37705. ))
  37706. characterMakers.push(() => makeCharacter(
  37707. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37708. {
  37709. front: {
  37710. height: math.unit(6, "meters"),
  37711. name: "Front",
  37712. image: {
  37713. source: "./media/characters/ehanu-rehu/front.svg",
  37714. extra: 1800/1800,
  37715. bottom: 59/1859
  37716. }
  37717. },
  37718. },
  37719. [
  37720. {
  37721. name: "Normal",
  37722. height: math.unit(6, "meters"),
  37723. default: true
  37724. },
  37725. ]
  37726. ))
  37727. characterMakers.push(() => makeCharacter(
  37728. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37729. {
  37730. front: {
  37731. height: math.unit(7 + 3/12, "feet"),
  37732. name: "Front",
  37733. image: {
  37734. source: "./media/characters/renholder/front.svg",
  37735. extra: 3096/2960,
  37736. bottom: 250/3346
  37737. }
  37738. },
  37739. },
  37740. [
  37741. {
  37742. name: "Normal Bat",
  37743. height: math.unit(7 + 3/12, "feet"),
  37744. default: true
  37745. },
  37746. {
  37747. name: "Slightly Tall Bat",
  37748. height: math.unit(100, "feet")
  37749. },
  37750. {
  37751. name: "Big Bat",
  37752. height: math.unit(1000, "feet")
  37753. },
  37754. {
  37755. name: "City-Sized Bat",
  37756. height: math.unit(200000, "feet")
  37757. },
  37758. {
  37759. name: "Bigger Bat",
  37760. height: math.unit(10000, "miles")
  37761. },
  37762. {
  37763. name: "Solar Sized Bat",
  37764. height: math.unit(100, "AU")
  37765. },
  37766. {
  37767. name: "Galactic Bat",
  37768. height: math.unit(200000, "lightyears")
  37769. },
  37770. {
  37771. name: "Universally Known Bat",
  37772. height: math.unit(1, "universe")
  37773. },
  37774. ]
  37775. ))
  37776. characterMakers.push(() => makeCharacter(
  37777. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37778. {
  37779. front: {
  37780. height: math.unit(6 + 11/12, "feet"),
  37781. weight: math.unit(250, "lb"),
  37782. name: "Front",
  37783. image: {
  37784. source: "./media/characters/cookiecat/front.svg",
  37785. extra: 893/827,
  37786. bottom: 14/907
  37787. }
  37788. },
  37789. },
  37790. [
  37791. {
  37792. name: "Micro",
  37793. height: math.unit(3, "inches")
  37794. },
  37795. {
  37796. name: "Normal",
  37797. height: math.unit(6 + 11/12, "feet"),
  37798. default: true
  37799. },
  37800. {
  37801. name: "Macro",
  37802. height: math.unit(100, "feet")
  37803. },
  37804. {
  37805. name: "Macro+",
  37806. height: math.unit(404, "feet")
  37807. },
  37808. {
  37809. name: "Megamacro",
  37810. height: math.unit(165, "miles")
  37811. },
  37812. {
  37813. name: "Planetary",
  37814. height: math.unit(4600, "miles")
  37815. },
  37816. ]
  37817. ))
  37818. characterMakers.push(() => makeCharacter(
  37819. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37820. {
  37821. front: {
  37822. height: math.unit(10 + 3/12, "feet"),
  37823. weight: math.unit(1500, "lb"),
  37824. name: "Front",
  37825. image: {
  37826. source: "./media/characters/tux-kusanagi/front.svg",
  37827. extra: 944/840,
  37828. bottom: 39/983
  37829. }
  37830. },
  37831. back: {
  37832. height: math.unit(10 + 3/12, "feet"),
  37833. weight: math.unit(1500, "lb"),
  37834. name: "Back",
  37835. image: {
  37836. source: "./media/characters/tux-kusanagi/back.svg",
  37837. extra: 941/842,
  37838. bottom: 28/969
  37839. }
  37840. },
  37841. rump: {
  37842. height: math.unit(5.25, "feet"),
  37843. name: "Rump",
  37844. image: {
  37845. source: "./media/characters/tux-kusanagi/rump.svg"
  37846. }
  37847. },
  37848. beak: {
  37849. height: math.unit(1.54, "feet"),
  37850. name: "Beak",
  37851. image: {
  37852. source: "./media/characters/tux-kusanagi/beak.svg"
  37853. }
  37854. },
  37855. },
  37856. [
  37857. {
  37858. name: "Normal",
  37859. height: math.unit(10 + 3/12, "feet"),
  37860. default: true
  37861. },
  37862. ]
  37863. ))
  37864. characterMakers.push(() => makeCharacter(
  37865. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37866. {
  37867. front: {
  37868. height: math.unit(58, "feet"),
  37869. weight: math.unit(200, "tons"),
  37870. name: "Front",
  37871. image: {
  37872. source: "./media/characters/uzarmazari/front.svg",
  37873. extra: 1575/1455,
  37874. bottom: 152/1727
  37875. }
  37876. },
  37877. back: {
  37878. height: math.unit(58, "feet"),
  37879. weight: math.unit(200, "tons"),
  37880. name: "Back",
  37881. image: {
  37882. source: "./media/characters/uzarmazari/back.svg",
  37883. extra: 1585/1510,
  37884. bottom: 157/1742
  37885. }
  37886. },
  37887. head: {
  37888. height: math.unit(26, "feet"),
  37889. name: "Head",
  37890. image: {
  37891. source: "./media/characters/uzarmazari/head.svg"
  37892. }
  37893. },
  37894. },
  37895. [
  37896. {
  37897. name: "Normal",
  37898. height: math.unit(58, "feet"),
  37899. default: true
  37900. },
  37901. ]
  37902. ))
  37903. characterMakers.push(() => makeCharacter(
  37904. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37905. {
  37906. side: {
  37907. height: math.unit(15, "feet"),
  37908. name: "Side",
  37909. image: {
  37910. source: "./media/characters/akitu/side.svg",
  37911. extra: 1421/1321,
  37912. bottom: 157/1578
  37913. }
  37914. },
  37915. front: {
  37916. height: math.unit(15, "feet"),
  37917. name: "Front",
  37918. image: {
  37919. source: "./media/characters/akitu/front.svg",
  37920. extra: 1435/1326,
  37921. bottom: 232/1667
  37922. }
  37923. },
  37924. },
  37925. [
  37926. {
  37927. name: "Normal",
  37928. height: math.unit(15, "feet"),
  37929. default: true
  37930. },
  37931. ]
  37932. ))
  37933. characterMakers.push(() => makeCharacter(
  37934. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37935. {
  37936. front: {
  37937. height: math.unit(10 + 8/12, "feet"),
  37938. name: "Front",
  37939. image: {
  37940. source: "./media/characters/azalie-croixland/front.svg",
  37941. extra: 1972/1856,
  37942. bottom: 31/2003
  37943. }
  37944. },
  37945. },
  37946. [
  37947. {
  37948. name: "Original Height",
  37949. height: math.unit(5 + 4/12, "feet")
  37950. },
  37951. {
  37952. name: "Normal Height",
  37953. height: math.unit(10 + 8/12, "feet"),
  37954. default: true
  37955. },
  37956. ]
  37957. ))
  37958. characterMakers.push(() => makeCharacter(
  37959. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37960. {
  37961. side: {
  37962. height: math.unit(7 + 1/12, "feet"),
  37963. weight: math.unit(245, "lb"),
  37964. name: "Side",
  37965. image: {
  37966. source: "./media/characters/kavus-kazian/side.svg",
  37967. extra: 349/342,
  37968. bottom: 15/364
  37969. }
  37970. },
  37971. },
  37972. [
  37973. {
  37974. name: "Normal",
  37975. height: math.unit(7 + 1/12, "feet"),
  37976. default: true
  37977. },
  37978. ]
  37979. ))
  37980. characterMakers.push(() => makeCharacter(
  37981. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37982. {
  37983. normalFront: {
  37984. height: math.unit(5 + 11/12, "feet"),
  37985. name: "Front",
  37986. image: {
  37987. source: "./media/characters/moonlight-rose/normal-front.svg",
  37988. extra: 1980/1825,
  37989. bottom: 18/1998
  37990. },
  37991. form: "normal",
  37992. default: true
  37993. },
  37994. normalBack: {
  37995. height: math.unit(5 + 11/12, "feet"),
  37996. name: "Back",
  37997. image: {
  37998. source: "./media/characters/moonlight-rose/normal-back.svg",
  37999. extra: 2010/1839,
  38000. bottom: 10/2020
  38001. },
  38002. form: "normal"
  38003. },
  38004. demonFront: {
  38005. height: math.unit(1.5, "earths"),
  38006. name: "Front",
  38007. image: {
  38008. source: "./media/characters/moonlight-rose/demon.svg",
  38009. extra: 1400/1294,
  38010. bottom: 45/1445
  38011. },
  38012. form: "demon",
  38013. default: true
  38014. },
  38015. terraFront: {
  38016. height: math.unit(1.5, "earths"),
  38017. name: "Front",
  38018. image: {
  38019. source: "./media/characters/moonlight-rose/terra.svg"
  38020. },
  38021. form: "terra",
  38022. default: true
  38023. },
  38024. jupiterFront: {
  38025. height: math.unit(69911*2, "km"),
  38026. name: "Front",
  38027. image: {
  38028. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  38029. extra: 1367/1286,
  38030. bottom: 55/1422
  38031. },
  38032. form: "jupiter",
  38033. default: true
  38034. },
  38035. neptuneFront: {
  38036. height: math.unit(24622*2, "feet"),
  38037. name: "Front",
  38038. image: {
  38039. source: "./media/characters/moonlight-rose/neptune-front.svg",
  38040. extra: 1851/1712,
  38041. bottom: 0/1851
  38042. },
  38043. form: "neptune",
  38044. default: true
  38045. },
  38046. },
  38047. [
  38048. {
  38049. name: "\"Natural\" Height",
  38050. height: math.unit(5 + 11/12, "feet"),
  38051. form: "normal"
  38052. },
  38053. {
  38054. name: "Smallest comfortable size",
  38055. height: math.unit(40, "meters"),
  38056. form: "normal"
  38057. },
  38058. {
  38059. name: "Common size",
  38060. height: math.unit(50, "km"),
  38061. form: "normal",
  38062. default: true
  38063. },
  38064. {
  38065. name: "Normal",
  38066. height: math.unit(1.5, "earths"),
  38067. form: "demon",
  38068. default: true
  38069. },
  38070. {
  38071. name: "Universal",
  38072. height: math.unit(15, "universes"),
  38073. form: "demon"
  38074. },
  38075. {
  38076. name: "Earth",
  38077. height: math.unit(1.5, "earths"),
  38078. form: "terra",
  38079. default: true
  38080. },
  38081. {
  38082. name: "Super Earth",
  38083. height: math.unit(67.5, "earths"),
  38084. form: "terra"
  38085. },
  38086. {
  38087. name: "Doesn't fit in a solar system...",
  38088. height: math.unit(1, "galaxy"),
  38089. form: "terra"
  38090. },
  38091. {
  38092. name: "Saturn",
  38093. height: math.unit(58232*2, "km"),
  38094. form: "jupiter"
  38095. },
  38096. {
  38097. name: "Jupiter",
  38098. height: math.unit(69911*2, "km"),
  38099. form: "jupiter",
  38100. default: true
  38101. },
  38102. {
  38103. name: "HD 100546 b",
  38104. height: math.unit(482938, "km"),
  38105. form: "jupiter"
  38106. },
  38107. {
  38108. name: "Enceladus",
  38109. height: math.unit(513*2, "km"),
  38110. form: "neptune"
  38111. },
  38112. {
  38113. name: "Europe",
  38114. height: math.unit(1560*2, "km"),
  38115. form: "neptune"
  38116. },
  38117. {
  38118. name: "Neptune",
  38119. height: math.unit(24622*2, "km"),
  38120. form: "neptune",
  38121. default: true
  38122. },
  38123. {
  38124. name: "CoRoT-9b",
  38125. height: math.unit(75067*2, "km"),
  38126. form: "neptune"
  38127. },
  38128. ],
  38129. {
  38130. "normal": {
  38131. name: "Normal",
  38132. default: true
  38133. },
  38134. "demon": {
  38135. name: "Demon"
  38136. },
  38137. "terra": {
  38138. name: "Terra"
  38139. },
  38140. "jupiter": {
  38141. name: "Jupiter"
  38142. },
  38143. "neptune": {
  38144. name: "Neptune"
  38145. }
  38146. }
  38147. ))
  38148. characterMakers.push(() => makeCharacter(
  38149. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  38150. {
  38151. front: {
  38152. height: math.unit(16, "feet"),
  38153. weight: math.unit(610, "kg"),
  38154. name: "Front",
  38155. image: {
  38156. source: "./media/characters/huckle/front.svg",
  38157. extra: 1731/1625,
  38158. bottom: 33/1764
  38159. }
  38160. },
  38161. back: {
  38162. height: math.unit(16, "feet"),
  38163. weight: math.unit(610, "kg"),
  38164. name: "Back",
  38165. image: {
  38166. source: "./media/characters/huckle/back.svg",
  38167. extra: 1738/1651,
  38168. bottom: 37/1775
  38169. }
  38170. },
  38171. laughing: {
  38172. height: math.unit(3.75, "feet"),
  38173. name: "Laughing",
  38174. image: {
  38175. source: "./media/characters/huckle/laughing.svg"
  38176. }
  38177. },
  38178. angry: {
  38179. height: math.unit(4.15, "feet"),
  38180. name: "Angry",
  38181. image: {
  38182. source: "./media/characters/huckle/angry.svg"
  38183. }
  38184. },
  38185. },
  38186. [
  38187. {
  38188. name: "Normal",
  38189. height: math.unit(16, "feet"),
  38190. default: true
  38191. },
  38192. {
  38193. name: "Mini Macro",
  38194. height: math.unit(463, "feet")
  38195. },
  38196. {
  38197. name: "Macro",
  38198. height: math.unit(1680, "meters")
  38199. },
  38200. {
  38201. name: "Mega Macro",
  38202. height: math.unit(175, "km")
  38203. },
  38204. {
  38205. name: "Terra Macro",
  38206. height: math.unit(32, "gigameters")
  38207. },
  38208. {
  38209. name: "Multiverse+",
  38210. height: math.unit(2.56e23, "yottameters")
  38211. },
  38212. ]
  38213. ))
  38214. characterMakers.push(() => makeCharacter(
  38215. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38216. {
  38217. front: {
  38218. height: math.unit(6 + 9/12, "feet"),
  38219. weight: math.unit(280, "lb"),
  38220. name: "Front",
  38221. image: {
  38222. source: "./media/characters/candy/front.svg",
  38223. extra: 234/217,
  38224. bottom: 11/245
  38225. }
  38226. },
  38227. },
  38228. [
  38229. {
  38230. name: "Really Small",
  38231. height: math.unit(0.1, "nm")
  38232. },
  38233. {
  38234. name: "Micro",
  38235. height: math.unit(2, "inches")
  38236. },
  38237. {
  38238. name: "Normal",
  38239. height: math.unit(6 + 9/12, "feet"),
  38240. default: true
  38241. },
  38242. {
  38243. name: "Small Macro",
  38244. height: math.unit(69, "feet")
  38245. },
  38246. {
  38247. name: "Macro",
  38248. height: math.unit(160, "feet")
  38249. },
  38250. {
  38251. name: "Megamacro",
  38252. height: math.unit(22000, "miles")
  38253. },
  38254. {
  38255. name: "Gigamacro",
  38256. height: math.unit(50000, "miles")
  38257. },
  38258. ]
  38259. ))
  38260. characterMakers.push(() => makeCharacter(
  38261. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38262. {
  38263. front: {
  38264. height: math.unit(4, "feet"),
  38265. weight: math.unit(90, "lb"),
  38266. name: "Front",
  38267. image: {
  38268. source: "./media/characters/joey-mcdonald/front.svg",
  38269. extra: 1059/852,
  38270. bottom: 33/1092
  38271. }
  38272. },
  38273. back: {
  38274. height: math.unit(4, "feet"),
  38275. weight: math.unit(90, "lb"),
  38276. name: "Back",
  38277. image: {
  38278. source: "./media/characters/joey-mcdonald/back.svg",
  38279. extra: 1077/879,
  38280. bottom: 5/1082
  38281. }
  38282. },
  38283. frontKobold: {
  38284. height: math.unit(4, "feet"),
  38285. weight: math.unit(100, "lb"),
  38286. name: "Front-kobold",
  38287. image: {
  38288. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38289. extra: 1480/1367,
  38290. bottom: 0/1480
  38291. }
  38292. },
  38293. backKobold: {
  38294. height: math.unit(4, "feet"),
  38295. weight: math.unit(100, "lb"),
  38296. name: "Back-kobold",
  38297. image: {
  38298. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38299. extra: 1449/1361,
  38300. bottom: 0/1449
  38301. }
  38302. },
  38303. },
  38304. [
  38305. {
  38306. name: "Normal",
  38307. height: math.unit(4, "feet"),
  38308. default: true
  38309. },
  38310. ]
  38311. ))
  38312. characterMakers.push(() => makeCharacter(
  38313. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38314. {
  38315. front: {
  38316. height: math.unit(12 + 6/12, "feet"),
  38317. name: "Front",
  38318. image: {
  38319. source: "./media/characters/kass-lockheed/front.svg",
  38320. extra: 354/343,
  38321. bottom: 9/363
  38322. }
  38323. },
  38324. back: {
  38325. height: math.unit(12 + 6/12, "feet"),
  38326. name: "Back",
  38327. image: {
  38328. source: "./media/characters/kass-lockheed/back.svg",
  38329. extra: 364/352,
  38330. bottom: 3/367
  38331. }
  38332. },
  38333. dick: {
  38334. height: math.unit(3.12, "feet"),
  38335. name: "Dick",
  38336. image: {
  38337. source: "./media/characters/kass-lockheed/dick.svg"
  38338. }
  38339. },
  38340. head: {
  38341. height: math.unit(2.6, "feet"),
  38342. name: "Head",
  38343. image: {
  38344. source: "./media/characters/kass-lockheed/head.svg"
  38345. }
  38346. },
  38347. bleh: {
  38348. height: math.unit(2.85, "feet"),
  38349. name: "Bleh",
  38350. image: {
  38351. source: "./media/characters/kass-lockheed/bleh.svg"
  38352. }
  38353. },
  38354. smug: {
  38355. height: math.unit(2.85, "feet"),
  38356. name: "Smug",
  38357. image: {
  38358. source: "./media/characters/kass-lockheed/smug.svg"
  38359. }
  38360. },
  38361. },
  38362. [
  38363. {
  38364. name: "Normal",
  38365. height: math.unit(12 + 6/12, "feet"),
  38366. default: true
  38367. },
  38368. ]
  38369. ))
  38370. characterMakers.push(() => makeCharacter(
  38371. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38372. {
  38373. front: {
  38374. height: math.unit(6 + 2/12, "feet"),
  38375. name: "Front",
  38376. image: {
  38377. source: "./media/characters/taylor/front.svg",
  38378. extra: 639/495,
  38379. bottom: 12/651
  38380. }
  38381. },
  38382. },
  38383. [
  38384. {
  38385. name: "Normal",
  38386. height: math.unit(6 + 2/12, "feet"),
  38387. default: true
  38388. },
  38389. {
  38390. name: "Big",
  38391. height: math.unit(15, "feet")
  38392. },
  38393. {
  38394. name: "Lorg",
  38395. height: math.unit(80, "feet")
  38396. },
  38397. {
  38398. name: "Too Lorg",
  38399. height: math.unit(120, "feet")
  38400. },
  38401. ]
  38402. ))
  38403. characterMakers.push(() => makeCharacter(
  38404. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38405. {
  38406. front: {
  38407. height: math.unit(15, "feet"),
  38408. name: "Front",
  38409. image: {
  38410. source: "./media/characters/kaizer/front.svg",
  38411. extra: 1612/1436,
  38412. bottom: 43/1655
  38413. }
  38414. },
  38415. },
  38416. [
  38417. {
  38418. name: "Normal",
  38419. height: math.unit(15, "feet"),
  38420. default: true
  38421. },
  38422. ]
  38423. ))
  38424. characterMakers.push(() => makeCharacter(
  38425. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38426. {
  38427. front: {
  38428. height: math.unit(2, "feet"),
  38429. weight: math.unit(30, "lb"),
  38430. name: "Front",
  38431. image: {
  38432. source: "./media/characters/sandy/front.svg",
  38433. extra: 1439/1307,
  38434. bottom: 194/1633
  38435. }
  38436. },
  38437. },
  38438. [
  38439. {
  38440. name: "Normal",
  38441. height: math.unit(2, "feet"),
  38442. default: true
  38443. },
  38444. ]
  38445. ))
  38446. characterMakers.push(() => makeCharacter(
  38447. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38448. {
  38449. front: {
  38450. height: math.unit(3, "feet"),
  38451. name: "Front",
  38452. image: {
  38453. source: "./media/characters/mellvi/front.svg",
  38454. extra: 1831/1630,
  38455. bottom: 58/1889
  38456. }
  38457. },
  38458. },
  38459. [
  38460. {
  38461. name: "Normal",
  38462. height: math.unit(3, "feet"),
  38463. default: true
  38464. },
  38465. ]
  38466. ))
  38467. characterMakers.push(() => makeCharacter(
  38468. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38469. {
  38470. front: {
  38471. height: math.unit(5 + 11/12, "feet"),
  38472. weight: math.unit(200, "lb"),
  38473. name: "Front",
  38474. image: {
  38475. source: "./media/characters/shirou/front.svg",
  38476. extra: 2491/2383,
  38477. bottom: 189/2680
  38478. }
  38479. },
  38480. back: {
  38481. height: math.unit(5 + 11/12, "feet"),
  38482. weight: math.unit(200, "lb"),
  38483. name: "Back",
  38484. image: {
  38485. source: "./media/characters/shirou/back.svg",
  38486. extra: 2554/2450,
  38487. bottom: 76/2630
  38488. }
  38489. },
  38490. },
  38491. [
  38492. {
  38493. name: "Normal",
  38494. height: math.unit(5 + 11/12, "feet"),
  38495. default: true
  38496. },
  38497. ]
  38498. ))
  38499. characterMakers.push(() => makeCharacter(
  38500. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38501. {
  38502. front: {
  38503. height: math.unit(6 + 3/12, "feet"),
  38504. weight: math.unit(177, "lb"),
  38505. name: "Front",
  38506. image: {
  38507. source: "./media/characters/noryu/front.svg",
  38508. extra: 973/885,
  38509. bottom: 10/983
  38510. }
  38511. },
  38512. },
  38513. [
  38514. {
  38515. name: "Normal",
  38516. height: math.unit(6 + 3/12, "feet"),
  38517. default: true
  38518. },
  38519. ]
  38520. ))
  38521. characterMakers.push(() => makeCharacter(
  38522. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38523. {
  38524. front: {
  38525. height: math.unit(5 + 6/12, "feet"),
  38526. weight: math.unit(170, "lb"),
  38527. name: "Front",
  38528. image: {
  38529. source: "./media/characters/mevolas-rubenido/front.svg",
  38530. extra: 2109/1901,
  38531. bottom: 96/2205
  38532. }
  38533. },
  38534. },
  38535. [
  38536. {
  38537. name: "Normal",
  38538. height: math.unit(5 + 6/12, "feet"),
  38539. default: true
  38540. },
  38541. ]
  38542. ))
  38543. characterMakers.push(() => makeCharacter(
  38544. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38545. {
  38546. front: {
  38547. height: math.unit(100, "feet"),
  38548. name: "Front",
  38549. image: {
  38550. source: "./media/characters/dee/front.svg",
  38551. extra: 2153/2036,
  38552. bottom: 59/2212
  38553. }
  38554. },
  38555. back: {
  38556. height: math.unit(100, "feet"),
  38557. name: "Back",
  38558. image: {
  38559. source: "./media/characters/dee/back.svg",
  38560. extra: 2183/2058,
  38561. bottom: 75/2258
  38562. }
  38563. },
  38564. foot: {
  38565. height: math.unit(19.43, "feet"),
  38566. name: "Foot",
  38567. image: {
  38568. source: "./media/characters/dee/foot.svg"
  38569. }
  38570. },
  38571. hoof: {
  38572. height: math.unit(20.6, "feet"),
  38573. name: "Hoof",
  38574. image: {
  38575. source: "./media/characters/dee/hoof.svg"
  38576. }
  38577. },
  38578. },
  38579. [
  38580. {
  38581. name: "Macro",
  38582. height: math.unit(100, "feet"),
  38583. default: true
  38584. },
  38585. ]
  38586. ))
  38587. characterMakers.push(() => makeCharacter(
  38588. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38589. {
  38590. front: {
  38591. height: math.unit(5 + 6/12, "feet"),
  38592. name: "Front",
  38593. image: {
  38594. source: "./media/characters/teh/front.svg",
  38595. extra: 1002/847,
  38596. bottom: 62/1064
  38597. }
  38598. },
  38599. },
  38600. [
  38601. {
  38602. name: "Normal",
  38603. height: math.unit(5 + 6/12, "feet"),
  38604. default: true
  38605. },
  38606. ]
  38607. ))
  38608. characterMakers.push(() => makeCharacter(
  38609. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38610. {
  38611. side: {
  38612. height: math.unit(6 + 1/12, "feet"),
  38613. weight: math.unit(204, "lb"),
  38614. name: "Side",
  38615. image: {
  38616. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38617. extra: 974/775,
  38618. bottom: 169/1143
  38619. }
  38620. },
  38621. sitting: {
  38622. height: math.unit(6 + 2/12, "feet"),
  38623. weight: math.unit(204, "lb"),
  38624. name: "Sitting",
  38625. image: {
  38626. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38627. extra: 1175/964,
  38628. bottom: 378/1553
  38629. }
  38630. },
  38631. },
  38632. [
  38633. {
  38634. name: "Normal",
  38635. height: math.unit(6 + 1/12, "feet"),
  38636. default: true
  38637. },
  38638. ]
  38639. ))
  38640. characterMakers.push(() => makeCharacter(
  38641. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38642. {
  38643. front: {
  38644. height: math.unit(6, "inches"),
  38645. name: "Front",
  38646. image: {
  38647. source: "./media/characters/tululi/front.svg",
  38648. extra: 1997/1876,
  38649. bottom: 20/2017
  38650. }
  38651. },
  38652. },
  38653. [
  38654. {
  38655. name: "Normal",
  38656. height: math.unit(6, "inches"),
  38657. default: true
  38658. },
  38659. ]
  38660. ))
  38661. characterMakers.push(() => makeCharacter(
  38662. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38663. {
  38664. front: {
  38665. height: math.unit(4 + 1/12, "feet"),
  38666. name: "Front",
  38667. image: {
  38668. source: "./media/characters/star/front.svg",
  38669. extra: 1493/1189,
  38670. bottom: 48/1541
  38671. }
  38672. },
  38673. },
  38674. [
  38675. {
  38676. name: "Normal",
  38677. height: math.unit(4 + 1/12, "feet"),
  38678. default: true
  38679. },
  38680. ]
  38681. ))
  38682. characterMakers.push(() => makeCharacter(
  38683. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38684. {
  38685. front: {
  38686. height: math.unit(6 + 3/12, "feet"),
  38687. name: "Front",
  38688. image: {
  38689. source: "./media/characters/comet/front.svg",
  38690. extra: 1681/1462,
  38691. bottom: 26/1707
  38692. }
  38693. },
  38694. },
  38695. [
  38696. {
  38697. name: "Normal",
  38698. height: math.unit(6 + 3/12, "feet"),
  38699. default: true
  38700. },
  38701. ]
  38702. ))
  38703. characterMakers.push(() => makeCharacter(
  38704. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38705. {
  38706. front: {
  38707. height: math.unit(950, "feet"),
  38708. name: "Front",
  38709. image: {
  38710. source: "./media/characters/vortex/front.svg",
  38711. extra: 1497/1434,
  38712. bottom: 56/1553
  38713. }
  38714. },
  38715. maw: {
  38716. height: math.unit(285, "feet"),
  38717. name: "Maw",
  38718. image: {
  38719. source: "./media/characters/vortex/maw.svg"
  38720. }
  38721. },
  38722. },
  38723. [
  38724. {
  38725. name: "Macro",
  38726. height: math.unit(950, "feet"),
  38727. default: true
  38728. },
  38729. ]
  38730. ))
  38731. characterMakers.push(() => makeCharacter(
  38732. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38733. {
  38734. front: {
  38735. height: math.unit(600, "feet"),
  38736. weight: math.unit(0.02, "grams"),
  38737. name: "Front",
  38738. image: {
  38739. source: "./media/characters/doodle/front.svg",
  38740. extra: 1578/1413,
  38741. bottom: 37/1615
  38742. }
  38743. },
  38744. },
  38745. [
  38746. {
  38747. name: "Macro",
  38748. height: math.unit(600, "feet"),
  38749. default: true
  38750. },
  38751. ]
  38752. ))
  38753. characterMakers.push(() => makeCharacter(
  38754. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38755. {
  38756. front: {
  38757. height: math.unit(6 + 6/12, "feet"),
  38758. name: "Front",
  38759. image: {
  38760. source: "./media/characters/jai/front.svg",
  38761. extra: 1645/1534,
  38762. bottom: 115/1760
  38763. }
  38764. },
  38765. },
  38766. [
  38767. {
  38768. name: "Normal",
  38769. height: math.unit(6 + 6/12, "feet"),
  38770. default: true
  38771. },
  38772. ]
  38773. ))
  38774. characterMakers.push(() => makeCharacter(
  38775. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38776. {
  38777. front: {
  38778. height: math.unit(6 + 8/12, "feet"),
  38779. name: "Front",
  38780. image: {
  38781. source: "./media/characters/pixel/front.svg",
  38782. extra: 1900/1735,
  38783. bottom: 63/1963
  38784. }
  38785. },
  38786. },
  38787. [
  38788. {
  38789. name: "Normal",
  38790. height: math.unit(6 + 8/12, "feet"),
  38791. default: true
  38792. },
  38793. ]
  38794. ))
  38795. characterMakers.push(() => makeCharacter(
  38796. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38797. {
  38798. back: {
  38799. height: math.unit(4 + 1/12, "feet"),
  38800. weight: math.unit(75, "lb"),
  38801. name: "Back",
  38802. image: {
  38803. source: "./media/characters/rhett/back.svg",
  38804. extra: 930/878,
  38805. bottom: 25/955
  38806. }
  38807. },
  38808. front: {
  38809. height: math.unit(4 + 1/12, "feet"),
  38810. weight: math.unit(75, "lb"),
  38811. name: "Front",
  38812. image: {
  38813. source: "./media/characters/rhett/front.svg",
  38814. extra: 1682/1586,
  38815. bottom: 92/1774
  38816. }
  38817. },
  38818. },
  38819. [
  38820. {
  38821. name: "Micro",
  38822. height: math.unit(8, "inches")
  38823. },
  38824. {
  38825. name: "Tiny",
  38826. height: math.unit(2, "feet")
  38827. },
  38828. {
  38829. name: "Normal",
  38830. height: math.unit(4 + 1/12, "feet"),
  38831. default: true
  38832. },
  38833. ]
  38834. ))
  38835. characterMakers.push(() => makeCharacter(
  38836. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38837. {
  38838. front: {
  38839. height: math.unit(3 + 3/12, "feet"),
  38840. name: "Front",
  38841. image: {
  38842. source: "./media/characters/penny/front.svg",
  38843. extra: 1406/1311,
  38844. bottom: 26/1432
  38845. }
  38846. },
  38847. },
  38848. [
  38849. {
  38850. name: "Normal",
  38851. height: math.unit(3 + 3/12, "feet"),
  38852. default: true
  38853. },
  38854. ]
  38855. ))
  38856. characterMakers.push(() => makeCharacter(
  38857. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38858. {
  38859. front: {
  38860. height: math.unit(4 + 11/12, "feet"),
  38861. name: "Front",
  38862. image: {
  38863. source: "./media/characters/monty/front.svg",
  38864. extra: 1479/1209,
  38865. bottom: 0/1479
  38866. }
  38867. },
  38868. },
  38869. [
  38870. {
  38871. name: "Normal",
  38872. height: math.unit(4 + 11/12, "feet"),
  38873. default: true
  38874. },
  38875. ]
  38876. ))
  38877. characterMakers.push(() => makeCharacter(
  38878. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38879. {
  38880. front: {
  38881. height: math.unit(8 + 4/12, "feet"),
  38882. name: "Front",
  38883. image: {
  38884. source: "./media/characters/sterling/front.svg",
  38885. extra: 1420/1236,
  38886. bottom: 27/1447
  38887. }
  38888. },
  38889. },
  38890. [
  38891. {
  38892. name: "Normal",
  38893. height: math.unit(8 + 4/12, "feet"),
  38894. default: true
  38895. },
  38896. ]
  38897. ))
  38898. characterMakers.push(() => makeCharacter(
  38899. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38900. {
  38901. front: {
  38902. height: math.unit(15, "feet"),
  38903. name: "Front",
  38904. image: {
  38905. source: "./media/characters/marble/front.svg",
  38906. extra: 973/937,
  38907. bottom: 32/1005
  38908. }
  38909. },
  38910. },
  38911. [
  38912. {
  38913. name: "Normal",
  38914. height: math.unit(15, "feet"),
  38915. default: true
  38916. },
  38917. ]
  38918. ))
  38919. characterMakers.push(() => makeCharacter(
  38920. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38921. {
  38922. front: {
  38923. height: math.unit(3, "inches"),
  38924. name: "Front",
  38925. image: {
  38926. source: "./media/characters/powder/front.svg",
  38927. extra: 1504/1334,
  38928. bottom: 518/2022
  38929. }
  38930. },
  38931. },
  38932. [
  38933. {
  38934. name: "Normal",
  38935. height: math.unit(3, "inches"),
  38936. default: true
  38937. },
  38938. ]
  38939. ))
  38940. characterMakers.push(() => makeCharacter(
  38941. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38942. {
  38943. front: {
  38944. height: math.unit(4 + 5/12, "feet"),
  38945. name: "Front",
  38946. image: {
  38947. source: "./media/characters/joey-raccoon/front.svg",
  38948. extra: 1273/1197,
  38949. bottom: 0/1273
  38950. }
  38951. },
  38952. },
  38953. [
  38954. {
  38955. name: "Normal",
  38956. height: math.unit(4 + 5/12, "feet"),
  38957. default: true
  38958. },
  38959. ]
  38960. ))
  38961. characterMakers.push(() => makeCharacter(
  38962. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38963. {
  38964. front: {
  38965. height: math.unit(8 + 4/12, "feet"),
  38966. name: "Front",
  38967. image: {
  38968. source: "./media/characters/vick/front.svg",
  38969. extra: 2187/2118,
  38970. bottom: 47/2234
  38971. }
  38972. },
  38973. },
  38974. [
  38975. {
  38976. name: "Normal",
  38977. height: math.unit(8 + 4/12, "feet"),
  38978. default: true
  38979. },
  38980. ]
  38981. ))
  38982. characterMakers.push(() => makeCharacter(
  38983. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38984. {
  38985. front: {
  38986. height: math.unit(5 + 5/12, "feet"),
  38987. name: "Front",
  38988. image: {
  38989. source: "./media/characters/mitsy/front.svg",
  38990. extra: 1842/1695,
  38991. bottom: 0/1842
  38992. }
  38993. },
  38994. },
  38995. [
  38996. {
  38997. name: "Normal",
  38998. height: math.unit(5 + 5/12, "feet"),
  38999. default: true
  39000. },
  39001. ]
  39002. ))
  39003. characterMakers.push(() => makeCharacter(
  39004. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  39005. {
  39006. front: {
  39007. height: math.unit(6 + 3/12, "feet"),
  39008. name: "Front",
  39009. image: {
  39010. source: "./media/characters/silvy/front.svg",
  39011. extra: 1995/1836,
  39012. bottom: 225/2220
  39013. }
  39014. },
  39015. },
  39016. [
  39017. {
  39018. name: "Normal",
  39019. height: math.unit(6 + 3/12, "feet"),
  39020. default: true
  39021. },
  39022. ]
  39023. ))
  39024. characterMakers.push(() => makeCharacter(
  39025. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  39026. {
  39027. front: {
  39028. height: math.unit(3 + 8/12, "feet"),
  39029. name: "Front",
  39030. image: {
  39031. source: "./media/characters/rodney/front.svg",
  39032. extra: 1956/1747,
  39033. bottom: 31/1987
  39034. }
  39035. },
  39036. frontDressed: {
  39037. height: math.unit(2.9, "feet"),
  39038. name: "Front (Dressed)",
  39039. image: {
  39040. source: "./media/characters/rodney/front-dressed.svg",
  39041. extra: 1382/1241,
  39042. bottom: 385/1767
  39043. }
  39044. },
  39045. },
  39046. [
  39047. {
  39048. name: "Normal",
  39049. height: math.unit(3 + 8/12, "feet"),
  39050. default: true
  39051. },
  39052. ]
  39053. ))
  39054. characterMakers.push(() => makeCharacter(
  39055. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  39056. {
  39057. front: {
  39058. height: math.unit(5 + 9/12, "feet"),
  39059. weight: math.unit(194, "lbs"),
  39060. name: "Front",
  39061. image: {
  39062. source: "./media/characters/zakail-sudekai/front.svg",
  39063. extra: 2696/2533,
  39064. bottom: 248/2944
  39065. }
  39066. },
  39067. maw: {
  39068. height: math.unit(1.35, "feet"),
  39069. name: "Maw",
  39070. image: {
  39071. source: "./media/characters/zakail-sudekai/maw.svg"
  39072. }
  39073. },
  39074. },
  39075. [
  39076. {
  39077. name: "Normal",
  39078. height: math.unit(5 + 9/12, "feet"),
  39079. default: true
  39080. },
  39081. ]
  39082. ))
  39083. characterMakers.push(() => makeCharacter(
  39084. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  39085. {
  39086. front: {
  39087. height: math.unit(8 + 4/12, "feet"),
  39088. weight: math.unit(1200, "lb"),
  39089. name: "Front",
  39090. image: {
  39091. source: "./media/characters/eleanor/front.svg",
  39092. extra: 1226/1192,
  39093. bottom: 52/1278
  39094. }
  39095. },
  39096. back: {
  39097. height: math.unit(8 + 4/12, "feet"),
  39098. weight: math.unit(1200, "lb"),
  39099. name: "Back",
  39100. image: {
  39101. source: "./media/characters/eleanor/back.svg",
  39102. extra: 1242/1184,
  39103. bottom: 60/1302
  39104. }
  39105. },
  39106. head: {
  39107. height: math.unit(2.62, "feet"),
  39108. name: "Head",
  39109. image: {
  39110. source: "./media/characters/eleanor/head.svg"
  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: "Tanya", species: ["shark"], tags: ["anthro"] },
  39124. {
  39125. front: {
  39126. height: math.unit(8 + 4/12, "feet"),
  39127. weight: math.unit(750, "lb"),
  39128. name: "Front",
  39129. image: {
  39130. source: "./media/characters/tanya/front.svg",
  39131. extra: 1749/1615,
  39132. bottom: 33/1782
  39133. }
  39134. },
  39135. },
  39136. [
  39137. {
  39138. name: "Normal",
  39139. height: math.unit(8 + 4/12, "feet"),
  39140. default: true
  39141. },
  39142. ]
  39143. ))
  39144. characterMakers.push(() => makeCharacter(
  39145. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  39146. {
  39147. front: {
  39148. height: math.unit(5, "feet"),
  39149. weight: math.unit(225, "lb"),
  39150. name: "Front",
  39151. image: {
  39152. source: "./media/characters/cindy/front.svg",
  39153. extra: 1320/1250,
  39154. bottom: 42/1362
  39155. }
  39156. },
  39157. frontDressed: {
  39158. height: math.unit(5, "feet"),
  39159. weight: math.unit(225, "lb"),
  39160. name: "Front (Dressed)",
  39161. image: {
  39162. source: "./media/characters/cindy/front-dressed.svg",
  39163. extra: 1320/1250,
  39164. bottom: 42/1362
  39165. }
  39166. },
  39167. back: {
  39168. height: math.unit(5, "feet"),
  39169. weight: math.unit(225, "lb"),
  39170. name: "Back",
  39171. image: {
  39172. source: "./media/characters/cindy/back.svg",
  39173. extra: 1384/1346,
  39174. bottom: 14/1398
  39175. }
  39176. },
  39177. },
  39178. [
  39179. {
  39180. name: "Normal",
  39181. height: math.unit(5, "feet"),
  39182. default: true
  39183. },
  39184. ]
  39185. ))
  39186. characterMakers.push(() => makeCharacter(
  39187. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39188. {
  39189. front: {
  39190. height: math.unit(6 + 9/12, "feet"),
  39191. weight: math.unit(440, "lb"),
  39192. name: "Front",
  39193. image: {
  39194. source: "./media/characters/wilbur-owen/front.svg",
  39195. extra: 1575/1448,
  39196. bottom: 72/1647
  39197. }
  39198. },
  39199. back: {
  39200. height: math.unit(6 + 9/12, "feet"),
  39201. weight: math.unit(440, "lb"),
  39202. name: "Back",
  39203. image: {
  39204. source: "./media/characters/wilbur-owen/back.svg",
  39205. extra: 1578/1445,
  39206. bottom: 36/1614
  39207. }
  39208. },
  39209. },
  39210. [
  39211. {
  39212. name: "Normal",
  39213. height: math.unit(6 + 9/12, "feet"),
  39214. default: true
  39215. },
  39216. ]
  39217. ))
  39218. characterMakers.push(() => makeCharacter(
  39219. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39220. {
  39221. front: {
  39222. height: math.unit(6 + 5/12, "feet"),
  39223. weight: math.unit(650, "lb"),
  39224. name: "Front",
  39225. image: {
  39226. source: "./media/characters/keegan/front.svg",
  39227. extra: 2387/2198,
  39228. bottom: 33/2420
  39229. }
  39230. },
  39231. side: {
  39232. height: math.unit(6 + 5/12, "feet"),
  39233. weight: math.unit(650, "lb"),
  39234. name: "Side",
  39235. image: {
  39236. source: "./media/characters/keegan/side.svg",
  39237. extra: 2390/2202,
  39238. bottom: 47/2437
  39239. }
  39240. },
  39241. back: {
  39242. height: math.unit(6 + 5/12, "feet"),
  39243. weight: math.unit(650, "lb"),
  39244. name: "Back",
  39245. image: {
  39246. source: "./media/characters/keegan/back.svg",
  39247. extra: 2418/2268,
  39248. bottom: 15/2433
  39249. }
  39250. },
  39251. frontSfw: {
  39252. height: math.unit(6 + 5/12, "feet"),
  39253. weight: math.unit(650, "lb"),
  39254. name: "Front (SFW)",
  39255. image: {
  39256. source: "./media/characters/keegan/front-sfw.svg",
  39257. extra: 2387/2198,
  39258. bottom: 33/2420
  39259. }
  39260. },
  39261. beans: {
  39262. height: math.unit(1.85, "feet"),
  39263. name: "Beans",
  39264. image: {
  39265. source: "./media/characters/keegan/beans.svg"
  39266. }
  39267. },
  39268. },
  39269. [
  39270. {
  39271. name: "Normal",
  39272. height: math.unit(6 + 5/12, "feet"),
  39273. default: true
  39274. },
  39275. ]
  39276. ))
  39277. characterMakers.push(() => makeCharacter(
  39278. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39279. {
  39280. front: {
  39281. height: math.unit(9, "feet"),
  39282. name: "Front",
  39283. image: {
  39284. source: "./media/characters/colton/front.svg",
  39285. extra: 1589/1326,
  39286. bottom: 139/1728
  39287. }
  39288. },
  39289. },
  39290. [
  39291. {
  39292. name: "Normal",
  39293. height: math.unit(9, "feet"),
  39294. default: true
  39295. },
  39296. ]
  39297. ))
  39298. characterMakers.push(() => makeCharacter(
  39299. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39300. {
  39301. front: {
  39302. height: math.unit(2 + 9/12, "feet"),
  39303. name: "Front",
  39304. image: {
  39305. source: "./media/characters/bora/front.svg",
  39306. extra: 1265/1250,
  39307. bottom: 24/1289
  39308. }
  39309. },
  39310. },
  39311. [
  39312. {
  39313. name: "Normal",
  39314. height: math.unit(2 + 9/12, "feet"),
  39315. default: true
  39316. },
  39317. ]
  39318. ))
  39319. characterMakers.push(() => makeCharacter(
  39320. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39321. {
  39322. front: {
  39323. height: math.unit(8, "feet"),
  39324. name: "Front",
  39325. image: {
  39326. source: "./media/characters/myu-myu/front.svg",
  39327. extra: 1949/1857,
  39328. bottom: 90/2039
  39329. }
  39330. },
  39331. },
  39332. [
  39333. {
  39334. name: "Normal",
  39335. height: math.unit(8, "feet"),
  39336. default: true
  39337. },
  39338. {
  39339. name: "Big",
  39340. height: math.unit(15, "feet")
  39341. },
  39342. {
  39343. name: "BIG",
  39344. height: math.unit(25, "feet")
  39345. },
  39346. ]
  39347. ))
  39348. characterMakers.push(() => makeCharacter(
  39349. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39350. {
  39351. side: {
  39352. height: math.unit(7 + 5/12, "feet"),
  39353. weight: math.unit(2800, "lb"),
  39354. name: "Side",
  39355. image: {
  39356. source: "./media/characters/haloren/side.svg",
  39357. extra: 1793/409,
  39358. bottom: 59/1852
  39359. }
  39360. },
  39361. frontPaw: {
  39362. height: math.unit(2.36, "feet"),
  39363. name: "Front paw",
  39364. image: {
  39365. source: "./media/characters/haloren/front-paw.svg"
  39366. }
  39367. },
  39368. hindPaw: {
  39369. height: math.unit(3.18, "feet"),
  39370. name: "Hind paw",
  39371. image: {
  39372. source: "./media/characters/haloren/hind-paw.svg"
  39373. }
  39374. },
  39375. maw: {
  39376. height: math.unit(5.05, "feet"),
  39377. name: "Maw",
  39378. image: {
  39379. source: "./media/characters/haloren/maw.svg"
  39380. }
  39381. },
  39382. dick: {
  39383. height: math.unit(2.90, "feet"),
  39384. name: "Dick",
  39385. image: {
  39386. source: "./media/characters/haloren/dick.svg"
  39387. }
  39388. },
  39389. },
  39390. [
  39391. {
  39392. name: "Normal",
  39393. height: math.unit(7 + 5/12, "feet"),
  39394. default: true
  39395. },
  39396. {
  39397. name: "Enhanced",
  39398. height: math.unit(14 + 3/12, "feet")
  39399. },
  39400. ]
  39401. ))
  39402. characterMakers.push(() => makeCharacter(
  39403. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39404. {
  39405. front: {
  39406. height: math.unit(171, "cm"),
  39407. name: "Front",
  39408. image: {
  39409. source: "./media/characters/kimmy/front.svg",
  39410. extra: 1491/1435,
  39411. bottom: 53/1544
  39412. }
  39413. },
  39414. },
  39415. [
  39416. {
  39417. name: "Small",
  39418. height: math.unit(9, "cm")
  39419. },
  39420. {
  39421. name: "Normal",
  39422. height: math.unit(171, "cm"),
  39423. default: true
  39424. },
  39425. ]
  39426. ))
  39427. characterMakers.push(() => makeCharacter(
  39428. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39429. {
  39430. front: {
  39431. height: math.unit(8, "feet"),
  39432. weight: math.unit(300, "lb"),
  39433. name: "Front",
  39434. image: {
  39435. source: "./media/characters/galeboomer/front.svg",
  39436. extra: 4651/4415,
  39437. bottom: 162/4813
  39438. }
  39439. },
  39440. back: {
  39441. height: math.unit(8, "feet"),
  39442. weight: math.unit(300, "lb"),
  39443. name: "Back",
  39444. image: {
  39445. source: "./media/characters/galeboomer/back.svg",
  39446. extra: 4544/4314,
  39447. bottom: 16/4560
  39448. }
  39449. },
  39450. frontAlt: {
  39451. height: math.unit(8, "feet"),
  39452. weight: math.unit(300, "lb"),
  39453. name: "Front (Alt)",
  39454. image: {
  39455. source: "./media/characters/galeboomer/front-alt.svg",
  39456. extra: 4458/4228,
  39457. bottom: 68/4526
  39458. }
  39459. },
  39460. maw: {
  39461. height: math.unit(1.2, "feet"),
  39462. name: "Maw",
  39463. image: {
  39464. source: "./media/characters/galeboomer/maw.svg"
  39465. }
  39466. },
  39467. },
  39468. [
  39469. {
  39470. name: "Normal",
  39471. height: math.unit(8, "feet"),
  39472. default: true
  39473. },
  39474. ]
  39475. ))
  39476. characterMakers.push(() => makeCharacter(
  39477. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39478. {
  39479. front: {
  39480. height: math.unit(5 + 9/12, "feet"),
  39481. weight: math.unit(120, "lb"),
  39482. name: "Front",
  39483. image: {
  39484. source: "./media/characters/chyr/front.svg",
  39485. extra: 1323/1254,
  39486. bottom: 63/1386
  39487. }
  39488. },
  39489. back: {
  39490. height: math.unit(5 + 9/12, "feet"),
  39491. weight: math.unit(120, "lb"),
  39492. name: "Back",
  39493. image: {
  39494. source: "./media/characters/chyr/back.svg",
  39495. extra: 1323/1252,
  39496. bottom: 48/1371
  39497. }
  39498. },
  39499. },
  39500. [
  39501. {
  39502. name: "Normal",
  39503. height: math.unit(5 + 9/12, "feet"),
  39504. default: true
  39505. },
  39506. ]
  39507. ))
  39508. characterMakers.push(() => makeCharacter(
  39509. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39510. {
  39511. front: {
  39512. height: math.unit(7, "feet"),
  39513. weight: math.unit(310, "lb"),
  39514. name: "Front",
  39515. image: {
  39516. source: "./media/characters/solarus/front.svg",
  39517. extra: 2415/2021,
  39518. bottom: 103/2518
  39519. }
  39520. },
  39521. back: {
  39522. height: math.unit(7, "feet"),
  39523. weight: math.unit(310, "lb"),
  39524. name: "Back",
  39525. image: {
  39526. source: "./media/characters/solarus/back.svg",
  39527. extra: 2463/2089,
  39528. bottom: 79/2542
  39529. }
  39530. },
  39531. },
  39532. [
  39533. {
  39534. name: "Normal",
  39535. height: math.unit(7, "feet"),
  39536. default: true
  39537. },
  39538. ]
  39539. ))
  39540. characterMakers.push(() => makeCharacter(
  39541. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39542. {
  39543. front: {
  39544. height: math.unit(16, "feet"),
  39545. name: "Front",
  39546. image: {
  39547. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39548. extra: 1844/1780,
  39549. bottom: 58/1902
  39550. }
  39551. },
  39552. winterCoat: {
  39553. height: math.unit(16, "feet"),
  39554. name: "Winter Coat",
  39555. image: {
  39556. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39557. extra: 1807/1775,
  39558. bottom: 69/1876
  39559. }
  39560. },
  39561. },
  39562. [
  39563. {
  39564. name: "Normal",
  39565. height: math.unit(16, "feet"),
  39566. default: true
  39567. },
  39568. {
  39569. name: "Chicago Size",
  39570. height: math.unit(560, "feet")
  39571. },
  39572. ]
  39573. ))
  39574. characterMakers.push(() => makeCharacter(
  39575. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39576. {
  39577. front: {
  39578. height: math.unit(11 + 6/12, "feet"),
  39579. weight: math.unit(1366, "lb"),
  39580. name: "Front",
  39581. image: {
  39582. source: "./media/characters/lexor/front.svg",
  39583. extra: 1560/1481,
  39584. bottom: 211/1771
  39585. }
  39586. },
  39587. back: {
  39588. height: math.unit(11 + 6/12, "feet"),
  39589. weight: math.unit(1366, "lb"),
  39590. name: "Back",
  39591. image: {
  39592. source: "./media/characters/lexor/back.svg",
  39593. extra: 1614/1533,
  39594. bottom: 76/1690
  39595. }
  39596. },
  39597. maw: {
  39598. height: math.unit(3, "feet"),
  39599. name: "Maw",
  39600. image: {
  39601. source: "./media/characters/lexor/maw.svg"
  39602. }
  39603. },
  39604. dick: {
  39605. height: math.unit(2.59, "feet"),
  39606. name: "Dick",
  39607. image: {
  39608. source: "./media/characters/lexor/dick.svg"
  39609. }
  39610. },
  39611. },
  39612. [
  39613. {
  39614. name: "Normal",
  39615. height: math.unit(11 + 6/12, "feet"),
  39616. default: true
  39617. },
  39618. ]
  39619. ))
  39620. characterMakers.push(() => makeCharacter(
  39621. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39622. {
  39623. front: {
  39624. height: math.unit(5 + 8/12, "feet"),
  39625. name: "Front",
  39626. image: {
  39627. source: "./media/characters/magnum/front.svg",
  39628. extra: 942/855,
  39629. bottom: 26/968
  39630. }
  39631. },
  39632. },
  39633. [
  39634. {
  39635. name: "Normal",
  39636. height: math.unit(5 + 8/12, "feet"),
  39637. default: true
  39638. },
  39639. ]
  39640. ))
  39641. characterMakers.push(() => makeCharacter(
  39642. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39643. {
  39644. front: {
  39645. height: math.unit(18 + 4/12, "feet"),
  39646. weight: math.unit(1500, "kg"),
  39647. name: "Front",
  39648. image: {
  39649. source: "./media/characters/solas-sharpsman/front.svg",
  39650. extra: 1698/1589,
  39651. bottom: 0/1698
  39652. }
  39653. },
  39654. },
  39655. [
  39656. {
  39657. name: "Normal",
  39658. height: math.unit(18 + 4/12, "feet"),
  39659. default: true
  39660. },
  39661. ]
  39662. ))
  39663. characterMakers.push(() => makeCharacter(
  39664. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39665. {
  39666. front: {
  39667. height: math.unit(5 + 5/12, "feet"),
  39668. weight: math.unit(180, "lb"),
  39669. name: "Front",
  39670. image: {
  39671. source: "./media/characters/october/front.svg",
  39672. extra: 1800/1650,
  39673. bottom: 0/1800
  39674. }
  39675. },
  39676. frontNsfw: {
  39677. height: math.unit(5 + 5/12, "feet"),
  39678. weight: math.unit(180, "lb"),
  39679. name: "Front (NSFW)",
  39680. image: {
  39681. source: "./media/characters/october/front-nsfw.svg",
  39682. extra: 1392/1307,
  39683. bottom: 42/1434
  39684. }
  39685. },
  39686. },
  39687. [
  39688. {
  39689. name: "Normal",
  39690. height: math.unit(5 + 5/12, "feet"),
  39691. default: true
  39692. },
  39693. ]
  39694. ))
  39695. characterMakers.push(() => makeCharacter(
  39696. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39697. {
  39698. front: {
  39699. height: math.unit(8 + 6/12, "feet"),
  39700. name: "Front",
  39701. image: {
  39702. source: "./media/characters/essynkardi/front.svg",
  39703. extra: 1541/1457,
  39704. bottom: 47/1588
  39705. }
  39706. },
  39707. },
  39708. [
  39709. {
  39710. name: "Normal",
  39711. height: math.unit(8 + 6/12, "feet"),
  39712. default: true
  39713. },
  39714. ]
  39715. ))
  39716. characterMakers.push(() => makeCharacter(
  39717. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39718. {
  39719. front: {
  39720. height: math.unit(6 + 6/12, "feet"),
  39721. weight: math.unit(7, "lb"),
  39722. name: "Front",
  39723. image: {
  39724. source: "./media/characters/icky/front.svg",
  39725. extra: 813/782,
  39726. bottom: 66/879
  39727. }
  39728. },
  39729. back: {
  39730. height: math.unit(6 + 6/12, "feet"),
  39731. weight: math.unit(7, "lb"),
  39732. name: "Back",
  39733. image: {
  39734. source: "./media/characters/icky/back.svg",
  39735. extra: 754/735,
  39736. bottom: 56/810
  39737. }
  39738. },
  39739. },
  39740. [
  39741. {
  39742. name: "Normal",
  39743. height: math.unit(6 + 6/12, "feet"),
  39744. default: true
  39745. },
  39746. ]
  39747. ))
  39748. characterMakers.push(() => makeCharacter(
  39749. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39750. {
  39751. front: {
  39752. height: math.unit(15, "feet"),
  39753. name: "Front",
  39754. image: {
  39755. source: "./media/characters/rojas/front.svg",
  39756. extra: 1462/1408,
  39757. bottom: 95/1557
  39758. }
  39759. },
  39760. back: {
  39761. height: math.unit(15, "feet"),
  39762. name: "Back",
  39763. image: {
  39764. source: "./media/characters/rojas/back.svg",
  39765. extra: 1023/954,
  39766. bottom: 28/1051
  39767. }
  39768. },
  39769. },
  39770. [
  39771. {
  39772. name: "Normal",
  39773. height: math.unit(15, "feet"),
  39774. default: true
  39775. },
  39776. ]
  39777. ))
  39778. characterMakers.push(() => makeCharacter(
  39779. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39780. {
  39781. frontHuman: {
  39782. height: math.unit(5 + 7/12, "feet"),
  39783. name: "Front (Human)",
  39784. image: {
  39785. source: "./media/characters/alek-dryagan/front-human.svg",
  39786. extra: 1687/1667,
  39787. bottom: 69/1756
  39788. }
  39789. },
  39790. backHuman: {
  39791. height: math.unit(5 + 7/12, "feet"),
  39792. name: "Back (Human)",
  39793. image: {
  39794. source: "./media/characters/alek-dryagan/back-human.svg",
  39795. extra: 1670/1649,
  39796. bottom: 65/1735
  39797. }
  39798. },
  39799. frontDemi: {
  39800. height: math.unit(65, "feet"),
  39801. name: "Front (Demi)",
  39802. image: {
  39803. source: "./media/characters/alek-dryagan/front-demi.svg",
  39804. extra: 1669/1642,
  39805. bottom: 49/1718
  39806. }
  39807. },
  39808. backDemi: {
  39809. height: math.unit(65, "feet"),
  39810. name: "Back (Demi)",
  39811. image: {
  39812. source: "./media/characters/alek-dryagan/back-demi.svg",
  39813. extra: 1658/1637,
  39814. bottom: 40/1698
  39815. }
  39816. },
  39817. mawHuman: {
  39818. height: math.unit(0.3, "feet"),
  39819. name: "Maw (Human)",
  39820. image: {
  39821. source: "./media/characters/alek-dryagan/maw-human.svg"
  39822. }
  39823. },
  39824. mawDemi: {
  39825. height: math.unit(3.8, "feet"),
  39826. name: "Maw (Demi)",
  39827. image: {
  39828. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39829. }
  39830. },
  39831. },
  39832. [
  39833. {
  39834. name: "Normal",
  39835. height: math.unit(5 + 7/12, "feet"),
  39836. default: true
  39837. },
  39838. ]
  39839. ))
  39840. characterMakers.push(() => makeCharacter(
  39841. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39842. {
  39843. frontHuman: {
  39844. height: math.unit(5 + 2/12, "feet"),
  39845. name: "Front (Human)",
  39846. image: {
  39847. source: "./media/characters/gen/front-human.svg",
  39848. extra: 1627/1538,
  39849. bottom: 71/1698
  39850. }
  39851. },
  39852. backHuman: {
  39853. height: math.unit(5 + 2/12, "feet"),
  39854. name: "Back (Human)",
  39855. image: {
  39856. source: "./media/characters/gen/back-human.svg",
  39857. extra: 1638/1548,
  39858. bottom: 69/1707
  39859. }
  39860. },
  39861. frontDemi: {
  39862. height: math.unit(5 + 2/12, "feet"),
  39863. name: "Front (Demi)",
  39864. image: {
  39865. source: "./media/characters/gen/front-demi.svg",
  39866. extra: 1627/1538,
  39867. bottom: 71/1698
  39868. }
  39869. },
  39870. backDemi: {
  39871. height: math.unit(5 + 2/12, "feet"),
  39872. name: "Back (Demi)",
  39873. image: {
  39874. source: "./media/characters/gen/back-demi.svg",
  39875. extra: 1638/1548,
  39876. bottom: 69/1707
  39877. }
  39878. },
  39879. },
  39880. [
  39881. {
  39882. name: "Normal",
  39883. height: math.unit(5 + 2/12, "feet"),
  39884. default: true
  39885. },
  39886. ]
  39887. ))
  39888. characterMakers.push(() => makeCharacter(
  39889. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39890. {
  39891. frontImp: {
  39892. height: math.unit(1 + 11/12, "feet"),
  39893. name: "Front (Imp)",
  39894. image: {
  39895. source: "./media/characters/max-kobold/front-imp.svg",
  39896. extra: 1238/1134,
  39897. bottom: 81/1319
  39898. }
  39899. },
  39900. backImp: {
  39901. height: math.unit(1 + 11/12, "feet"),
  39902. name: "Back (Imp)",
  39903. image: {
  39904. source: "./media/characters/max-kobold/back-imp.svg",
  39905. extra: 1334/1175,
  39906. bottom: 34/1368
  39907. }
  39908. },
  39909. frontDemi: {
  39910. height: math.unit(5 + 9/12, "feet"),
  39911. name: "Front (Demi)",
  39912. image: {
  39913. source: "./media/characters/max-kobold/front-demi.svg",
  39914. extra: 1715/1685,
  39915. bottom: 54/1769
  39916. }
  39917. },
  39918. backDemi: {
  39919. height: math.unit(5 + 9/12, "feet"),
  39920. name: "Back (Demi)",
  39921. image: {
  39922. source: "./media/characters/max-kobold/back-demi.svg",
  39923. extra: 1752/1729,
  39924. bottom: 41/1793
  39925. }
  39926. },
  39927. handImp: {
  39928. height: math.unit(0.45, "feet"),
  39929. name: "Hand (Imp)",
  39930. image: {
  39931. source: "./media/characters/max-kobold/hand.svg"
  39932. }
  39933. },
  39934. pawImp: {
  39935. height: math.unit(0.46, "feet"),
  39936. name: "Paw (Imp)",
  39937. image: {
  39938. source: "./media/characters/max-kobold/paw.svg"
  39939. }
  39940. },
  39941. handDemi: {
  39942. height: math.unit(0.80, "feet"),
  39943. name: "Hand (Demi)",
  39944. image: {
  39945. source: "./media/characters/max-kobold/hand.svg"
  39946. }
  39947. },
  39948. pawDemi: {
  39949. height: math.unit(1.1, "feet"),
  39950. name: "Paw (Demi)",
  39951. image: {
  39952. source: "./media/characters/max-kobold/paw.svg"
  39953. }
  39954. },
  39955. headImp: {
  39956. height: math.unit(1.33, "feet"),
  39957. name: "Head (Imp)",
  39958. image: {
  39959. source: "./media/characters/max-kobold/head-imp.svg"
  39960. }
  39961. },
  39962. mawImp: {
  39963. height: math.unit(0.75, "feet"),
  39964. name: "Maw (Imp)",
  39965. image: {
  39966. source: "./media/characters/max-kobold/maw-imp.svg"
  39967. }
  39968. },
  39969. mawDemi: {
  39970. height: math.unit(0.42, "feet"),
  39971. name: "Maw (Demi)",
  39972. image: {
  39973. source: "./media/characters/max-kobold/maw-demi.svg"
  39974. }
  39975. },
  39976. },
  39977. [
  39978. {
  39979. name: "Normal",
  39980. height: math.unit(1 + 11/12, "feet"),
  39981. default: true
  39982. },
  39983. ]
  39984. ))
  39985. characterMakers.push(() => makeCharacter(
  39986. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39987. {
  39988. front: {
  39989. height: math.unit(7 + 5/12, "feet"),
  39990. name: "Front",
  39991. image: {
  39992. source: "./media/characters/carbon/front.svg",
  39993. extra: 1754/1689,
  39994. bottom: 65/1819
  39995. }
  39996. },
  39997. back: {
  39998. height: math.unit(7 + 5/12, "feet"),
  39999. name: "Back",
  40000. image: {
  40001. source: "./media/characters/carbon/back.svg",
  40002. extra: 1762/1695,
  40003. bottom: 24/1786
  40004. }
  40005. },
  40006. frontGigantamax: {
  40007. height: math.unit(150, "feet"),
  40008. name: "Front (Gigantamax)",
  40009. image: {
  40010. source: "./media/characters/carbon/front-gigantamax.svg",
  40011. extra: 1826/1669,
  40012. bottom: 59/1885
  40013. }
  40014. },
  40015. backGigantamax: {
  40016. height: math.unit(150, "feet"),
  40017. name: "Back (Gigantamax)",
  40018. image: {
  40019. source: "./media/characters/carbon/back-gigantamax.svg",
  40020. extra: 1796/1653,
  40021. bottom: 53/1849
  40022. }
  40023. },
  40024. maw: {
  40025. height: math.unit(0.48, "feet"),
  40026. name: "Maw",
  40027. image: {
  40028. source: "./media/characters/carbon/maw.svg"
  40029. }
  40030. },
  40031. mawGigantamax: {
  40032. height: math.unit(7.5, "feet"),
  40033. name: "Maw (Gigantamax)",
  40034. image: {
  40035. source: "./media/characters/carbon/maw-gigantamax.svg"
  40036. }
  40037. },
  40038. },
  40039. [
  40040. {
  40041. name: "Normal",
  40042. height: math.unit(7 + 5/12, "feet"),
  40043. default: true
  40044. },
  40045. ]
  40046. ))
  40047. characterMakers.push(() => makeCharacter(
  40048. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  40049. {
  40050. front: {
  40051. height: math.unit(6, "feet"),
  40052. name: "Front",
  40053. image: {
  40054. source: "./media/characters/maverick/front.svg",
  40055. extra: 1672/1661,
  40056. bottom: 85/1757
  40057. }
  40058. },
  40059. back: {
  40060. height: math.unit(6, "feet"),
  40061. name: "Back",
  40062. image: {
  40063. source: "./media/characters/maverick/back.svg",
  40064. extra: 1642/1631,
  40065. bottom: 38/1680
  40066. }
  40067. },
  40068. },
  40069. [
  40070. {
  40071. name: "Normal",
  40072. height: math.unit(6, "feet"),
  40073. default: true
  40074. },
  40075. ]
  40076. ))
  40077. characterMakers.push(() => makeCharacter(
  40078. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  40079. {
  40080. front: {
  40081. height: math.unit(15, "feet"),
  40082. weight: math.unit(615, "lb"),
  40083. name: "Front",
  40084. image: {
  40085. source: "./media/characters/grockle/front.svg",
  40086. extra: 1535/1427,
  40087. bottom: 56/1591
  40088. }
  40089. },
  40090. },
  40091. [
  40092. {
  40093. name: "Normal",
  40094. height: math.unit(15, "feet"),
  40095. default: true
  40096. },
  40097. {
  40098. name: "Large",
  40099. height: math.unit(150, "feet")
  40100. },
  40101. {
  40102. name: "Macro",
  40103. height: math.unit(1876, "feet")
  40104. },
  40105. {
  40106. name: "Mega Macro",
  40107. height: math.unit(121940, "feet")
  40108. },
  40109. {
  40110. name: "Giga Macro",
  40111. height: math.unit(750, "km")
  40112. },
  40113. {
  40114. name: "Tera Macro",
  40115. height: math.unit(750000, "km")
  40116. },
  40117. {
  40118. name: "Galactic",
  40119. height: math.unit(1.4e5, "km")
  40120. },
  40121. {
  40122. name: "Godlike",
  40123. height: math.unit(9.8e280, "galaxies")
  40124. },
  40125. ]
  40126. ))
  40127. characterMakers.push(() => makeCharacter(
  40128. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  40129. {
  40130. front: {
  40131. height: math.unit(11, "meters"),
  40132. weight: math.unit(20, "tonnes"),
  40133. name: "Front",
  40134. image: {
  40135. source: "./media/characters/alistair/front.svg",
  40136. extra: 1265/1009,
  40137. bottom: 93/1358
  40138. }
  40139. },
  40140. },
  40141. [
  40142. {
  40143. name: "Normal",
  40144. height: math.unit(11, "meters"),
  40145. default: true
  40146. },
  40147. ]
  40148. ))
  40149. characterMakers.push(() => makeCharacter(
  40150. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  40151. {
  40152. front: {
  40153. height: math.unit(5 + 8/12, "feet"),
  40154. name: "Front",
  40155. image: {
  40156. source: "./media/characters/haruka/front.svg",
  40157. extra: 2012/1952,
  40158. bottom: 0/2012
  40159. }
  40160. },
  40161. },
  40162. [
  40163. {
  40164. name: "Normal",
  40165. height: math.unit(5 + 8/12, "feet"),
  40166. default: true
  40167. },
  40168. ]
  40169. ))
  40170. characterMakers.push(() => makeCharacter(
  40171. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  40172. {
  40173. back: {
  40174. height: math.unit(9, "feet"),
  40175. name: "Back",
  40176. image: {
  40177. source: "./media/characters/vivian-sylveon/back.svg",
  40178. extra: 1853/1714,
  40179. bottom: 0/1853
  40180. }
  40181. },
  40182. hyper: {
  40183. height: math.unit(5.58, "feet"),
  40184. name: "Hyper",
  40185. preyCapacity: math.unit(2.80616218797, "m^3"),
  40186. image: {
  40187. source: "./media/characters/vivian-sylveon/hyper.svg",
  40188. extra: 999/676,
  40189. bottom: 697/1696
  40190. },
  40191. },
  40192. paw: {
  40193. height: math.unit(1.8, "feet"),
  40194. name: "Paw",
  40195. image: {
  40196. source: "./media/characters/vivian-sylveon/paw.svg"
  40197. }
  40198. },
  40199. danger: {
  40200. height: math.unit(7.5, "feet"),
  40201. name: "DANGER",
  40202. image: {
  40203. source: "./media/characters/vivian-sylveon/danger.svg"
  40204. }
  40205. },
  40206. },
  40207. [
  40208. {
  40209. name: "Normal",
  40210. height: math.unit(9, "feet"),
  40211. default: true
  40212. },
  40213. {
  40214. name: "Macro",
  40215. height: math.unit(500, "feet")
  40216. },
  40217. {
  40218. name: "Megamacro",
  40219. height: math.unit(600, "miles")
  40220. },
  40221. {
  40222. name: "Gigamacro",
  40223. height: math.unit(30000, "miles")
  40224. },
  40225. ]
  40226. ))
  40227. characterMakers.push(() => makeCharacter(
  40228. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40229. {
  40230. anthro: {
  40231. height: math.unit(5 + 10/12, "feet"),
  40232. weight: math.unit(100, "lb"),
  40233. name: "Anthro",
  40234. image: {
  40235. source: "./media/characters/daiki/anthro.svg",
  40236. extra: 1115/1027,
  40237. bottom: 69/1184
  40238. }
  40239. },
  40240. feral: {
  40241. height: math.unit(200, "feet"),
  40242. name: "Feral",
  40243. image: {
  40244. source: "./media/characters/daiki/feral.svg",
  40245. extra: 1256/313,
  40246. bottom: 39/1295
  40247. }
  40248. },
  40249. feralHead: {
  40250. height: math.unit(171, "feet"),
  40251. name: "Feral Head",
  40252. image: {
  40253. source: "./media/characters/daiki/feral-head.svg"
  40254. }
  40255. },
  40256. manaDragon: {
  40257. height: math.unit(170, "meters"),
  40258. name: "Mana-dragon",
  40259. image: {
  40260. source: "./media/characters/daiki/mana-dragon.svg",
  40261. extra: 763/420,
  40262. bottom: 97/860
  40263. }
  40264. },
  40265. },
  40266. [
  40267. {
  40268. name: "Normal",
  40269. height: math.unit(5 + 10/12, "feet"),
  40270. default: true
  40271. },
  40272. ]
  40273. ))
  40274. characterMakers.push(() => makeCharacter(
  40275. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40276. {
  40277. fullyEquippedFront: {
  40278. height: math.unit(3 + 1/12, "feet"),
  40279. weight: math.unit(24, "lb"),
  40280. name: "Fully Equipped (Front)",
  40281. image: {
  40282. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40283. extra: 687/605,
  40284. bottom: 18/705
  40285. }
  40286. },
  40287. fullyEquippedBack: {
  40288. height: math.unit(3 + 1/12, "feet"),
  40289. weight: math.unit(24, "lb"),
  40290. name: "Fully Equipped (Back)",
  40291. image: {
  40292. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40293. extra: 689/590,
  40294. bottom: 18/707
  40295. }
  40296. },
  40297. dailyWear: {
  40298. height: math.unit(3 + 1/12, "feet"),
  40299. weight: math.unit(24, "lb"),
  40300. name: "Daily Wear",
  40301. image: {
  40302. source: "./media/characters/tea-spot/daily-wear.svg",
  40303. extra: 701/620,
  40304. bottom: 21/722
  40305. }
  40306. },
  40307. maidWork: {
  40308. height: math.unit(3 + 1/12, "feet"),
  40309. weight: math.unit(24, "lb"),
  40310. name: "Maid Work",
  40311. image: {
  40312. source: "./media/characters/tea-spot/maid-work.svg",
  40313. extra: 693/609,
  40314. bottom: 15/708
  40315. }
  40316. },
  40317. },
  40318. [
  40319. {
  40320. name: "Normal",
  40321. height: math.unit(3 + 1/12, "feet"),
  40322. default: true
  40323. },
  40324. ]
  40325. ))
  40326. characterMakers.push(() => makeCharacter(
  40327. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40328. {
  40329. front: {
  40330. height: math.unit(175, "cm"),
  40331. weight: math.unit(75, "kg"),
  40332. name: "Front",
  40333. image: {
  40334. source: "./media/characters/chee/front.svg",
  40335. extra: 1796/1740,
  40336. bottom: 40/1836
  40337. }
  40338. },
  40339. },
  40340. [
  40341. {
  40342. name: "Micro-Micro",
  40343. height: math.unit(1, "nm")
  40344. },
  40345. {
  40346. name: "Micro-erst",
  40347. height: math.unit(1, "micrometer")
  40348. },
  40349. {
  40350. name: "Micro-er",
  40351. height: math.unit(1, "cm")
  40352. },
  40353. {
  40354. name: "Normal",
  40355. height: math.unit(175, "cm"),
  40356. default: true
  40357. },
  40358. {
  40359. name: "Macro",
  40360. height: math.unit(100, "m")
  40361. },
  40362. {
  40363. name: "Macro-er",
  40364. height: math.unit(1, "km")
  40365. },
  40366. {
  40367. name: "Macro-erst",
  40368. height: math.unit(10, "km")
  40369. },
  40370. {
  40371. name: "Macro-Macro",
  40372. height: math.unit(100, "km")
  40373. },
  40374. ]
  40375. ))
  40376. characterMakers.push(() => makeCharacter(
  40377. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40378. {
  40379. front: {
  40380. height: math.unit(11 + 9/12, "feet"),
  40381. weight: math.unit(935, "lb"),
  40382. name: "Front",
  40383. image: {
  40384. source: "./media/characters/kingsley/front.svg",
  40385. extra: 1803/1674,
  40386. bottom: 127/1930
  40387. }
  40388. },
  40389. frontNude: {
  40390. height: math.unit(11 + 9/12, "feet"),
  40391. weight: math.unit(935, "lb"),
  40392. name: "Front (Nude)",
  40393. image: {
  40394. source: "./media/characters/kingsley/front-nude.svg",
  40395. extra: 1803/1674,
  40396. bottom: 127/1930
  40397. }
  40398. },
  40399. },
  40400. [
  40401. {
  40402. name: "Normal",
  40403. height: math.unit(11 + 9/12, "feet"),
  40404. default: true
  40405. },
  40406. ]
  40407. ))
  40408. characterMakers.push(() => makeCharacter(
  40409. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40410. {
  40411. side: {
  40412. height: math.unit(9, "feet"),
  40413. name: "Side",
  40414. image: {
  40415. source: "./media/characters/rymel/side.svg",
  40416. extra: 792/469,
  40417. bottom: 121/913
  40418. }
  40419. },
  40420. maw: {
  40421. height: math.unit(2.4, "meters"),
  40422. name: "Maw",
  40423. image: {
  40424. source: "./media/characters/rymel/maw.svg"
  40425. }
  40426. },
  40427. },
  40428. [
  40429. {
  40430. name: "House Drake",
  40431. height: math.unit(2, "feet")
  40432. },
  40433. {
  40434. name: "Reduced",
  40435. height: math.unit(4.5, "feet")
  40436. },
  40437. {
  40438. name: "Normal",
  40439. height: math.unit(9, "feet"),
  40440. default: true
  40441. },
  40442. ]
  40443. ))
  40444. characterMakers.push(() => makeCharacter(
  40445. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40446. {
  40447. front: {
  40448. height: math.unit(1.74, "meters"),
  40449. weight: math.unit(55, "kg"),
  40450. name: "Front",
  40451. image: {
  40452. source: "./media/characters/rubus/front.svg",
  40453. extra: 1894/1742,
  40454. bottom: 44/1938
  40455. }
  40456. },
  40457. },
  40458. [
  40459. {
  40460. name: "Normal",
  40461. height: math.unit(1.74, "meters"),
  40462. default: true
  40463. },
  40464. ]
  40465. ))
  40466. characterMakers.push(() => makeCharacter(
  40467. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40468. {
  40469. front: {
  40470. height: math.unit(5 + 2/12, "feet"),
  40471. weight: math.unit(112, "lb"),
  40472. name: "Front",
  40473. image: {
  40474. source: "./media/characters/cassie-kingston/front.svg",
  40475. extra: 1438/1390,
  40476. bottom: 47/1485
  40477. }
  40478. },
  40479. },
  40480. [
  40481. {
  40482. name: "Normal",
  40483. height: math.unit(5 + 2/12, "feet"),
  40484. default: true
  40485. },
  40486. {
  40487. name: "Macro",
  40488. height: math.unit(128, "feet")
  40489. },
  40490. {
  40491. name: "Megamacro",
  40492. height: math.unit(2.56, "miles")
  40493. },
  40494. ]
  40495. ))
  40496. characterMakers.push(() => makeCharacter(
  40497. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40498. {
  40499. front: {
  40500. height: math.unit(7, "feet"),
  40501. name: "Front",
  40502. image: {
  40503. source: "./media/characters/fox/front.svg",
  40504. extra: 1798/1703,
  40505. bottom: 55/1853
  40506. }
  40507. },
  40508. back: {
  40509. height: math.unit(7, "feet"),
  40510. name: "Back",
  40511. image: {
  40512. source: "./media/characters/fox/back.svg",
  40513. extra: 1748/1649,
  40514. bottom: 32/1780
  40515. }
  40516. },
  40517. head: {
  40518. height: math.unit(1.95, "feet"),
  40519. name: "Head",
  40520. image: {
  40521. source: "./media/characters/fox/head.svg"
  40522. }
  40523. },
  40524. dick: {
  40525. height: math.unit(1.33, "feet"),
  40526. name: "Dick",
  40527. image: {
  40528. source: "./media/characters/fox/dick.svg"
  40529. }
  40530. },
  40531. foot: {
  40532. height: math.unit(1, "feet"),
  40533. name: "Foot",
  40534. image: {
  40535. source: "./media/characters/fox/foot.svg"
  40536. }
  40537. },
  40538. paw: {
  40539. height: math.unit(0.92, "feet"),
  40540. name: "Paw",
  40541. image: {
  40542. source: "./media/characters/fox/paw.svg"
  40543. }
  40544. },
  40545. },
  40546. [
  40547. {
  40548. name: "Small",
  40549. height: math.unit(3, "inches")
  40550. },
  40551. {
  40552. name: "\"Realistic\"",
  40553. height: math.unit(7, "feet")
  40554. },
  40555. {
  40556. name: "Normal",
  40557. height: math.unit(150, "feet"),
  40558. default: true
  40559. },
  40560. {
  40561. name: "BIG",
  40562. height: math.unit(1200, "feet")
  40563. },
  40564. {
  40565. name: "👀",
  40566. height: math.unit(5, "miles")
  40567. },
  40568. {
  40569. name: "👀👀👀",
  40570. height: math.unit(64, "miles")
  40571. },
  40572. ]
  40573. ))
  40574. characterMakers.push(() => makeCharacter(
  40575. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40576. {
  40577. front: {
  40578. height: math.unit(625, "feet"),
  40579. name: "Front",
  40580. image: {
  40581. source: "./media/characters/asonja-rossa/front.svg",
  40582. extra: 1833/1686,
  40583. bottom: 24/1857
  40584. }
  40585. },
  40586. back: {
  40587. height: math.unit(625, "feet"),
  40588. name: "Back",
  40589. image: {
  40590. source: "./media/characters/asonja-rossa/back.svg",
  40591. extra: 1852/1753,
  40592. bottom: 26/1878
  40593. }
  40594. },
  40595. },
  40596. [
  40597. {
  40598. name: "Macro",
  40599. height: math.unit(625, "feet"),
  40600. default: true
  40601. },
  40602. ]
  40603. ))
  40604. characterMakers.push(() => makeCharacter(
  40605. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40606. {
  40607. side: {
  40608. height: math.unit(8, "feet"),
  40609. name: "Side",
  40610. image: {
  40611. source: "./media/characters/rezukii/side.svg",
  40612. extra: 979/542,
  40613. bottom: 87/1066
  40614. }
  40615. },
  40616. sitting: {
  40617. height: math.unit(14.6, "feet"),
  40618. name: "Sitting",
  40619. image: {
  40620. source: "./media/characters/rezukii/sitting.svg",
  40621. extra: 1023/813,
  40622. bottom: 45/1068
  40623. }
  40624. },
  40625. },
  40626. [
  40627. {
  40628. name: "Tiny",
  40629. height: math.unit(2, "feet")
  40630. },
  40631. {
  40632. name: "Smol",
  40633. height: math.unit(4, "feet")
  40634. },
  40635. {
  40636. name: "Normal",
  40637. height: math.unit(8, "feet"),
  40638. default: true
  40639. },
  40640. {
  40641. name: "Big",
  40642. height: math.unit(12, "feet")
  40643. },
  40644. {
  40645. name: "Macro",
  40646. height: math.unit(30, "feet")
  40647. },
  40648. ]
  40649. ))
  40650. characterMakers.push(() => makeCharacter(
  40651. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40652. {
  40653. front: {
  40654. height: math.unit(14, "feet"),
  40655. weight: math.unit(9.5, "tonnes"),
  40656. name: "Front",
  40657. image: {
  40658. source: "./media/characters/dawnheart/front.svg",
  40659. extra: 2792/2675,
  40660. bottom: 64/2856
  40661. }
  40662. },
  40663. },
  40664. [
  40665. {
  40666. name: "Normal",
  40667. height: math.unit(14, "feet"),
  40668. default: true
  40669. },
  40670. ]
  40671. ))
  40672. characterMakers.push(() => makeCharacter(
  40673. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40674. {
  40675. front: {
  40676. height: math.unit(1.7, "m"),
  40677. name: "Front",
  40678. image: {
  40679. source: "./media/characters/gladi/front.svg",
  40680. extra: 1460/1362,
  40681. bottom: 19/1479
  40682. }
  40683. },
  40684. back: {
  40685. height: math.unit(1.7, "m"),
  40686. name: "Back",
  40687. image: {
  40688. source: "./media/characters/gladi/back.svg",
  40689. extra: 1459/1357,
  40690. bottom: 12/1471
  40691. }
  40692. },
  40693. feral: {
  40694. height: math.unit(2.05, "m"),
  40695. name: "Feral",
  40696. image: {
  40697. source: "./media/characters/gladi/feral.svg",
  40698. extra: 821/557,
  40699. bottom: 91/912
  40700. }
  40701. },
  40702. },
  40703. [
  40704. {
  40705. name: "Shortest",
  40706. height: math.unit(70, "cm")
  40707. },
  40708. {
  40709. name: "Normal",
  40710. height: math.unit(1.7, "m")
  40711. },
  40712. {
  40713. name: "Macro",
  40714. height: math.unit(10, "m"),
  40715. default: true
  40716. },
  40717. {
  40718. name: "Tallest",
  40719. height: math.unit(200, "m")
  40720. },
  40721. ]
  40722. ))
  40723. characterMakers.push(() => makeCharacter(
  40724. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40725. {
  40726. front: {
  40727. height: math.unit(5 + 7/12, "feet"),
  40728. weight: math.unit(2, "tons"),
  40729. name: "Front",
  40730. image: {
  40731. source: "./media/characters/erdno/front.svg",
  40732. extra: 1234/1129,
  40733. bottom: 35/1269
  40734. }
  40735. },
  40736. angled: {
  40737. height: math.unit(5 + 7/12, "feet"),
  40738. weight: math.unit(2, "tons"),
  40739. name: "Angled",
  40740. image: {
  40741. source: "./media/characters/erdno/angled.svg",
  40742. extra: 1185/1139,
  40743. bottom: 36/1221
  40744. }
  40745. },
  40746. side: {
  40747. height: math.unit(5 + 7/12, "feet"),
  40748. weight: math.unit(2, "tons"),
  40749. name: "Side",
  40750. image: {
  40751. source: "./media/characters/erdno/side.svg",
  40752. extra: 1191/1144,
  40753. bottom: 40/1231
  40754. }
  40755. },
  40756. back: {
  40757. height: math.unit(5 + 7/12, "feet"),
  40758. weight: math.unit(2, "tons"),
  40759. name: "Back",
  40760. image: {
  40761. source: "./media/characters/erdno/back.svg",
  40762. extra: 1202/1146,
  40763. bottom: 17/1219
  40764. }
  40765. },
  40766. frontNsfw: {
  40767. height: math.unit(5 + 7/12, "feet"),
  40768. weight: math.unit(2, "tons"),
  40769. name: "Front (NSFW)",
  40770. image: {
  40771. source: "./media/characters/erdno/front-nsfw.svg",
  40772. extra: 1234/1129,
  40773. bottom: 35/1269
  40774. }
  40775. },
  40776. angledNsfw: {
  40777. height: math.unit(5 + 7/12, "feet"),
  40778. weight: math.unit(2, "tons"),
  40779. name: "Angled (NSFW)",
  40780. image: {
  40781. source: "./media/characters/erdno/angled-nsfw.svg",
  40782. extra: 1185/1139,
  40783. bottom: 36/1221
  40784. }
  40785. },
  40786. sideNsfw: {
  40787. height: math.unit(5 + 7/12, "feet"),
  40788. weight: math.unit(2, "tons"),
  40789. name: "Side (NSFW)",
  40790. image: {
  40791. source: "./media/characters/erdno/side-nsfw.svg",
  40792. extra: 1191/1144,
  40793. bottom: 40/1231
  40794. }
  40795. },
  40796. backNsfw: {
  40797. height: math.unit(5 + 7/12, "feet"),
  40798. weight: math.unit(2, "tons"),
  40799. name: "Back (NSFW)",
  40800. image: {
  40801. source: "./media/characters/erdno/back-nsfw.svg",
  40802. extra: 1202/1146,
  40803. bottom: 17/1219
  40804. }
  40805. },
  40806. frontHyper: {
  40807. height: math.unit(5 + 7/12, "feet"),
  40808. weight: math.unit(2, "tons"),
  40809. name: "Front (Hyper)",
  40810. image: {
  40811. source: "./media/characters/erdno/front-hyper.svg",
  40812. extra: 1298/1136,
  40813. bottom: 35/1333
  40814. }
  40815. },
  40816. },
  40817. [
  40818. {
  40819. name: "Normal",
  40820. height: math.unit(5 + 7/12, "feet"),
  40821. default: true
  40822. },
  40823. {
  40824. name: "Big",
  40825. height: math.unit(5.7, "meters")
  40826. },
  40827. {
  40828. name: "Macro",
  40829. height: math.unit(5.7, "kilometers")
  40830. },
  40831. {
  40832. name: "Megamacro",
  40833. height: math.unit(5.7, "earths")
  40834. },
  40835. ]
  40836. ))
  40837. characterMakers.push(() => makeCharacter(
  40838. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40839. {
  40840. front: {
  40841. height: math.unit(5 + 10/12, "feet"),
  40842. weight: math.unit(150, "lb"),
  40843. name: "Front",
  40844. image: {
  40845. source: "./media/characters/jamie/front.svg",
  40846. extra: 1908/1768,
  40847. bottom: 19/1927
  40848. }
  40849. },
  40850. },
  40851. [
  40852. {
  40853. name: "Minimum",
  40854. height: math.unit(2, "cm")
  40855. },
  40856. {
  40857. name: "Micro",
  40858. height: math.unit(3, "inches")
  40859. },
  40860. {
  40861. name: "Normal",
  40862. height: math.unit(5 + 10/12, "feet"),
  40863. default: true
  40864. },
  40865. {
  40866. name: "Macro",
  40867. height: math.unit(150, "feet")
  40868. },
  40869. {
  40870. name: "Megamacro",
  40871. height: math.unit(10000, "m")
  40872. },
  40873. ]
  40874. ))
  40875. characterMakers.push(() => makeCharacter(
  40876. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40877. {
  40878. front: {
  40879. height: math.unit(2, "meters"),
  40880. weight: math.unit(100, "kg"),
  40881. name: "Front",
  40882. image: {
  40883. source: "./media/characters/shiron/front.svg",
  40884. extra: 2103/1985,
  40885. bottom: 98/2201
  40886. }
  40887. },
  40888. back: {
  40889. height: math.unit(2, "meters"),
  40890. weight: math.unit(100, "kg"),
  40891. name: "Back",
  40892. image: {
  40893. source: "./media/characters/shiron/back.svg",
  40894. extra: 2110/2015,
  40895. bottom: 89/2199
  40896. }
  40897. },
  40898. hand: {
  40899. height: math.unit(0.96, "feet"),
  40900. name: "Hand",
  40901. image: {
  40902. source: "./media/characters/shiron/hand.svg"
  40903. }
  40904. },
  40905. foot: {
  40906. height: math.unit(1.464, "feet"),
  40907. name: "Foot",
  40908. image: {
  40909. source: "./media/characters/shiron/foot.svg"
  40910. }
  40911. },
  40912. },
  40913. [
  40914. {
  40915. name: "Normal",
  40916. height: math.unit(2, "meters")
  40917. },
  40918. {
  40919. name: "Macro",
  40920. height: math.unit(500, "meters"),
  40921. default: true
  40922. },
  40923. {
  40924. name: "Megamacro",
  40925. height: math.unit(20, "km")
  40926. },
  40927. ]
  40928. ))
  40929. characterMakers.push(() => makeCharacter(
  40930. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40931. {
  40932. front: {
  40933. height: math.unit(6, "feet"),
  40934. name: "Front",
  40935. image: {
  40936. source: "./media/characters/sam/front.svg",
  40937. extra: 849/826,
  40938. bottom: 19/868
  40939. }
  40940. },
  40941. },
  40942. [
  40943. {
  40944. name: "Normal",
  40945. height: math.unit(6, "feet"),
  40946. default: true
  40947. },
  40948. ]
  40949. ))
  40950. characterMakers.push(() => makeCharacter(
  40951. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40952. {
  40953. front: {
  40954. height: math.unit(8 + 4/12, "feet"),
  40955. weight: math.unit(122, "kg"),
  40956. name: "Front",
  40957. image: {
  40958. source: "./media/characters/namori-kurogawa/front.svg",
  40959. extra: 1894/1576,
  40960. bottom: 34/1928
  40961. }
  40962. },
  40963. },
  40964. [
  40965. {
  40966. name: "Normal",
  40967. height: math.unit(8 + 4/12, "feet"),
  40968. default: true
  40969. },
  40970. ]
  40971. ))
  40972. characterMakers.push(() => makeCharacter(
  40973. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40974. {
  40975. front: {
  40976. height: math.unit(9, "feet"),
  40977. weight: math.unit(621, "lb"),
  40978. name: "Front",
  40979. image: {
  40980. source: "./media/characters/unmru/front.svg",
  40981. extra: 1853/1747,
  40982. bottom: 73/1926
  40983. }
  40984. },
  40985. side: {
  40986. height: math.unit(9, "feet"),
  40987. weight: math.unit(621, "lb"),
  40988. name: "Side",
  40989. image: {
  40990. source: "./media/characters/unmru/side.svg",
  40991. extra: 1781/1671,
  40992. bottom: 127/1908
  40993. }
  40994. },
  40995. back: {
  40996. height: math.unit(9, "feet"),
  40997. weight: math.unit(621, "lb"),
  40998. name: "Back",
  40999. image: {
  41000. source: "./media/characters/unmru/back.svg",
  41001. extra: 1894/1765,
  41002. bottom: 75/1969
  41003. }
  41004. },
  41005. dick: {
  41006. height: math.unit(3, "feet"),
  41007. weight: math.unit(35, "lb"),
  41008. name: "Dick",
  41009. image: {
  41010. source: "./media/characters/unmru/dick.svg"
  41011. }
  41012. },
  41013. },
  41014. [
  41015. {
  41016. name: "Normal",
  41017. height: math.unit(9, "feet")
  41018. },
  41019. {
  41020. name: "Natural",
  41021. height: math.unit(27, "feet"),
  41022. default: true
  41023. },
  41024. {
  41025. name: "Giant",
  41026. height: math.unit(90, "feet")
  41027. },
  41028. {
  41029. name: "Kaiju",
  41030. height: math.unit(270, "feet")
  41031. },
  41032. {
  41033. name: "Macro",
  41034. height: math.unit(900, "feet")
  41035. },
  41036. {
  41037. name: "Macro+",
  41038. height: math.unit(2700, "feet")
  41039. },
  41040. {
  41041. name: "Megamacro",
  41042. height: math.unit(9000, "feet")
  41043. },
  41044. {
  41045. name: "City-Crushing",
  41046. height: math.unit(27000, "feet")
  41047. },
  41048. {
  41049. name: "Mountain-Mashing",
  41050. height: math.unit(90000, "feet")
  41051. },
  41052. {
  41053. name: "Earth-Eclipsing",
  41054. height: math.unit(2.7e8, "feet")
  41055. },
  41056. {
  41057. name: "Sol-Swallowing",
  41058. height: math.unit(9e10, "feet")
  41059. },
  41060. {
  41061. name: "Majoris-Munching",
  41062. height: math.unit(2.7e13, "feet")
  41063. },
  41064. ]
  41065. ))
  41066. characterMakers.push(() => makeCharacter(
  41067. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  41068. {
  41069. front: {
  41070. height: math.unit(1, "inch"),
  41071. name: "Front",
  41072. image: {
  41073. source: "./media/characters/squeaks-mouse/front.svg",
  41074. extra: 352/308,
  41075. bottom: 25/377
  41076. }
  41077. },
  41078. },
  41079. [
  41080. {
  41081. name: "Micro",
  41082. height: math.unit(1, "inch"),
  41083. default: true
  41084. },
  41085. ]
  41086. ))
  41087. characterMakers.push(() => makeCharacter(
  41088. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  41089. {
  41090. side: {
  41091. height: math.unit(35, "feet"),
  41092. name: "Side",
  41093. image: {
  41094. source: "./media/characters/sayko/side.svg",
  41095. extra: 1697/1021,
  41096. bottom: 82/1779
  41097. }
  41098. },
  41099. head: {
  41100. height: math.unit(16, "feet"),
  41101. name: "Head",
  41102. image: {
  41103. source: "./media/characters/sayko/head.svg"
  41104. }
  41105. },
  41106. forepaw: {
  41107. height: math.unit(7.85, "feet"),
  41108. name: "Forepaw",
  41109. image: {
  41110. source: "./media/characters/sayko/forepaw.svg"
  41111. }
  41112. },
  41113. hindpaw: {
  41114. height: math.unit(8.8, "feet"),
  41115. name: "Hindpaw",
  41116. image: {
  41117. source: "./media/characters/sayko/hindpaw.svg"
  41118. }
  41119. },
  41120. },
  41121. [
  41122. {
  41123. name: "Normal",
  41124. height: math.unit(35, "feet"),
  41125. default: true
  41126. },
  41127. {
  41128. name: "Colossus",
  41129. height: math.unit(100, "meters")
  41130. },
  41131. {
  41132. name: "\"Small\" Deity",
  41133. height: math.unit(1, "km")
  41134. },
  41135. {
  41136. name: "\"Large\" Deity",
  41137. height: math.unit(15, "km")
  41138. },
  41139. ]
  41140. ))
  41141. characterMakers.push(() => makeCharacter(
  41142. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  41143. {
  41144. front: {
  41145. height: math.unit(6, "feet"),
  41146. weight: math.unit(250, "lb"),
  41147. name: "Front",
  41148. image: {
  41149. source: "./media/characters/mukiro/front.svg",
  41150. extra: 1368/1310,
  41151. bottom: 34/1402
  41152. }
  41153. },
  41154. },
  41155. [
  41156. {
  41157. name: "Normal",
  41158. height: math.unit(6, "feet"),
  41159. default: true
  41160. },
  41161. ]
  41162. ))
  41163. characterMakers.push(() => makeCharacter(
  41164. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  41165. {
  41166. front: {
  41167. height: math.unit(12 + 4/12, "feet"),
  41168. name: "Front",
  41169. image: {
  41170. source: "./media/characters/zeph-the-tiger-god/front.svg",
  41171. extra: 1346/1311,
  41172. bottom: 65/1411
  41173. }
  41174. },
  41175. },
  41176. [
  41177. {
  41178. name: "Base",
  41179. height: math.unit(12 + 4/12, "feet"),
  41180. default: true
  41181. },
  41182. {
  41183. name: "Macro",
  41184. height: math.unit(150, "feet")
  41185. },
  41186. {
  41187. name: "Mega",
  41188. height: math.unit(2, "miles")
  41189. },
  41190. {
  41191. name: "Demi God",
  41192. height: math.unit(4, "AU")
  41193. },
  41194. {
  41195. name: "God Size",
  41196. height: math.unit(1, "universe")
  41197. },
  41198. ]
  41199. ))
  41200. characterMakers.push(() => makeCharacter(
  41201. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41202. {
  41203. front: {
  41204. height: math.unit(3 + 3/12, "feet"),
  41205. weight: math.unit(88, "lb"),
  41206. name: "Front",
  41207. image: {
  41208. source: "./media/characters/trey/front.svg",
  41209. extra: 1815/1509,
  41210. bottom: 60/1875
  41211. }
  41212. },
  41213. },
  41214. [
  41215. {
  41216. name: "Normal",
  41217. height: math.unit(3 + 3/12, "feet"),
  41218. default: true
  41219. },
  41220. ]
  41221. ))
  41222. characterMakers.push(() => makeCharacter(
  41223. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41224. {
  41225. front: {
  41226. height: math.unit(4, "meters"),
  41227. name: "Front",
  41228. image: {
  41229. source: "./media/characters/adelonda/front.svg",
  41230. extra: 1077/982,
  41231. bottom: 39/1116
  41232. }
  41233. },
  41234. back: {
  41235. height: math.unit(4, "meters"),
  41236. name: "Back",
  41237. image: {
  41238. source: "./media/characters/adelonda/back.svg",
  41239. extra: 1105/1003,
  41240. bottom: 25/1130
  41241. }
  41242. },
  41243. feral: {
  41244. height: math.unit(40/1.5, "meters"),
  41245. name: "Feral",
  41246. image: {
  41247. source: "./media/characters/adelonda/feral.svg",
  41248. extra: 597/271,
  41249. bottom: 387/984
  41250. }
  41251. },
  41252. },
  41253. [
  41254. {
  41255. name: "Normal",
  41256. height: math.unit(4, "meters"),
  41257. default: true
  41258. },
  41259. ]
  41260. ))
  41261. characterMakers.push(() => makeCharacter(
  41262. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41263. {
  41264. front: {
  41265. height: math.unit(8 + 4/12, "feet"),
  41266. weight: math.unit(670, "lb"),
  41267. name: "Front",
  41268. image: {
  41269. source: "./media/characters/acadiel/front.svg",
  41270. extra: 1901/1595,
  41271. bottom: 142/2043
  41272. }
  41273. },
  41274. },
  41275. [
  41276. {
  41277. name: "Normal",
  41278. height: math.unit(8 + 4/12, "feet"),
  41279. default: true
  41280. },
  41281. {
  41282. name: "Macro",
  41283. height: math.unit(200, "feet")
  41284. },
  41285. ]
  41286. ))
  41287. characterMakers.push(() => makeCharacter(
  41288. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41289. {
  41290. front: {
  41291. height: math.unit(6 + 2/12, "feet"),
  41292. weight: math.unit(185, "lb"),
  41293. name: "Front",
  41294. image: {
  41295. source: "./media/characters/kayne-ein/front.svg",
  41296. extra: 1780/1560,
  41297. bottom: 81/1861
  41298. }
  41299. },
  41300. },
  41301. [
  41302. {
  41303. name: "Normal",
  41304. height: math.unit(6 + 2/12, "feet"),
  41305. default: true
  41306. },
  41307. {
  41308. name: "Transformation Stage",
  41309. height: math.unit(15, "feet")
  41310. },
  41311. {
  41312. name: "Macro",
  41313. height: math.unit(150, "feet")
  41314. },
  41315. {
  41316. name: "Earth's Shadow",
  41317. height: math.unit(6200, "miles")
  41318. },
  41319. {
  41320. name: "Universal Demon",
  41321. height: math.unit(28e9, "parsecs")
  41322. },
  41323. {
  41324. name: "Multiverse God",
  41325. height: math.unit(3, "multiverses")
  41326. },
  41327. ]
  41328. ))
  41329. characterMakers.push(() => makeCharacter(
  41330. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41331. {
  41332. front: {
  41333. height: math.unit(5 + 5/12, "feet"),
  41334. name: "Front",
  41335. image: {
  41336. source: "./media/characters/fawn/front.svg",
  41337. extra: 1873/1731,
  41338. bottom: 95/1968
  41339. }
  41340. },
  41341. back: {
  41342. height: math.unit(5 + 5/12, "feet"),
  41343. name: "Back",
  41344. image: {
  41345. source: "./media/characters/fawn/back.svg",
  41346. extra: 1813/1700,
  41347. bottom: 14/1827
  41348. }
  41349. },
  41350. hoof: {
  41351. height: math.unit(1.45, "feet"),
  41352. name: "Hoof",
  41353. image: {
  41354. source: "./media/characters/fawn/hoof.svg"
  41355. }
  41356. },
  41357. },
  41358. [
  41359. {
  41360. name: "Normal",
  41361. height: math.unit(5 + 5/12, "feet"),
  41362. default: true
  41363. },
  41364. ]
  41365. ))
  41366. characterMakers.push(() => makeCharacter(
  41367. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41368. {
  41369. front: {
  41370. height: math.unit(2 + 5/12, "feet"),
  41371. name: "Front",
  41372. image: {
  41373. source: "./media/characters/orion/front.svg",
  41374. extra: 1366/1304,
  41375. bottom: 43/1409
  41376. }
  41377. },
  41378. paw: {
  41379. height: math.unit(0.52, "feet"),
  41380. name: "Paw",
  41381. image: {
  41382. source: "./media/characters/orion/paw.svg"
  41383. }
  41384. },
  41385. },
  41386. [
  41387. {
  41388. name: "Normal",
  41389. height: math.unit(2 + 5/12, "feet"),
  41390. default: true
  41391. },
  41392. ]
  41393. ))
  41394. characterMakers.push(() => makeCharacter(
  41395. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41396. {
  41397. front: {
  41398. height: math.unit(5 + 10/12, "feet"),
  41399. name: "Front",
  41400. image: {
  41401. source: "./media/characters/vera/front.svg",
  41402. extra: 1680/1575,
  41403. bottom: 49/1729
  41404. }
  41405. },
  41406. back: {
  41407. height: math.unit(5 + 10/12, "feet"),
  41408. name: "Back",
  41409. image: {
  41410. source: "./media/characters/vera/back.svg",
  41411. extra: 1700/1588,
  41412. bottom: 18/1718
  41413. }
  41414. },
  41415. arcanine: {
  41416. height: math.unit(6 + 8/12, "feet"),
  41417. name: "Arcanine",
  41418. image: {
  41419. source: "./media/characters/vera/arcanine.svg",
  41420. extra: 1590/1511,
  41421. bottom: 71/1661
  41422. }
  41423. },
  41424. maw: {
  41425. height: math.unit(0.82, "feet"),
  41426. name: "Maw",
  41427. image: {
  41428. source: "./media/characters/vera/maw.svg"
  41429. }
  41430. },
  41431. mawArcanine: {
  41432. height: math.unit(0.97, "feet"),
  41433. name: "Maw (Arcanine)",
  41434. image: {
  41435. source: "./media/characters/vera/maw-arcanine.svg"
  41436. }
  41437. },
  41438. paw: {
  41439. height: math.unit(0.75, "feet"),
  41440. name: "Paw",
  41441. image: {
  41442. source: "./media/characters/vera/paw.svg"
  41443. }
  41444. },
  41445. pawprint: {
  41446. height: math.unit(0.52, "feet"),
  41447. name: "Pawprint",
  41448. image: {
  41449. source: "./media/characters/vera/pawprint.svg"
  41450. }
  41451. },
  41452. },
  41453. [
  41454. {
  41455. name: "Normal",
  41456. height: math.unit(5 + 10/12, "feet"),
  41457. default: true
  41458. },
  41459. {
  41460. name: "Macro",
  41461. height: math.unit(75, "feet")
  41462. },
  41463. ]
  41464. ))
  41465. characterMakers.push(() => makeCharacter(
  41466. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41467. {
  41468. front: {
  41469. height: math.unit(4, "feet"),
  41470. weight: math.unit(40, "lb"),
  41471. name: "Front",
  41472. image: {
  41473. source: "./media/characters/orvan-rabbit/front.svg",
  41474. extra: 1896/1642,
  41475. bottom: 29/1925
  41476. }
  41477. },
  41478. },
  41479. [
  41480. {
  41481. name: "Normal",
  41482. height: math.unit(4, "feet"),
  41483. default: true
  41484. },
  41485. ]
  41486. ))
  41487. characterMakers.push(() => makeCharacter(
  41488. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41489. {
  41490. front: {
  41491. height: math.unit(6, "feet"),
  41492. weight: math.unit(168, "lb"),
  41493. name: "Front",
  41494. image: {
  41495. source: "./media/characters/lisa/front.svg",
  41496. extra: 2065/1867,
  41497. bottom: 46/2111
  41498. }
  41499. },
  41500. back: {
  41501. height: math.unit(6, "feet"),
  41502. weight: math.unit(168, "lb"),
  41503. name: "Back",
  41504. image: {
  41505. source: "./media/characters/lisa/back.svg",
  41506. extra: 1982/1838,
  41507. bottom: 29/2011
  41508. }
  41509. },
  41510. maw: {
  41511. height: math.unit(0.81, "feet"),
  41512. name: "Maw",
  41513. image: {
  41514. source: "./media/characters/lisa/maw.svg"
  41515. }
  41516. },
  41517. paw: {
  41518. height: math.unit(0.9, "feet"),
  41519. name: "Paw",
  41520. image: {
  41521. source: "./media/characters/lisa/paw.svg"
  41522. }
  41523. },
  41524. caribousune: {
  41525. height: math.unit(7 + 2/12, "feet"),
  41526. weight: math.unit(268, "lb"),
  41527. name: "Caribousune",
  41528. image: {
  41529. source: "./media/characters/lisa/caribousune.svg",
  41530. extra: 1843/1633,
  41531. bottom: 29/1872
  41532. }
  41533. },
  41534. frontCaribousune: {
  41535. height: math.unit(7 + 2/12, "feet"),
  41536. weight: math.unit(268, "lb"),
  41537. name: "Front (Caribousune)",
  41538. image: {
  41539. source: "./media/characters/lisa/front-caribousune.svg",
  41540. extra: 1818/1638,
  41541. bottom: 52/1870
  41542. }
  41543. },
  41544. sideCaribousune: {
  41545. height: math.unit(7 + 2/12, "feet"),
  41546. weight: math.unit(268, "lb"),
  41547. name: "Side (Caribousune)",
  41548. image: {
  41549. source: "./media/characters/lisa/side-caribousune.svg",
  41550. extra: 1851/1635,
  41551. bottom: 16/1867
  41552. }
  41553. },
  41554. backCaribousune: {
  41555. height: math.unit(7 + 2/12, "feet"),
  41556. weight: math.unit(268, "lb"),
  41557. name: "Back (Caribousune)",
  41558. image: {
  41559. source: "./media/characters/lisa/back-caribousune.svg",
  41560. extra: 1801/1604,
  41561. bottom: 44/1845
  41562. }
  41563. },
  41564. caribou: {
  41565. height: math.unit(7 + 2/12, "feet"),
  41566. weight: math.unit(268, "lb"),
  41567. name: "Caribou",
  41568. image: {
  41569. source: "./media/characters/lisa/caribou.svg",
  41570. extra: 1843/1633,
  41571. bottom: 29/1872
  41572. }
  41573. },
  41574. frontCaribou: {
  41575. height: math.unit(7 + 2/12, "feet"),
  41576. weight: math.unit(268, "lb"),
  41577. name: "Front (Caribou)",
  41578. image: {
  41579. source: "./media/characters/lisa/front-caribou.svg",
  41580. extra: 1818/1638,
  41581. bottom: 52/1870
  41582. }
  41583. },
  41584. sideCaribou: {
  41585. height: math.unit(7 + 2/12, "feet"),
  41586. weight: math.unit(268, "lb"),
  41587. name: "Side (Caribou)",
  41588. image: {
  41589. source: "./media/characters/lisa/side-caribou.svg",
  41590. extra: 1851/1635,
  41591. bottom: 16/1867
  41592. }
  41593. },
  41594. backCaribou: {
  41595. height: math.unit(7 + 2/12, "feet"),
  41596. weight: math.unit(268, "lb"),
  41597. name: "Back (Caribou)",
  41598. image: {
  41599. source: "./media/characters/lisa/back-caribou.svg",
  41600. extra: 1801/1604,
  41601. bottom: 44/1845
  41602. }
  41603. },
  41604. mawCaribou: {
  41605. height: math.unit(1.45, "feet"),
  41606. name: "Maw (Caribou)",
  41607. image: {
  41608. source: "./media/characters/lisa/maw-caribou.svg"
  41609. }
  41610. },
  41611. mawCaribousune: {
  41612. height: math.unit(1.45, "feet"),
  41613. name: "Maw (Caribousune)",
  41614. image: {
  41615. source: "./media/characters/lisa/maw-caribousune.svg"
  41616. }
  41617. },
  41618. pawCaribousune: {
  41619. height: math.unit(1.61, "feet"),
  41620. name: "Paw (Caribou)",
  41621. image: {
  41622. source: "./media/characters/lisa/paw-caribousune.svg"
  41623. }
  41624. },
  41625. },
  41626. [
  41627. {
  41628. name: "Normal",
  41629. height: math.unit(6, "feet")
  41630. },
  41631. {
  41632. name: "God Size",
  41633. height: math.unit(72, "feet"),
  41634. default: true
  41635. },
  41636. {
  41637. name: "Towering",
  41638. height: math.unit(288, "feet")
  41639. },
  41640. {
  41641. name: "City Size",
  41642. height: math.unit(48384, "feet")
  41643. },
  41644. {
  41645. name: "Continental",
  41646. height: math.unit(4200, "miles")
  41647. },
  41648. {
  41649. name: "Planet Eater",
  41650. height: math.unit(42, "earths")
  41651. },
  41652. {
  41653. name: "Star Swallower",
  41654. height: math.unit(42, "solarradii")
  41655. },
  41656. {
  41657. name: "System Swallower",
  41658. height: math.unit(84000, "AU")
  41659. },
  41660. {
  41661. name: "Galaxy Gobbler",
  41662. height: math.unit(42, "galaxies")
  41663. },
  41664. {
  41665. name: "Universe Devourer",
  41666. height: math.unit(42, "universes")
  41667. },
  41668. {
  41669. name: "Multiverse Muncher",
  41670. height: math.unit(42, "multiverses")
  41671. },
  41672. ]
  41673. ))
  41674. characterMakers.push(() => makeCharacter(
  41675. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41676. {
  41677. front: {
  41678. height: math.unit(36, "feet"),
  41679. name: "Front",
  41680. image: {
  41681. source: "./media/characters/shadow-rat/front.svg",
  41682. extra: 1845/1758,
  41683. bottom: 83/1928
  41684. }
  41685. },
  41686. },
  41687. [
  41688. {
  41689. name: "Macro",
  41690. height: math.unit(36, "feet"),
  41691. default: true
  41692. },
  41693. ]
  41694. ))
  41695. characterMakers.push(() => makeCharacter(
  41696. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41697. {
  41698. side: {
  41699. height: math.unit(8, "feet"),
  41700. weight: math.unit(2630, "lb"),
  41701. name: "Side",
  41702. image: {
  41703. source: "./media/characters/torallia/side.svg",
  41704. extra: 2164/2021,
  41705. bottom: 371/2535
  41706. }
  41707. },
  41708. },
  41709. [
  41710. {
  41711. name: "Mortal Interaction",
  41712. height: math.unit(8, "feet")
  41713. },
  41714. {
  41715. name: "Natural",
  41716. height: math.unit(24, "feet"),
  41717. default: true
  41718. },
  41719. {
  41720. name: "Giant",
  41721. height: math.unit(80, "feet")
  41722. },
  41723. {
  41724. name: "Kaiju",
  41725. height: math.unit(240, "feet")
  41726. },
  41727. {
  41728. name: "Macro",
  41729. height: math.unit(800, "feet")
  41730. },
  41731. {
  41732. name: "Macro+",
  41733. height: math.unit(2400, "feet")
  41734. },
  41735. {
  41736. name: "Macro++",
  41737. height: math.unit(8000, "feet")
  41738. },
  41739. {
  41740. name: "City-Crushing",
  41741. height: math.unit(24000, "feet")
  41742. },
  41743. {
  41744. name: "Mountain-Mashing",
  41745. height: math.unit(80000, "feet")
  41746. },
  41747. {
  41748. name: "District Demolisher",
  41749. height: math.unit(240000, "feet")
  41750. },
  41751. {
  41752. name: "Tri-County Terror",
  41753. height: math.unit(800000, "feet")
  41754. },
  41755. {
  41756. name: "State Smasher",
  41757. height: math.unit(2.4e6, "feet")
  41758. },
  41759. {
  41760. name: "Nation Nemesis",
  41761. height: math.unit(8e6, "feet")
  41762. },
  41763. {
  41764. name: "Continent Cracker",
  41765. height: math.unit(2.4e7, "feet")
  41766. },
  41767. {
  41768. name: "Planet-Pillaging",
  41769. height: math.unit(8e7, "feet")
  41770. },
  41771. {
  41772. name: "Earth-Eclipsing",
  41773. height: math.unit(2.4e8, "feet")
  41774. },
  41775. {
  41776. name: "Jovian-Jostling",
  41777. height: math.unit(8e8, "feet")
  41778. },
  41779. {
  41780. name: "Gas Giant Gulper",
  41781. height: math.unit(2.4e9, "feet")
  41782. },
  41783. {
  41784. name: "Astral Annihilator",
  41785. height: math.unit(8e9, "feet")
  41786. },
  41787. {
  41788. name: "Celestial Conqueror",
  41789. height: math.unit(2.4e10, "feet")
  41790. },
  41791. {
  41792. name: "Sol-Swallowing",
  41793. height: math.unit(8e10, "feet")
  41794. },
  41795. {
  41796. name: "Hunter of the Heavens",
  41797. height: math.unit(2.4e13, "feet")
  41798. },
  41799. ]
  41800. ))
  41801. characterMakers.push(() => makeCharacter(
  41802. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41803. {
  41804. front: {
  41805. height: math.unit(10, "feet"),
  41806. weight: math.unit(844, "kilograms"),
  41807. name: "Front",
  41808. image: {
  41809. source: "./media/characters/rebecca-pawlson/front.svg",
  41810. extra: 1196/1099,
  41811. bottom: 81/1277
  41812. },
  41813. extraAttributes: {
  41814. "pawSize": {
  41815. name: "Paw Size",
  41816. power: 2,
  41817. type: "area",
  41818. base: math.unit(0.2 * 0.375, "meters^2")
  41819. },
  41820. "handSize": {
  41821. name: "Hand Size",
  41822. power: 2,
  41823. type: "area",
  41824. base: math.unit(0.2 * 0.35, "meters^2")
  41825. },
  41826. "breastDiameter": {
  41827. name: "Breast Diameter",
  41828. power: 1,
  41829. type: "length",
  41830. base: math.unit(0.5, "meters")
  41831. },
  41832. "breastVolume": {
  41833. name: "Breast Volume",
  41834. power: 3,
  41835. type: "volume",
  41836. base: math.unit(0.065, "m^3")
  41837. },
  41838. "breastMass": {
  41839. name: "Breast Mass",
  41840. power: 3,
  41841. type: "mass",
  41842. base: math.unit(65, "kg")
  41843. },
  41844. "nippleDiameter": {
  41845. name: "Nipple Diameter",
  41846. power: 1,
  41847. type: "length",
  41848. base: math.unit(0.1, "meters")
  41849. },
  41850. }
  41851. },
  41852. back: {
  41853. height: math.unit(10, "feet"),
  41854. weight: math.unit(844, "kilograms"),
  41855. name: "Back",
  41856. image: {
  41857. source: "./media/characters/rebecca-pawlson/back.svg",
  41858. extra: 879/776,
  41859. bottom: 43/922
  41860. },
  41861. extraAttributes: {
  41862. "pawSize": {
  41863. name: "Paw Size",
  41864. power: 2,
  41865. type: "area",
  41866. base: math.unit(0.2 * 0.375, "meters^2")
  41867. },
  41868. "handSize": {
  41869. name: "Hand Size",
  41870. power: 2,
  41871. type: "area",
  41872. base: math.unit(0.2 * 0.35, "meters^2")
  41873. },
  41874. "breastDiameter": {
  41875. name: "Breast Diameter",
  41876. power: 1,
  41877. type: "length",
  41878. base: math.unit(0.5, "meters")
  41879. },
  41880. "breastVolume": {
  41881. name: "Breast Volume",
  41882. power: 3,
  41883. type: "volume",
  41884. base: math.unit(0.065, "m^3")
  41885. },
  41886. "breastMass": {
  41887. name: "Breast Mass",
  41888. power: 3,
  41889. type: "mass",
  41890. base: math.unit(65, "kg")
  41891. },
  41892. "nippleDiameter": {
  41893. name: "Nipple Diameter",
  41894. power: 1,
  41895. type: "length",
  41896. base: math.unit(0.1, "meters")
  41897. },
  41898. }
  41899. },
  41900. },
  41901. [
  41902. {
  41903. name: "Normal",
  41904. height: math.unit(6 + 8/12, "feet")
  41905. },
  41906. {
  41907. name: "Mini Macro",
  41908. height: math.unit(10, "feet"),
  41909. default: true
  41910. },
  41911. {
  41912. name: "Macro",
  41913. height: math.unit(100, "feet")
  41914. },
  41915. {
  41916. name: "Mega Macro",
  41917. height: math.unit(2500, "feet")
  41918. },
  41919. {
  41920. name: "Giga Macro",
  41921. height: math.unit(50, "miles")
  41922. },
  41923. ]
  41924. ))
  41925. characterMakers.push(() => makeCharacter(
  41926. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41927. {
  41928. front: {
  41929. height: math.unit(7 + 6/12, "feet"),
  41930. weight: math.unit(600, "lb"),
  41931. name: "Front",
  41932. image: {
  41933. source: "./media/characters/moxie-nova/front.svg",
  41934. extra: 1734/1652,
  41935. bottom: 41/1775
  41936. }
  41937. },
  41938. },
  41939. [
  41940. {
  41941. name: "Normal",
  41942. height: math.unit(7 + 6/12, "feet"),
  41943. default: true
  41944. },
  41945. ]
  41946. ))
  41947. characterMakers.push(() => makeCharacter(
  41948. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41949. {
  41950. goat: {
  41951. height: math.unit(4, "feet"),
  41952. weight: math.unit(180, "lb"),
  41953. name: "Goat",
  41954. image: {
  41955. source: "./media/characters/tiffany/goat.svg",
  41956. extra: 1845/1595,
  41957. bottom: 106/1951
  41958. }
  41959. },
  41960. front: {
  41961. height: math.unit(5, "feet"),
  41962. weight: math.unit(150, "lb"),
  41963. name: "Foxcoon",
  41964. image: {
  41965. source: "./media/characters/tiffany/foxcoon.svg",
  41966. extra: 1941/1845,
  41967. bottom: 58/1999
  41968. }
  41969. },
  41970. },
  41971. [
  41972. {
  41973. name: "Normal",
  41974. height: math.unit(5, "feet"),
  41975. default: true
  41976. },
  41977. ]
  41978. ))
  41979. characterMakers.push(() => makeCharacter(
  41980. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41981. {
  41982. front: {
  41983. height: math.unit(8, "feet"),
  41984. weight: math.unit(300, "lb"),
  41985. name: "Front",
  41986. image: {
  41987. source: "./media/characters/raxinath/front.svg",
  41988. extra: 1407/1309,
  41989. bottom: 39/1446
  41990. }
  41991. },
  41992. back: {
  41993. height: math.unit(8, "feet"),
  41994. weight: math.unit(300, "lb"),
  41995. name: "Back",
  41996. image: {
  41997. source: "./media/characters/raxinath/back.svg",
  41998. extra: 1405/1315,
  41999. bottom: 9/1414
  42000. }
  42001. },
  42002. },
  42003. [
  42004. {
  42005. name: "Speck",
  42006. height: math.unit(0.5, "nm")
  42007. },
  42008. {
  42009. name: "Micro",
  42010. height: math.unit(3, "inches")
  42011. },
  42012. {
  42013. name: "Kobold",
  42014. height: math.unit(3, "feet")
  42015. },
  42016. {
  42017. name: "Normal",
  42018. height: math.unit(8, "feet"),
  42019. default: true
  42020. },
  42021. {
  42022. name: "Giant",
  42023. height: math.unit(50, "feet")
  42024. },
  42025. {
  42026. name: "Macro",
  42027. height: math.unit(1000, "feet")
  42028. },
  42029. {
  42030. name: "Megamacro",
  42031. height: math.unit(1, "mile")
  42032. },
  42033. ]
  42034. ))
  42035. characterMakers.push(() => makeCharacter(
  42036. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  42037. {
  42038. front: {
  42039. height: math.unit(10, "feet"),
  42040. weight: math.unit(1442, "lb"),
  42041. name: "Front",
  42042. image: {
  42043. source: "./media/characters/mal-dragon/front.svg",
  42044. extra: 1515/1444,
  42045. bottom: 113/1628
  42046. }
  42047. },
  42048. back: {
  42049. height: math.unit(10, "feet"),
  42050. weight: math.unit(1442, "lb"),
  42051. name: "Back",
  42052. image: {
  42053. source: "./media/characters/mal-dragon/back.svg",
  42054. extra: 1527/1434,
  42055. bottom: 25/1552
  42056. }
  42057. },
  42058. },
  42059. [
  42060. {
  42061. name: "Mortal Interaction",
  42062. height: math.unit(10, "feet"),
  42063. default: true
  42064. },
  42065. {
  42066. name: "Large",
  42067. height: math.unit(30, "feet")
  42068. },
  42069. {
  42070. name: "Kaiju",
  42071. height: math.unit(300, "feet")
  42072. },
  42073. {
  42074. name: "Megamacro",
  42075. height: math.unit(10000, "feet")
  42076. },
  42077. {
  42078. name: "Continent Cracker",
  42079. height: math.unit(30000000, "feet")
  42080. },
  42081. {
  42082. name: "Sol-Swallowing",
  42083. height: math.unit(1e11, "feet")
  42084. },
  42085. {
  42086. name: "Light Universal",
  42087. height: math.unit(5, "universes")
  42088. },
  42089. {
  42090. name: "Universe Atoms",
  42091. height: math.unit(1.829e9, "universes")
  42092. },
  42093. {
  42094. name: "Light Multiversal",
  42095. height: math.unit(5, "multiverses")
  42096. },
  42097. {
  42098. name: "Multiverse Atoms",
  42099. height: math.unit(1.829e9, "multiverses")
  42100. },
  42101. {
  42102. name: "Fabric of Time",
  42103. height: math.unit(1e262, "multiverses")
  42104. },
  42105. ]
  42106. ))
  42107. characterMakers.push(() => makeCharacter(
  42108. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  42109. {
  42110. front: {
  42111. height: math.unit(9, "feet"),
  42112. weight: math.unit(1050, "lb"),
  42113. name: "Front",
  42114. image: {
  42115. source: "./media/characters/tabitha/front.svg",
  42116. extra: 2083/1994,
  42117. bottom: 68/2151
  42118. }
  42119. },
  42120. },
  42121. [
  42122. {
  42123. name: "Baseline",
  42124. height: math.unit(9, "feet"),
  42125. default: true
  42126. },
  42127. {
  42128. name: "Giant",
  42129. height: math.unit(90, "feet")
  42130. },
  42131. {
  42132. name: "Macro",
  42133. height: math.unit(900, "feet")
  42134. },
  42135. {
  42136. name: "Megamacro",
  42137. height: math.unit(9000, "feet")
  42138. },
  42139. {
  42140. name: "City-Crushing",
  42141. height: math.unit(27000, "feet")
  42142. },
  42143. {
  42144. name: "Mountain-Mashing",
  42145. height: math.unit(90000, "feet")
  42146. },
  42147. {
  42148. name: "Nation Nemesis",
  42149. height: math.unit(9e6, "feet")
  42150. },
  42151. {
  42152. name: "Continent Cracker",
  42153. height: math.unit(27e6, "feet")
  42154. },
  42155. {
  42156. name: "Earth-Eclipsing",
  42157. height: math.unit(2.7e8, "feet")
  42158. },
  42159. {
  42160. name: "Gas Giant Gulper",
  42161. height: math.unit(2.7e9, "feet")
  42162. },
  42163. {
  42164. name: "Sol-Swallowing",
  42165. height: math.unit(9e10, "feet")
  42166. },
  42167. {
  42168. name: "Galaxy Gulper",
  42169. height: math.unit(9, "galaxies")
  42170. },
  42171. {
  42172. name: "Cosmos Churner",
  42173. height: math.unit(9, "universes")
  42174. },
  42175. ]
  42176. ))
  42177. characterMakers.push(() => makeCharacter(
  42178. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  42179. {
  42180. front: {
  42181. height: math.unit(160, "cm"),
  42182. weight: math.unit(55, "kg"),
  42183. name: "Front",
  42184. image: {
  42185. source: "./media/characters/tow/front.svg",
  42186. extra: 1751/1722,
  42187. bottom: 74/1825
  42188. }
  42189. },
  42190. },
  42191. [
  42192. {
  42193. name: "Norm",
  42194. height: math.unit(160, "cm")
  42195. },
  42196. {
  42197. name: "Casual",
  42198. height: math.unit(3200, "m"),
  42199. default: true
  42200. },
  42201. {
  42202. name: "Show-Off",
  42203. height: math.unit(160, "km")
  42204. },
  42205. ]
  42206. ))
  42207. characterMakers.push(() => makeCharacter(
  42208. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42209. {
  42210. front: {
  42211. height: math.unit(7 + 11/12, "feet"),
  42212. weight: math.unit(342.8, "lb"),
  42213. name: "Front",
  42214. image: {
  42215. source: "./media/characters/vivian-orca-dragon/front.svg",
  42216. extra: 1890/1865,
  42217. bottom: 28/1918
  42218. }
  42219. },
  42220. },
  42221. [
  42222. {
  42223. name: "Micro",
  42224. height: math.unit(5, "inches")
  42225. },
  42226. {
  42227. name: "Normal",
  42228. height: math.unit(7 + 11/12, "feet"),
  42229. default: true
  42230. },
  42231. {
  42232. name: "Macro",
  42233. height: math.unit(395 + 7/12, "feet")
  42234. },
  42235. ]
  42236. ))
  42237. characterMakers.push(() => makeCharacter(
  42238. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42239. {
  42240. side: {
  42241. height: math.unit(10, "feet"),
  42242. weight: math.unit(1442, "lb"),
  42243. name: "Side",
  42244. image: {
  42245. source: "./media/characters/lotherakon/side.svg",
  42246. extra: 1604/1497,
  42247. bottom: 89/1693
  42248. }
  42249. },
  42250. },
  42251. [
  42252. {
  42253. name: "Mortal Interaction",
  42254. height: math.unit(10, "feet")
  42255. },
  42256. {
  42257. name: "Large",
  42258. height: math.unit(30, "feet"),
  42259. default: true
  42260. },
  42261. {
  42262. name: "Giant",
  42263. height: math.unit(100, "feet")
  42264. },
  42265. {
  42266. name: "Kaiju",
  42267. height: math.unit(300, "feet")
  42268. },
  42269. {
  42270. name: "Macro",
  42271. height: math.unit(1000, "feet")
  42272. },
  42273. {
  42274. name: "Macro+",
  42275. height: math.unit(3000, "feet")
  42276. },
  42277. {
  42278. name: "Megamacro",
  42279. height: math.unit(10000, "feet")
  42280. },
  42281. {
  42282. name: "City-Crushing",
  42283. height: math.unit(30000, "feet")
  42284. },
  42285. {
  42286. name: "Continent Cracker",
  42287. height: math.unit(30e6, "feet")
  42288. },
  42289. {
  42290. name: "Earth Eclipsing",
  42291. height: math.unit(3e8, "feet")
  42292. },
  42293. {
  42294. name: "Gas Giant Gulper",
  42295. height: math.unit(3e9, "feet")
  42296. },
  42297. {
  42298. name: "Sol-Swallowing",
  42299. height: math.unit(1e11, "feet")
  42300. },
  42301. {
  42302. name: "System Swallower",
  42303. height: math.unit(3e14, "feet")
  42304. },
  42305. {
  42306. name: "Galaxy Gulper",
  42307. height: math.unit(10, "galaxies")
  42308. },
  42309. {
  42310. name: "Light Universal",
  42311. height: math.unit(5, "universes")
  42312. },
  42313. {
  42314. name: "Universe Palm",
  42315. height: math.unit(20, "universes")
  42316. },
  42317. {
  42318. name: "Light Multiversal",
  42319. height: math.unit(5, "multiverses")
  42320. },
  42321. {
  42322. name: "Multiverse Palm",
  42323. height: math.unit(20, "multiverses")
  42324. },
  42325. {
  42326. name: "Inferno Incarnate",
  42327. height: math.unit(1e7, "multiverses")
  42328. },
  42329. ]
  42330. ))
  42331. characterMakers.push(() => makeCharacter(
  42332. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42333. {
  42334. front: {
  42335. height: math.unit(8, "feet"),
  42336. weight: math.unit(1200, "lb"),
  42337. name: "Front",
  42338. image: {
  42339. source: "./media/characters/malithee/front.svg",
  42340. extra: 1675/1640,
  42341. bottom: 162/1837
  42342. }
  42343. },
  42344. },
  42345. [
  42346. {
  42347. name: "Mortal Interaction",
  42348. height: math.unit(8, "feet"),
  42349. default: true
  42350. },
  42351. {
  42352. name: "Large",
  42353. height: math.unit(24, "feet")
  42354. },
  42355. {
  42356. name: "Kaiju",
  42357. height: math.unit(240, "feet")
  42358. },
  42359. {
  42360. name: "Megamacro",
  42361. height: math.unit(8000, "feet")
  42362. },
  42363. {
  42364. name: "Continent Cracker",
  42365. height: math.unit(24e6, "feet")
  42366. },
  42367. {
  42368. name: "Earth-Eclipsing",
  42369. height: math.unit(2.4e8, "feet")
  42370. },
  42371. {
  42372. name: "Sol-Swallowing",
  42373. height: math.unit(8e10, "feet")
  42374. },
  42375. {
  42376. name: "Galaxy Gulper",
  42377. height: math.unit(8, "galaxies")
  42378. },
  42379. {
  42380. name: "Light Universal",
  42381. height: math.unit(4, "universes")
  42382. },
  42383. {
  42384. name: "Universe Atoms",
  42385. height: math.unit(1.829e9, "universes")
  42386. },
  42387. {
  42388. name: "Light Multiversal",
  42389. height: math.unit(4, "multiverses")
  42390. },
  42391. {
  42392. name: "Multiverse Atoms",
  42393. height: math.unit(1.829e9, "multiverses")
  42394. },
  42395. {
  42396. name: "Nigh-Omnipresence",
  42397. height: math.unit(8e261, "multiverses")
  42398. },
  42399. ]
  42400. ))
  42401. characterMakers.push(() => makeCharacter(
  42402. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42403. {
  42404. front: {
  42405. height: math.unit(10, "feet"),
  42406. weight: math.unit(1500, "lb"),
  42407. name: "Front",
  42408. image: {
  42409. source: "./media/characters/miles-thestia/front.svg",
  42410. extra: 1812/1727,
  42411. bottom: 86/1898
  42412. }
  42413. },
  42414. back: {
  42415. height: math.unit(10, "feet"),
  42416. weight: math.unit(1500, "lb"),
  42417. name: "Back",
  42418. image: {
  42419. source: "./media/characters/miles-thestia/back.svg",
  42420. extra: 1799/1690,
  42421. bottom: 47/1846
  42422. }
  42423. },
  42424. frontNsfw: {
  42425. height: math.unit(10, "feet"),
  42426. weight: math.unit(1500, "lb"),
  42427. name: "Front (NSFW)",
  42428. image: {
  42429. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42430. extra: 1812/1727,
  42431. bottom: 86/1898
  42432. }
  42433. },
  42434. },
  42435. [
  42436. {
  42437. name: "Mini-Macro",
  42438. height: math.unit(10, "feet"),
  42439. default: true
  42440. },
  42441. ]
  42442. ))
  42443. characterMakers.push(() => makeCharacter(
  42444. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42445. {
  42446. front: {
  42447. height: math.unit(25, "feet"),
  42448. name: "Front",
  42449. image: {
  42450. source: "./media/characters/titan-s-wulf/front.svg",
  42451. extra: 1560/1484,
  42452. bottom: 76/1636
  42453. }
  42454. },
  42455. },
  42456. [
  42457. {
  42458. name: "Smallest",
  42459. height: math.unit(25, "feet"),
  42460. default: true
  42461. },
  42462. {
  42463. name: "Normal",
  42464. height: math.unit(200, "feet")
  42465. },
  42466. {
  42467. name: "Macro",
  42468. height: math.unit(200000, "feet")
  42469. },
  42470. {
  42471. name: "Multiversal Original",
  42472. height: math.unit(10000, "multiverses")
  42473. },
  42474. ]
  42475. ))
  42476. characterMakers.push(() => makeCharacter(
  42477. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42478. {
  42479. front: {
  42480. height: math.unit(8, "feet"),
  42481. weight: math.unit(553, "lb"),
  42482. name: "Front",
  42483. image: {
  42484. source: "./media/characters/tawendeh/front.svg",
  42485. extra: 2365/2268,
  42486. bottom: 83/2448
  42487. }
  42488. },
  42489. frontClothed: {
  42490. height: math.unit(8, "feet"),
  42491. weight: math.unit(553, "lb"),
  42492. name: "Front (Clothed)",
  42493. image: {
  42494. source: "./media/characters/tawendeh/front-clothed.svg",
  42495. extra: 2365/2268,
  42496. bottom: 83/2448
  42497. }
  42498. },
  42499. back: {
  42500. height: math.unit(8, "feet"),
  42501. weight: math.unit(553, "lb"),
  42502. name: "Back",
  42503. image: {
  42504. source: "./media/characters/tawendeh/back.svg",
  42505. extra: 2397/2294,
  42506. bottom: 42/2439
  42507. }
  42508. },
  42509. },
  42510. [
  42511. {
  42512. name: "Mortal Interaction",
  42513. height: math.unit(8, "feet"),
  42514. default: true
  42515. },
  42516. {
  42517. name: "Giant",
  42518. height: math.unit(80, "feet")
  42519. },
  42520. {
  42521. name: "Macro",
  42522. height: math.unit(800, "feet")
  42523. },
  42524. {
  42525. name: "Megamacro",
  42526. height: math.unit(8000, "feet")
  42527. },
  42528. {
  42529. name: "City-Crushing",
  42530. height: math.unit(24000, "feet")
  42531. },
  42532. {
  42533. name: "Mountain-Mashing",
  42534. height: math.unit(80000, "feet")
  42535. },
  42536. {
  42537. name: "Nation Nemesis",
  42538. height: math.unit(8e6, "feet")
  42539. },
  42540. {
  42541. name: "Continent Cracker",
  42542. height: math.unit(24e6, "feet")
  42543. },
  42544. {
  42545. name: "Earth-Eclipsing",
  42546. height: math.unit(2.4e8, "feet")
  42547. },
  42548. {
  42549. name: "Gas Giant Gulper",
  42550. height: math.unit(2.4e9, "feet")
  42551. },
  42552. {
  42553. name: "Sol-Swallowing",
  42554. height: math.unit(8e10, "feet")
  42555. },
  42556. {
  42557. name: "Galaxy Gulper",
  42558. height: math.unit(8, "galaxies")
  42559. },
  42560. {
  42561. name: "Cosmos Churner",
  42562. height: math.unit(8, "universes")
  42563. },
  42564. {
  42565. name: "Omnipotent Otter",
  42566. height: math.unit(80, "universes")
  42567. },
  42568. ]
  42569. ))
  42570. characterMakers.push(() => makeCharacter(
  42571. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42572. {
  42573. front: {
  42574. height: math.unit(2.6, "meters"),
  42575. weight: math.unit(900, "kg"),
  42576. name: "Front",
  42577. image: {
  42578. source: "./media/characters/neesha/front.svg",
  42579. extra: 1803/1653,
  42580. bottom: 128/1931
  42581. }
  42582. },
  42583. },
  42584. [
  42585. {
  42586. name: "Normal",
  42587. height: math.unit(2.6, "meters"),
  42588. default: true
  42589. },
  42590. {
  42591. name: "Macro",
  42592. height: math.unit(50, "meters")
  42593. },
  42594. ]
  42595. ))
  42596. characterMakers.push(() => makeCharacter(
  42597. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42598. {
  42599. front: {
  42600. height: math.unit(5, "feet"),
  42601. weight: math.unit(185, "lb"),
  42602. name: "Front",
  42603. image: {
  42604. source: "./media/characters/kyera/front.svg",
  42605. extra: 1875/1790,
  42606. bottom: 96/1971
  42607. }
  42608. },
  42609. },
  42610. [
  42611. {
  42612. name: "Normal",
  42613. height: math.unit(5, "feet"),
  42614. default: true
  42615. },
  42616. ]
  42617. ))
  42618. characterMakers.push(() => makeCharacter(
  42619. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42620. {
  42621. front: {
  42622. height: math.unit(7 + 6/12, "feet"),
  42623. weight: math.unit(540, "lb"),
  42624. name: "Front",
  42625. image: {
  42626. source: "./media/characters/yuko/front.svg",
  42627. extra: 1282/1222,
  42628. bottom: 101/1383
  42629. }
  42630. },
  42631. frontClothed: {
  42632. height: math.unit(7 + 6/12, "feet"),
  42633. weight: math.unit(540, "lb"),
  42634. name: "Front (Clothed)",
  42635. image: {
  42636. source: "./media/characters/yuko/front-clothed.svg",
  42637. extra: 1282/1222,
  42638. bottom: 101/1383
  42639. }
  42640. },
  42641. },
  42642. [
  42643. {
  42644. name: "Normal",
  42645. height: math.unit(7 + 6/12, "feet"),
  42646. default: true
  42647. },
  42648. {
  42649. name: "Macro",
  42650. height: math.unit(26 + 9/12, "feet")
  42651. },
  42652. {
  42653. name: "Megamacro",
  42654. height: math.unit(300, "feet")
  42655. },
  42656. {
  42657. name: "Gigamacro",
  42658. height: math.unit(5000, "feet")
  42659. },
  42660. {
  42661. name: "Planetary",
  42662. height: math.unit(10000, "miles")
  42663. },
  42664. ]
  42665. ))
  42666. characterMakers.push(() => makeCharacter(
  42667. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42668. {
  42669. front: {
  42670. height: math.unit(8 + 2/12, "feet"),
  42671. weight: math.unit(600, "lb"),
  42672. name: "Front",
  42673. image: {
  42674. source: "./media/characters/deam-nitrel/front.svg",
  42675. extra: 1308/1234,
  42676. bottom: 125/1433
  42677. }
  42678. },
  42679. },
  42680. [
  42681. {
  42682. name: "Normal",
  42683. height: math.unit(8 + 2/12, "feet"),
  42684. default: true
  42685. },
  42686. ]
  42687. ))
  42688. characterMakers.push(() => makeCharacter(
  42689. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42690. {
  42691. front: {
  42692. height: math.unit(6.1, "feet"),
  42693. weight: math.unit(180, "lb"),
  42694. name: "Front",
  42695. image: {
  42696. source: "./media/characters/skyress/front.svg",
  42697. extra: 1045/915,
  42698. bottom: 28/1073
  42699. }
  42700. },
  42701. maw: {
  42702. height: math.unit(1, "feet"),
  42703. name: "Maw",
  42704. image: {
  42705. source: "./media/characters/skyress/maw.svg"
  42706. }
  42707. },
  42708. },
  42709. [
  42710. {
  42711. name: "Normal",
  42712. height: math.unit(6.1, "feet"),
  42713. default: true
  42714. },
  42715. {
  42716. name: "Macro",
  42717. height: math.unit(200, "feet")
  42718. },
  42719. ]
  42720. ))
  42721. characterMakers.push(() => makeCharacter(
  42722. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42723. {
  42724. front: {
  42725. height: math.unit(4 + 2/12, "feet"),
  42726. weight: math.unit(40, "kg"),
  42727. name: "Front",
  42728. image: {
  42729. source: "./media/characters/amethyst-jones/front.svg",
  42730. extra: 1220/1150,
  42731. bottom: 101/1321
  42732. }
  42733. },
  42734. },
  42735. [
  42736. {
  42737. name: "Normal",
  42738. height: math.unit(4 + 2/12, "feet"),
  42739. default: true
  42740. },
  42741. ]
  42742. ))
  42743. characterMakers.push(() => makeCharacter(
  42744. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42745. {
  42746. front: {
  42747. height: math.unit(1.7, "m"),
  42748. weight: math.unit(135, "lb"),
  42749. name: "Front",
  42750. image: {
  42751. source: "./media/characters/jade/front.svg",
  42752. extra: 1818/1767,
  42753. bottom: 32/1850
  42754. }
  42755. },
  42756. back: {
  42757. height: math.unit(1.7, "m"),
  42758. weight: math.unit(135, "lb"),
  42759. name: "Back",
  42760. image: {
  42761. source: "./media/characters/jade/back.svg",
  42762. extra: 1869/1809,
  42763. bottom: 35/1904
  42764. }
  42765. },
  42766. hand: {
  42767. height: math.unit(0.24, "m"),
  42768. name: "Hand",
  42769. image: {
  42770. source: "./media/characters/jade/hand.svg"
  42771. }
  42772. },
  42773. foot: {
  42774. height: math.unit(0.263, "m"),
  42775. name: "Foot",
  42776. image: {
  42777. source: "./media/characters/jade/foot.svg"
  42778. }
  42779. },
  42780. dick: {
  42781. height: math.unit(0.47, "m"),
  42782. name: "Dick",
  42783. image: {
  42784. source: "./media/characters/jade/dick.svg"
  42785. }
  42786. },
  42787. },
  42788. [
  42789. {
  42790. name: "Micro",
  42791. height: math.unit(22, "cm")
  42792. },
  42793. {
  42794. name: "Normal",
  42795. height: math.unit(1.7, "m"),
  42796. default: true
  42797. },
  42798. {
  42799. name: "Macro",
  42800. height: math.unit(152, "m")
  42801. },
  42802. ]
  42803. ))
  42804. characterMakers.push(() => makeCharacter(
  42805. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42806. {
  42807. front: {
  42808. height: math.unit(100, "miles"),
  42809. weight: math.unit(20000, "tons"),
  42810. name: "Front",
  42811. image: {
  42812. source: "./media/characters/cookie/front.svg",
  42813. extra: 1125/1070,
  42814. bottom: 30/1155
  42815. }
  42816. },
  42817. },
  42818. [
  42819. {
  42820. name: "Big",
  42821. height: math.unit(50, "feet")
  42822. },
  42823. {
  42824. name: "Macro",
  42825. height: math.unit(100, "miles"),
  42826. default: true
  42827. },
  42828. {
  42829. name: "Megamacro",
  42830. height: math.unit(90000, "miles")
  42831. },
  42832. ]
  42833. ))
  42834. characterMakers.push(() => makeCharacter(
  42835. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42836. {
  42837. front: {
  42838. height: math.unit(6, "feet"),
  42839. weight: math.unit(145, "lb"),
  42840. name: "Front",
  42841. image: {
  42842. source: "./media/characters/farzian/front.svg",
  42843. extra: 1902/1693,
  42844. bottom: 108/2010
  42845. }
  42846. },
  42847. },
  42848. [
  42849. {
  42850. name: "Macro",
  42851. height: math.unit(500, "feet"),
  42852. default: true
  42853. },
  42854. ]
  42855. ))
  42856. characterMakers.push(() => makeCharacter(
  42857. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42858. {
  42859. front: {
  42860. height: math.unit(3 + 6/12, "feet"),
  42861. weight: math.unit(50, "lb"),
  42862. name: "Front",
  42863. image: {
  42864. source: "./media/characters/kimberly-tilson/front.svg",
  42865. extra: 1400/1322,
  42866. bottom: 36/1436
  42867. }
  42868. },
  42869. back: {
  42870. height: math.unit(3 + 6/12, "feet"),
  42871. weight: math.unit(50, "lb"),
  42872. name: "Back",
  42873. image: {
  42874. source: "./media/characters/kimberly-tilson/back.svg",
  42875. extra: 1370/1307,
  42876. bottom: 20/1390
  42877. }
  42878. },
  42879. },
  42880. [
  42881. {
  42882. name: "Normal",
  42883. height: math.unit(3 + 6/12, "feet"),
  42884. default: true
  42885. },
  42886. ]
  42887. ))
  42888. characterMakers.push(() => makeCharacter(
  42889. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  42890. {
  42891. front: {
  42892. height: math.unit(350, "meters"),
  42893. weight: math.unit(7.57059e+8, "lb"),
  42894. name: "Front",
  42895. image: {
  42896. source: "./media/characters/harthos/front.svg",
  42897. extra: 455/446,
  42898. bottom: 15/470
  42899. },
  42900. form: "peacekeeper",
  42901. default: true
  42902. },
  42903. allusus_front: {
  42904. height: math.unit(270, "meters"),
  42905. weight: math.unit(3.47550e+8, "lb"),
  42906. name: "Front",
  42907. image: {
  42908. source: "./media/characters/harthos/allusus-front.svg",
  42909. extra: 455/446,
  42910. bottom: 15/470
  42911. },
  42912. form: "allusus",
  42913. },
  42914. },
  42915. [
  42916. {
  42917. name: "Macro",
  42918. height: math.unit(350, "meters"),
  42919. default: true,
  42920. form: "peacekeeper"
  42921. },
  42922. {
  42923. name: "Macro",
  42924. height: math.unit(270, "meters"),
  42925. default: true,
  42926. form: "allusus"
  42927. },
  42928. ],
  42929. {
  42930. "peacekeeper": {
  42931. name: "Peacekeeper",
  42932. default: true
  42933. },
  42934. "allusus": {
  42935. name: "Allusus",
  42936. },
  42937. }
  42938. ))
  42939. characterMakers.push(() => makeCharacter(
  42940. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42941. {
  42942. front: {
  42943. height: math.unit(15, "feet"),
  42944. name: "Front",
  42945. image: {
  42946. source: "./media/characters/hypatia/front.svg",
  42947. extra: 1653/1591,
  42948. bottom: 79/1732
  42949. }
  42950. },
  42951. },
  42952. [
  42953. {
  42954. name: "Normal",
  42955. height: math.unit(15, "feet")
  42956. },
  42957. {
  42958. name: "Small",
  42959. height: math.unit(300, "feet")
  42960. },
  42961. {
  42962. name: "Macro",
  42963. height: math.unit(2500, "feet"),
  42964. default: true
  42965. },
  42966. {
  42967. name: "Mega Macro",
  42968. height: math.unit(1500, "miles")
  42969. },
  42970. {
  42971. name: "Giga Macro",
  42972. height: math.unit(1.5e6, "miles")
  42973. },
  42974. ]
  42975. ))
  42976. characterMakers.push(() => makeCharacter(
  42977. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42978. {
  42979. front: {
  42980. height: math.unit(6, "feet"),
  42981. weight: math.unit(200, "lb"),
  42982. name: "Front",
  42983. image: {
  42984. source: "./media/characters/wulver/front.svg",
  42985. extra: 1724/1632,
  42986. bottom: 130/1854
  42987. }
  42988. },
  42989. frontNsfw: {
  42990. height: math.unit(6, "feet"),
  42991. weight: math.unit(200, "lb"),
  42992. name: "Front (NSFW)",
  42993. image: {
  42994. source: "./media/characters/wulver/front-nsfw.svg",
  42995. extra: 1724/1632,
  42996. bottom: 130/1854
  42997. }
  42998. },
  42999. },
  43000. [
  43001. {
  43002. name: "Human-Sized",
  43003. height: math.unit(6, "feet")
  43004. },
  43005. {
  43006. name: "Normal",
  43007. height: math.unit(4, "meters"),
  43008. default: true
  43009. },
  43010. {
  43011. name: "Large",
  43012. height: math.unit(6, "m")
  43013. },
  43014. ]
  43015. ))
  43016. characterMakers.push(() => makeCharacter(
  43017. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  43018. {
  43019. front: {
  43020. height: math.unit(7, "feet"),
  43021. name: "Front",
  43022. image: {
  43023. source: "./media/characters/maru/front.svg",
  43024. extra: 1595/1570,
  43025. bottom: 0/1595
  43026. }
  43027. },
  43028. },
  43029. [
  43030. {
  43031. name: "Normal",
  43032. height: math.unit(7, "feet"),
  43033. default: true
  43034. },
  43035. {
  43036. name: "Macro",
  43037. height: math.unit(700, "feet")
  43038. },
  43039. {
  43040. name: "Mega Macro",
  43041. height: math.unit(25, "miles")
  43042. },
  43043. ]
  43044. ))
  43045. characterMakers.push(() => makeCharacter(
  43046. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  43047. {
  43048. front: {
  43049. height: math.unit(6, "feet"),
  43050. weight: math.unit(170, "lb"),
  43051. name: "Front",
  43052. image: {
  43053. source: "./media/characters/xenon/front.svg",
  43054. extra: 1376/1305,
  43055. bottom: 56/1432
  43056. }
  43057. },
  43058. back: {
  43059. height: math.unit(6, "feet"),
  43060. weight: math.unit(170, "lb"),
  43061. name: "Back",
  43062. image: {
  43063. source: "./media/characters/xenon/back.svg",
  43064. extra: 1328/1259,
  43065. bottom: 95/1423
  43066. }
  43067. },
  43068. maw: {
  43069. height: math.unit(0.52, "feet"),
  43070. name: "Maw",
  43071. image: {
  43072. source: "./media/characters/xenon/maw.svg"
  43073. }
  43074. },
  43075. handLeft: {
  43076. height: math.unit(0.82 * 169 / 153, "feet"),
  43077. name: "Hand (Left)",
  43078. image: {
  43079. source: "./media/characters/xenon/hand-left.svg"
  43080. }
  43081. },
  43082. handRight: {
  43083. height: math.unit(0.82, "feet"),
  43084. name: "Hand (Right)",
  43085. image: {
  43086. source: "./media/characters/xenon/hand-right.svg"
  43087. }
  43088. },
  43089. footLeft: {
  43090. height: math.unit(1.13, "feet"),
  43091. name: "Foot (Left)",
  43092. image: {
  43093. source: "./media/characters/xenon/foot-left.svg"
  43094. }
  43095. },
  43096. footRight: {
  43097. height: math.unit(1.13 * 194 / 196, "feet"),
  43098. name: "Foot (Right)",
  43099. image: {
  43100. source: "./media/characters/xenon/foot-right.svg"
  43101. }
  43102. },
  43103. },
  43104. [
  43105. {
  43106. name: "Micro",
  43107. height: math.unit(0.8, "inches")
  43108. },
  43109. {
  43110. name: "Normal",
  43111. height: math.unit(6, "feet")
  43112. },
  43113. {
  43114. name: "Macro",
  43115. height: math.unit(50, "feet"),
  43116. default: true
  43117. },
  43118. {
  43119. name: "Macro+",
  43120. height: math.unit(250, "feet")
  43121. },
  43122. {
  43123. name: "Megamacro",
  43124. height: math.unit(1500, "feet")
  43125. },
  43126. ]
  43127. ))
  43128. characterMakers.push(() => makeCharacter(
  43129. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  43130. {
  43131. front: {
  43132. height: math.unit(7 + 5/12, "feet"),
  43133. name: "Front",
  43134. image: {
  43135. source: "./media/characters/zane/front.svg",
  43136. extra: 1260/1203,
  43137. bottom: 94/1354
  43138. }
  43139. },
  43140. back: {
  43141. height: math.unit(5.05, "feet"),
  43142. name: "Back",
  43143. image: {
  43144. source: "./media/characters/zane/back.svg",
  43145. extra: 893/829,
  43146. bottom: 30/923
  43147. }
  43148. },
  43149. werewolf: {
  43150. height: math.unit(11, "feet"),
  43151. name: "Werewolf",
  43152. image: {
  43153. source: "./media/characters/zane/werewolf.svg",
  43154. extra: 1383/1323,
  43155. bottom: 89/1472
  43156. }
  43157. },
  43158. foot: {
  43159. height: math.unit(1.46, "feet"),
  43160. name: "Foot",
  43161. image: {
  43162. source: "./media/characters/zane/foot.svg"
  43163. }
  43164. },
  43165. footFront: {
  43166. height: math.unit(0.784, "feet"),
  43167. name: "Foot (Front)",
  43168. image: {
  43169. source: "./media/characters/zane/foot-front.svg"
  43170. }
  43171. },
  43172. dick: {
  43173. height: math.unit(1.95, "feet"),
  43174. name: "Dick",
  43175. image: {
  43176. source: "./media/characters/zane/dick.svg"
  43177. }
  43178. },
  43179. dickWerewolf: {
  43180. height: math.unit(3.77, "feet"),
  43181. name: "Dick (Werewolf)",
  43182. image: {
  43183. source: "./media/characters/zane/dick.svg"
  43184. }
  43185. },
  43186. },
  43187. [
  43188. {
  43189. name: "Normal",
  43190. height: math.unit(7 + 5/12, "feet"),
  43191. default: true
  43192. },
  43193. ]
  43194. ))
  43195. characterMakers.push(() => makeCharacter(
  43196. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43197. {
  43198. front: {
  43199. height: math.unit(6 + 2/12, "feet"),
  43200. weight: math.unit(284, "lb"),
  43201. name: "Front",
  43202. image: {
  43203. source: "./media/characters/benni-desparque/front.svg",
  43204. extra: 878/729,
  43205. bottom: 58/936
  43206. }
  43207. },
  43208. back: {
  43209. height: math.unit(6 + 2/12, "feet"),
  43210. weight: math.unit(284, "lb"),
  43211. name: "Back",
  43212. image: {
  43213. source: "./media/characters/benni-desparque/back.svg",
  43214. extra: 901/756,
  43215. bottom: 51/952
  43216. }
  43217. },
  43218. dressed: {
  43219. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43220. weight: math.unit(284, "lb"),
  43221. name: "Dressed",
  43222. image: {
  43223. source: "./media/characters/benni-desparque/dressed.svg",
  43224. extra: 1514/1276,
  43225. bottom: 65/1579
  43226. }
  43227. },
  43228. hand: {
  43229. height: math.unit(1.28, "feet"),
  43230. name: "Hand",
  43231. image: {
  43232. source: "./media/characters/benni-desparque/hand.svg"
  43233. }
  43234. },
  43235. foot: {
  43236. height: math.unit(1.53, "feet"),
  43237. name: "Foot",
  43238. image: {
  43239. source: "./media/characters/benni-desparque/foot.svg"
  43240. }
  43241. },
  43242. aiControlUnit: {
  43243. height: math.unit(0.175, "feet"),
  43244. name: "AI Control Unit",
  43245. image: {
  43246. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43247. }
  43248. },
  43249. },
  43250. [
  43251. {
  43252. name: "Civilian",
  43253. height: math.unit(6 + 2/12, "feet")
  43254. },
  43255. {
  43256. name: "Normal",
  43257. height: math.unit(98, "feet"),
  43258. default: true
  43259. },
  43260. {
  43261. name: "Kaiju Fighter",
  43262. height: math.unit(268, "feet")
  43263. },
  43264. ]
  43265. ))
  43266. characterMakers.push(() => makeCharacter(
  43267. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43268. {
  43269. front: {
  43270. height: math.unit(5, "feet"),
  43271. weight: math.unit(105, "lb"),
  43272. name: "Front",
  43273. image: {
  43274. source: "./media/characters/maxine/front.svg",
  43275. extra: 1386/1250,
  43276. bottom: 71/1457
  43277. }
  43278. },
  43279. },
  43280. [
  43281. {
  43282. name: "Normal",
  43283. height: math.unit(5, "feet"),
  43284. default: true
  43285. },
  43286. ]
  43287. ))
  43288. characterMakers.push(() => makeCharacter(
  43289. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43290. {
  43291. front: {
  43292. height: math.unit(11 + 7/12, "feet"),
  43293. weight: math.unit(9576, "lb"),
  43294. name: "Front",
  43295. image: {
  43296. source: "./media/characters/scaly/front.svg",
  43297. extra: 888/867,
  43298. bottom: 36/924
  43299. }
  43300. },
  43301. },
  43302. [
  43303. {
  43304. name: "Normal",
  43305. height: math.unit(11 + 7/12, "feet"),
  43306. default: true
  43307. },
  43308. ]
  43309. ))
  43310. characterMakers.push(() => makeCharacter(
  43311. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43312. {
  43313. front: {
  43314. height: math.unit(6 + 3/12, "feet"),
  43315. name: "Front",
  43316. image: {
  43317. source: "./media/characters/saelria/front.svg",
  43318. extra: 1243/1138,
  43319. bottom: 46/1289
  43320. }
  43321. },
  43322. },
  43323. [
  43324. {
  43325. name: "Micro",
  43326. height: math.unit(6, "inches"),
  43327. },
  43328. {
  43329. name: "Normal",
  43330. height: math.unit(6 + 3/12, "feet"),
  43331. default: true
  43332. },
  43333. {
  43334. name: "Macro",
  43335. height: math.unit(25, "feet")
  43336. },
  43337. ]
  43338. ))
  43339. characterMakers.push(() => makeCharacter(
  43340. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43341. {
  43342. front: {
  43343. height: math.unit(80, "meters"),
  43344. weight: math.unit(7000, "tonnes"),
  43345. name: "Front",
  43346. image: {
  43347. source: "./media/characters/tef/front.svg",
  43348. extra: 2036/1991,
  43349. bottom: 54/2090
  43350. }
  43351. },
  43352. back: {
  43353. height: math.unit(80, "meters"),
  43354. weight: math.unit(7000, "tonnes"),
  43355. name: "Back",
  43356. image: {
  43357. source: "./media/characters/tef/back.svg",
  43358. extra: 2036/1991,
  43359. bottom: 54/2090
  43360. }
  43361. },
  43362. },
  43363. [
  43364. {
  43365. name: "Macro",
  43366. height: math.unit(80, "meters"),
  43367. default: true
  43368. },
  43369. ]
  43370. ))
  43371. characterMakers.push(() => makeCharacter(
  43372. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43373. {
  43374. front: {
  43375. height: math.unit(13, "feet"),
  43376. weight: math.unit(6, "tons"),
  43377. name: "Front",
  43378. image: {
  43379. source: "./media/characters/rover/front.svg",
  43380. extra: 1233/1156,
  43381. bottom: 50/1283
  43382. }
  43383. },
  43384. back: {
  43385. height: math.unit(13, "feet"),
  43386. weight: math.unit(6, "tons"),
  43387. name: "Back",
  43388. image: {
  43389. source: "./media/characters/rover/back.svg",
  43390. extra: 1327/1258,
  43391. bottom: 39/1366
  43392. }
  43393. },
  43394. },
  43395. [
  43396. {
  43397. name: "Normal",
  43398. height: math.unit(13, "feet"),
  43399. default: true
  43400. },
  43401. {
  43402. name: "Macro",
  43403. height: math.unit(1300, "feet")
  43404. },
  43405. {
  43406. name: "Megamacro",
  43407. height: math.unit(1300, "miles")
  43408. },
  43409. {
  43410. name: "Gigamacro",
  43411. height: math.unit(1300000, "miles")
  43412. },
  43413. ]
  43414. ))
  43415. characterMakers.push(() => makeCharacter(
  43416. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43417. {
  43418. front: {
  43419. height: math.unit(10, "feet"),
  43420. weight: math.unit(500, "lb"),
  43421. name: "Front",
  43422. image: {
  43423. source: "./media/characters/ariz/front.svg",
  43424. extra: 461/450,
  43425. bottom: 16/477
  43426. }
  43427. },
  43428. },
  43429. [
  43430. {
  43431. name: "MiniMacro",
  43432. height: math.unit(10, "feet"),
  43433. default: true
  43434. },
  43435. ]
  43436. ))
  43437. characterMakers.push(() => makeCharacter(
  43438. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43439. {
  43440. front: {
  43441. height: math.unit(6, "feet"),
  43442. weight: math.unit(140, "lb"),
  43443. name: "Front",
  43444. image: {
  43445. source: "./media/characters/sigrun/front.svg",
  43446. extra: 1418/1359,
  43447. bottom: 27/1445
  43448. }
  43449. },
  43450. },
  43451. [
  43452. {
  43453. name: "Macro",
  43454. height: math.unit(35, "feet"),
  43455. default: true
  43456. },
  43457. ]
  43458. ))
  43459. characterMakers.push(() => makeCharacter(
  43460. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43461. {
  43462. front: {
  43463. height: math.unit(6, "feet"),
  43464. weight: math.unit(150, "lb"),
  43465. name: "Front",
  43466. image: {
  43467. source: "./media/characters/numin/front.svg",
  43468. extra: 1433/1388,
  43469. bottom: 12/1445
  43470. }
  43471. },
  43472. },
  43473. [
  43474. {
  43475. name: "Macro",
  43476. height: math.unit(21.5, "km"),
  43477. default: true
  43478. },
  43479. ]
  43480. ))
  43481. characterMakers.push(() => makeCharacter(
  43482. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43483. {
  43484. front: {
  43485. height: math.unit(6, "feet"),
  43486. weight: math.unit(463, "lb"),
  43487. name: "Front",
  43488. image: {
  43489. source: "./media/characters/melwa/front.svg",
  43490. extra: 1307/1248,
  43491. bottom: 93/1400
  43492. }
  43493. },
  43494. },
  43495. [
  43496. {
  43497. name: "Macro",
  43498. height: math.unit(50, "meters"),
  43499. default: true
  43500. },
  43501. ]
  43502. ))
  43503. characterMakers.push(() => makeCharacter(
  43504. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43505. {
  43506. front: {
  43507. height: math.unit(325, "feet"),
  43508. name: "Front",
  43509. image: {
  43510. source: "./media/characters/zorkaiju/front.svg",
  43511. extra: 1955/1814,
  43512. bottom: 40/1995
  43513. }
  43514. },
  43515. frontExtended: {
  43516. height: math.unit(325, "feet"),
  43517. name: "Front (Extended)",
  43518. image: {
  43519. source: "./media/characters/zorkaiju/front-extended.svg",
  43520. extra: 1955/1814,
  43521. bottom: 40/1995
  43522. }
  43523. },
  43524. side: {
  43525. height: math.unit(325, "feet"),
  43526. name: "Side",
  43527. image: {
  43528. source: "./media/characters/zorkaiju/side.svg",
  43529. extra: 1495/1396,
  43530. bottom: 17/1512
  43531. }
  43532. },
  43533. sideExtended: {
  43534. height: math.unit(325, "feet"),
  43535. name: "Side (Extended)",
  43536. image: {
  43537. source: "./media/characters/zorkaiju/side-extended.svg",
  43538. extra: 1495/1396,
  43539. bottom: 17/1512
  43540. }
  43541. },
  43542. back: {
  43543. height: math.unit(325, "feet"),
  43544. name: "Back",
  43545. image: {
  43546. source: "./media/characters/zorkaiju/back.svg",
  43547. extra: 1959/1821,
  43548. bottom: 31/1990
  43549. }
  43550. },
  43551. backExtended: {
  43552. height: math.unit(325, "feet"),
  43553. name: "Back (Extended)",
  43554. image: {
  43555. source: "./media/characters/zorkaiju/back-extended.svg",
  43556. extra: 1959/1821,
  43557. bottom: 31/1990
  43558. }
  43559. },
  43560. hand: {
  43561. height: math.unit(58.4, "feet"),
  43562. name: "Hand",
  43563. image: {
  43564. source: "./media/characters/zorkaiju/hand.svg"
  43565. }
  43566. },
  43567. handExtended: {
  43568. height: math.unit(61.4, "feet"),
  43569. name: "Hand (Extended)",
  43570. image: {
  43571. source: "./media/characters/zorkaiju/hand-extended.svg"
  43572. }
  43573. },
  43574. foot: {
  43575. height: math.unit(95, "feet"),
  43576. name: "Foot",
  43577. image: {
  43578. source: "./media/characters/zorkaiju/foot.svg"
  43579. }
  43580. },
  43581. leftArm: {
  43582. height: math.unit(59, "feet"),
  43583. name: "Left Arm",
  43584. image: {
  43585. source: "./media/characters/zorkaiju/left-arm.svg"
  43586. }
  43587. },
  43588. rightArm: {
  43589. height: math.unit(59, "feet"),
  43590. name: "Right Arm",
  43591. image: {
  43592. source: "./media/characters/zorkaiju/right-arm.svg"
  43593. }
  43594. },
  43595. leftArmExtended: {
  43596. height: math.unit(59 * 1.033546, "feet"),
  43597. name: "Left Arm (Extended)",
  43598. image: {
  43599. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43600. }
  43601. },
  43602. rightArmExtended: {
  43603. height: math.unit(59 * 1.0496, "feet"),
  43604. name: "Right Arm (Extended)",
  43605. image: {
  43606. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43607. }
  43608. },
  43609. tail: {
  43610. height: math.unit(104, "feet"),
  43611. name: "Tail",
  43612. image: {
  43613. source: "./media/characters/zorkaiju/tail.svg"
  43614. }
  43615. },
  43616. tailExtended: {
  43617. height: math.unit(104, "feet"),
  43618. name: "Tail (Extended)",
  43619. image: {
  43620. source: "./media/characters/zorkaiju/tail-extended.svg"
  43621. }
  43622. },
  43623. tailBottom: {
  43624. height: math.unit(104, "feet"),
  43625. name: "Tail Bottom",
  43626. image: {
  43627. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43628. }
  43629. },
  43630. crystal: {
  43631. height: math.unit(27.54, "feet"),
  43632. name: "Crystal",
  43633. image: {
  43634. source: "./media/characters/zorkaiju/crystal.svg"
  43635. }
  43636. },
  43637. },
  43638. [
  43639. {
  43640. name: "Kaiju",
  43641. height: math.unit(325, "feet"),
  43642. default: true
  43643. },
  43644. ]
  43645. ))
  43646. characterMakers.push(() => makeCharacter(
  43647. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43648. {
  43649. front: {
  43650. height: math.unit(6 + 1/12, "feet"),
  43651. weight: math.unit(115, "lb"),
  43652. name: "Front",
  43653. image: {
  43654. source: "./media/characters/bailey-belfry/front.svg",
  43655. extra: 1240/1121,
  43656. bottom: 101/1341
  43657. }
  43658. },
  43659. },
  43660. [
  43661. {
  43662. name: "Normal",
  43663. height: math.unit(6 + 1/12, "feet"),
  43664. default: true
  43665. },
  43666. ]
  43667. ))
  43668. characterMakers.push(() => makeCharacter(
  43669. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43670. {
  43671. side: {
  43672. height: math.unit(4, "meters"),
  43673. weight: math.unit(250, "kg"),
  43674. name: "Side",
  43675. image: {
  43676. source: "./media/characters/blacky/side.svg",
  43677. extra: 1027/919,
  43678. bottom: 43/1070
  43679. }
  43680. },
  43681. maw: {
  43682. height: math.unit(1, "meters"),
  43683. name: "Maw",
  43684. image: {
  43685. source: "./media/characters/blacky/maw.svg"
  43686. }
  43687. },
  43688. paw: {
  43689. height: math.unit(1, "meters"),
  43690. name: "Paw",
  43691. image: {
  43692. source: "./media/characters/blacky/paw.svg"
  43693. }
  43694. },
  43695. },
  43696. [
  43697. {
  43698. name: "Normal",
  43699. height: math.unit(4, "meters"),
  43700. default: true
  43701. },
  43702. ]
  43703. ))
  43704. characterMakers.push(() => makeCharacter(
  43705. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43706. {
  43707. front: {
  43708. height: math.unit(170, "cm"),
  43709. weight: math.unit(66, "kg"),
  43710. name: "Front",
  43711. image: {
  43712. source: "./media/characters/thux-ei/front.svg",
  43713. extra: 1109/1011,
  43714. bottom: 8/1117
  43715. }
  43716. },
  43717. },
  43718. [
  43719. {
  43720. name: "Normal",
  43721. height: math.unit(170, "cm"),
  43722. default: true
  43723. },
  43724. ]
  43725. ))
  43726. characterMakers.push(() => makeCharacter(
  43727. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43728. {
  43729. front: {
  43730. height: math.unit(5, "feet"),
  43731. weight: math.unit(120, "lb"),
  43732. name: "Front",
  43733. image: {
  43734. source: "./media/characters/roxanne-voltaire/front.svg",
  43735. extra: 1901/1779,
  43736. bottom: 53/1954
  43737. }
  43738. },
  43739. },
  43740. [
  43741. {
  43742. name: "Normal",
  43743. height: math.unit(5, "feet"),
  43744. default: true
  43745. },
  43746. {
  43747. name: "Giant",
  43748. height: math.unit(50, "feet")
  43749. },
  43750. {
  43751. name: "Titan",
  43752. height: math.unit(500, "feet")
  43753. },
  43754. {
  43755. name: "Macro",
  43756. height: math.unit(5000, "feet")
  43757. },
  43758. {
  43759. name: "Megamacro",
  43760. height: math.unit(50000, "feet")
  43761. },
  43762. {
  43763. name: "Gigamacro",
  43764. height: math.unit(500000, "feet")
  43765. },
  43766. {
  43767. name: "Teramacro",
  43768. height: math.unit(5e6, "feet")
  43769. },
  43770. ]
  43771. ))
  43772. characterMakers.push(() => makeCharacter(
  43773. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43774. {
  43775. front: {
  43776. height: math.unit(6 + 2/12, "feet"),
  43777. name: "Front",
  43778. image: {
  43779. source: "./media/characters/squeaks/front.svg",
  43780. extra: 1823/1768,
  43781. bottom: 138/1961
  43782. }
  43783. },
  43784. },
  43785. [
  43786. {
  43787. name: "Micro",
  43788. height: math.unit(0.5, "inches")
  43789. },
  43790. {
  43791. name: "Normal",
  43792. height: math.unit(6 + 2/12, "feet"),
  43793. default: true
  43794. },
  43795. {
  43796. name: "Macro",
  43797. height: math.unit(600, "feet")
  43798. },
  43799. ]
  43800. ))
  43801. characterMakers.push(() => makeCharacter(
  43802. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43803. {
  43804. front: {
  43805. height: math.unit(1.72, "meters"),
  43806. name: "Front",
  43807. image: {
  43808. source: "./media/characters/archinger/front.svg",
  43809. extra: 1861/1675,
  43810. bottom: 125/1986
  43811. }
  43812. },
  43813. back: {
  43814. height: math.unit(1.72, "meters"),
  43815. name: "Back",
  43816. image: {
  43817. source: "./media/characters/archinger/back.svg",
  43818. extra: 1844/1701,
  43819. bottom: 104/1948
  43820. }
  43821. },
  43822. cock: {
  43823. height: math.unit(0.59, "feet"),
  43824. name: "Cock",
  43825. image: {
  43826. source: "./media/characters/archinger/cock.svg"
  43827. }
  43828. },
  43829. },
  43830. [
  43831. {
  43832. name: "Normal",
  43833. height: math.unit(1.72, "meters"),
  43834. default: true
  43835. },
  43836. {
  43837. name: "Macro",
  43838. height: math.unit(84, "meters")
  43839. },
  43840. {
  43841. name: "Macro+",
  43842. height: math.unit(112, "meters")
  43843. },
  43844. {
  43845. name: "Macro++",
  43846. height: math.unit(960, "meters")
  43847. },
  43848. {
  43849. name: "Macro+++",
  43850. height: math.unit(4, "km")
  43851. },
  43852. {
  43853. name: "Macro++++",
  43854. height: math.unit(48, "km")
  43855. },
  43856. {
  43857. name: "Macro+++++",
  43858. height: math.unit(4500, "km")
  43859. },
  43860. ]
  43861. ))
  43862. characterMakers.push(() => makeCharacter(
  43863. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43864. {
  43865. front: {
  43866. height: math.unit(5 + 5/12, "feet"),
  43867. name: "Front",
  43868. image: {
  43869. source: "./media/characters/alsnapz/front.svg",
  43870. extra: 1157/1065,
  43871. bottom: 42/1199
  43872. }
  43873. },
  43874. },
  43875. [
  43876. {
  43877. name: "Normal",
  43878. height: math.unit(5 + 5/12, "feet"),
  43879. default: true
  43880. },
  43881. ]
  43882. ))
  43883. characterMakers.push(() => makeCharacter(
  43884. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43885. {
  43886. side: {
  43887. height: math.unit(3.2, "earths"),
  43888. name: "Side",
  43889. image: {
  43890. source: "./media/characters/mag/side.svg",
  43891. extra: 1331/1008,
  43892. bottom: 52/1383
  43893. }
  43894. },
  43895. wing: {
  43896. height: math.unit(1.94, "earths"),
  43897. name: "Wing",
  43898. image: {
  43899. source: "./media/characters/mag/wing.svg"
  43900. }
  43901. },
  43902. dick: {
  43903. height: math.unit(1.8, "earths"),
  43904. name: "Dick",
  43905. image: {
  43906. source: "./media/characters/mag/dick.svg"
  43907. }
  43908. },
  43909. ass: {
  43910. height: math.unit(1.33, "earths"),
  43911. name: "Ass",
  43912. image: {
  43913. source: "./media/characters/mag/ass.svg"
  43914. }
  43915. },
  43916. head: {
  43917. height: math.unit(1.1, "earths"),
  43918. name: "Head",
  43919. image: {
  43920. source: "./media/characters/mag/head.svg"
  43921. }
  43922. },
  43923. maw: {
  43924. height: math.unit(1.62, "earths"),
  43925. name: "Maw",
  43926. image: {
  43927. source: "./media/characters/mag/maw.svg"
  43928. }
  43929. },
  43930. },
  43931. [
  43932. {
  43933. name: "Small",
  43934. height: math.unit(162, "feet")
  43935. },
  43936. {
  43937. name: "Normal",
  43938. height: math.unit(3.2, "earths"),
  43939. default: true
  43940. },
  43941. ]
  43942. ))
  43943. characterMakers.push(() => makeCharacter(
  43944. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43945. {
  43946. front: {
  43947. height: math.unit(512, "feet"),
  43948. weight: math.unit(63509, "tonnes"),
  43949. name: "Front",
  43950. image: {
  43951. source: "./media/characters/vorrel-harroc/front.svg",
  43952. extra: 1075/1063,
  43953. bottom: 62/1137
  43954. }
  43955. },
  43956. },
  43957. [
  43958. {
  43959. name: "Normal",
  43960. height: math.unit(10, "feet")
  43961. },
  43962. {
  43963. name: "Macro",
  43964. height: math.unit(512, "feet"),
  43965. default: true
  43966. },
  43967. {
  43968. name: "Megamacro",
  43969. height: math.unit(256, "miles")
  43970. },
  43971. {
  43972. name: "Gigamacro",
  43973. height: math.unit(4096, "miles")
  43974. },
  43975. ]
  43976. ))
  43977. characterMakers.push(() => makeCharacter(
  43978. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43979. {
  43980. side: {
  43981. height: math.unit(50, "feet"),
  43982. name: "Side",
  43983. image: {
  43984. source: "./media/characters/froimar/side.svg",
  43985. extra: 855/638,
  43986. bottom: 99/954
  43987. }
  43988. },
  43989. },
  43990. [
  43991. {
  43992. name: "Macro",
  43993. height: math.unit(50, "feet"),
  43994. default: true
  43995. },
  43996. ]
  43997. ))
  43998. characterMakers.push(() => makeCharacter(
  43999. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  44000. {
  44001. front: {
  44002. height: math.unit(210, "miles"),
  44003. name: "Front",
  44004. image: {
  44005. source: "./media/characters/timothy/front.svg",
  44006. extra: 1007/943,
  44007. bottom: 62/1069
  44008. }
  44009. },
  44010. frontSkirt: {
  44011. height: math.unit(210, "miles"),
  44012. name: "Front (Skirt)",
  44013. image: {
  44014. source: "./media/characters/timothy/front-skirt.svg",
  44015. extra: 1007/943,
  44016. bottom: 62/1069
  44017. }
  44018. },
  44019. frontCoat: {
  44020. height: math.unit(210, "miles"),
  44021. name: "Front (Coat)",
  44022. image: {
  44023. source: "./media/characters/timothy/front-coat.svg",
  44024. extra: 1007/943,
  44025. bottom: 62/1069
  44026. }
  44027. },
  44028. },
  44029. [
  44030. {
  44031. name: "Macro",
  44032. height: math.unit(210, "miles"),
  44033. default: true
  44034. },
  44035. {
  44036. name: "Megamacro",
  44037. height: math.unit(210000, "miles")
  44038. },
  44039. ]
  44040. ))
  44041. characterMakers.push(() => makeCharacter(
  44042. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  44043. {
  44044. front: {
  44045. height: math.unit(188, "feet"),
  44046. name: "Front",
  44047. image: {
  44048. source: "./media/characters/pyotr/front.svg",
  44049. extra: 1912/1826,
  44050. bottom: 18/1930
  44051. }
  44052. },
  44053. },
  44054. [
  44055. {
  44056. name: "Macro",
  44057. height: math.unit(188, "feet"),
  44058. default: true
  44059. },
  44060. {
  44061. name: "Megamacro",
  44062. height: math.unit(8, "miles")
  44063. },
  44064. ]
  44065. ))
  44066. characterMakers.push(() => makeCharacter(
  44067. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  44068. {
  44069. side: {
  44070. height: math.unit(10, "feet"),
  44071. weight: math.unit(4500, "lb"),
  44072. name: "Side",
  44073. image: {
  44074. source: "./media/characters/ackart/side.svg",
  44075. extra: 1776/1668,
  44076. bottom: 116/1892
  44077. }
  44078. },
  44079. },
  44080. [
  44081. {
  44082. name: "Normal",
  44083. height: math.unit(10, "feet"),
  44084. default: true
  44085. },
  44086. ]
  44087. ))
  44088. characterMakers.push(() => makeCharacter(
  44089. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  44090. {
  44091. side: {
  44092. height: math.unit(21, "feet"),
  44093. name: "Side",
  44094. image: {
  44095. source: "./media/characters/nolow/side.svg",
  44096. extra: 1484/1434,
  44097. bottom: 85/1569
  44098. }
  44099. },
  44100. sideErect: {
  44101. height: math.unit(21, "feet"),
  44102. name: "Side-erect",
  44103. image: {
  44104. source: "./media/characters/nolow/side-erect.svg",
  44105. extra: 1484/1434,
  44106. bottom: 85/1569
  44107. }
  44108. },
  44109. },
  44110. [
  44111. {
  44112. name: "Regular",
  44113. height: math.unit(12, "feet")
  44114. },
  44115. {
  44116. name: "Big Chee",
  44117. height: math.unit(21, "feet"),
  44118. default: true
  44119. },
  44120. ]
  44121. ))
  44122. characterMakers.push(() => makeCharacter(
  44123. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  44124. {
  44125. front: {
  44126. height: math.unit(7, "feet"),
  44127. weight: math.unit(250, "lb"),
  44128. name: "Front",
  44129. image: {
  44130. source: "./media/characters/nines/front.svg",
  44131. extra: 1741/1607,
  44132. bottom: 41/1782
  44133. }
  44134. },
  44135. side: {
  44136. height: math.unit(7, "feet"),
  44137. weight: math.unit(250, "lb"),
  44138. name: "Side",
  44139. image: {
  44140. source: "./media/characters/nines/side.svg",
  44141. extra: 1854/1735,
  44142. bottom: 93/1947
  44143. }
  44144. },
  44145. back: {
  44146. height: math.unit(7, "feet"),
  44147. weight: math.unit(250, "lb"),
  44148. name: "Back",
  44149. image: {
  44150. source: "./media/characters/nines/back.svg",
  44151. extra: 1748/1615,
  44152. bottom: 20/1768
  44153. }
  44154. },
  44155. },
  44156. [
  44157. {
  44158. name: "Megamacro",
  44159. height: math.unit(99, "km"),
  44160. default: true
  44161. },
  44162. ]
  44163. ))
  44164. characterMakers.push(() => makeCharacter(
  44165. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  44166. {
  44167. front: {
  44168. height: math.unit(5 + 10/12, "feet"),
  44169. weight: math.unit(210, "lb"),
  44170. name: "Front",
  44171. image: {
  44172. source: "./media/characters/zenith/front.svg",
  44173. extra: 1531/1452,
  44174. bottom: 198/1729
  44175. }
  44176. },
  44177. back: {
  44178. height: math.unit(5 + 10/12, "feet"),
  44179. weight: math.unit(210, "lb"),
  44180. name: "Back",
  44181. image: {
  44182. source: "./media/characters/zenith/back.svg",
  44183. extra: 1571/1487,
  44184. bottom: 75/1646
  44185. }
  44186. },
  44187. },
  44188. [
  44189. {
  44190. name: "Normal",
  44191. height: math.unit(5 + 10/12, "feet"),
  44192. default: true
  44193. }
  44194. ]
  44195. ))
  44196. characterMakers.push(() => makeCharacter(
  44197. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44198. {
  44199. front: {
  44200. height: math.unit(4, "feet"),
  44201. weight: math.unit(60, "lb"),
  44202. name: "Front",
  44203. image: {
  44204. source: "./media/characters/jasper/front.svg",
  44205. extra: 1450/1379,
  44206. bottom: 19/1469
  44207. }
  44208. },
  44209. },
  44210. [
  44211. {
  44212. name: "Normal",
  44213. height: math.unit(4, "feet"),
  44214. default: true
  44215. },
  44216. ]
  44217. ))
  44218. characterMakers.push(() => makeCharacter(
  44219. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44220. {
  44221. front: {
  44222. height: math.unit(6 + 5/12, "feet"),
  44223. weight: math.unit(290, "lb"),
  44224. name: "Front",
  44225. image: {
  44226. source: "./media/characters/tiberius-thyben/front.svg",
  44227. extra: 757/739,
  44228. bottom: 39/796
  44229. }
  44230. },
  44231. },
  44232. [
  44233. {
  44234. name: "Micro",
  44235. height: math.unit(1.5, "inches")
  44236. },
  44237. {
  44238. name: "Normal",
  44239. height: math.unit(6 + 5/12, "feet"),
  44240. default: true
  44241. },
  44242. {
  44243. name: "Macro",
  44244. height: math.unit(300, "feet")
  44245. },
  44246. ]
  44247. ))
  44248. characterMakers.push(() => makeCharacter(
  44249. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44250. {
  44251. front: {
  44252. height: math.unit(5 + 6/12, "feet"),
  44253. weight: math.unit(60, "kg"),
  44254. name: "Front",
  44255. image: {
  44256. source: "./media/characters/sabre/front.svg",
  44257. extra: 738/671,
  44258. bottom: 27/765
  44259. }
  44260. },
  44261. },
  44262. [
  44263. {
  44264. name: "Teeny",
  44265. height: math.unit(2, "inches")
  44266. },
  44267. {
  44268. name: "Smol",
  44269. height: math.unit(8, "inches")
  44270. },
  44271. {
  44272. name: "Normal",
  44273. height: math.unit(5 + 6/12, "feet"),
  44274. default: true
  44275. },
  44276. {
  44277. name: "Mini-Macro",
  44278. height: math.unit(15, "feet")
  44279. },
  44280. {
  44281. name: "Macro",
  44282. height: math.unit(50, "feet")
  44283. },
  44284. ]
  44285. ))
  44286. characterMakers.push(() => makeCharacter(
  44287. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44288. {
  44289. front: {
  44290. height: math.unit(6 + 4/12, "feet"),
  44291. weight: math.unit(170, "lb"),
  44292. name: "Front",
  44293. image: {
  44294. source: "./media/characters/charlie/front.svg",
  44295. extra: 1348/1228,
  44296. bottom: 15/1363
  44297. }
  44298. },
  44299. },
  44300. [
  44301. {
  44302. name: "Macro",
  44303. height: math.unit(1700, "meters"),
  44304. default: true
  44305. },
  44306. {
  44307. name: "MegaMacro",
  44308. height: math.unit(20400, "meters")
  44309. },
  44310. ]
  44311. ))
  44312. characterMakers.push(() => makeCharacter(
  44313. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44314. {
  44315. front: {
  44316. height: math.unit(1.96, "meters"),
  44317. weight: math.unit(220, "lb"),
  44318. name: "Front",
  44319. image: {
  44320. source: "./media/characters/susan-grant/front.svg",
  44321. extra: 482/478,
  44322. bottom: 7/489
  44323. }
  44324. },
  44325. },
  44326. [
  44327. {
  44328. name: "Normal",
  44329. height: math.unit(1.96, "meters"),
  44330. default: true
  44331. },
  44332. {
  44333. name: "Macro",
  44334. height: math.unit(76.2, "meters")
  44335. },
  44336. {
  44337. name: "MegaMacro",
  44338. height: math.unit(305, "meters")
  44339. },
  44340. {
  44341. name: "GigaMacro",
  44342. height: math.unit(1220, "meters")
  44343. },
  44344. {
  44345. name: "SuperMacro",
  44346. height: math.unit(4878, "meters")
  44347. },
  44348. ]
  44349. ))
  44350. characterMakers.push(() => makeCharacter(
  44351. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44352. {
  44353. front: {
  44354. height: math.unit(5 + 4/12, "feet"),
  44355. weight: math.unit(110, "lb"),
  44356. name: "Front",
  44357. image: {
  44358. source: "./media/characters/axel-isanov/front.svg",
  44359. extra: 1096/1065,
  44360. bottom: 13/1109
  44361. }
  44362. },
  44363. },
  44364. [
  44365. {
  44366. name: "Normal",
  44367. height: math.unit(5 + 4/12, "feet"),
  44368. default: true
  44369. },
  44370. ]
  44371. ))
  44372. characterMakers.push(() => makeCharacter(
  44373. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44374. {
  44375. front: {
  44376. height: math.unit(9, "feet"),
  44377. weight: math.unit(467, "lb"),
  44378. name: "Front",
  44379. image: {
  44380. source: "./media/characters/necahual/front.svg",
  44381. extra: 920/873,
  44382. bottom: 26/946
  44383. }
  44384. },
  44385. back: {
  44386. height: math.unit(9, "feet"),
  44387. weight: math.unit(467, "lb"),
  44388. name: "Back",
  44389. image: {
  44390. source: "./media/characters/necahual/back.svg",
  44391. extra: 930/884,
  44392. bottom: 16/946
  44393. }
  44394. },
  44395. frontUnderwear: {
  44396. height: math.unit(9, "feet"),
  44397. weight: math.unit(467, "lb"),
  44398. name: "Front (Underwear)",
  44399. image: {
  44400. source: "./media/characters/necahual/front-underwear.svg",
  44401. extra: 920/873,
  44402. bottom: 26/946
  44403. }
  44404. },
  44405. frontDressed: {
  44406. height: math.unit(9, "feet"),
  44407. weight: math.unit(467, "lb"),
  44408. name: "Front (Dressed)",
  44409. image: {
  44410. source: "./media/characters/necahual/front-dressed.svg",
  44411. extra: 920/873,
  44412. bottom: 26/946
  44413. }
  44414. },
  44415. },
  44416. [
  44417. {
  44418. name: "Comprsesed",
  44419. height: math.unit(9, "feet")
  44420. },
  44421. {
  44422. name: "Natural",
  44423. height: math.unit(15, "feet"),
  44424. default: true
  44425. },
  44426. {
  44427. name: "Boosted",
  44428. height: math.unit(50, "feet")
  44429. },
  44430. {
  44431. name: "Boosted+",
  44432. height: math.unit(150, "feet")
  44433. },
  44434. {
  44435. name: "Max",
  44436. height: math.unit(500, "feet")
  44437. },
  44438. ]
  44439. ))
  44440. characterMakers.push(() => makeCharacter(
  44441. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44442. {
  44443. front: {
  44444. height: math.unit(22 + 1/12, "feet"),
  44445. weight: math.unit(3200, "lb"),
  44446. name: "Front",
  44447. image: {
  44448. source: "./media/characters/theo-acacia/front.svg",
  44449. extra: 1796/1741,
  44450. bottom: 83/1879
  44451. }
  44452. },
  44453. frontUnderwear: {
  44454. height: math.unit(22 + 1/12, "feet"),
  44455. weight: math.unit(3200, "lb"),
  44456. name: "Front (Underwear)",
  44457. image: {
  44458. source: "./media/characters/theo-acacia/front-underwear.svg",
  44459. extra: 1796/1741,
  44460. bottom: 83/1879
  44461. }
  44462. },
  44463. frontNude: {
  44464. height: math.unit(22 + 1/12, "feet"),
  44465. weight: math.unit(3200, "lb"),
  44466. name: "Front (Nude)",
  44467. image: {
  44468. source: "./media/characters/theo-acacia/front-nude.svg",
  44469. extra: 1796/1741,
  44470. bottom: 83/1879
  44471. }
  44472. },
  44473. },
  44474. [
  44475. {
  44476. name: "Normal",
  44477. height: math.unit(22 + 1/12, "feet"),
  44478. default: true
  44479. },
  44480. ]
  44481. ))
  44482. characterMakers.push(() => makeCharacter(
  44483. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44484. {
  44485. front: {
  44486. height: math.unit(20, "feet"),
  44487. name: "Front",
  44488. image: {
  44489. source: "./media/characters/astra/front.svg",
  44490. extra: 1850/1714,
  44491. bottom: 106/1956
  44492. }
  44493. },
  44494. frontUndressed: {
  44495. height: math.unit(20, "feet"),
  44496. name: "Front (Undressed)",
  44497. image: {
  44498. source: "./media/characters/astra/front-undressed.svg",
  44499. extra: 1926/1749,
  44500. bottom: 0/1926
  44501. }
  44502. },
  44503. hand: {
  44504. height: math.unit(1.53, "feet"),
  44505. name: "Hand",
  44506. image: {
  44507. source: "./media/characters/astra/hand.svg"
  44508. }
  44509. },
  44510. paw: {
  44511. height: math.unit(1.53, "feet"),
  44512. name: "Paw",
  44513. image: {
  44514. source: "./media/characters/astra/paw.svg"
  44515. }
  44516. },
  44517. },
  44518. [
  44519. {
  44520. name: "Smallest",
  44521. height: math.unit(20, "feet")
  44522. },
  44523. {
  44524. name: "Normal",
  44525. height: math.unit(1e9, "miles"),
  44526. default: true
  44527. },
  44528. {
  44529. name: "Larger",
  44530. height: math.unit(5, "multiverses")
  44531. },
  44532. {
  44533. name: "Largest",
  44534. height: math.unit(1e9, "multiverses")
  44535. },
  44536. ]
  44537. ))
  44538. characterMakers.push(() => makeCharacter(
  44539. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44540. {
  44541. front: {
  44542. height: math.unit(8, "feet"),
  44543. name: "Front",
  44544. image: {
  44545. source: "./media/characters/breanna/front.svg",
  44546. extra: 1912/1632,
  44547. bottom: 33/1945
  44548. }
  44549. },
  44550. },
  44551. [
  44552. {
  44553. name: "Smallest",
  44554. height: math.unit(8, "feet")
  44555. },
  44556. {
  44557. name: "Normal",
  44558. height: math.unit(1, "mile"),
  44559. default: true
  44560. },
  44561. {
  44562. name: "Maximum",
  44563. height: math.unit(1500000000000, "lightyears")
  44564. },
  44565. ]
  44566. ))
  44567. characterMakers.push(() => makeCharacter(
  44568. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44569. {
  44570. front: {
  44571. height: math.unit(5 + 11/12, "feet"),
  44572. weight: math.unit(155, "lb"),
  44573. name: "Front",
  44574. image: {
  44575. source: "./media/characters/cai/front.svg",
  44576. extra: 1823/1702,
  44577. bottom: 32/1855
  44578. }
  44579. },
  44580. back: {
  44581. height: math.unit(5 + 11/12, "feet"),
  44582. weight: math.unit(155, "lb"),
  44583. name: "Back",
  44584. image: {
  44585. source: "./media/characters/cai/back.svg",
  44586. extra: 1809/1708,
  44587. bottom: 31/1840
  44588. }
  44589. },
  44590. },
  44591. [
  44592. {
  44593. name: "Normal",
  44594. height: math.unit(5 + 11/12, "feet"),
  44595. default: true
  44596. },
  44597. {
  44598. name: "Big",
  44599. height: math.unit(15, "feet")
  44600. },
  44601. {
  44602. name: "Macro",
  44603. height: math.unit(200, "feet")
  44604. },
  44605. ]
  44606. ))
  44607. characterMakers.push(() => makeCharacter(
  44608. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44609. {
  44610. front: {
  44611. height: math.unit(5 + 6/12, "feet"),
  44612. weight: math.unit(160, "lb"),
  44613. name: "Front",
  44614. image: {
  44615. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44616. extra: 1227/1174,
  44617. bottom: 37/1264
  44618. }
  44619. },
  44620. },
  44621. [
  44622. {
  44623. name: "Macro",
  44624. height: math.unit(444, "meters"),
  44625. default: true
  44626. },
  44627. ]
  44628. ))
  44629. characterMakers.push(() => makeCharacter(
  44630. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44631. {
  44632. front: {
  44633. height: math.unit(18 + 7/12, "feet"),
  44634. name: "Front",
  44635. image: {
  44636. source: "./media/characters/rex/front.svg",
  44637. extra: 1941/1807,
  44638. bottom: 66/2007
  44639. }
  44640. },
  44641. back: {
  44642. height: math.unit(18 + 7/12, "feet"),
  44643. name: "Back",
  44644. image: {
  44645. source: "./media/characters/rex/back.svg",
  44646. extra: 1937/1822,
  44647. bottom: 42/1979
  44648. }
  44649. },
  44650. boot: {
  44651. height: math.unit(3.45, "feet"),
  44652. name: "Boot",
  44653. image: {
  44654. source: "./media/characters/rex/boot.svg"
  44655. }
  44656. },
  44657. paw: {
  44658. height: math.unit(4.17, "feet"),
  44659. name: "Paw",
  44660. image: {
  44661. source: "./media/characters/rex/paw.svg"
  44662. }
  44663. },
  44664. head: {
  44665. height: math.unit(6.728, "feet"),
  44666. name: "Head",
  44667. image: {
  44668. source: "./media/characters/rex/head.svg"
  44669. }
  44670. },
  44671. },
  44672. [
  44673. {
  44674. name: "Nano",
  44675. height: math.unit(18 + 7/12, "feet")
  44676. },
  44677. {
  44678. name: "Micro",
  44679. height: math.unit(1.5, "megameters")
  44680. },
  44681. {
  44682. name: "Normal",
  44683. height: math.unit(440, "megameters"),
  44684. default: true
  44685. },
  44686. {
  44687. name: "Macro",
  44688. height: math.unit(2.5, "gigameters")
  44689. },
  44690. {
  44691. name: "Gigamacro",
  44692. height: math.unit(2, "galaxies")
  44693. },
  44694. ]
  44695. ))
  44696. characterMakers.push(() => makeCharacter(
  44697. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44698. {
  44699. side: {
  44700. height: math.unit(32, "feet"),
  44701. weight: math.unit(250000, "lb"),
  44702. name: "Side",
  44703. image: {
  44704. source: "./media/characters/silverwing/side.svg",
  44705. extra: 1100/1019,
  44706. bottom: 204/1304
  44707. }
  44708. },
  44709. },
  44710. [
  44711. {
  44712. name: "Normal",
  44713. height: math.unit(32, "feet"),
  44714. default: true
  44715. },
  44716. ]
  44717. ))
  44718. characterMakers.push(() => makeCharacter(
  44719. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44720. {
  44721. front: {
  44722. height: math.unit(6 + 6/12, "feet"),
  44723. weight: math.unit(350, "lb"),
  44724. name: "Front",
  44725. image: {
  44726. source: "./media/characters/tristan-hawthorne/front.svg",
  44727. extra: 1159/1124,
  44728. bottom: 37/1196
  44729. },
  44730. form: "labrador",
  44731. default: true
  44732. },
  44733. skunkFront: {
  44734. height: math.unit(4 + 6/12, "feet"),
  44735. weight: math.unit(120, "lb"),
  44736. name: "Front",
  44737. image: {
  44738. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44739. extra: 1609/1551,
  44740. bottom: 169/1778
  44741. },
  44742. form: "skunk",
  44743. default: true
  44744. },
  44745. },
  44746. [
  44747. {
  44748. name: "Normal",
  44749. height: math.unit(6 + 6/12, "feet"),
  44750. form: "labrador",
  44751. default: true
  44752. },
  44753. {
  44754. name: "Normal",
  44755. height: math.unit(4 + 6/12, "feet"),
  44756. form: "skunk",
  44757. default: true
  44758. },
  44759. ],
  44760. {
  44761. "labrador": {
  44762. name: "Labrador",
  44763. default: true
  44764. },
  44765. "skunk": {
  44766. name: "Skunk"
  44767. }
  44768. }
  44769. ))
  44770. characterMakers.push(() => makeCharacter(
  44771. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44772. {
  44773. front: {
  44774. height: math.unit(5 + 11/12, "feet"),
  44775. weight: math.unit(190, "lb"),
  44776. name: "Front",
  44777. image: {
  44778. source: "./media/characters/mizu/front.svg",
  44779. extra: 1988/1788,
  44780. bottom: 14/2002
  44781. }
  44782. },
  44783. },
  44784. [
  44785. {
  44786. name: "Normal",
  44787. height: math.unit(5 + 11/12, "feet"),
  44788. default: true
  44789. },
  44790. ]
  44791. ))
  44792. characterMakers.push(() => makeCharacter(
  44793. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44794. {
  44795. front: {
  44796. height: math.unit(1.7, "feet"),
  44797. weight: math.unit(50, "lb"),
  44798. name: "Front",
  44799. image: {
  44800. source: "./media/characters/dechroma/front.svg",
  44801. extra: 1095/859,
  44802. bottom: 64/1159
  44803. }
  44804. },
  44805. },
  44806. [
  44807. {
  44808. name: "Normal",
  44809. height: math.unit(1.7, "feet"),
  44810. default: true
  44811. },
  44812. ]
  44813. ))
  44814. characterMakers.push(() => makeCharacter(
  44815. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44816. {
  44817. side: {
  44818. height: math.unit(30, "feet"),
  44819. name: "Side",
  44820. image: {
  44821. source: "./media/characters/veluren-thanazel/side.svg",
  44822. extra: 1611/633,
  44823. bottom: 118/1729
  44824. }
  44825. },
  44826. front: {
  44827. height: math.unit(30, "feet"),
  44828. name: "Front",
  44829. image: {
  44830. source: "./media/characters/veluren-thanazel/front.svg",
  44831. extra: 1486/636,
  44832. bottom: 238/1724
  44833. }
  44834. },
  44835. head: {
  44836. height: math.unit(21.4, "feet"),
  44837. name: "Head",
  44838. image: {
  44839. source: "./media/characters/veluren-thanazel/head.svg"
  44840. }
  44841. },
  44842. genitals: {
  44843. height: math.unit(19.4, "feet"),
  44844. name: "Genitals",
  44845. image: {
  44846. source: "./media/characters/veluren-thanazel/genitals.svg"
  44847. }
  44848. },
  44849. },
  44850. [
  44851. {
  44852. name: "Social",
  44853. height: math.unit(6, "feet")
  44854. },
  44855. {
  44856. name: "Play",
  44857. height: math.unit(12, "feet")
  44858. },
  44859. {
  44860. name: "True",
  44861. height: math.unit(30, "feet"),
  44862. default: true
  44863. },
  44864. ]
  44865. ))
  44866. characterMakers.push(() => makeCharacter(
  44867. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44868. {
  44869. front: {
  44870. height: math.unit(7 + 6/12, "feet"),
  44871. weight: math.unit(500, "kg"),
  44872. name: "Front",
  44873. image: {
  44874. source: "./media/characters/arcturas/front.svg",
  44875. extra: 1700/1500,
  44876. bottom: 145/1845
  44877. }
  44878. },
  44879. },
  44880. [
  44881. {
  44882. name: "Normal",
  44883. height: math.unit(7 + 6/12, "feet"),
  44884. default: true
  44885. },
  44886. ]
  44887. ))
  44888. characterMakers.push(() => makeCharacter(
  44889. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44890. {
  44891. side: {
  44892. height: math.unit(6, "feet"),
  44893. weight: math.unit(2, "tons"),
  44894. name: "Side",
  44895. image: {
  44896. source: "./media/characters/vitaen/side.svg",
  44897. extra: 1157/617,
  44898. bottom: 122/1279
  44899. }
  44900. },
  44901. },
  44902. [
  44903. {
  44904. name: "Normal",
  44905. height: math.unit(6, "feet"),
  44906. default: true
  44907. },
  44908. ]
  44909. ))
  44910. characterMakers.push(() => makeCharacter(
  44911. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44912. {
  44913. front: {
  44914. height: math.unit(19, "feet"),
  44915. name: "Front",
  44916. image: {
  44917. source: "./media/characters/fia-dreamweaver/front.svg",
  44918. extra: 1630/1504,
  44919. bottom: 25/1655
  44920. }
  44921. },
  44922. },
  44923. [
  44924. {
  44925. name: "Normal",
  44926. height: math.unit(19, "feet"),
  44927. default: true
  44928. },
  44929. ]
  44930. ))
  44931. characterMakers.push(() => makeCharacter(
  44932. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44933. {
  44934. front: {
  44935. height: math.unit(5 + 4/12, "feet"),
  44936. name: "Front",
  44937. image: {
  44938. source: "./media/characters/artan/front.svg",
  44939. extra: 1618/1535,
  44940. bottom: 46/1664
  44941. }
  44942. },
  44943. back: {
  44944. height: math.unit(5 + 4/12, "feet"),
  44945. name: "Back",
  44946. image: {
  44947. source: "./media/characters/artan/back.svg",
  44948. extra: 1618/1543,
  44949. bottom: 31/1649
  44950. }
  44951. },
  44952. },
  44953. [
  44954. {
  44955. name: "Normal",
  44956. height: math.unit(5 + 4/12, "feet"),
  44957. default: true
  44958. },
  44959. ]
  44960. ))
  44961. characterMakers.push(() => makeCharacter(
  44962. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44963. {
  44964. side: {
  44965. height: math.unit(182, "cm"),
  44966. weight: math.unit(1000, "lb"),
  44967. name: "Side",
  44968. image: {
  44969. source: "./media/characters/silver-dragon/side.svg",
  44970. extra: 710/287,
  44971. bottom: 88/798
  44972. }
  44973. },
  44974. },
  44975. [
  44976. {
  44977. name: "Normal",
  44978. height: math.unit(182, "cm"),
  44979. default: true
  44980. },
  44981. ]
  44982. ))
  44983. characterMakers.push(() => makeCharacter(
  44984. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44985. {
  44986. side: {
  44987. height: math.unit(6 + 6/12, "feet"),
  44988. weight: math.unit(1.5, "tons"),
  44989. name: "Side",
  44990. image: {
  44991. source: "./media/characters/zephyr/side.svg",
  44992. extra: 1433/586,
  44993. bottom: 109/1542
  44994. }
  44995. },
  44996. },
  44997. [
  44998. {
  44999. name: "Normal",
  45000. height: math.unit(6 + 6/12, "feet"),
  45001. default: true
  45002. },
  45003. ]
  45004. ))
  45005. characterMakers.push(() => makeCharacter(
  45006. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  45007. {
  45008. side: {
  45009. height: math.unit(1, "feet"),
  45010. name: "Side",
  45011. image: {
  45012. source: "./media/characters/vixye/side.svg",
  45013. extra: 632/541,
  45014. bottom: 0/632
  45015. }
  45016. },
  45017. },
  45018. [
  45019. {
  45020. name: "Normal",
  45021. height: math.unit(1, "feet"),
  45022. default: true
  45023. },
  45024. {
  45025. name: "True",
  45026. height: math.unit(1e15, "multiverses")
  45027. },
  45028. ]
  45029. ))
  45030. characterMakers.push(() => makeCharacter(
  45031. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  45032. {
  45033. front: {
  45034. height: math.unit(8 + 2/12, "feet"),
  45035. weight: math.unit(650, "lb"),
  45036. name: "Front",
  45037. image: {
  45038. source: "./media/characters/darla-mac-lochlainn/front.svg",
  45039. extra: 1174/1137,
  45040. bottom: 82/1256
  45041. }
  45042. },
  45043. back: {
  45044. height: math.unit(8 + 2/12, "feet"),
  45045. weight: math.unit(650, "lb"),
  45046. name: "Back",
  45047. image: {
  45048. source: "./media/characters/darla-mac-lochlainn/back.svg",
  45049. extra: 1204/1157,
  45050. bottom: 46/1250
  45051. }
  45052. },
  45053. },
  45054. [
  45055. {
  45056. name: "Wildform",
  45057. height: math.unit(8 + 2/12, "feet"),
  45058. default: true
  45059. },
  45060. ]
  45061. ))
  45062. characterMakers.push(() => makeCharacter(
  45063. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  45064. {
  45065. front: {
  45066. height: math.unit(18, "feet"),
  45067. name: "Front",
  45068. image: {
  45069. source: "./media/characters/cyphin/front.svg",
  45070. extra: 970/886,
  45071. bottom: 42/1012
  45072. }
  45073. },
  45074. back: {
  45075. height: math.unit(18, "feet"),
  45076. name: "Back",
  45077. image: {
  45078. source: "./media/characters/cyphin/back.svg",
  45079. extra: 1009/894,
  45080. bottom: 24/1033
  45081. }
  45082. },
  45083. head: {
  45084. height: math.unit(5.05, "feet"),
  45085. name: "Head",
  45086. image: {
  45087. source: "./media/characters/cyphin/head.svg"
  45088. }
  45089. },
  45090. tailbud: {
  45091. height: math.unit(5, "feet"),
  45092. name: "Tailbud",
  45093. image: {
  45094. source: "./media/characters/cyphin/tailbud.svg"
  45095. }
  45096. },
  45097. },
  45098. [
  45099. ]
  45100. ))
  45101. characterMakers.push(() => makeCharacter(
  45102. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  45103. {
  45104. side: {
  45105. height: math.unit(10, "feet"),
  45106. weight: math.unit(6, "tons"),
  45107. name: "Side",
  45108. image: {
  45109. source: "./media/characters/raijin/side.svg",
  45110. extra: 1529/613,
  45111. bottom: 337/1866
  45112. }
  45113. },
  45114. },
  45115. [
  45116. {
  45117. name: "Normal",
  45118. height: math.unit(10, "feet"),
  45119. default: true
  45120. },
  45121. ]
  45122. ))
  45123. characterMakers.push(() => makeCharacter(
  45124. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  45125. {
  45126. side: {
  45127. height: math.unit(9, "feet"),
  45128. name: "Side",
  45129. image: {
  45130. source: "./media/characters/nilghais/side.svg",
  45131. extra: 1047/744,
  45132. bottom: 91/1138
  45133. }
  45134. },
  45135. head: {
  45136. height: math.unit(3.14, "feet"),
  45137. name: "Head",
  45138. image: {
  45139. source: "./media/characters/nilghais/head.svg"
  45140. }
  45141. },
  45142. mouth: {
  45143. height: math.unit(4.6, "feet"),
  45144. name: "Mouth",
  45145. image: {
  45146. source: "./media/characters/nilghais/mouth.svg"
  45147. }
  45148. },
  45149. wings: {
  45150. height: math.unit(24, "feet"),
  45151. name: "Wings",
  45152. image: {
  45153. source: "./media/characters/nilghais/wings.svg"
  45154. }
  45155. },
  45156. ass: {
  45157. height: math.unit(6.12, "feet"),
  45158. name: "Ass",
  45159. image: {
  45160. source: "./media/characters/nilghais/ass.svg"
  45161. }
  45162. },
  45163. },
  45164. [
  45165. {
  45166. name: "Normal",
  45167. height: math.unit(9, "feet"),
  45168. default: true
  45169. },
  45170. ]
  45171. ))
  45172. characterMakers.push(() => makeCharacter(
  45173. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  45174. {
  45175. regular: {
  45176. height: math.unit(16 + 2/12, "feet"),
  45177. weight: math.unit(2300, "lb"),
  45178. name: "Regular",
  45179. image: {
  45180. source: "./media/characters/zolgar/regular.svg",
  45181. extra: 1246/1004,
  45182. bottom: 124/1370
  45183. }
  45184. },
  45185. boxers: {
  45186. height: math.unit(16 + 2/12, "feet"),
  45187. weight: math.unit(2300, "lb"),
  45188. name: "Boxers",
  45189. image: {
  45190. source: "./media/characters/zolgar/boxers.svg",
  45191. extra: 1246/1004,
  45192. bottom: 124/1370
  45193. }
  45194. },
  45195. armored: {
  45196. height: math.unit(16 + 2/12, "feet"),
  45197. weight: math.unit(2300, "lb"),
  45198. name: "Armored",
  45199. image: {
  45200. source: "./media/characters/zolgar/armored.svg",
  45201. extra: 1246/1004,
  45202. bottom: 124/1370
  45203. }
  45204. },
  45205. goth: {
  45206. height: math.unit(16 + 2/12, "feet"),
  45207. weight: math.unit(2300, "lb"),
  45208. name: "Goth",
  45209. image: {
  45210. source: "./media/characters/zolgar/goth.svg",
  45211. extra: 1246/1004,
  45212. bottom: 124/1370
  45213. }
  45214. },
  45215. },
  45216. [
  45217. {
  45218. name: "Shrunken Down",
  45219. height: math.unit(9 + 2/12, "feet")
  45220. },
  45221. {
  45222. name: "Normal",
  45223. height: math.unit(16 + 2/12, "feet"),
  45224. default: true
  45225. },
  45226. ]
  45227. ))
  45228. characterMakers.push(() => makeCharacter(
  45229. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45230. {
  45231. front: {
  45232. height: math.unit(6, "feet"),
  45233. weight: math.unit(168, "lb"),
  45234. name: "Front",
  45235. image: {
  45236. source: "./media/characters/luca/front.svg",
  45237. extra: 841/667,
  45238. bottom: 102/943
  45239. }
  45240. },
  45241. },
  45242. [
  45243. {
  45244. name: "Normal",
  45245. height: math.unit(6, "feet"),
  45246. default: true
  45247. },
  45248. ]
  45249. ))
  45250. characterMakers.push(() => makeCharacter(
  45251. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45252. {
  45253. side: {
  45254. height: math.unit(7 + 3/12, "feet"),
  45255. weight: math.unit(312, "lb"),
  45256. name: "Side",
  45257. image: {
  45258. source: "./media/characters/zezo/side.svg",
  45259. extra: 1192/1067,
  45260. bottom: 63/1255
  45261. }
  45262. },
  45263. },
  45264. [
  45265. {
  45266. name: "Normal",
  45267. height: math.unit(7 + 3/12, "feet"),
  45268. default: true
  45269. },
  45270. ]
  45271. ))
  45272. characterMakers.push(() => makeCharacter(
  45273. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45274. {
  45275. front: {
  45276. height: math.unit(5 + 5/12, "feet"),
  45277. weight: math.unit(170, "lb"),
  45278. name: "Front",
  45279. image: {
  45280. source: "./media/characters/mayso/front.svg",
  45281. extra: 1215/1108,
  45282. bottom: 16/1231
  45283. }
  45284. },
  45285. },
  45286. [
  45287. {
  45288. name: "Normal",
  45289. height: math.unit(5 + 5/12, "feet"),
  45290. default: true
  45291. },
  45292. ]
  45293. ))
  45294. characterMakers.push(() => makeCharacter(
  45295. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45296. {
  45297. front: {
  45298. height: math.unit(4 + 3/12, "feet"),
  45299. weight: math.unit(80, "lb"),
  45300. name: "Front",
  45301. image: {
  45302. source: "./media/characters/hess/front.svg",
  45303. extra: 1200/1123,
  45304. bottom: 16/1216
  45305. }
  45306. },
  45307. },
  45308. [
  45309. {
  45310. name: "Normal",
  45311. height: math.unit(4 + 3/12, "feet"),
  45312. default: true
  45313. },
  45314. ]
  45315. ))
  45316. characterMakers.push(() => makeCharacter(
  45317. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45318. {
  45319. front: {
  45320. height: math.unit(1.9, "meters"),
  45321. name: "Front",
  45322. image: {
  45323. source: "./media/characters/ashgar/front.svg",
  45324. extra: 1177/1146,
  45325. bottom: 99/1276
  45326. }
  45327. },
  45328. back: {
  45329. height: math.unit(1.9, "meters"),
  45330. name: "Back",
  45331. image: {
  45332. source: "./media/characters/ashgar/back.svg",
  45333. extra: 1201/1183,
  45334. bottom: 53/1254
  45335. }
  45336. },
  45337. feral: {
  45338. height: math.unit(1.4, "meters"),
  45339. name: "Feral",
  45340. image: {
  45341. source: "./media/characters/ashgar/feral.svg",
  45342. extra: 370/345,
  45343. bottom: 45/415
  45344. }
  45345. },
  45346. },
  45347. [
  45348. {
  45349. name: "Normal",
  45350. height: math.unit(1.9, "meters"),
  45351. default: true
  45352. },
  45353. ]
  45354. ))
  45355. characterMakers.push(() => makeCharacter(
  45356. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45357. {
  45358. regular: {
  45359. height: math.unit(6, "feet"),
  45360. weight: math.unit(220, "lb"),
  45361. name: "Regular",
  45362. image: {
  45363. source: "./media/characters/phillip/regular.svg",
  45364. extra: 1373/1277,
  45365. bottom: 75/1448
  45366. }
  45367. },
  45368. dressed: {
  45369. height: math.unit(6, "feet"),
  45370. weight: math.unit(220, "lb"),
  45371. name: "Dressed",
  45372. image: {
  45373. source: "./media/characters/phillip/dressed.svg",
  45374. extra: 1373/1277,
  45375. bottom: 75/1448
  45376. }
  45377. },
  45378. paw: {
  45379. height: math.unit(1.44, "feet"),
  45380. name: "Paw",
  45381. image: {
  45382. source: "./media/characters/phillip/paw.svg"
  45383. }
  45384. },
  45385. },
  45386. [
  45387. {
  45388. name: "Normal",
  45389. height: math.unit(6, "feet"),
  45390. default: true
  45391. },
  45392. ]
  45393. ))
  45394. characterMakers.push(() => makeCharacter(
  45395. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45396. {
  45397. side: {
  45398. height: math.unit(42, "feet"),
  45399. name: "Side",
  45400. image: {
  45401. source: "./media/characters/uvula/side.svg",
  45402. extra: 683/586,
  45403. bottom: 60/743
  45404. }
  45405. },
  45406. front: {
  45407. height: math.unit(42, "feet"),
  45408. name: "Front",
  45409. image: {
  45410. source: "./media/characters/uvula/front.svg",
  45411. extra: 705/613,
  45412. bottom: 54/759
  45413. }
  45414. },
  45415. maw: {
  45416. height: math.unit(23.5, "feet"),
  45417. name: "Maw",
  45418. image: {
  45419. source: "./media/characters/uvula/maw.svg"
  45420. }
  45421. },
  45422. },
  45423. [
  45424. {
  45425. name: "Original Size",
  45426. height: math.unit(14, "inches")
  45427. },
  45428. {
  45429. name: "Human Size",
  45430. height: math.unit(6, "feet")
  45431. },
  45432. {
  45433. name: "Big",
  45434. height: math.unit(42, "feet"),
  45435. default: true
  45436. },
  45437. {
  45438. name: "Bigger",
  45439. height: math.unit(100, "feet")
  45440. },
  45441. ]
  45442. ))
  45443. characterMakers.push(() => makeCharacter(
  45444. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45445. {
  45446. front: {
  45447. height: math.unit(5 + 11/12, "feet"),
  45448. name: "Front",
  45449. image: {
  45450. source: "./media/characters/lannah/front.svg",
  45451. extra: 1208/1113,
  45452. bottom: 97/1305
  45453. }
  45454. },
  45455. },
  45456. [
  45457. {
  45458. name: "Normal",
  45459. height: math.unit(5 + 11/12, "feet"),
  45460. default: true
  45461. },
  45462. ]
  45463. ))
  45464. characterMakers.push(() => makeCharacter(
  45465. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45466. {
  45467. front: {
  45468. height: math.unit(6 + 3/12, "feet"),
  45469. weight: math.unit(3.5, "tons"),
  45470. name: "Front",
  45471. image: {
  45472. source: "./media/characters/emberflame/front.svg",
  45473. extra: 1198/672,
  45474. bottom: 82/1280
  45475. }
  45476. },
  45477. side: {
  45478. height: math.unit(6 + 3/12, "feet"),
  45479. weight: math.unit(3.5, "tons"),
  45480. name: "Side",
  45481. image: {
  45482. source: "./media/characters/emberflame/side.svg",
  45483. extra: 938/527,
  45484. bottom: 56/994
  45485. }
  45486. },
  45487. },
  45488. [
  45489. {
  45490. name: "Normal",
  45491. height: math.unit(6 + 3/12, "feet"),
  45492. default: true
  45493. },
  45494. ]
  45495. ))
  45496. characterMakers.push(() => makeCharacter(
  45497. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45498. {
  45499. side: {
  45500. height: math.unit(17.5, "feet"),
  45501. weight: math.unit(35, "tons"),
  45502. name: "Side",
  45503. image: {
  45504. source: "./media/characters/sophie-ambrose/side.svg",
  45505. extra: 1573/1242,
  45506. bottom: 71/1644
  45507. }
  45508. },
  45509. maw: {
  45510. height: math.unit(7.4, "feet"),
  45511. name: "Maw",
  45512. image: {
  45513. source: "./media/characters/sophie-ambrose/maw.svg"
  45514. }
  45515. },
  45516. },
  45517. [
  45518. {
  45519. name: "Normal",
  45520. height: math.unit(17.5, "feet"),
  45521. default: true
  45522. },
  45523. ]
  45524. ))
  45525. characterMakers.push(() => makeCharacter(
  45526. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45527. {
  45528. front: {
  45529. height: math.unit(280, "feet"),
  45530. weight: math.unit(550, "tons"),
  45531. name: "Front",
  45532. image: {
  45533. source: "./media/characters/king-mugi/front.svg",
  45534. extra: 1102/947,
  45535. bottom: 104/1206
  45536. }
  45537. },
  45538. },
  45539. [
  45540. {
  45541. name: "King Mugi",
  45542. height: math.unit(280, "feet"),
  45543. default: true
  45544. },
  45545. ]
  45546. ))
  45547. characterMakers.push(() => makeCharacter(
  45548. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45549. {
  45550. female: {
  45551. height: math.unit(300, "meters"),
  45552. name: "Front",
  45553. image: {
  45554. source: "./media/characters/nova-fox/female.svg",
  45555. extra: 664/632,
  45556. bottom: 51/715
  45557. },
  45558. form: "female",
  45559. default: true
  45560. },
  45561. male: {
  45562. height: math.unit(300, "meters"),
  45563. name: "Front",
  45564. image: {
  45565. source: "./media/characters/nova-fox/male.svg",
  45566. extra: 663/631,
  45567. bottom: 30/693
  45568. },
  45569. form: "male",
  45570. default: true
  45571. },
  45572. },
  45573. [
  45574. {
  45575. name: "Macro",
  45576. height: math.unit(300, "meters"),
  45577. default: true,
  45578. allForms: true
  45579. },
  45580. ],
  45581. {
  45582. "female": {
  45583. name: "Female",
  45584. default: true
  45585. },
  45586. "male": {
  45587. name: "Male",
  45588. },
  45589. }
  45590. ))
  45591. characterMakers.push(() => makeCharacter(
  45592. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45593. {
  45594. front: {
  45595. height: math.unit(6 + 3/12, "feet"),
  45596. weight: math.unit(170, "lb"),
  45597. name: "Front",
  45598. image: {
  45599. source: "./media/characters/sam-bat/front.svg",
  45600. extra: 1601/1411,
  45601. bottom: 125/1726
  45602. }
  45603. },
  45604. back: {
  45605. height: math.unit(6 + 3/12, "feet"),
  45606. weight: math.unit(170, "lb"),
  45607. name: "Back",
  45608. image: {
  45609. source: "./media/characters/sam-bat/back.svg",
  45610. extra: 1577/1405,
  45611. bottom: 58/1635
  45612. }
  45613. },
  45614. },
  45615. [
  45616. {
  45617. name: "Normal",
  45618. height: math.unit(6 + 3/12, "feet"),
  45619. default: true
  45620. },
  45621. ]
  45622. ))
  45623. characterMakers.push(() => makeCharacter(
  45624. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45625. {
  45626. front: {
  45627. height: math.unit(59, "feet"),
  45628. weight: math.unit(40000, "lb"),
  45629. name: "Front",
  45630. image: {
  45631. source: "./media/characters/inari/front.svg",
  45632. extra: 1884/1350,
  45633. bottom: 95/1979
  45634. }
  45635. },
  45636. },
  45637. [
  45638. {
  45639. name: "Gigantamax",
  45640. height: math.unit(59, "feet"),
  45641. default: true
  45642. },
  45643. ]
  45644. ))
  45645. characterMakers.push(() => makeCharacter(
  45646. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45647. {
  45648. front: {
  45649. height: math.unit(5 + 8/12, "feet"),
  45650. name: "Front",
  45651. image: {
  45652. source: "./media/characters/elizabeth/front.svg",
  45653. extra: 1395/1298,
  45654. bottom: 54/1449
  45655. }
  45656. },
  45657. mouth: {
  45658. height: math.unit(1.97, "feet"),
  45659. name: "Mouth",
  45660. image: {
  45661. source: "./media/characters/elizabeth/mouth.svg"
  45662. }
  45663. },
  45664. foot: {
  45665. height: math.unit(1.17, "feet"),
  45666. name: "Foot",
  45667. image: {
  45668. source: "./media/characters/elizabeth/foot.svg"
  45669. }
  45670. },
  45671. },
  45672. [
  45673. {
  45674. name: "Normal",
  45675. height: math.unit(5 + 8/12, "feet"),
  45676. default: true
  45677. },
  45678. {
  45679. name: "Minimacro",
  45680. height: math.unit(18, "feet")
  45681. },
  45682. {
  45683. name: "Macro",
  45684. height: math.unit(180, "feet")
  45685. },
  45686. ]
  45687. ))
  45688. characterMakers.push(() => makeCharacter(
  45689. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45690. {
  45691. front: {
  45692. height: math.unit(5 + 2/12, "feet"),
  45693. name: "Front",
  45694. image: {
  45695. source: "./media/characters/october-gossamer/front.svg",
  45696. extra: 505/454,
  45697. bottom: 7/512
  45698. }
  45699. },
  45700. back: {
  45701. height: math.unit(5 + 2/12, "feet"),
  45702. name: "Back",
  45703. image: {
  45704. source: "./media/characters/october-gossamer/back.svg",
  45705. extra: 501/454,
  45706. bottom: 11/512
  45707. }
  45708. },
  45709. },
  45710. [
  45711. {
  45712. name: "Normal",
  45713. height: math.unit(5 + 2/12, "feet"),
  45714. default: true
  45715. },
  45716. ]
  45717. ))
  45718. characterMakers.push(() => makeCharacter(
  45719. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45720. {
  45721. front: {
  45722. height: math.unit(5, "feet"),
  45723. name: "Front",
  45724. image: {
  45725. source: "./media/characters/epiglottis/front.svg",
  45726. extra: 923/849,
  45727. bottom: 17/940
  45728. }
  45729. },
  45730. },
  45731. [
  45732. {
  45733. name: "Original Size",
  45734. height: math.unit(10, "inches")
  45735. },
  45736. {
  45737. name: "Human Size",
  45738. height: math.unit(5, "feet"),
  45739. default: true
  45740. },
  45741. {
  45742. name: "Big",
  45743. height: math.unit(25, "feet")
  45744. },
  45745. {
  45746. name: "Bigger",
  45747. height: math.unit(50, "feet")
  45748. },
  45749. {
  45750. name: "oh lawd",
  45751. height: math.unit(75, "feet")
  45752. },
  45753. ]
  45754. ))
  45755. characterMakers.push(() => makeCharacter(
  45756. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45757. {
  45758. front: {
  45759. height: math.unit(2 + 4/12, "feet"),
  45760. weight: math.unit(60, "lb"),
  45761. name: "Front",
  45762. image: {
  45763. source: "./media/characters/lerm/front.svg",
  45764. extra: 796/790,
  45765. bottom: 79/875
  45766. }
  45767. },
  45768. },
  45769. [
  45770. {
  45771. name: "Normal",
  45772. height: math.unit(2 + 4/12, "feet"),
  45773. default: true
  45774. },
  45775. ]
  45776. ))
  45777. characterMakers.push(() => makeCharacter(
  45778. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45779. {
  45780. front: {
  45781. height: math.unit(5.5, "feet"),
  45782. weight: math.unit(130, "lb"),
  45783. name: "Front",
  45784. image: {
  45785. source: "./media/characters/xena-nebadon/front.svg",
  45786. extra: 1828/1730,
  45787. bottom: 79/1907
  45788. }
  45789. },
  45790. },
  45791. [
  45792. {
  45793. name: "Tiny Puppy",
  45794. height: math.unit(3, "inches")
  45795. },
  45796. {
  45797. name: "Normal",
  45798. height: math.unit(5.5, "feet"),
  45799. default: true
  45800. },
  45801. {
  45802. name: "Lotta Lady",
  45803. height: math.unit(12, "feet")
  45804. },
  45805. {
  45806. name: "Pretty Big",
  45807. height: math.unit(100, "feet")
  45808. },
  45809. {
  45810. name: "Big",
  45811. height: math.unit(500, "feet")
  45812. },
  45813. {
  45814. name: "Skyscraper Toys",
  45815. height: math.unit(2500, "feet")
  45816. },
  45817. {
  45818. name: "Plane Catcher",
  45819. height: math.unit(8, "miles")
  45820. },
  45821. {
  45822. name: "Planet Toys",
  45823. height: math.unit(15, "earths")
  45824. },
  45825. {
  45826. name: "Stardust",
  45827. height: math.unit(0.25, "galaxies")
  45828. },
  45829. {
  45830. name: "Snacks",
  45831. height: math.unit(70, "universes")
  45832. },
  45833. ]
  45834. ))
  45835. characterMakers.push(() => makeCharacter(
  45836. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45837. {
  45838. front: {
  45839. height: math.unit(1.6, "meters"),
  45840. weight: math.unit(60, "kg"),
  45841. name: "Front",
  45842. image: {
  45843. source: "./media/characters/bounty/front.svg",
  45844. extra: 1426/1308,
  45845. bottom: 15/1441
  45846. }
  45847. },
  45848. back: {
  45849. height: math.unit(1.6, "meters"),
  45850. weight: math.unit(60, "kg"),
  45851. name: "Back",
  45852. image: {
  45853. source: "./media/characters/bounty/back.svg",
  45854. extra: 1417/1307,
  45855. bottom: 8/1425
  45856. }
  45857. },
  45858. },
  45859. [
  45860. {
  45861. name: "Normal",
  45862. height: math.unit(1.6, "meters"),
  45863. default: true
  45864. },
  45865. {
  45866. name: "Macro",
  45867. height: math.unit(300, "meters")
  45868. },
  45869. ]
  45870. ))
  45871. characterMakers.push(() => makeCharacter(
  45872. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45873. {
  45874. front: {
  45875. height: math.unit(2 + 8/12, "feet"),
  45876. weight: math.unit(15, "lb"),
  45877. name: "Front",
  45878. image: {
  45879. source: "./media/characters/mochi/front.svg",
  45880. extra: 1022/852,
  45881. bottom: 435/1457
  45882. }
  45883. },
  45884. back: {
  45885. height: math.unit(2 + 8/12, "feet"),
  45886. weight: math.unit(15, "lb"),
  45887. name: "Back",
  45888. image: {
  45889. source: "./media/characters/mochi/back.svg",
  45890. extra: 1335/1119,
  45891. bottom: 39/1374
  45892. }
  45893. },
  45894. bird: {
  45895. height: math.unit(2 + 8/12, "feet"),
  45896. weight: math.unit(15, "lb"),
  45897. name: "Bird",
  45898. image: {
  45899. source: "./media/characters/mochi/bird.svg",
  45900. extra: 1251/1113,
  45901. bottom: 178/1429
  45902. }
  45903. },
  45904. kaiju: {
  45905. height: math.unit(154, "feet"),
  45906. weight: math.unit(1e7, "lb"),
  45907. name: "Kaiju",
  45908. image: {
  45909. source: "./media/characters/mochi/kaiju.svg",
  45910. extra: 460/324,
  45911. bottom: 40/500
  45912. }
  45913. },
  45914. head: {
  45915. height: math.unit(1.21, "feet"),
  45916. name: "Head",
  45917. image: {
  45918. source: "./media/characters/mochi/head.svg"
  45919. }
  45920. },
  45921. alternateTail: {
  45922. height: math.unit(2 + 8/12, "feet"),
  45923. weight: math.unit(45, "lb"),
  45924. name: "Alternate Tail",
  45925. image: {
  45926. source: "./media/characters/mochi/alternate-tail.svg",
  45927. extra: 139/76,
  45928. bottom: 45/184
  45929. }
  45930. },
  45931. },
  45932. [
  45933. {
  45934. name: "Micro",
  45935. height: math.unit(2, "inches")
  45936. },
  45937. {
  45938. name: "Normal",
  45939. height: math.unit(2 + 8/12, "feet"),
  45940. default: true
  45941. },
  45942. {
  45943. name: "Macro",
  45944. height: math.unit(106, "feet")
  45945. },
  45946. ]
  45947. ))
  45948. characterMakers.push(() => makeCharacter(
  45949. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45950. {
  45951. front: {
  45952. height: math.unit(5.67, "feet"),
  45953. weight: math.unit(135, "lb"),
  45954. name: "Front",
  45955. image: {
  45956. source: "./media/characters/sarel/front.svg",
  45957. extra: 865/788,
  45958. bottom: 97/962
  45959. }
  45960. },
  45961. back: {
  45962. height: math.unit(5.67, "feet"),
  45963. weight: math.unit(135, "lb"),
  45964. name: "Back",
  45965. image: {
  45966. source: "./media/characters/sarel/back.svg",
  45967. extra: 857/777,
  45968. bottom: 32/889
  45969. }
  45970. },
  45971. chozoan: {
  45972. height: math.unit(5.67, "feet"),
  45973. weight: math.unit(135, "lb"),
  45974. name: "Chozoan",
  45975. image: {
  45976. source: "./media/characters/sarel/chozoan.svg",
  45977. extra: 865/788,
  45978. bottom: 97/962
  45979. }
  45980. },
  45981. current: {
  45982. height: math.unit(5.67, "feet"),
  45983. weight: math.unit(135, "lb"),
  45984. name: "Current",
  45985. image: {
  45986. source: "./media/characters/sarel/current.svg",
  45987. extra: 865/788,
  45988. bottom: 97/962
  45989. }
  45990. },
  45991. head: {
  45992. height: math.unit(1.77, "feet"),
  45993. name: "Head",
  45994. image: {
  45995. source: "./media/characters/sarel/head.svg"
  45996. }
  45997. },
  45998. claws: {
  45999. height: math.unit(1.8, "feet"),
  46000. name: "Claws",
  46001. image: {
  46002. source: "./media/characters/sarel/claws.svg"
  46003. }
  46004. },
  46005. clawsAlt: {
  46006. height: math.unit(1.8, "feet"),
  46007. name: "Claws-alt",
  46008. image: {
  46009. source: "./media/characters/sarel/claws-alt.svg"
  46010. }
  46011. },
  46012. },
  46013. [
  46014. {
  46015. name: "Normal",
  46016. height: math.unit(5.67, "feet"),
  46017. default: true
  46018. },
  46019. ]
  46020. ))
  46021. characterMakers.push(() => makeCharacter(
  46022. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  46023. {
  46024. front: {
  46025. height: math.unit(5500, "feet"),
  46026. name: "Front",
  46027. image: {
  46028. source: "./media/characters/alyonia/front.svg",
  46029. extra: 1200/1135,
  46030. bottom: 29/1229
  46031. }
  46032. },
  46033. back: {
  46034. height: math.unit(5500, "feet"),
  46035. name: "Back",
  46036. image: {
  46037. source: "./media/characters/alyonia/back.svg",
  46038. extra: 1205/1138,
  46039. bottom: 10/1215
  46040. }
  46041. },
  46042. },
  46043. [
  46044. {
  46045. name: "Small",
  46046. height: math.unit(10, "feet")
  46047. },
  46048. {
  46049. name: "Macro",
  46050. height: math.unit(500, "feet")
  46051. },
  46052. {
  46053. name: "Mega Macro",
  46054. height: math.unit(5500, "feet"),
  46055. default: true
  46056. },
  46057. {
  46058. name: "Mega Macro+",
  46059. height: math.unit(500000, "feet")
  46060. },
  46061. {
  46062. name: "Giga Macro",
  46063. height: math.unit(3000, "miles")
  46064. },
  46065. {
  46066. name: "Tera Macro",
  46067. height: math.unit(2.8e6, "miles")
  46068. },
  46069. {
  46070. name: "Galactic",
  46071. height: math.unit(120000, "lightyears")
  46072. },
  46073. ]
  46074. ))
  46075. characterMakers.push(() => makeCharacter(
  46076. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  46077. {
  46078. werewolf: {
  46079. height: math.unit(8, "feet"),
  46080. weight: math.unit(425, "lb"),
  46081. name: "Werewolf",
  46082. image: {
  46083. source: "./media/characters/autumn/werewolf.svg",
  46084. extra: 2154/2031,
  46085. bottom: 160/2314
  46086. }
  46087. },
  46088. human: {
  46089. height: math.unit(5 + 8/12, "feet"),
  46090. weight: math.unit(150, "lb"),
  46091. name: "Human",
  46092. image: {
  46093. source: "./media/characters/autumn/human.svg",
  46094. extra: 1200/1149,
  46095. bottom: 30/1230
  46096. }
  46097. },
  46098. },
  46099. [
  46100. {
  46101. name: "Normal",
  46102. height: math.unit(8, "feet"),
  46103. default: true
  46104. },
  46105. ]
  46106. ))
  46107. characterMakers.push(() => makeCharacter(
  46108. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  46109. {
  46110. front: {
  46111. height: math.unit(8 + 5/12, "feet"),
  46112. weight: math.unit(825, "lb"),
  46113. name: "Front",
  46114. image: {
  46115. source: "./media/characters/cobalt-charizard/front.svg",
  46116. extra: 1268/1155,
  46117. bottom: 122/1390
  46118. }
  46119. },
  46120. side: {
  46121. height: math.unit(8 + 5/12, "feet"),
  46122. weight: math.unit(825, "lb"),
  46123. name: "Side",
  46124. image: {
  46125. source: "./media/characters/cobalt-charizard/side.svg",
  46126. extra: 1348/1257,
  46127. bottom: 58/1406
  46128. }
  46129. },
  46130. gMax: {
  46131. height: math.unit(134 + 11/12, "feet"),
  46132. name: "G-Max",
  46133. image: {
  46134. source: "./media/characters/cobalt-charizard/g-max.svg",
  46135. extra: 1835/1541,
  46136. bottom: 151/1986
  46137. }
  46138. },
  46139. },
  46140. [
  46141. {
  46142. name: "Normal",
  46143. height: math.unit(8 + 5/12, "feet"),
  46144. default: true
  46145. },
  46146. ]
  46147. ))
  46148. characterMakers.push(() => makeCharacter(
  46149. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  46150. {
  46151. front: {
  46152. height: math.unit(6 + 3/12, "feet"),
  46153. weight: math.unit(210, "lb"),
  46154. name: "Front",
  46155. image: {
  46156. source: "./media/characters/stella/front.svg",
  46157. extra: 3549/3335,
  46158. bottom: 51/3600
  46159. }
  46160. },
  46161. },
  46162. [
  46163. {
  46164. name: "Normal",
  46165. height: math.unit(6 + 3/12, "feet"),
  46166. default: true
  46167. },
  46168. ]
  46169. ))
  46170. characterMakers.push(() => makeCharacter(
  46171. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  46172. {
  46173. front: {
  46174. height: math.unit(5, "feet"),
  46175. weight: math.unit(90, "lb"),
  46176. name: "Front",
  46177. image: {
  46178. source: "./media/characters/riley-bishop/front.svg",
  46179. extra: 1450/1428,
  46180. bottom: 152/1602
  46181. }
  46182. },
  46183. },
  46184. [
  46185. {
  46186. name: "Normal",
  46187. height: math.unit(5, "feet"),
  46188. default: true
  46189. },
  46190. ]
  46191. ))
  46192. characterMakers.push(() => makeCharacter(
  46193. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46194. {
  46195. side: {
  46196. height: math.unit(8 + 2/12, "feet"),
  46197. weight: math.unit(500, "kg"),
  46198. name: "Side",
  46199. image: {
  46200. source: "./media/characters/theo-arcanine/side.svg",
  46201. extra: 1342/1074,
  46202. bottom: 111/1453
  46203. }
  46204. },
  46205. },
  46206. [
  46207. {
  46208. name: "Normal",
  46209. height: math.unit(8 + 2/12, "feet"),
  46210. default: true
  46211. },
  46212. ]
  46213. ))
  46214. characterMakers.push(() => makeCharacter(
  46215. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46216. {
  46217. front: {
  46218. height: math.unit(4, "feet"),
  46219. name: "Front",
  46220. image: {
  46221. source: "./media/characters/kali/front.svg",
  46222. extra: 1074/867,
  46223. bottom: 34/1108
  46224. }
  46225. },
  46226. back: {
  46227. height: math.unit(4, "feet"),
  46228. name: "Back",
  46229. image: {
  46230. source: "./media/characters/kali/back.svg",
  46231. extra: 1068/863,
  46232. bottom: 26/1094
  46233. }
  46234. },
  46235. frontAlt: {
  46236. height: math.unit(4, "feet"),
  46237. name: "Front (Alt)",
  46238. image: {
  46239. source: "./media/characters/kali/front-alt.svg",
  46240. extra: 1921/1357,
  46241. bottom: 70/1991
  46242. }
  46243. },
  46244. },
  46245. [
  46246. {
  46247. name: "Normal",
  46248. height: math.unit(4, "feet"),
  46249. default: true
  46250. },
  46251. {
  46252. name: "Big'vali",
  46253. height: math.unit(11, "feet")
  46254. },
  46255. {
  46256. name: "Macro",
  46257. height: math.unit(32, "meters")
  46258. },
  46259. {
  46260. name: "Macro+",
  46261. height: math.unit(150, "meters")
  46262. },
  46263. {
  46264. name: "Megamacro",
  46265. height: math.unit(7500, "meters")
  46266. },
  46267. {
  46268. name: "Megamacro+",
  46269. height: math.unit(80, "kilometers")
  46270. },
  46271. ]
  46272. ))
  46273. characterMakers.push(() => makeCharacter(
  46274. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46275. {
  46276. side: {
  46277. height: math.unit(5 + 11/12, "feet"),
  46278. weight: math.unit(236, "lb"),
  46279. name: "Side",
  46280. image: {
  46281. source: "./media/characters/gapp/side.svg",
  46282. extra: 775/340,
  46283. bottom: 58/833
  46284. }
  46285. },
  46286. mouth: {
  46287. height: math.unit(2.98, "feet"),
  46288. name: "Mouth",
  46289. image: {
  46290. source: "./media/characters/gapp/mouth.svg"
  46291. }
  46292. },
  46293. },
  46294. [
  46295. {
  46296. name: "Normal",
  46297. height: math.unit(5 + 1/12, "feet"),
  46298. default: true
  46299. },
  46300. ]
  46301. ))
  46302. characterMakers.push(() => makeCharacter(
  46303. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46304. {
  46305. front: {
  46306. height: math.unit(6, "feet"),
  46307. name: "Front",
  46308. image: {
  46309. source: "./media/characters/persephone/front.svg",
  46310. extra: 1895/1717,
  46311. bottom: 96/1991
  46312. }
  46313. },
  46314. back: {
  46315. height: math.unit(6, "feet"),
  46316. name: "Back",
  46317. image: {
  46318. source: "./media/characters/persephone/back.svg",
  46319. extra: 1868/1679,
  46320. bottom: 26/1894
  46321. }
  46322. },
  46323. casual: {
  46324. height: math.unit(6, "feet"),
  46325. name: "Casual",
  46326. image: {
  46327. source: "./media/characters/persephone/casual.svg",
  46328. extra: 1713/1541,
  46329. bottom: 76/1789
  46330. }
  46331. },
  46332. gaming: {
  46333. height: math.unit(3.55, "feet"),
  46334. name: "Gaming",
  46335. image: {
  46336. source: "./media/characters/persephone/gaming.svg",
  46337. extra: 1242/1038,
  46338. bottom: 66/1308
  46339. }
  46340. },
  46341. head: {
  46342. height: math.unit(2.15, "feet"),
  46343. name: "😐",
  46344. image: {
  46345. source: "./media/characters/persephone/head.svg"
  46346. }
  46347. },
  46348. talking: {
  46349. height: math.unit(2.5, "feet"),
  46350. name: "💬",
  46351. image: {
  46352. source: "./media/characters/persephone/talking.svg"
  46353. }
  46354. },
  46355. hmm: {
  46356. height: math.unit(2.28, "feet"),
  46357. name: "🤨",
  46358. image: {
  46359. source: "./media/characters/persephone/hmm.svg"
  46360. }
  46361. },
  46362. },
  46363. [
  46364. {
  46365. name: "Human Size",
  46366. height: math.unit(6, "feet")
  46367. },
  46368. {
  46369. name: "Big Steppy",
  46370. height: math.unit(600, "meters"),
  46371. default: true
  46372. },
  46373. {
  46374. name: "Galaxy Brain",
  46375. height: math.unit(1, "zettameter")
  46376. },
  46377. ]
  46378. ))
  46379. characterMakers.push(() => makeCharacter(
  46380. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46381. {
  46382. front: {
  46383. height: math.unit(1.85, "meters"),
  46384. name: "Front",
  46385. image: {
  46386. source: "./media/characters/riley-foxthing/front.svg",
  46387. extra: 1495/1354,
  46388. bottom: 122/1617
  46389. }
  46390. },
  46391. frontAlt: {
  46392. height: math.unit(1.85, "meters"),
  46393. name: "Front (Alt)",
  46394. image: {
  46395. source: "./media/characters/riley-foxthing/front-alt.svg",
  46396. extra: 1572/1389,
  46397. bottom: 116/1688
  46398. }
  46399. },
  46400. },
  46401. [
  46402. {
  46403. name: "Normal Sized",
  46404. height: math.unit(1.85, "meters"),
  46405. default: true
  46406. },
  46407. {
  46408. name: "Quite Sizable",
  46409. height: math.unit(5, "meters")
  46410. },
  46411. {
  46412. name: "Rather Large",
  46413. height: math.unit(20, "meters")
  46414. },
  46415. {
  46416. name: "Macro",
  46417. height: math.unit(450, "meters")
  46418. },
  46419. {
  46420. name: "Giga",
  46421. height: math.unit(5, "km")
  46422. },
  46423. ]
  46424. ))
  46425. characterMakers.push(() => makeCharacter(
  46426. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46427. {
  46428. front: {
  46429. height: math.unit(6, "feet"),
  46430. weight: math.unit(200, "lb"),
  46431. name: "Front",
  46432. image: {
  46433. source: "./media/characters/blizzard/front.svg",
  46434. extra: 1136/990,
  46435. bottom: 136/1272
  46436. }
  46437. },
  46438. back: {
  46439. height: math.unit(6, "feet"),
  46440. weight: math.unit(200, "lb"),
  46441. name: "Back",
  46442. image: {
  46443. source: "./media/characters/blizzard/back.svg",
  46444. extra: 1175/1034,
  46445. bottom: 97/1272
  46446. }
  46447. },
  46448. sitting: {
  46449. height: math.unit(3.725, "feet"),
  46450. weight: math.unit(200, "lb"),
  46451. name: "Sitting",
  46452. image: {
  46453. source: "./media/characters/blizzard/sitting.svg",
  46454. extra: 581/485,
  46455. bottom: 90/671
  46456. }
  46457. },
  46458. frontWizard: {
  46459. height: math.unit(7.9, "feet"),
  46460. weight: math.unit(200, "lb"),
  46461. name: "Front (Wizard)",
  46462. image: {
  46463. source: "./media/characters/blizzard/front-wizard.svg"
  46464. }
  46465. },
  46466. backWizard: {
  46467. height: math.unit(7.9, "feet"),
  46468. weight: math.unit(200, "lb"),
  46469. name: "Back (Wizard)",
  46470. image: {
  46471. source: "./media/characters/blizzard/back-wizard.svg"
  46472. }
  46473. },
  46474. frontNsfw: {
  46475. height: math.unit(6, "feet"),
  46476. weight: math.unit(200, "lb"),
  46477. name: "Front (NSFW)",
  46478. image: {
  46479. source: "./media/characters/blizzard/front-nsfw.svg",
  46480. extra: 1136/990,
  46481. bottom: 136/1272
  46482. }
  46483. },
  46484. backNsfw: {
  46485. height: math.unit(6, "feet"),
  46486. weight: math.unit(200, "lb"),
  46487. name: "Back (NSFW)",
  46488. image: {
  46489. source: "./media/characters/blizzard/back-nsfw.svg",
  46490. extra: 1175/1034,
  46491. bottom: 97/1272
  46492. }
  46493. },
  46494. sittingNsfw: {
  46495. height: math.unit(3.725, "feet"),
  46496. weight: math.unit(200, "lb"),
  46497. name: "Sitting (NSFW)",
  46498. image: {
  46499. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46500. extra: 581/485,
  46501. bottom: 90/671
  46502. }
  46503. },
  46504. wizardFrontNsfw: {
  46505. height: math.unit(7.9, "feet"),
  46506. weight: math.unit(200, "lb"),
  46507. name: "Wizard (Front, NSFW)",
  46508. image: {
  46509. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46510. }
  46511. },
  46512. },
  46513. [
  46514. {
  46515. name: "Normal",
  46516. height: math.unit(6, "feet"),
  46517. default: true
  46518. },
  46519. ]
  46520. ))
  46521. characterMakers.push(() => makeCharacter(
  46522. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46523. {
  46524. front: {
  46525. height: math.unit(5 + 2/12, "feet"),
  46526. name: "Front",
  46527. image: {
  46528. source: "./media/characters/lumi/front.svg",
  46529. extra: 1328/1268,
  46530. bottom: 103/1431
  46531. }
  46532. },
  46533. back: {
  46534. height: math.unit(5 + 2/12, "feet"),
  46535. name: "Back",
  46536. image: {
  46537. source: "./media/characters/lumi/back.svg",
  46538. extra: 1381/1327,
  46539. bottom: 43/1424
  46540. }
  46541. },
  46542. },
  46543. [
  46544. {
  46545. name: "Normal",
  46546. height: math.unit(5 + 2/12, "feet"),
  46547. default: true
  46548. },
  46549. ]
  46550. ))
  46551. characterMakers.push(() => makeCharacter(
  46552. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46553. {
  46554. front: {
  46555. height: math.unit(5 + 9/12, "feet"),
  46556. name: "Front",
  46557. image: {
  46558. source: "./media/characters/aliya-cotton/front.svg",
  46559. extra: 577/564,
  46560. bottom: 29/606
  46561. }
  46562. },
  46563. },
  46564. [
  46565. {
  46566. name: "Normal",
  46567. height: math.unit(5 + 9/12, "feet"),
  46568. default: true
  46569. },
  46570. ]
  46571. ))
  46572. characterMakers.push(() => makeCharacter(
  46573. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46574. {
  46575. front: {
  46576. height: math.unit(2.7, "meters"),
  46577. weight: math.unit(25000, "lb"),
  46578. name: "Front",
  46579. image: {
  46580. source: "./media/characters/noah-luxray/front.svg",
  46581. extra: 1644/825,
  46582. bottom: 339/1983
  46583. }
  46584. },
  46585. side: {
  46586. height: math.unit(2.97, "meters"),
  46587. weight: math.unit(25000, "lb"),
  46588. name: "Side",
  46589. image: {
  46590. source: "./media/characters/noah-luxray/side.svg",
  46591. extra: 1319/650,
  46592. bottom: 163/1482
  46593. }
  46594. },
  46595. dick: {
  46596. height: math.unit(7.4, "feet"),
  46597. weight: math.unit(2500, "lb"),
  46598. name: "Dick",
  46599. image: {
  46600. source: "./media/characters/noah-luxray/dick.svg"
  46601. }
  46602. },
  46603. dickAlt: {
  46604. height: math.unit(10.83, "feet"),
  46605. weight: math.unit(2500, "lb"),
  46606. name: "Dick-alt",
  46607. image: {
  46608. source: "./media/characters/noah-luxray/dick-alt.svg"
  46609. }
  46610. },
  46611. },
  46612. [
  46613. {
  46614. name: "BIG",
  46615. height: math.unit(2.7, "meters"),
  46616. default: true
  46617. },
  46618. ]
  46619. ))
  46620. characterMakers.push(() => makeCharacter(
  46621. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46622. {
  46623. standing: {
  46624. height: math.unit(183, "cm"),
  46625. weight: math.unit(68, "kg"),
  46626. name: "Standing",
  46627. image: {
  46628. source: "./media/characters/arion/standing.svg",
  46629. extra: 1869/1807,
  46630. bottom: 93/1962
  46631. }
  46632. },
  46633. reclining: {
  46634. height: math.unit(70.5, "cm"),
  46635. weight: math.unit(68, "lb"),
  46636. name: "Reclining",
  46637. image: {
  46638. source: "./media/characters/arion/reclining.svg",
  46639. extra: 937/870,
  46640. bottom: 63/1000
  46641. }
  46642. },
  46643. },
  46644. [
  46645. {
  46646. name: "Colossus Size, Low",
  46647. height: math.unit(33, "meters"),
  46648. default: true
  46649. },
  46650. {
  46651. name: "Colossus Size, Mid",
  46652. height: math.unit(52, "meters")
  46653. },
  46654. {
  46655. name: "Colossus Size, High",
  46656. height: math.unit(60, "meters")
  46657. },
  46658. {
  46659. name: "Titan Size, Low",
  46660. height: math.unit(91, "meters"),
  46661. },
  46662. {
  46663. name: "Titan Size, Mid",
  46664. height: math.unit(122, "meters")
  46665. },
  46666. {
  46667. name: "Titan Size, High",
  46668. height: math.unit(162, "meters")
  46669. },
  46670. ]
  46671. ))
  46672. characterMakers.push(() => makeCharacter(
  46673. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46674. {
  46675. front: {
  46676. height: math.unit(53, "meters"),
  46677. name: "Front",
  46678. image: {
  46679. source: "./media/characters/stellar-marbey/front.svg",
  46680. extra: 1913/1805,
  46681. bottom: 92/2005
  46682. }
  46683. },
  46684. back: {
  46685. height: math.unit(53, "meters"),
  46686. name: "Back",
  46687. image: {
  46688. source: "./media/characters/stellar-marbey/back.svg",
  46689. extra: 1960/1851,
  46690. bottom: 28/1988
  46691. }
  46692. },
  46693. mouth: {
  46694. height: math.unit(3.5, "meters"),
  46695. name: "Mouth",
  46696. image: {
  46697. source: "./media/characters/stellar-marbey/mouth.svg"
  46698. }
  46699. },
  46700. },
  46701. [
  46702. {
  46703. name: "Macro",
  46704. height: math.unit(53, "meters"),
  46705. default: true
  46706. },
  46707. ]
  46708. ))
  46709. characterMakers.push(() => makeCharacter(
  46710. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46711. {
  46712. front: {
  46713. height: math.unit(8 + 1/12, "feet"),
  46714. weight: math.unit(233, "lb"),
  46715. name: "Front",
  46716. image: {
  46717. source: "./media/characters/matsu/front.svg",
  46718. extra: 832/772,
  46719. bottom: 40/872
  46720. }
  46721. },
  46722. back: {
  46723. height: math.unit(8 + 1/12, "feet"),
  46724. weight: math.unit(233, "lb"),
  46725. name: "Back",
  46726. image: {
  46727. source: "./media/characters/matsu/back.svg",
  46728. extra: 839/780,
  46729. bottom: 47/886
  46730. }
  46731. },
  46732. },
  46733. [
  46734. {
  46735. name: "Normal",
  46736. height: math.unit(8 + 1/12, "feet"),
  46737. default: true
  46738. },
  46739. ]
  46740. ))
  46741. characterMakers.push(() => makeCharacter(
  46742. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46743. {
  46744. front: {
  46745. height: math.unit(4, "feet"),
  46746. weight: math.unit(148, "lb"),
  46747. name: "Front",
  46748. image: {
  46749. source: "./media/characters/thiz/front.svg",
  46750. extra: 1913/1748,
  46751. bottom: 62/1975
  46752. }
  46753. },
  46754. },
  46755. [
  46756. {
  46757. name: "Normal",
  46758. height: math.unit(4, "feet"),
  46759. default: true
  46760. },
  46761. ]
  46762. ))
  46763. characterMakers.push(() => makeCharacter(
  46764. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46765. {
  46766. front: {
  46767. height: math.unit(7 + 6/12, "feet"),
  46768. weight: math.unit(267, "lb"),
  46769. name: "Front",
  46770. image: {
  46771. source: "./media/characters/marcel/front.svg",
  46772. extra: 1221/1096,
  46773. bottom: 76/1297
  46774. }
  46775. },
  46776. },
  46777. [
  46778. {
  46779. name: "Normal",
  46780. height: math.unit(7 + 6/12, "feet"),
  46781. default: true
  46782. },
  46783. ]
  46784. ))
  46785. characterMakers.push(() => makeCharacter(
  46786. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46787. {
  46788. side: {
  46789. height: math.unit(42, "meters"),
  46790. name: "Side",
  46791. image: {
  46792. source: "./media/characters/flake/side.svg",
  46793. extra: 1525/1306,
  46794. bottom: 209/1734
  46795. }
  46796. },
  46797. },
  46798. [
  46799. {
  46800. name: "Normal",
  46801. height: math.unit(42, "meters"),
  46802. default: true
  46803. },
  46804. ]
  46805. ))
  46806. characterMakers.push(() => makeCharacter(
  46807. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46808. {
  46809. dressed: {
  46810. height: math.unit(6 + 4/12, "feet"),
  46811. weight: math.unit(520, "lb"),
  46812. name: "Dressed",
  46813. image: {
  46814. source: "./media/characters/someonne/dressed.svg",
  46815. extra: 1020/1010,
  46816. bottom: 178/1198
  46817. }
  46818. },
  46819. undressed: {
  46820. height: math.unit(6 + 4/12, "feet"),
  46821. weight: math.unit(520, "lb"),
  46822. name: "Undressed",
  46823. image: {
  46824. source: "./media/characters/someonne/undressed.svg",
  46825. extra: 1019/1014,
  46826. bottom: 169/1188
  46827. }
  46828. },
  46829. },
  46830. [
  46831. {
  46832. name: "Normal",
  46833. height: math.unit(6 + 4/12, "feet"),
  46834. default: true
  46835. },
  46836. ]
  46837. ))
  46838. characterMakers.push(() => makeCharacter(
  46839. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46840. {
  46841. front: {
  46842. height: math.unit(3, "feet"),
  46843. weight: math.unit(30, "lb"),
  46844. name: "Front",
  46845. image: {
  46846. source: "./media/characters/till/front.svg",
  46847. extra: 892/823,
  46848. bottom: 55/947
  46849. }
  46850. },
  46851. },
  46852. [
  46853. {
  46854. name: "Normal",
  46855. height: math.unit(3, "feet"),
  46856. default: true
  46857. },
  46858. ]
  46859. ))
  46860. characterMakers.push(() => makeCharacter(
  46861. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46862. {
  46863. front: {
  46864. height: math.unit(9 + 8/12, "feet"),
  46865. weight: math.unit(800, "lb"),
  46866. name: "Front",
  46867. image: {
  46868. source: "./media/characters/sydney-heki/front.svg",
  46869. extra: 1360/1300,
  46870. bottom: 22/1382
  46871. }
  46872. },
  46873. back: {
  46874. height: math.unit(9 + 8/12, "feet"),
  46875. weight: math.unit(800, "lb"),
  46876. name: "Back",
  46877. image: {
  46878. source: "./media/characters/sydney-heki/back.svg",
  46879. extra: 1356/1293,
  46880. bottom: 12/1368
  46881. }
  46882. },
  46883. frontDressed: {
  46884. height: math.unit(9 + 8/12, "feet"),
  46885. weight: math.unit(800, "lb"),
  46886. name: "Front-dressed",
  46887. image: {
  46888. source: "./media/characters/sydney-heki/front-dressed.svg",
  46889. extra: 1360/1300,
  46890. bottom: 22/1382
  46891. }
  46892. },
  46893. },
  46894. [
  46895. {
  46896. name: "Normal",
  46897. height: math.unit(9 + 8/12, "feet"),
  46898. default: true
  46899. },
  46900. {
  46901. name: "Macro",
  46902. height: math.unit(500, "feet")
  46903. },
  46904. {
  46905. name: "Megamacro",
  46906. height: math.unit(3.6, "miles")
  46907. },
  46908. ]
  46909. ))
  46910. characterMakers.push(() => makeCharacter(
  46911. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46912. {
  46913. front: {
  46914. height: math.unit(200, "cm"),
  46915. weight: math.unit(250, "lb"),
  46916. name: "Front",
  46917. image: {
  46918. source: "./media/characters/fowler-karlsson/front.svg",
  46919. extra: 897/845,
  46920. bottom: 123/1020
  46921. }
  46922. },
  46923. back: {
  46924. height: math.unit(200, "cm"),
  46925. weight: math.unit(250, "lb"),
  46926. name: "Back",
  46927. image: {
  46928. source: "./media/characters/fowler-karlsson/back.svg",
  46929. extra: 999/944,
  46930. bottom: 26/1025
  46931. }
  46932. },
  46933. dick: {
  46934. height: math.unit(1.92, "feet"),
  46935. weight: math.unit(150, "lb"),
  46936. name: "Dick",
  46937. image: {
  46938. source: "./media/characters/fowler-karlsson/dick.svg"
  46939. }
  46940. },
  46941. },
  46942. [
  46943. {
  46944. name: "Normal",
  46945. height: math.unit(200, "cm"),
  46946. default: true
  46947. },
  46948. {
  46949. name: "Smaller Macro",
  46950. height: math.unit(90, "m")
  46951. },
  46952. {
  46953. name: "Macro",
  46954. height: math.unit(150, "m")
  46955. },
  46956. {
  46957. name: "Bigger Macro",
  46958. height: math.unit(300, "m")
  46959. },
  46960. ]
  46961. ))
  46962. characterMakers.push(() => makeCharacter(
  46963. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46964. {
  46965. side: {
  46966. height: math.unit(8 + 2/12, "feet"),
  46967. weight: math.unit(1, "tonne"),
  46968. name: "Side",
  46969. image: {
  46970. source: "./media/characters/rylide/side.svg",
  46971. extra: 1318/1034,
  46972. bottom: 106/1424
  46973. }
  46974. },
  46975. sitting: {
  46976. height: math.unit(303, "cm"),
  46977. weight: math.unit(1, "tonne"),
  46978. name: "Sitting",
  46979. image: {
  46980. source: "./media/characters/rylide/sitting.svg",
  46981. extra: 1303/1103,
  46982. bottom: 36/1339
  46983. }
  46984. },
  46985. },
  46986. [
  46987. {
  46988. name: "Normal",
  46989. height: math.unit(8 + 2/12, "feet"),
  46990. default: true
  46991. },
  46992. ]
  46993. ))
  46994. characterMakers.push(() => makeCharacter(
  46995. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46996. {
  46997. front: {
  46998. height: math.unit(5 + 10/12, "feet"),
  46999. weight: math.unit(160, "lb"),
  47000. name: "Front",
  47001. image: {
  47002. source: "./media/characters/pudask/front.svg",
  47003. extra: 1616/1590,
  47004. bottom: 161/1777
  47005. }
  47006. },
  47007. },
  47008. [
  47009. {
  47010. name: "Ferret Height",
  47011. height: math.unit(2 + 5/12, "feet")
  47012. },
  47013. {
  47014. name: "Canon Height",
  47015. height: math.unit(5 + 10/12, "feet"),
  47016. default: true
  47017. },
  47018. ]
  47019. ))
  47020. characterMakers.push(() => makeCharacter(
  47021. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  47022. {
  47023. front: {
  47024. height: math.unit(3 + 6/12, "feet"),
  47025. weight: math.unit(60, "lb"),
  47026. name: "Front",
  47027. image: {
  47028. source: "./media/characters/ramita/front.svg",
  47029. extra: 1402/1232,
  47030. bottom: 62/1464
  47031. }
  47032. },
  47033. dressed: {
  47034. height: math.unit(3 + 6/12, "feet"),
  47035. weight: math.unit(60, "lb"),
  47036. name: "Dressed",
  47037. image: {
  47038. source: "./media/characters/ramita/dressed.svg",
  47039. extra: 1534/1249,
  47040. bottom: 50/1584
  47041. }
  47042. },
  47043. },
  47044. [
  47045. {
  47046. name: "Normal",
  47047. height: math.unit(3 + 6/12, "feet"),
  47048. default: true
  47049. },
  47050. ]
  47051. ))
  47052. characterMakers.push(() => makeCharacter(
  47053. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  47054. {
  47055. front: {
  47056. height: math.unit(8, "feet"),
  47057. name: "Front",
  47058. image: {
  47059. source: "./media/characters/ark/front.svg",
  47060. extra: 772/693,
  47061. bottom: 45/817
  47062. }
  47063. },
  47064. },
  47065. [
  47066. {
  47067. name: "Normal",
  47068. height: math.unit(8, "feet"),
  47069. default: true
  47070. },
  47071. ]
  47072. ))
  47073. characterMakers.push(() => makeCharacter(
  47074. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  47075. {
  47076. front: {
  47077. height: math.unit(6, "feet"),
  47078. weight: math.unit(250, "lb"),
  47079. volume: math.unit(5/8, "gallons"),
  47080. name: "Front",
  47081. image: {
  47082. source: "./media/characters/ludwig-horn/front.svg",
  47083. extra: 1782/1635,
  47084. bottom: 96/1878
  47085. }
  47086. },
  47087. back: {
  47088. height: math.unit(6, "feet"),
  47089. weight: math.unit(250, "lb"),
  47090. volume: math.unit(5/8, "gallons"),
  47091. name: "Back",
  47092. image: {
  47093. source: "./media/characters/ludwig-horn/back.svg",
  47094. extra: 1874/1729,
  47095. bottom: 27/1901
  47096. }
  47097. },
  47098. dick: {
  47099. height: math.unit(1.05, "feet"),
  47100. weight: math.unit(15, "lb"),
  47101. volume: math.unit(5/8, "gallons"),
  47102. name: "Dick",
  47103. image: {
  47104. source: "./media/characters/ludwig-horn/dick.svg"
  47105. }
  47106. },
  47107. },
  47108. [
  47109. {
  47110. name: "Small",
  47111. height: math.unit(6, "feet")
  47112. },
  47113. {
  47114. name: "Typical",
  47115. height: math.unit(12, "feet"),
  47116. default: true
  47117. },
  47118. {
  47119. name: "Building",
  47120. height: math.unit(80, "feet")
  47121. },
  47122. {
  47123. name: "Town",
  47124. height: math.unit(800, "feet")
  47125. },
  47126. {
  47127. name: "Kingdom",
  47128. height: math.unit(80000, "feet")
  47129. },
  47130. {
  47131. name: "Planet",
  47132. height: math.unit(8000000, "feet")
  47133. },
  47134. {
  47135. name: "Universe",
  47136. height: math.unit(8000000000, "feet")
  47137. },
  47138. {
  47139. name: "Transcended",
  47140. height: math.unit(8e27, "feet")
  47141. },
  47142. ]
  47143. ))
  47144. characterMakers.push(() => makeCharacter(
  47145. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  47146. {
  47147. front: {
  47148. height: math.unit(5, "feet"),
  47149. weight: math.unit(50, "kg"),
  47150. name: "Front",
  47151. image: {
  47152. source: "./media/characters/biot-avery/front.svg",
  47153. extra: 1295/1232,
  47154. bottom: 86/1381
  47155. }
  47156. },
  47157. },
  47158. [
  47159. {
  47160. name: "Normal",
  47161. height: math.unit(5, "feet"),
  47162. default: true
  47163. },
  47164. ]
  47165. ))
  47166. characterMakers.push(() => makeCharacter(
  47167. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  47168. {
  47169. front: {
  47170. height: math.unit(6, "feet"),
  47171. name: "Front",
  47172. image: {
  47173. source: "./media/characters/kitsune-kiro/front.svg",
  47174. extra: 1270/1158,
  47175. bottom: 42/1312
  47176. }
  47177. },
  47178. frontAlt: {
  47179. height: math.unit(6, "feet"),
  47180. name: "Front-alt",
  47181. image: {
  47182. source: "./media/characters/kitsune-kiro/front-alt.svg",
  47183. extra: 1130/1081,
  47184. bottom: 36/1166
  47185. }
  47186. },
  47187. },
  47188. [
  47189. {
  47190. name: "Smol",
  47191. height: math.unit(3, "feet")
  47192. },
  47193. {
  47194. name: "Normal",
  47195. height: math.unit(6, "feet"),
  47196. default: true
  47197. },
  47198. ]
  47199. ))
  47200. characterMakers.push(() => makeCharacter(
  47201. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47202. {
  47203. front: {
  47204. height: math.unit(6, "feet"),
  47205. weight: math.unit(125, "lb"),
  47206. name: "Front",
  47207. image: {
  47208. source: "./media/characters/jack-thatcher/front.svg",
  47209. extra: 1474/1370,
  47210. bottom: 26/1500
  47211. }
  47212. },
  47213. back: {
  47214. height: math.unit(6, "feet"),
  47215. weight: math.unit(125, "lb"),
  47216. name: "Back",
  47217. image: {
  47218. source: "./media/characters/jack-thatcher/back.svg",
  47219. extra: 1489/1384,
  47220. bottom: 18/1507
  47221. }
  47222. },
  47223. },
  47224. [
  47225. {
  47226. name: "Normal",
  47227. height: math.unit(6, "feet"),
  47228. default: true
  47229. },
  47230. {
  47231. name: "Macro",
  47232. height: math.unit(75, "feet")
  47233. },
  47234. {
  47235. name: "Macro-er",
  47236. height: math.unit(250, "feet")
  47237. },
  47238. ]
  47239. ))
  47240. characterMakers.push(() => makeCharacter(
  47241. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47242. {
  47243. front: {
  47244. height: math.unit(7, "feet"),
  47245. weight: math.unit(110, "kg"),
  47246. name: "Front",
  47247. image: {
  47248. source: "./media/characters/max-hyper/front.svg",
  47249. extra: 1969/1881,
  47250. bottom: 49/2018
  47251. }
  47252. },
  47253. },
  47254. [
  47255. {
  47256. name: "Normal",
  47257. height: math.unit(7, "feet"),
  47258. default: true
  47259. },
  47260. ]
  47261. ))
  47262. characterMakers.push(() => makeCharacter(
  47263. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47264. {
  47265. front: {
  47266. height: math.unit(5 + 5/12, "feet"),
  47267. weight: math.unit(160, "lb"),
  47268. name: "Front",
  47269. image: {
  47270. source: "./media/characters/spook/front.svg",
  47271. extra: 794/791,
  47272. bottom: 54/848
  47273. }
  47274. },
  47275. back: {
  47276. height: math.unit(5 + 5/12, "feet"),
  47277. weight: math.unit(160, "lb"),
  47278. name: "Back",
  47279. image: {
  47280. source: "./media/characters/spook/back.svg",
  47281. extra: 812/798,
  47282. bottom: 32/844
  47283. }
  47284. },
  47285. },
  47286. [
  47287. {
  47288. name: "Normal",
  47289. height: math.unit(5 + 5/12, "feet"),
  47290. default: true
  47291. },
  47292. ]
  47293. ))
  47294. characterMakers.push(() => makeCharacter(
  47295. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47296. {
  47297. front: {
  47298. height: math.unit(18, "feet"),
  47299. name: "Front",
  47300. image: {
  47301. source: "./media/characters/xeaduulix/front.svg",
  47302. extra: 1380/1166,
  47303. bottom: 110/1490
  47304. }
  47305. },
  47306. back: {
  47307. height: math.unit(18, "feet"),
  47308. name: "Back",
  47309. image: {
  47310. source: "./media/characters/xeaduulix/back.svg",
  47311. extra: 1592/1170,
  47312. bottom: 128/1720
  47313. }
  47314. },
  47315. frontNsfw: {
  47316. height: math.unit(18, "feet"),
  47317. name: "Front (NSFW)",
  47318. image: {
  47319. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47320. extra: 1380/1166,
  47321. bottom: 110/1490
  47322. }
  47323. },
  47324. backNsfw: {
  47325. height: math.unit(18, "feet"),
  47326. name: "Back (NSFW)",
  47327. image: {
  47328. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47329. extra: 1592/1170,
  47330. bottom: 128/1720
  47331. }
  47332. },
  47333. },
  47334. [
  47335. {
  47336. name: "Normal",
  47337. height: math.unit(18, "feet"),
  47338. default: true
  47339. },
  47340. ]
  47341. ))
  47342. characterMakers.push(() => makeCharacter(
  47343. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47344. {
  47345. spreadWings: {
  47346. height: math.unit(20, "feet"),
  47347. name: "Spread Wings",
  47348. image: {
  47349. source: "./media/characters/fledge/spread-wings.svg",
  47350. extra: 693/635,
  47351. bottom: 26/719
  47352. }
  47353. },
  47354. front: {
  47355. height: math.unit(20, "feet"),
  47356. name: "Front",
  47357. image: {
  47358. source: "./media/characters/fledge/front.svg",
  47359. extra: 684/637,
  47360. bottom: 18/702
  47361. }
  47362. },
  47363. frontAlt: {
  47364. height: math.unit(20, "feet"),
  47365. name: "Front (Alt)",
  47366. image: {
  47367. source: "./media/characters/fledge/front-alt.svg",
  47368. extra: 708/664,
  47369. bottom: 13/721
  47370. }
  47371. },
  47372. back: {
  47373. height: math.unit(20, "feet"),
  47374. name: "Back",
  47375. image: {
  47376. source: "./media/characters/fledge/back.svg",
  47377. extra: 718/634,
  47378. bottom: 22/740
  47379. }
  47380. },
  47381. head: {
  47382. height: math.unit(5.55, "feet"),
  47383. name: "Head",
  47384. image: {
  47385. source: "./media/characters/fledge/head.svg"
  47386. }
  47387. },
  47388. headAlt: {
  47389. height: math.unit(5.1, "feet"),
  47390. name: "Head (Alt)",
  47391. image: {
  47392. source: "./media/characters/fledge/head-alt.svg"
  47393. }
  47394. },
  47395. },
  47396. [
  47397. {
  47398. name: "Small",
  47399. height: math.unit(6 + 2/12, "feet")
  47400. },
  47401. {
  47402. name: "Big",
  47403. height: math.unit(20, "feet"),
  47404. default: true
  47405. },
  47406. {
  47407. name: "Giant",
  47408. height: math.unit(100, "feet")
  47409. },
  47410. {
  47411. name: "Macro",
  47412. height: math.unit(200, "feet")
  47413. },
  47414. ]
  47415. ))
  47416. characterMakers.push(() => makeCharacter(
  47417. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47418. {
  47419. front: {
  47420. height: math.unit(1, "meter"),
  47421. name: "Front",
  47422. image: {
  47423. source: "./media/characters/atlas-morenai/front.svg",
  47424. extra: 1275/1043,
  47425. bottom: 19/1294
  47426. }
  47427. },
  47428. back: {
  47429. height: math.unit(1, "meter"),
  47430. name: "Back",
  47431. image: {
  47432. source: "./media/characters/atlas-morenai/back.svg",
  47433. extra: 1141/1001,
  47434. bottom: 25/1166
  47435. }
  47436. },
  47437. },
  47438. [
  47439. {
  47440. name: "Normal",
  47441. height: math.unit(1, "meter"),
  47442. default: true
  47443. },
  47444. {
  47445. name: "Magic-Infused",
  47446. height: math.unit(5, "meters")
  47447. },
  47448. ]
  47449. ))
  47450. characterMakers.push(() => makeCharacter(
  47451. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47452. {
  47453. front: {
  47454. height: math.unit(5, "meters"),
  47455. name: "Front",
  47456. image: {
  47457. source: "./media/characters/cintia/front.svg",
  47458. extra: 1312/1228,
  47459. bottom: 38/1350
  47460. }
  47461. },
  47462. back: {
  47463. height: math.unit(5, "meters"),
  47464. name: "Back",
  47465. image: {
  47466. source: "./media/characters/cintia/back.svg",
  47467. extra: 1260/1166,
  47468. bottom: 98/1358
  47469. }
  47470. },
  47471. frontDick: {
  47472. height: math.unit(5, "meters"),
  47473. name: "Front (Dick)",
  47474. image: {
  47475. source: "./media/characters/cintia/front-dick.svg",
  47476. extra: 1312/1228,
  47477. bottom: 38/1350
  47478. }
  47479. },
  47480. backDick: {
  47481. height: math.unit(5, "meters"),
  47482. name: "Back (Dick)",
  47483. image: {
  47484. source: "./media/characters/cintia/back-dick.svg",
  47485. extra: 1260/1166,
  47486. bottom: 98/1358
  47487. }
  47488. },
  47489. bust: {
  47490. height: math.unit(1.97, "meters"),
  47491. name: "Bust",
  47492. image: {
  47493. source: "./media/characters/cintia/bust.svg",
  47494. extra: 617/565,
  47495. bottom: 0/617
  47496. }
  47497. },
  47498. },
  47499. [
  47500. {
  47501. name: "Normal",
  47502. height: math.unit(5, "meters"),
  47503. default: true
  47504. },
  47505. ]
  47506. ))
  47507. characterMakers.push(() => makeCharacter(
  47508. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47509. {
  47510. side: {
  47511. height: math.unit(100, "feet"),
  47512. name: "Side",
  47513. image: {
  47514. source: "./media/characters/denora/side.svg",
  47515. extra: 875/803,
  47516. bottom: 9/884
  47517. }
  47518. },
  47519. },
  47520. [
  47521. {
  47522. name: "Standard",
  47523. height: math.unit(100, "feet"),
  47524. default: true
  47525. },
  47526. {
  47527. name: "Grand",
  47528. height: math.unit(1000, "feet")
  47529. },
  47530. {
  47531. name: "Conquering",
  47532. height: math.unit(10000, "feet")
  47533. },
  47534. ]
  47535. ))
  47536. characterMakers.push(() => makeCharacter(
  47537. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47538. {
  47539. dressed: {
  47540. height: math.unit(8 + 5/12, "feet"),
  47541. weight: math.unit(700, "lb"),
  47542. name: "Dressed",
  47543. image: {
  47544. source: "./media/characters/kiva/dressed.svg",
  47545. extra: 1102/1055,
  47546. bottom: 60/1162
  47547. }
  47548. },
  47549. nude: {
  47550. height: math.unit(8 + 5/12, "feet"),
  47551. weight: math.unit(700, "lb"),
  47552. name: "Nude",
  47553. image: {
  47554. source: "./media/characters/kiva/nude.svg",
  47555. extra: 1102/1055,
  47556. bottom: 60/1162
  47557. }
  47558. },
  47559. },
  47560. [
  47561. {
  47562. name: "Base Height",
  47563. height: math.unit(8 + 5/12, "feet"),
  47564. default: true
  47565. },
  47566. {
  47567. name: "Macro",
  47568. height: math.unit(100, "feet")
  47569. },
  47570. {
  47571. name: "Max",
  47572. height: math.unit(3280, "feet")
  47573. },
  47574. ]
  47575. ))
  47576. characterMakers.push(() => makeCharacter(
  47577. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47578. {
  47579. front: {
  47580. height: math.unit(6 + 8/12, "feet"),
  47581. weight: math.unit(250, "lb"),
  47582. name: "Front",
  47583. image: {
  47584. source: "./media/characters/ztragon/front.svg",
  47585. extra: 1825/1684,
  47586. bottom: 98/1923
  47587. }
  47588. },
  47589. },
  47590. [
  47591. {
  47592. name: "Normal",
  47593. height: math.unit(6 + 8/12, "feet"),
  47594. default: true
  47595. },
  47596. {
  47597. name: "Macro",
  47598. height: math.unit(80, "feet")
  47599. },
  47600. ]
  47601. ))
  47602. characterMakers.push(() => makeCharacter(
  47603. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47604. {
  47605. front: {
  47606. height: math.unit(10.4, "feet"),
  47607. weight: math.unit(2, "tons"),
  47608. name: "Front",
  47609. image: {
  47610. source: "./media/characters/yesenia/front.svg",
  47611. extra: 1479/1474,
  47612. bottom: 233/1712
  47613. }
  47614. },
  47615. },
  47616. [
  47617. {
  47618. name: "Normal",
  47619. height: math.unit(10.4, "feet"),
  47620. default: true
  47621. },
  47622. ]
  47623. ))
  47624. characterMakers.push(() => makeCharacter(
  47625. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47626. {
  47627. normal: {
  47628. height: math.unit(6 + 1/12, "feet"),
  47629. weight: math.unit(180, "lb"),
  47630. name: "Normal",
  47631. image: {
  47632. source: "./media/characters/leanne-lycheborne/normal.svg",
  47633. extra: 1748/1660,
  47634. bottom: 98/1846
  47635. }
  47636. },
  47637. were: {
  47638. height: math.unit(12, "feet"),
  47639. weight: math.unit(1600, "lb"),
  47640. name: "Were",
  47641. image: {
  47642. source: "./media/characters/leanne-lycheborne/were.svg",
  47643. extra: 1485/1432,
  47644. bottom: 66/1551
  47645. }
  47646. },
  47647. },
  47648. [
  47649. {
  47650. name: "Normal",
  47651. height: math.unit(6 + 1/12, "feet"),
  47652. default: true
  47653. },
  47654. ]
  47655. ))
  47656. characterMakers.push(() => makeCharacter(
  47657. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47658. {
  47659. side: {
  47660. height: math.unit(13, "feet"),
  47661. name: "Side",
  47662. image: {
  47663. source: "./media/characters/kira-tyler/side.svg",
  47664. extra: 693/393,
  47665. bottom: 58/751
  47666. }
  47667. },
  47668. },
  47669. [
  47670. {
  47671. name: "Normal",
  47672. height: math.unit(13, "feet"),
  47673. default: true
  47674. },
  47675. ]
  47676. ))
  47677. characterMakers.push(() => makeCharacter(
  47678. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47679. {
  47680. front: {
  47681. height: math.unit(10.3, "feet"),
  47682. weight: math.unit(150, "lb"),
  47683. name: "Front",
  47684. image: {
  47685. source: "./media/characters/blaze/front.svg",
  47686. extra: 1378/1286,
  47687. bottom: 172/1550
  47688. }
  47689. },
  47690. },
  47691. [
  47692. {
  47693. name: "Normal",
  47694. height: math.unit(10.3, "feet"),
  47695. default: true
  47696. },
  47697. ]
  47698. ))
  47699. characterMakers.push(() => makeCharacter(
  47700. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47701. {
  47702. side: {
  47703. height: math.unit(2, "meters"),
  47704. weight: math.unit(400, "kg"),
  47705. name: "Side",
  47706. image: {
  47707. source: "./media/characters/anu/side.svg",
  47708. extra: 506/394,
  47709. bottom: 18/524
  47710. }
  47711. },
  47712. },
  47713. [
  47714. {
  47715. name: "Humanoid",
  47716. height: math.unit(2, "meters")
  47717. },
  47718. {
  47719. name: "Normal",
  47720. height: math.unit(5, "meters"),
  47721. default: true
  47722. },
  47723. ]
  47724. ))
  47725. characterMakers.push(() => makeCharacter(
  47726. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47727. {
  47728. front: {
  47729. height: math.unit(5 + 5/12, "feet"),
  47730. weight: math.unit(170, "lb"),
  47731. name: "Front",
  47732. image: {
  47733. source: "./media/characters/synx-the-lynx/front.svg",
  47734. extra: 1893/1745,
  47735. bottom: 17/1910
  47736. }
  47737. },
  47738. side: {
  47739. height: math.unit(5 + 5/12, "feet"),
  47740. weight: math.unit(170, "lb"),
  47741. name: "Side",
  47742. image: {
  47743. source: "./media/characters/synx-the-lynx/side.svg",
  47744. extra: 1884/1740,
  47745. bottom: 39/1923
  47746. }
  47747. },
  47748. back: {
  47749. height: math.unit(5 + 5/12, "feet"),
  47750. weight: math.unit(170, "lb"),
  47751. name: "Back",
  47752. image: {
  47753. source: "./media/characters/synx-the-lynx/back.svg",
  47754. extra: 1903/1755,
  47755. bottom: 14/1917
  47756. }
  47757. },
  47758. },
  47759. [
  47760. {
  47761. name: "Normal",
  47762. height: math.unit(5 + 5/12, "feet"),
  47763. default: true
  47764. },
  47765. ]
  47766. ))
  47767. characterMakers.push(() => makeCharacter(
  47768. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47769. {
  47770. back: {
  47771. height: math.unit(15, "feet"),
  47772. name: "Back",
  47773. image: {
  47774. source: "./media/characters/nadezda-fex/back.svg",
  47775. extra: 1695/1481,
  47776. bottom: 25/1720
  47777. }
  47778. },
  47779. },
  47780. [
  47781. {
  47782. name: "Normal",
  47783. height: math.unit(15, "feet"),
  47784. default: true
  47785. },
  47786. {
  47787. name: "Macro",
  47788. height: math.unit(2.5, "miles")
  47789. },
  47790. {
  47791. name: "Goddess",
  47792. height: math.unit(2, "multiverses")
  47793. },
  47794. ]
  47795. ))
  47796. characterMakers.push(() => makeCharacter(
  47797. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47798. {
  47799. front: {
  47800. height: math.unit(216, "cm"),
  47801. name: "Front",
  47802. image: {
  47803. source: "./media/characters/lev/front.svg",
  47804. extra: 1728/1670,
  47805. bottom: 82/1810
  47806. }
  47807. },
  47808. back: {
  47809. height: math.unit(216, "cm"),
  47810. name: "Back",
  47811. image: {
  47812. source: "./media/characters/lev/back.svg",
  47813. extra: 1738/1675,
  47814. bottom: 24/1762
  47815. }
  47816. },
  47817. dressed: {
  47818. height: math.unit(216, "cm"),
  47819. name: "Dressed",
  47820. image: {
  47821. source: "./media/characters/lev/dressed.svg",
  47822. extra: 1397/1351,
  47823. bottom: 73/1470
  47824. }
  47825. },
  47826. head: {
  47827. height: math.unit(0.51, "meter"),
  47828. name: "Head",
  47829. image: {
  47830. source: "./media/characters/lev/head.svg"
  47831. }
  47832. },
  47833. },
  47834. [
  47835. {
  47836. name: "Normal",
  47837. height: math.unit(216, "cm"),
  47838. default: true
  47839. },
  47840. {
  47841. name: "Relatively Macro",
  47842. height: math.unit(80, "meters")
  47843. },
  47844. {
  47845. name: "Megamacro",
  47846. height: math.unit(21600, "meters")
  47847. },
  47848. {
  47849. name: "Megamacro+",
  47850. height: math.unit(64800, "meters")
  47851. },
  47852. ]
  47853. ))
  47854. characterMakers.push(() => makeCharacter(
  47855. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47856. {
  47857. front: {
  47858. height: math.unit(2, "meters"),
  47859. weight: math.unit(80, "kg"),
  47860. name: "Front",
  47861. image: {
  47862. source: "./media/characters/moka/front.svg",
  47863. extra: 1337/1255,
  47864. bottom: 58/1395
  47865. }
  47866. },
  47867. },
  47868. [
  47869. {
  47870. name: "Micro",
  47871. height: math.unit(15, "cm")
  47872. },
  47873. {
  47874. name: "Normal",
  47875. height: math.unit(2, "meters"),
  47876. default: true
  47877. },
  47878. {
  47879. name: "Macro",
  47880. height: math.unit(20, "meters"),
  47881. },
  47882. ]
  47883. ))
  47884. characterMakers.push(() => makeCharacter(
  47885. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47886. {
  47887. front: {
  47888. height: math.unit(9, "feet"),
  47889. weight: math.unit(240, "lb"),
  47890. name: "Front",
  47891. image: {
  47892. source: "./media/characters/kuzco/front.svg",
  47893. extra: 1593/1487,
  47894. bottom: 32/1625
  47895. }
  47896. },
  47897. side: {
  47898. height: math.unit(9, "feet"),
  47899. weight: math.unit(240, "lb"),
  47900. name: "Side",
  47901. image: {
  47902. source: "./media/characters/kuzco/side.svg",
  47903. extra: 1575/1485,
  47904. bottom: 30/1605
  47905. }
  47906. },
  47907. back: {
  47908. height: math.unit(9, "feet"),
  47909. weight: math.unit(240, "lb"),
  47910. name: "Back",
  47911. image: {
  47912. source: "./media/characters/kuzco/back.svg",
  47913. extra: 1603/1514,
  47914. bottom: 14/1617
  47915. }
  47916. },
  47917. },
  47918. [
  47919. {
  47920. name: "Normal",
  47921. height: math.unit(9, "feet"),
  47922. default: true
  47923. },
  47924. ]
  47925. ))
  47926. characterMakers.push(() => makeCharacter(
  47927. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47928. {
  47929. side: {
  47930. height: math.unit(2, "meters"),
  47931. weight: math.unit(300, "kg"),
  47932. name: "Side",
  47933. image: {
  47934. source: "./media/characters/ceruleus/side.svg",
  47935. extra: 1068/974,
  47936. bottom: 126/1194
  47937. }
  47938. },
  47939. maw: {
  47940. height: math.unit(0.8125, "meter"),
  47941. name: "Maw",
  47942. image: {
  47943. source: "./media/characters/ceruleus/maw.svg"
  47944. }
  47945. },
  47946. },
  47947. [
  47948. {
  47949. name: "Normal",
  47950. height: math.unit(16, "meters"),
  47951. default: true
  47952. },
  47953. ]
  47954. ))
  47955. characterMakers.push(() => makeCharacter(
  47956. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47957. {
  47958. front: {
  47959. height: math.unit(9, "feet"),
  47960. weight: math.unit(500, "kg"),
  47961. name: "Front",
  47962. image: {
  47963. source: "./media/characters/acouya/front.svg",
  47964. extra: 1660/1473,
  47965. bottom: 28/1688
  47966. }
  47967. },
  47968. },
  47969. [
  47970. {
  47971. name: "Normal",
  47972. height: math.unit(9, "feet"),
  47973. default: true
  47974. },
  47975. ]
  47976. ))
  47977. characterMakers.push(() => makeCharacter(
  47978. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47979. {
  47980. front: {
  47981. height: math.unit(5 + 6/12, "feet"),
  47982. weight: math.unit(195, "lb"),
  47983. name: "Front",
  47984. image: {
  47985. source: "./media/characters/vant/front.svg",
  47986. extra: 1396/1320,
  47987. bottom: 20/1416
  47988. }
  47989. },
  47990. back: {
  47991. height: math.unit(5 + 6/12, "feet"),
  47992. weight: math.unit(195, "lb"),
  47993. name: "Back",
  47994. image: {
  47995. source: "./media/characters/vant/back.svg",
  47996. extra: 1396/1320,
  47997. bottom: 20/1416
  47998. }
  47999. },
  48000. maw: {
  48001. height: math.unit(0.75, "feet"),
  48002. name: "Maw",
  48003. image: {
  48004. source: "./media/characters/vant/maw.svg"
  48005. }
  48006. },
  48007. paw: {
  48008. height: math.unit(1.07, "feet"),
  48009. name: "Paw",
  48010. image: {
  48011. source: "./media/characters/vant/paw.svg"
  48012. }
  48013. },
  48014. },
  48015. [
  48016. {
  48017. name: "Micro",
  48018. height: math.unit(0.25, "inches")
  48019. },
  48020. {
  48021. name: "Normal",
  48022. height: math.unit(5 + 6/12, "feet"),
  48023. default: true
  48024. },
  48025. {
  48026. name: "Macro",
  48027. height: math.unit(75, "feet")
  48028. },
  48029. ]
  48030. ))
  48031. characterMakers.push(() => makeCharacter(
  48032. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  48033. {
  48034. front: {
  48035. height: math.unit(30, "meters"),
  48036. weight: math.unit(363, "tons"),
  48037. name: "Front",
  48038. image: {
  48039. source: "./media/characters/ahra/front.svg",
  48040. extra: 1914/1814,
  48041. bottom: 46/1960
  48042. }
  48043. },
  48044. },
  48045. [
  48046. {
  48047. name: "Macro",
  48048. height: math.unit(30, "meters"),
  48049. default: true
  48050. },
  48051. ]
  48052. ))
  48053. characterMakers.push(() => makeCharacter(
  48054. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  48055. {
  48056. undressed: {
  48057. height: math.unit(2, "m"),
  48058. weight: math.unit(250, "kg"),
  48059. name: "Undressed",
  48060. image: {
  48061. source: "./media/characters/coriander/undressed.svg",
  48062. extra: 1757/1606,
  48063. bottom: 107/1864
  48064. }
  48065. },
  48066. dressed: {
  48067. height: math.unit(2, "m"),
  48068. weight: math.unit(250, "kg"),
  48069. name: "Dressed",
  48070. image: {
  48071. source: "./media/characters/coriander/dressed.svg",
  48072. extra: 1757/1606,
  48073. bottom: 107/1864
  48074. }
  48075. },
  48076. },
  48077. [
  48078. {
  48079. name: "Normal",
  48080. height: math.unit(4, "meters"),
  48081. default: true
  48082. },
  48083. {
  48084. name: "XL",
  48085. height: math.unit(6, "meters")
  48086. },
  48087. {
  48088. name: "XXL",
  48089. height: math.unit(8, "meters")
  48090. },
  48091. ]
  48092. ))
  48093. characterMakers.push(() => makeCharacter(
  48094. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  48095. {
  48096. front: {
  48097. height: math.unit(6, "feet"),
  48098. name: "Front",
  48099. image: {
  48100. source: "./media/characters/syrinx/front.svg",
  48101. extra: 1557/1259,
  48102. bottom: 171/1728
  48103. }
  48104. },
  48105. },
  48106. [
  48107. {
  48108. name: "Normal",
  48109. height: math.unit(6 + 3/12, "feet"),
  48110. default: true
  48111. },
  48112. ]
  48113. ))
  48114. characterMakers.push(() => makeCharacter(
  48115. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  48116. {
  48117. front: {
  48118. height: math.unit(11 + 6/12, "feet"),
  48119. weight: math.unit(1.5, "tons"),
  48120. name: "Front",
  48121. image: {
  48122. source: "./media/characters/bor/front.svg",
  48123. extra: 1189/1109,
  48124. bottom: 170/1359
  48125. }
  48126. },
  48127. },
  48128. [
  48129. {
  48130. name: "Normal",
  48131. height: math.unit(11 + 6/12, "feet"),
  48132. default: true
  48133. },
  48134. {
  48135. name: "Macro",
  48136. height: math.unit(32 + 9/12, "feet")
  48137. },
  48138. ]
  48139. ))
  48140. characterMakers.push(() => makeCharacter(
  48141. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  48142. {
  48143. anthro: {
  48144. height: math.unit(9, "feet"),
  48145. weight: math.unit(2076, "lb"),
  48146. name: "Anthro",
  48147. image: {
  48148. source: "./media/characters/abacus/anthro.svg",
  48149. extra: 1540/1494,
  48150. bottom: 233/1773
  48151. }
  48152. },
  48153. pigeon: {
  48154. height: math.unit(1, "feet"),
  48155. name: "Pigeon",
  48156. image: {
  48157. source: "./media/characters/abacus/pigeon.svg",
  48158. extra: 528/525,
  48159. bottom: 46/574
  48160. }
  48161. },
  48162. },
  48163. [
  48164. {
  48165. name: "Normal",
  48166. height: math.unit(9, "feet"),
  48167. default: true
  48168. },
  48169. ]
  48170. ))
  48171. characterMakers.push(() => makeCharacter(
  48172. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  48173. {
  48174. side: {
  48175. height: math.unit(6, "feet"),
  48176. name: "Side",
  48177. image: {
  48178. source: "./media/characters/delkhan/side.svg",
  48179. extra: 1884/1786,
  48180. bottom: 308/2192
  48181. }
  48182. },
  48183. head: {
  48184. height: math.unit(3.38, "feet"),
  48185. name: "Head",
  48186. image: {
  48187. source: "./media/characters/delkhan/head.svg"
  48188. }
  48189. },
  48190. },
  48191. [
  48192. {
  48193. name: "Normal",
  48194. height: math.unit(72, "feet"),
  48195. default: true
  48196. },
  48197. {
  48198. name: "Giant",
  48199. height: math.unit(172, "feet")
  48200. },
  48201. ]
  48202. ))
  48203. characterMakers.push(() => makeCharacter(
  48204. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48205. {
  48206. standing: {
  48207. height: math.unit(6, "feet"),
  48208. name: "Standing",
  48209. image: {
  48210. source: "./media/characters/euchidat/standing.svg",
  48211. extra: 1612/1553,
  48212. bottom: 116/1728
  48213. }
  48214. },
  48215. leaning: {
  48216. height: math.unit(6, "feet"),
  48217. name: "Leaning",
  48218. image: {
  48219. source: "./media/characters/euchidat/leaning.svg",
  48220. extra: 1719/1674,
  48221. bottom: 27/1746
  48222. }
  48223. },
  48224. },
  48225. [
  48226. {
  48227. name: "Normal",
  48228. height: math.unit(175, "feet"),
  48229. default: true
  48230. },
  48231. {
  48232. name: "Megamacro",
  48233. height: math.unit(190, "miles")
  48234. },
  48235. {
  48236. name: "Gigamacro",
  48237. height: math.unit(190000, "miles")
  48238. },
  48239. ]
  48240. ))
  48241. characterMakers.push(() => makeCharacter(
  48242. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48243. {
  48244. front: {
  48245. height: math.unit(6, "feet"),
  48246. weight: math.unit(150, "lb"),
  48247. name: "Front",
  48248. image: {
  48249. source: "./media/characters/rebecca-stack/front.svg",
  48250. extra: 1256/1201,
  48251. bottom: 18/1274
  48252. }
  48253. },
  48254. },
  48255. [
  48256. {
  48257. name: "Normal",
  48258. height: math.unit(5 + 8/12, "feet"),
  48259. default: true
  48260. },
  48261. {
  48262. name: "Demolitionist",
  48263. height: math.unit(200, "feet")
  48264. },
  48265. {
  48266. name: "Out of Control",
  48267. height: math.unit(2, "miles")
  48268. },
  48269. {
  48270. name: "Giga",
  48271. height: math.unit(7200, "miles")
  48272. },
  48273. ]
  48274. ))
  48275. characterMakers.push(() => makeCharacter(
  48276. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48277. {
  48278. front: {
  48279. height: math.unit(6, "feet"),
  48280. weight: math.unit(150, "lb"),
  48281. name: "Front",
  48282. image: {
  48283. source: "./media/characters/jenny-cartwright/front.svg",
  48284. extra: 1384/1376,
  48285. bottom: 58/1442
  48286. }
  48287. },
  48288. },
  48289. [
  48290. {
  48291. name: "Normal",
  48292. height: math.unit(6 + 7/12, "feet"),
  48293. default: true
  48294. },
  48295. {
  48296. name: "Librarian",
  48297. height: math.unit(55, "feet")
  48298. },
  48299. {
  48300. name: "Sightseer",
  48301. height: math.unit(50, "miles")
  48302. },
  48303. {
  48304. name: "Giga",
  48305. height: math.unit(30000, "miles")
  48306. },
  48307. ]
  48308. ))
  48309. characterMakers.push(() => makeCharacter(
  48310. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48311. {
  48312. nude: {
  48313. height: math.unit(8, "feet"),
  48314. weight: math.unit(225, "lb"),
  48315. name: "Nude",
  48316. image: {
  48317. source: "./media/characters/marvy/nude.svg",
  48318. extra: 1900/1683,
  48319. bottom: 89/1989
  48320. }
  48321. },
  48322. dressed: {
  48323. height: math.unit(8, "feet"),
  48324. weight: math.unit(225, "lb"),
  48325. name: "Dressed",
  48326. image: {
  48327. source: "./media/characters/marvy/dressed.svg",
  48328. extra: 1900/1683,
  48329. bottom: 89/1989
  48330. }
  48331. },
  48332. head: {
  48333. height: math.unit(2.85, "feet"),
  48334. name: "Head",
  48335. image: {
  48336. source: "./media/characters/marvy/head.svg"
  48337. }
  48338. },
  48339. },
  48340. [
  48341. {
  48342. name: "Normal",
  48343. height: math.unit(8, "feet"),
  48344. default: true
  48345. },
  48346. ]
  48347. ))
  48348. characterMakers.push(() => makeCharacter(
  48349. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48350. {
  48351. front: {
  48352. height: math.unit(8, "feet"),
  48353. weight: math.unit(250, "lb"),
  48354. name: "Front",
  48355. image: {
  48356. source: "./media/characters/leah/front.svg",
  48357. extra: 1257/1149,
  48358. bottom: 109/1366
  48359. }
  48360. },
  48361. },
  48362. [
  48363. {
  48364. name: "Normal",
  48365. height: math.unit(8, "feet"),
  48366. default: true
  48367. },
  48368. {
  48369. name: "Minimacro",
  48370. height: math.unit(40, "feet")
  48371. },
  48372. {
  48373. name: "Macro",
  48374. height: math.unit(124, "feet")
  48375. },
  48376. {
  48377. name: "Megamacro",
  48378. height: math.unit(850, "feet")
  48379. },
  48380. ]
  48381. ))
  48382. characterMakers.push(() => makeCharacter(
  48383. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48384. {
  48385. side: {
  48386. height: math.unit(13 + 6/12, "feet"),
  48387. weight: math.unit(3200, "lb"),
  48388. name: "Side",
  48389. image: {
  48390. source: "./media/characters/alvir/side.svg",
  48391. extra: 896/589,
  48392. bottom: 26/922
  48393. }
  48394. },
  48395. },
  48396. [
  48397. {
  48398. name: "Normal",
  48399. height: math.unit(13 + 6/12, "feet"),
  48400. default: true
  48401. },
  48402. ]
  48403. ))
  48404. characterMakers.push(() => makeCharacter(
  48405. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48406. {
  48407. front: {
  48408. height: math.unit(5 + 4/12, "feet"),
  48409. weight: math.unit(236, "lb"),
  48410. name: "Front",
  48411. image: {
  48412. source: "./media/characters/zaina-khalil/front.svg",
  48413. extra: 1533/1485,
  48414. bottom: 94/1627
  48415. }
  48416. },
  48417. side: {
  48418. height: math.unit(5 + 4/12, "feet"),
  48419. weight: math.unit(236, "lb"),
  48420. name: "Side",
  48421. image: {
  48422. source: "./media/characters/zaina-khalil/side.svg",
  48423. extra: 1537/1498,
  48424. bottom: 66/1603
  48425. }
  48426. },
  48427. back: {
  48428. height: math.unit(5 + 4/12, "feet"),
  48429. weight: math.unit(236, "lb"),
  48430. name: "Back",
  48431. image: {
  48432. source: "./media/characters/zaina-khalil/back.svg",
  48433. extra: 1546/1494,
  48434. bottom: 89/1635
  48435. }
  48436. },
  48437. },
  48438. [
  48439. {
  48440. name: "Normal",
  48441. height: math.unit(5 + 4/12, "feet"),
  48442. default: true
  48443. },
  48444. ]
  48445. ))
  48446. characterMakers.push(() => makeCharacter(
  48447. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48448. {
  48449. side: {
  48450. height: math.unit(12, "feet"),
  48451. weight: math.unit(4000, "lb"),
  48452. name: "Side",
  48453. image: {
  48454. source: "./media/characters/terry/side.svg",
  48455. extra: 1518/1439,
  48456. bottom: 149/1667
  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: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48470. {
  48471. front: {
  48472. height: math.unit(12, "feet"),
  48473. weight: math.unit(1500, "lb"),
  48474. name: "Front",
  48475. image: {
  48476. source: "./media/characters/kahea/front.svg",
  48477. extra: 1722/1617,
  48478. bottom: 179/1901
  48479. }
  48480. },
  48481. },
  48482. [
  48483. {
  48484. name: "Normal",
  48485. height: math.unit(12, "feet"),
  48486. default: true
  48487. },
  48488. ]
  48489. ))
  48490. characterMakers.push(() => makeCharacter(
  48491. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48492. {
  48493. demonFront: {
  48494. height: math.unit(36, "feet"),
  48495. name: "Front",
  48496. image: {
  48497. source: "./media/characters/alex-xuria/demon-front.svg",
  48498. extra: 1705/1673,
  48499. bottom: 198/1903
  48500. },
  48501. form: "demon",
  48502. default: true
  48503. },
  48504. demonBack: {
  48505. height: math.unit(36, "feet"),
  48506. name: "Back",
  48507. image: {
  48508. source: "./media/characters/alex-xuria/demon-back.svg",
  48509. extra: 1725/1693,
  48510. bottom: 70/1795
  48511. },
  48512. form: "demon"
  48513. },
  48514. demonHead: {
  48515. height: math.unit(2.14, "meters"),
  48516. name: "Head",
  48517. image: {
  48518. source: "./media/characters/alex-xuria/demon-head.svg"
  48519. },
  48520. form: "demon"
  48521. },
  48522. demonHand: {
  48523. height: math.unit(1.61, "meters"),
  48524. name: "Hand",
  48525. image: {
  48526. source: "./media/characters/alex-xuria/demon-hand.svg"
  48527. },
  48528. form: "demon"
  48529. },
  48530. demonPaw: {
  48531. height: math.unit(1.35, "meters"),
  48532. name: "Paw",
  48533. image: {
  48534. source: "./media/characters/alex-xuria/demon-paw.svg"
  48535. },
  48536. form: "demon"
  48537. },
  48538. demonFoot: {
  48539. height: math.unit(2.2, "meters"),
  48540. name: "Foot",
  48541. image: {
  48542. source: "./media/characters/alex-xuria/demon-foot.svg"
  48543. },
  48544. form: "demon"
  48545. },
  48546. demonCock: {
  48547. height: math.unit(1.74, "meters"),
  48548. name: "Cock",
  48549. image: {
  48550. source: "./media/characters/alex-xuria/demon-cock.svg"
  48551. },
  48552. form: "demon"
  48553. },
  48554. demonTailClosed: {
  48555. height: math.unit(1.47, "meters"),
  48556. name: "Tail (Closed)",
  48557. image: {
  48558. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48559. },
  48560. form: "demon"
  48561. },
  48562. demonTailOpen: {
  48563. height: math.unit(2.85, "meters"),
  48564. name: "Tail (Open)",
  48565. image: {
  48566. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48567. },
  48568. form: "demon"
  48569. },
  48570. incubusFront: {
  48571. height: math.unit(12, "feet"),
  48572. name: "Front",
  48573. image: {
  48574. source: "./media/characters/alex-xuria/incubus-front.svg",
  48575. extra: 1754/1677,
  48576. bottom: 125/1879
  48577. },
  48578. form: "incubus",
  48579. default: true
  48580. },
  48581. incubusBack: {
  48582. height: math.unit(12, "feet"),
  48583. name: "Back",
  48584. image: {
  48585. source: "./media/characters/alex-xuria/incubus-back.svg",
  48586. extra: 1702/1647,
  48587. bottom: 30/1732
  48588. },
  48589. form: "incubus"
  48590. },
  48591. incubusHead: {
  48592. height: math.unit(3.45, "feet"),
  48593. name: "Head",
  48594. image: {
  48595. source: "./media/characters/alex-xuria/incubus-head.svg"
  48596. },
  48597. form: "incubus"
  48598. },
  48599. rabbitFront: {
  48600. height: math.unit(6, "feet"),
  48601. name: "Front",
  48602. image: {
  48603. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48604. extra: 1369/1349,
  48605. bottom: 45/1414
  48606. },
  48607. form: "rabbit",
  48608. default: true
  48609. },
  48610. rabbitSide: {
  48611. height: math.unit(6, "feet"),
  48612. name: "Side",
  48613. image: {
  48614. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48615. extra: 1370/1356,
  48616. bottom: 37/1407
  48617. },
  48618. form: "rabbit"
  48619. },
  48620. rabbitBack: {
  48621. height: math.unit(6, "feet"),
  48622. name: "Back",
  48623. image: {
  48624. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48625. extra: 1375/1358,
  48626. bottom: 43/1418
  48627. },
  48628. form: "rabbit"
  48629. },
  48630. },
  48631. [
  48632. {
  48633. name: "Normal",
  48634. height: math.unit(6, "feet"),
  48635. default: true,
  48636. form: "rabbit"
  48637. },
  48638. {
  48639. name: "Incubus",
  48640. height: math.unit(12, "feet"),
  48641. default: true,
  48642. form: "incubus"
  48643. },
  48644. {
  48645. name: "Demon",
  48646. height: math.unit(36, "feet"),
  48647. default: true,
  48648. form: "demon"
  48649. }
  48650. ],
  48651. {
  48652. "demon": {
  48653. name: "Demon",
  48654. default: true
  48655. },
  48656. "incubus": {
  48657. name: "Incubus",
  48658. },
  48659. "rabbit": {
  48660. name: "Rabbit"
  48661. }
  48662. }
  48663. ))
  48664. characterMakers.push(() => makeCharacter(
  48665. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48666. {
  48667. front: {
  48668. height: math.unit(7 + 5/12, "feet"),
  48669. weight: math.unit(510, "lb"),
  48670. name: "Front",
  48671. image: {
  48672. source: "./media/characters/syrup/front.svg",
  48673. extra: 932/916,
  48674. bottom: 26/958
  48675. }
  48676. },
  48677. },
  48678. [
  48679. {
  48680. name: "Normal",
  48681. height: math.unit(7 + 5/12, "feet"),
  48682. default: true
  48683. },
  48684. {
  48685. name: "Big",
  48686. height: math.unit(50, "feet")
  48687. },
  48688. {
  48689. name: "Macro",
  48690. height: math.unit(300, "feet")
  48691. },
  48692. {
  48693. name: "Megamacro",
  48694. height: math.unit(1, "mile")
  48695. },
  48696. ]
  48697. ))
  48698. characterMakers.push(() => makeCharacter(
  48699. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48700. {
  48701. front: {
  48702. height: math.unit(6 + 9/12, "feet"),
  48703. name: "Front",
  48704. image: {
  48705. source: "./media/characters/zeimne/front.svg",
  48706. extra: 1969/1806,
  48707. bottom: 53/2022
  48708. }
  48709. },
  48710. },
  48711. [
  48712. {
  48713. name: "Normal",
  48714. height: math.unit(6 + 9/12, "feet"),
  48715. default: true
  48716. },
  48717. {
  48718. name: "Giant",
  48719. height: math.unit(550, "feet")
  48720. },
  48721. {
  48722. name: "Mega",
  48723. height: math.unit(3, "miles")
  48724. },
  48725. {
  48726. name: "Giga",
  48727. height: math.unit(250, "miles")
  48728. },
  48729. {
  48730. name: "Tera",
  48731. height: math.unit(1, "AU")
  48732. },
  48733. ]
  48734. ))
  48735. characterMakers.push(() => makeCharacter(
  48736. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48737. {
  48738. front: {
  48739. height: math.unit(5 + 2/12, "feet"),
  48740. name: "Front",
  48741. image: {
  48742. source: "./media/characters/grar/front.svg",
  48743. extra: 1331/1119,
  48744. bottom: 60/1391
  48745. }
  48746. },
  48747. back: {
  48748. height: math.unit(5 + 2/12, "feet"),
  48749. name: "Back",
  48750. image: {
  48751. source: "./media/characters/grar/back.svg",
  48752. extra: 1385/1169,
  48753. bottom: 23/1408
  48754. }
  48755. },
  48756. },
  48757. [
  48758. {
  48759. name: "Normal",
  48760. height: math.unit(5 + 2/12, "feet"),
  48761. default: true
  48762. },
  48763. ]
  48764. ))
  48765. characterMakers.push(() => makeCharacter(
  48766. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48767. {
  48768. front: {
  48769. height: math.unit(13 + 7/12, "feet"),
  48770. weight: math.unit(2200, "lb"),
  48771. name: "Front",
  48772. image: {
  48773. source: "./media/characters/endraya/front.svg",
  48774. extra: 1289/1215,
  48775. bottom: 50/1339
  48776. }
  48777. },
  48778. nude: {
  48779. height: math.unit(13 + 7/12, "feet"),
  48780. weight: math.unit(2200, "lb"),
  48781. name: "Nude",
  48782. image: {
  48783. source: "./media/characters/endraya/nude.svg",
  48784. extra: 1247/1171,
  48785. bottom: 40/1287
  48786. }
  48787. },
  48788. head: {
  48789. height: math.unit(2.6, "feet"),
  48790. name: "Head",
  48791. image: {
  48792. source: "./media/characters/endraya/head.svg"
  48793. }
  48794. },
  48795. slit: {
  48796. height: math.unit(3.4, "feet"),
  48797. name: "Slit",
  48798. image: {
  48799. source: "./media/characters/endraya/slit.svg"
  48800. }
  48801. },
  48802. },
  48803. [
  48804. {
  48805. name: "Normal",
  48806. height: math.unit(13 + 7/12, "feet"),
  48807. default: true
  48808. },
  48809. {
  48810. name: "Macro",
  48811. height: math.unit(200, "feet")
  48812. },
  48813. ]
  48814. ))
  48815. characterMakers.push(() => makeCharacter(
  48816. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48817. {
  48818. front: {
  48819. height: math.unit(1.81, "meters"),
  48820. weight: math.unit(69, "kg"),
  48821. name: "Front",
  48822. image: {
  48823. source: "./media/characters/rodryana/front.svg",
  48824. extra: 2002/1921,
  48825. bottom: 53/2055
  48826. }
  48827. },
  48828. back: {
  48829. height: math.unit(1.81, "meters"),
  48830. weight: math.unit(69, "kg"),
  48831. name: "Back",
  48832. image: {
  48833. source: "./media/characters/rodryana/back.svg",
  48834. extra: 1993/1926,
  48835. bottom: 48/2041
  48836. }
  48837. },
  48838. maw: {
  48839. height: math.unit(0.19769417475, "meters"),
  48840. name: "Maw",
  48841. image: {
  48842. source: "./media/characters/rodryana/maw.svg"
  48843. }
  48844. },
  48845. slit: {
  48846. height: math.unit(0.31631067961, "meters"),
  48847. name: "Slit",
  48848. image: {
  48849. source: "./media/characters/rodryana/slit.svg"
  48850. }
  48851. },
  48852. },
  48853. [
  48854. {
  48855. name: "Normal",
  48856. height: math.unit(1.81, "meters")
  48857. },
  48858. {
  48859. name: "Mini Macro",
  48860. height: math.unit(181, "meters")
  48861. },
  48862. {
  48863. name: "Macro",
  48864. height: math.unit(452, "meters"),
  48865. default: true
  48866. },
  48867. {
  48868. name: "Mega Macro",
  48869. height: math.unit(1.375, "km")
  48870. },
  48871. {
  48872. name: "Giga Macro",
  48873. height: math.unit(13.575, "km")
  48874. },
  48875. ]
  48876. ))
  48877. characterMakers.push(() => makeCharacter(
  48878. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48879. {
  48880. front: {
  48881. height: math.unit(6, "feet"),
  48882. weight: math.unit(1000, "lb"),
  48883. name: "Front",
  48884. image: {
  48885. source: "./media/characters/asaya/front.svg",
  48886. extra: 1460/1200,
  48887. bottom: 71/1531
  48888. }
  48889. },
  48890. },
  48891. [
  48892. {
  48893. name: "Normal",
  48894. height: math.unit(8, "km"),
  48895. default: true
  48896. },
  48897. ]
  48898. ))
  48899. characterMakers.push(() => makeCharacter(
  48900. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48901. {
  48902. front: {
  48903. height: math.unit(3.5, "meters"),
  48904. name: "Front",
  48905. image: {
  48906. source: "./media/characters/sarzu-and-israz/front.svg",
  48907. extra: 1570/1558,
  48908. bottom: 150/1720
  48909. },
  48910. },
  48911. back: {
  48912. height: math.unit(3.5, "meters"),
  48913. name: "Back",
  48914. image: {
  48915. source: "./media/characters/sarzu-and-israz/back.svg",
  48916. extra: 1523/1509,
  48917. bottom: 132/1655
  48918. },
  48919. },
  48920. frontFemale: {
  48921. height: math.unit(3.5, "meters"),
  48922. name: "Front (Female)",
  48923. image: {
  48924. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48925. extra: 1570/1558,
  48926. bottom: 150/1720
  48927. },
  48928. },
  48929. frontHerm: {
  48930. height: math.unit(3.5, "meters"),
  48931. name: "Front (Herm)",
  48932. image: {
  48933. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48934. extra: 1570/1558,
  48935. bottom: 150/1720
  48936. },
  48937. },
  48938. },
  48939. [
  48940. {
  48941. name: "Normal",
  48942. height: math.unit(3.5, "meters"),
  48943. default: true,
  48944. },
  48945. {
  48946. name: "Macro",
  48947. height: math.unit(65.5, "meters"),
  48948. },
  48949. ],
  48950. ))
  48951. characterMakers.push(() => makeCharacter(
  48952. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48953. {
  48954. front: {
  48955. height: math.unit(6, "feet"),
  48956. weight: math.unit(250, "lb"),
  48957. name: "Front",
  48958. image: {
  48959. source: "./media/characters/zenimma/front.svg",
  48960. extra: 1346/1320,
  48961. bottom: 58/1404
  48962. }
  48963. },
  48964. back: {
  48965. height: math.unit(6, "feet"),
  48966. weight: math.unit(250, "lb"),
  48967. name: "Back",
  48968. image: {
  48969. source: "./media/characters/zenimma/back.svg",
  48970. extra: 1324/1308,
  48971. bottom: 44/1368
  48972. }
  48973. },
  48974. dick: {
  48975. height: math.unit(1.44, "feet"),
  48976. name: "Dick",
  48977. image: {
  48978. source: "./media/characters/zenimma/dick.svg"
  48979. }
  48980. },
  48981. },
  48982. [
  48983. {
  48984. name: "Canon Height",
  48985. height: math.unit(66, "miles"),
  48986. default: true
  48987. },
  48988. ]
  48989. ))
  48990. characterMakers.push(() => makeCharacter(
  48991. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48992. {
  48993. nude: {
  48994. height: math.unit(6, "feet"),
  48995. weight: math.unit(150, "lb"),
  48996. name: "Nude",
  48997. image: {
  48998. source: "./media/characters/shavon/nude.svg",
  48999. extra: 1242/1096,
  49000. bottom: 98/1340
  49001. }
  49002. },
  49003. dressed: {
  49004. height: math.unit(6, "feet"),
  49005. weight: math.unit(150, "lb"),
  49006. name: "Dressed",
  49007. image: {
  49008. source: "./media/characters/shavon/dressed.svg",
  49009. extra: 1242/1096,
  49010. bottom: 98/1340
  49011. }
  49012. },
  49013. },
  49014. [
  49015. {
  49016. name: "Macro",
  49017. height: math.unit(255, "feet"),
  49018. default: true
  49019. },
  49020. ]
  49021. ))
  49022. characterMakers.push(() => makeCharacter(
  49023. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  49024. {
  49025. front: {
  49026. height: math.unit(6, "feet"),
  49027. name: "Front",
  49028. image: {
  49029. source: "./media/characters/steph/front.svg",
  49030. extra: 1430/1330,
  49031. bottom: 54/1484
  49032. }
  49033. },
  49034. },
  49035. [
  49036. {
  49037. name: "Normal",
  49038. height: math.unit(6, "feet"),
  49039. default: true
  49040. },
  49041. ]
  49042. ))
  49043. characterMakers.push(() => makeCharacter(
  49044. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  49045. {
  49046. front: {
  49047. height: math.unit(9, "feet"),
  49048. weight: math.unit(400, "lb"),
  49049. name: "Front",
  49050. image: {
  49051. source: "./media/characters/kil'aman/front.svg",
  49052. extra: 1210/1159,
  49053. bottom: 109/1319
  49054. }
  49055. },
  49056. head: {
  49057. height: math.unit(2.14, "feet"),
  49058. name: "Head",
  49059. image: {
  49060. source: "./media/characters/kil'aman/head.svg"
  49061. }
  49062. },
  49063. maw: {
  49064. height: math.unit(1.21, "feet"),
  49065. name: "Maw",
  49066. image: {
  49067. source: "./media/characters/kil'aman/maw.svg"
  49068. }
  49069. },
  49070. foot: {
  49071. height: math.unit(1.7, "feet"),
  49072. name: "Foot",
  49073. image: {
  49074. source: "./media/characters/kil'aman/foot.svg"
  49075. }
  49076. },
  49077. dick: {
  49078. height: math.unit(2.1, "feet"),
  49079. name: "Dick",
  49080. image: {
  49081. source: "./media/characters/kil'aman/dick.svg"
  49082. }
  49083. },
  49084. },
  49085. [
  49086. {
  49087. name: "Normal",
  49088. height: math.unit(9, "feet")
  49089. },
  49090. {
  49091. name: "Canon Height",
  49092. height: math.unit(10, "miles"),
  49093. default: true
  49094. },
  49095. {
  49096. name: "Maximum",
  49097. height: math.unit(6e9, "miles")
  49098. },
  49099. ]
  49100. ))
  49101. characterMakers.push(() => makeCharacter(
  49102. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  49103. {
  49104. front: {
  49105. height: math.unit(90, "feet"),
  49106. weight: math.unit(675000, "lb"),
  49107. name: "Front",
  49108. image: {
  49109. source: "./media/characters/qadan/front.svg",
  49110. extra: 1012/1004,
  49111. bottom: 78/1090
  49112. }
  49113. },
  49114. back: {
  49115. height: math.unit(90, "feet"),
  49116. weight: math.unit(675000, "lb"),
  49117. name: "Back",
  49118. image: {
  49119. source: "./media/characters/qadan/back.svg",
  49120. extra: 1042/1031,
  49121. bottom: 55/1097
  49122. }
  49123. },
  49124. armored: {
  49125. height: math.unit(90, "feet"),
  49126. weight: math.unit(675000, "lb"),
  49127. name: "Armored",
  49128. image: {
  49129. source: "./media/characters/qadan/armored.svg",
  49130. extra: 1047/1037,
  49131. bottom: 48/1095
  49132. }
  49133. },
  49134. },
  49135. [
  49136. {
  49137. name: "Normal",
  49138. height: math.unit(90, "feet"),
  49139. default: true
  49140. },
  49141. ]
  49142. ))
  49143. characterMakers.push(() => makeCharacter(
  49144. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  49145. {
  49146. front: {
  49147. height: math.unit(6, "feet"),
  49148. weight: math.unit(225, "lb"),
  49149. name: "Front",
  49150. image: {
  49151. source: "./media/characters/brooke/front.svg",
  49152. extra: 1050/1010,
  49153. bottom: 66/1116
  49154. }
  49155. },
  49156. back: {
  49157. height: math.unit(6, "feet"),
  49158. weight: math.unit(225, "lb"),
  49159. name: "Back",
  49160. image: {
  49161. source: "./media/characters/brooke/back.svg",
  49162. extra: 1053/1013,
  49163. bottom: 41/1094
  49164. }
  49165. },
  49166. dressed: {
  49167. height: math.unit(6, "feet"),
  49168. weight: math.unit(225, "lb"),
  49169. name: "Dressed",
  49170. image: {
  49171. source: "./media/characters/brooke/dressed.svg",
  49172. extra: 1050/1010,
  49173. bottom: 66/1116
  49174. }
  49175. },
  49176. },
  49177. [
  49178. {
  49179. name: "Canon Height",
  49180. height: math.unit(500, "miles"),
  49181. default: true
  49182. },
  49183. ]
  49184. ))
  49185. characterMakers.push(() => makeCharacter(
  49186. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49187. {
  49188. front: {
  49189. height: math.unit(6 + 2/12, "feet"),
  49190. weight: math.unit(210, "lb"),
  49191. name: "Front",
  49192. image: {
  49193. source: "./media/characters/wubs/front.svg",
  49194. extra: 1345/1325,
  49195. bottom: 70/1415
  49196. }
  49197. },
  49198. back: {
  49199. height: math.unit(6 + 2/12, "feet"),
  49200. weight: math.unit(210, "lb"),
  49201. name: "Back",
  49202. image: {
  49203. source: "./media/characters/wubs/back.svg",
  49204. extra: 1296/1275,
  49205. bottom: 58/1354
  49206. }
  49207. },
  49208. },
  49209. [
  49210. {
  49211. name: "Normal",
  49212. height: math.unit(6 + 2/12, "feet"),
  49213. default: true
  49214. },
  49215. {
  49216. name: "Macro",
  49217. height: math.unit(1000, "feet")
  49218. },
  49219. {
  49220. name: "Megamacro",
  49221. height: math.unit(1, "mile")
  49222. },
  49223. ]
  49224. ))
  49225. characterMakers.push(() => makeCharacter(
  49226. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49227. {
  49228. front: {
  49229. height: math.unit(4, "feet"),
  49230. weight: math.unit(120, "lb"),
  49231. name: "Front",
  49232. image: {
  49233. source: "./media/characters/blue/front.svg",
  49234. extra: 1636/1525,
  49235. bottom: 43/1679
  49236. }
  49237. },
  49238. back: {
  49239. height: math.unit(4, "feet"),
  49240. weight: math.unit(120, "lb"),
  49241. name: "Back",
  49242. image: {
  49243. source: "./media/characters/blue/back.svg",
  49244. extra: 1660/1560,
  49245. bottom: 57/1717
  49246. }
  49247. },
  49248. paws: {
  49249. height: math.unit(0.826, "feet"),
  49250. name: "Paws",
  49251. image: {
  49252. source: "./media/characters/blue/paws.svg"
  49253. }
  49254. },
  49255. },
  49256. [
  49257. {
  49258. name: "Micro",
  49259. height: math.unit(3, "inches")
  49260. },
  49261. {
  49262. name: "Normal",
  49263. height: math.unit(4, "feet"),
  49264. default: true
  49265. },
  49266. {
  49267. name: "Femenine Form",
  49268. height: math.unit(14, "feet")
  49269. },
  49270. {
  49271. name: "Werebat Form",
  49272. height: math.unit(18, "feet")
  49273. },
  49274. ]
  49275. ))
  49276. characterMakers.push(() => makeCharacter(
  49277. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49278. {
  49279. female: {
  49280. height: math.unit(7 + 4/12, "feet"),
  49281. weight: math.unit(243, "lb"),
  49282. name: "Female",
  49283. image: {
  49284. source: "./media/characters/kaya/female.svg",
  49285. extra: 975/898,
  49286. bottom: 34/1009
  49287. }
  49288. },
  49289. herm: {
  49290. height: math.unit(7 + 4/12, "feet"),
  49291. weight: math.unit(243, "lb"),
  49292. name: "Herm",
  49293. image: {
  49294. source: "./media/characters/kaya/herm.svg",
  49295. extra: 975/898,
  49296. bottom: 34/1009
  49297. }
  49298. },
  49299. },
  49300. [
  49301. {
  49302. name: "Normal",
  49303. height: math.unit(7 + 4/12, "feet"),
  49304. default: true
  49305. },
  49306. ]
  49307. ))
  49308. characterMakers.push(() => makeCharacter(
  49309. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49310. {
  49311. female: {
  49312. height: math.unit(9 + 4/12, "feet"),
  49313. weight: math.unit(398, "lb"),
  49314. name: "Female",
  49315. image: {
  49316. source: "./media/characters/kassandra/female.svg",
  49317. extra: 908/839,
  49318. bottom: 61/969
  49319. }
  49320. },
  49321. intersex: {
  49322. height: math.unit(9 + 4/12, "feet"),
  49323. weight: math.unit(398, "lb"),
  49324. name: "Intersex",
  49325. image: {
  49326. source: "./media/characters/kassandra/intersex.svg",
  49327. extra: 908/839,
  49328. bottom: 61/969
  49329. }
  49330. },
  49331. },
  49332. [
  49333. {
  49334. name: "Normal",
  49335. height: math.unit(9 + 4/12, "feet"),
  49336. default: true
  49337. },
  49338. ]
  49339. ))
  49340. characterMakers.push(() => makeCharacter(
  49341. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49342. {
  49343. front: {
  49344. height: math.unit(3, "meters"),
  49345. name: "Front",
  49346. image: {
  49347. source: "./media/characters/amy/front.svg",
  49348. extra: 1380/1343,
  49349. bottom: 70/1450
  49350. }
  49351. },
  49352. back: {
  49353. height: math.unit(3, "meters"),
  49354. name: "Back",
  49355. image: {
  49356. source: "./media/characters/amy/back.svg",
  49357. extra: 1380/1347,
  49358. bottom: 66/1446
  49359. }
  49360. },
  49361. },
  49362. [
  49363. {
  49364. name: "Normal",
  49365. height: math.unit(3, "meters"),
  49366. default: true
  49367. },
  49368. ]
  49369. ))
  49370. characterMakers.push(() => makeCharacter(
  49371. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49372. {
  49373. side: {
  49374. height: math.unit(47, "cm"),
  49375. weight: math.unit(10.8, "kg"),
  49376. name: "Side",
  49377. image: {
  49378. source: "./media/characters/alphaschakal/side.svg",
  49379. extra: 1058/568,
  49380. bottom: 62/1120
  49381. }
  49382. },
  49383. back: {
  49384. height: math.unit(78, "cm"),
  49385. weight: math.unit(10.8, "kg"),
  49386. name: "Back",
  49387. image: {
  49388. source: "./media/characters/alphaschakal/back.svg",
  49389. extra: 1102/942,
  49390. bottom: 185/1287
  49391. }
  49392. },
  49393. head: {
  49394. height: math.unit(28, "cm"),
  49395. name: "Head",
  49396. image: {
  49397. source: "./media/characters/alphaschakal/head.svg",
  49398. extra: 696/508,
  49399. bottom: 0/696
  49400. }
  49401. },
  49402. paw: {
  49403. height: math.unit(16, "cm"),
  49404. name: "Paw",
  49405. image: {
  49406. source: "./media/characters/alphaschakal/paw.svg"
  49407. }
  49408. },
  49409. },
  49410. [
  49411. {
  49412. name: "Normal",
  49413. height: math.unit(47, "cm"),
  49414. default: true
  49415. },
  49416. {
  49417. name: "Macro",
  49418. height: math.unit(340, "cm")
  49419. },
  49420. ]
  49421. ))
  49422. characterMakers.push(() => makeCharacter(
  49423. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49424. {
  49425. front: {
  49426. height: math.unit(36, "earths"),
  49427. name: "Front",
  49428. image: {
  49429. source: "./media/characters/ecobyss/front.svg",
  49430. extra: 1282/1215,
  49431. bottom: 11/1293
  49432. }
  49433. },
  49434. back: {
  49435. height: math.unit(36, "earths"),
  49436. name: "Back",
  49437. image: {
  49438. source: "./media/characters/ecobyss/back.svg",
  49439. extra: 1291/1222,
  49440. bottom: 8/1299
  49441. }
  49442. },
  49443. },
  49444. [
  49445. {
  49446. name: "Normal",
  49447. height: math.unit(36, "earths"),
  49448. default: true
  49449. },
  49450. ]
  49451. ))
  49452. characterMakers.push(() => makeCharacter(
  49453. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49454. {
  49455. front: {
  49456. height: math.unit(12, "feet"),
  49457. name: "Front",
  49458. image: {
  49459. source: "./media/characters/vasuk/front.svg",
  49460. extra: 1326/1207,
  49461. bottom: 64/1390
  49462. }
  49463. },
  49464. },
  49465. [
  49466. {
  49467. name: "Normal",
  49468. height: math.unit(12, "feet"),
  49469. default: true
  49470. },
  49471. ]
  49472. ))
  49473. characterMakers.push(() => makeCharacter(
  49474. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49475. {
  49476. side: {
  49477. height: math.unit(100, "feet"),
  49478. name: "Side",
  49479. image: {
  49480. source: "./media/characters/linneaus/side.svg",
  49481. extra: 987/807,
  49482. bottom: 47/1034
  49483. }
  49484. },
  49485. },
  49486. [
  49487. {
  49488. name: "Macro",
  49489. height: math.unit(100, "feet"),
  49490. default: true
  49491. },
  49492. ]
  49493. ))
  49494. characterMakers.push(() => makeCharacter(
  49495. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49496. {
  49497. front: {
  49498. height: math.unit(8, "feet"),
  49499. weight: math.unit(1200, "lb"),
  49500. name: "Front",
  49501. image: {
  49502. source: "./media/characters/nyterious-daligdig/front.svg",
  49503. extra: 1284/1094,
  49504. bottom: 84/1368
  49505. }
  49506. },
  49507. back: {
  49508. height: math.unit(8, "feet"),
  49509. weight: math.unit(1200, "lb"),
  49510. name: "Back",
  49511. image: {
  49512. source: "./media/characters/nyterious-daligdig/back.svg",
  49513. extra: 1301/1121,
  49514. bottom: 129/1430
  49515. }
  49516. },
  49517. mouth: {
  49518. height: math.unit(1.464, "feet"),
  49519. name: "Mouth",
  49520. image: {
  49521. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49522. }
  49523. },
  49524. },
  49525. [
  49526. {
  49527. name: "Small",
  49528. height: math.unit(8, "feet"),
  49529. default: true
  49530. },
  49531. {
  49532. name: "Normal",
  49533. height: math.unit(15, "feet")
  49534. },
  49535. {
  49536. name: "Macro",
  49537. height: math.unit(90, "feet")
  49538. },
  49539. ]
  49540. ))
  49541. characterMakers.push(() => makeCharacter(
  49542. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49543. {
  49544. front: {
  49545. height: math.unit(7 + 4/12, "feet"),
  49546. weight: math.unit(252, "lb"),
  49547. name: "Front",
  49548. image: {
  49549. source: "./media/characters/bandel/front.svg",
  49550. extra: 1946/1775,
  49551. bottom: 26/1972
  49552. }
  49553. },
  49554. back: {
  49555. height: math.unit(7 + 4/12, "feet"),
  49556. weight: math.unit(252, "lb"),
  49557. name: "Back",
  49558. image: {
  49559. source: "./media/characters/bandel/back.svg",
  49560. extra: 1940/1770,
  49561. bottom: 25/1965
  49562. }
  49563. },
  49564. maw: {
  49565. height: math.unit(2.15, "feet"),
  49566. name: "Maw",
  49567. image: {
  49568. source: "./media/characters/bandel/maw.svg"
  49569. }
  49570. },
  49571. stomach: {
  49572. height: math.unit(1.95, "feet"),
  49573. name: "Stomach",
  49574. image: {
  49575. source: "./media/characters/bandel/stomach.svg"
  49576. }
  49577. },
  49578. },
  49579. [
  49580. {
  49581. name: "Normal",
  49582. height: math.unit(7 + 4/12, "feet"),
  49583. default: true
  49584. },
  49585. ]
  49586. ))
  49587. characterMakers.push(() => makeCharacter(
  49588. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49589. {
  49590. front: {
  49591. height: math.unit(10 + 5/12, "feet"),
  49592. weight: math.unit(773.5, "kg"),
  49593. name: "Front",
  49594. image: {
  49595. source: "./media/characters/zed/front.svg",
  49596. extra: 987/941,
  49597. bottom: 52/1039
  49598. }
  49599. },
  49600. },
  49601. [
  49602. {
  49603. name: "Short",
  49604. height: math.unit(5 + 4/12, "feet")
  49605. },
  49606. {
  49607. name: "Average",
  49608. height: math.unit(10 + 5/12, "feet"),
  49609. default: true
  49610. },
  49611. {
  49612. name: "Mini-Macro",
  49613. height: math.unit(24 + 9/12, "feet")
  49614. },
  49615. {
  49616. name: "Macro",
  49617. height: math.unit(249, "feet")
  49618. },
  49619. {
  49620. name: "Mega-Macro",
  49621. height: math.unit(12490, "feet")
  49622. },
  49623. {
  49624. name: "Giga-Macro",
  49625. height: math.unit(24.9, "miles")
  49626. },
  49627. {
  49628. name: "Tera-Macro",
  49629. height: math.unit(24900, "miles")
  49630. },
  49631. {
  49632. name: "Cosmic Scale",
  49633. height: math.unit(38.9, "lightyears")
  49634. },
  49635. {
  49636. name: "Universal Scale",
  49637. height: math.unit(138e12, "lightyears")
  49638. },
  49639. ]
  49640. ))
  49641. characterMakers.push(() => makeCharacter(
  49642. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49643. {
  49644. front: {
  49645. height: math.unit(1561, "inches"),
  49646. name: "Front",
  49647. image: {
  49648. source: "./media/characters/ivan/front.svg",
  49649. extra: 1126/1071,
  49650. bottom: 26/1152
  49651. }
  49652. },
  49653. back: {
  49654. height: math.unit(1561, "inches"),
  49655. name: "Back",
  49656. image: {
  49657. source: "./media/characters/ivan/back.svg",
  49658. extra: 1134/1079,
  49659. bottom: 30/1164
  49660. }
  49661. },
  49662. },
  49663. [
  49664. {
  49665. name: "Normal",
  49666. height: math.unit(1561, "inches"),
  49667. default: true
  49668. },
  49669. ]
  49670. ))
  49671. characterMakers.push(() => makeCharacter(
  49672. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49673. {
  49674. front: {
  49675. height: math.unit(5 + 7/12, "feet"),
  49676. weight: math.unit(150, "lb"),
  49677. name: "Front",
  49678. image: {
  49679. source: "./media/characters/robin-arctic-hare/front.svg",
  49680. extra: 1148/974,
  49681. bottom: 20/1168
  49682. }
  49683. },
  49684. },
  49685. [
  49686. {
  49687. name: "Normal",
  49688. height: math.unit(5 + 7/12, "feet"),
  49689. default: true
  49690. },
  49691. ]
  49692. ))
  49693. characterMakers.push(() => makeCharacter(
  49694. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49695. {
  49696. side: {
  49697. height: math.unit(5, "feet"),
  49698. name: "Side",
  49699. image: {
  49700. source: "./media/characters/birch/side.svg",
  49701. extra: 985/796,
  49702. bottom: 111/1096
  49703. }
  49704. },
  49705. },
  49706. [
  49707. {
  49708. name: "Normal",
  49709. height: math.unit(5, "feet"),
  49710. default: true
  49711. },
  49712. ]
  49713. ))
  49714. characterMakers.push(() => makeCharacter(
  49715. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49716. {
  49717. front: {
  49718. height: math.unit(4, "feet"),
  49719. name: "Front",
  49720. image: {
  49721. source: "./media/characters/rasp/front.svg",
  49722. extra: 561/478,
  49723. bottom: 74/635
  49724. }
  49725. },
  49726. },
  49727. [
  49728. {
  49729. name: "Normal",
  49730. height: math.unit(4, "feet"),
  49731. default: true
  49732. },
  49733. ]
  49734. ))
  49735. characterMakers.push(() => makeCharacter(
  49736. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49737. {
  49738. front: {
  49739. height: math.unit(4 + 6/12, "feet"),
  49740. name: "Front",
  49741. image: {
  49742. source: "./media/characters/agatha/front.svg",
  49743. extra: 947/933,
  49744. bottom: 42/989
  49745. }
  49746. },
  49747. back: {
  49748. height: math.unit(4 + 6/12, "feet"),
  49749. name: "Back",
  49750. image: {
  49751. source: "./media/characters/agatha/back.svg",
  49752. extra: 935/922,
  49753. bottom: 48/983
  49754. }
  49755. },
  49756. },
  49757. [
  49758. {
  49759. name: "Normal",
  49760. height: math.unit(4 + 6 /12, "feet"),
  49761. default: true
  49762. },
  49763. {
  49764. name: "Max Size",
  49765. height: math.unit(500, "feet")
  49766. },
  49767. ]
  49768. ))
  49769. characterMakers.push(() => makeCharacter(
  49770. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49771. {
  49772. side: {
  49773. height: math.unit(30, "feet"),
  49774. name: "Side",
  49775. image: {
  49776. source: "./media/characters/roggy/side.svg",
  49777. extra: 909/643,
  49778. bottom: 63/972
  49779. }
  49780. },
  49781. lounging: {
  49782. height: math.unit(20, "feet"),
  49783. name: "Lounging",
  49784. image: {
  49785. source: "./media/characters/roggy/lounging.svg",
  49786. extra: 643/479,
  49787. bottom: 145/788
  49788. }
  49789. },
  49790. handpaw: {
  49791. height: math.unit(13.1, "feet"),
  49792. name: "Handpaw",
  49793. image: {
  49794. source: "./media/characters/roggy/handpaw.svg"
  49795. }
  49796. },
  49797. footpaw: {
  49798. height: math.unit(15.8, "feet"),
  49799. name: "Footpaw",
  49800. image: {
  49801. source: "./media/characters/roggy/footpaw.svg"
  49802. }
  49803. },
  49804. },
  49805. [
  49806. {
  49807. name: "Menacing",
  49808. height: math.unit(30, "feet"),
  49809. default: true
  49810. },
  49811. ]
  49812. ))
  49813. characterMakers.push(() => makeCharacter(
  49814. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49815. {
  49816. front: {
  49817. height: math.unit(5 + 7/12, "feet"),
  49818. weight: math.unit(135, "lb"),
  49819. name: "Front",
  49820. image: {
  49821. source: "./media/characters/naomi/front.svg",
  49822. extra: 1209/1154,
  49823. bottom: 129/1338
  49824. }
  49825. },
  49826. back: {
  49827. height: math.unit(5 + 7/12, "feet"),
  49828. weight: math.unit(135, "lb"),
  49829. name: "Back",
  49830. image: {
  49831. source: "./media/characters/naomi/back.svg",
  49832. extra: 1252/1190,
  49833. bottom: 23/1275
  49834. }
  49835. },
  49836. },
  49837. [
  49838. {
  49839. name: "Normal",
  49840. height: math.unit(5 + 7 /12, "feet"),
  49841. default: true
  49842. },
  49843. ]
  49844. ))
  49845. characterMakers.push(() => makeCharacter(
  49846. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49847. {
  49848. side: {
  49849. height: math.unit(35, "meters"),
  49850. name: "Side",
  49851. image: {
  49852. source: "./media/characters/kimpi/side.svg",
  49853. extra: 419/382,
  49854. bottom: 63/482
  49855. }
  49856. },
  49857. hand: {
  49858. height: math.unit(8.96, "meters"),
  49859. name: "Hand",
  49860. image: {
  49861. source: "./media/characters/kimpi/hand.svg"
  49862. }
  49863. },
  49864. },
  49865. [
  49866. {
  49867. name: "Normal",
  49868. height: math.unit(35, "meters"),
  49869. default: true
  49870. },
  49871. ]
  49872. ))
  49873. characterMakers.push(() => makeCharacter(
  49874. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49875. {
  49876. front: {
  49877. height: math.unit(4 + 4/12, "feet"),
  49878. name: "Front",
  49879. image: {
  49880. source: "./media/characters/pepper-purrloin/front.svg",
  49881. extra: 1141/1024,
  49882. bottom: 21/1162
  49883. }
  49884. },
  49885. },
  49886. [
  49887. {
  49888. name: "Normal",
  49889. height: math.unit(4 + 4/12, "feet"),
  49890. default: true
  49891. },
  49892. ]
  49893. ))
  49894. characterMakers.push(() => makeCharacter(
  49895. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49896. {
  49897. front: {
  49898. height: math.unit(6 + 2/12, "feet"),
  49899. name: "Front",
  49900. image: {
  49901. source: "./media/characters/raphael/front.svg",
  49902. extra: 1101/962,
  49903. bottom: 59/1160
  49904. }
  49905. },
  49906. },
  49907. [
  49908. {
  49909. name: "Normal",
  49910. height: math.unit(6 + 2/12, "feet"),
  49911. default: true
  49912. },
  49913. ]
  49914. ))
  49915. characterMakers.push(() => makeCharacter(
  49916. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49917. {
  49918. front: {
  49919. height: math.unit(6, "feet"),
  49920. weight: math.unit(150, "lb"),
  49921. name: "Front",
  49922. image: {
  49923. source: "./media/characters/victor-williams/front.svg",
  49924. extra: 1894/1825,
  49925. bottom: 67/1961
  49926. }
  49927. },
  49928. },
  49929. [
  49930. {
  49931. name: "Normal",
  49932. height: math.unit(6, "feet"),
  49933. default: true
  49934. },
  49935. ]
  49936. ))
  49937. characterMakers.push(() => makeCharacter(
  49938. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49939. {
  49940. front: {
  49941. height: math.unit(5 + 8/12, "feet"),
  49942. weight: math.unit(150, "lb"),
  49943. name: "Front",
  49944. image: {
  49945. source: "./media/characters/rachel/front.svg",
  49946. extra: 1902/1787,
  49947. bottom: 46/1948
  49948. }
  49949. },
  49950. },
  49951. [
  49952. {
  49953. name: "Base Height",
  49954. height: math.unit(5 + 8/12, "feet"),
  49955. default: true
  49956. },
  49957. {
  49958. name: "Macro",
  49959. height: math.unit(200, "feet")
  49960. },
  49961. {
  49962. name: "Mega Macro",
  49963. height: math.unit(1, "mile")
  49964. },
  49965. {
  49966. name: "Giga Macro",
  49967. height: math.unit(1500, "miles")
  49968. },
  49969. {
  49970. name: "Tera Macro",
  49971. height: math.unit(8000, "miles")
  49972. },
  49973. {
  49974. name: "Tera Macro+",
  49975. height: math.unit(2e5, "miles")
  49976. },
  49977. ]
  49978. ))
  49979. characterMakers.push(() => makeCharacter(
  49980. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49981. {
  49982. front: {
  49983. height: math.unit(6.5, "feet"),
  49984. name: "Front",
  49985. image: {
  49986. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49987. extra: 860/819,
  49988. bottom: 307/1167
  49989. }
  49990. },
  49991. back: {
  49992. height: math.unit(6.5, "feet"),
  49993. name: "Back",
  49994. image: {
  49995. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49996. extra: 880/837,
  49997. bottom: 395/1275
  49998. }
  49999. },
  50000. sleeping: {
  50001. height: math.unit(2.79, "feet"),
  50002. name: "Sleeping",
  50003. image: {
  50004. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  50005. extra: 465/383,
  50006. bottom: 263/728
  50007. }
  50008. },
  50009. maw: {
  50010. height: math.unit(2.52, "feet"),
  50011. name: "Maw",
  50012. image: {
  50013. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  50014. }
  50015. },
  50016. },
  50017. [
  50018. {
  50019. name: "Normal",
  50020. height: math.unit(6.5, "feet"),
  50021. default: true
  50022. },
  50023. ]
  50024. ))
  50025. characterMakers.push(() => makeCharacter(
  50026. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  50027. {
  50028. front: {
  50029. height: math.unit(5, "feet"),
  50030. name: "Front",
  50031. image: {
  50032. source: "./media/characters/nova-nerium/front.svg",
  50033. extra: 1548/1392,
  50034. bottom: 374/1922
  50035. }
  50036. },
  50037. back: {
  50038. height: math.unit(5, "feet"),
  50039. name: "Back",
  50040. image: {
  50041. source: "./media/characters/nova-nerium/back.svg",
  50042. extra: 1658/1468,
  50043. bottom: 257/1915
  50044. }
  50045. },
  50046. },
  50047. [
  50048. {
  50049. name: "Normal",
  50050. height: math.unit(5, "feet"),
  50051. default: true
  50052. },
  50053. ]
  50054. ))
  50055. characterMakers.push(() => makeCharacter(
  50056. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  50057. {
  50058. front: {
  50059. height: math.unit(5 + 4/12, "feet"),
  50060. name: "Front",
  50061. image: {
  50062. source: "./media/characters/ashe-pyriph/front.svg",
  50063. extra: 1935/1747,
  50064. bottom: 60/1995
  50065. }
  50066. },
  50067. },
  50068. [
  50069. {
  50070. name: "Normal",
  50071. height: math.unit(5 + 4/12, "feet"),
  50072. default: true
  50073. },
  50074. ]
  50075. ))
  50076. characterMakers.push(() => makeCharacter(
  50077. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  50078. {
  50079. front: {
  50080. height: math.unit(8.7, "feet"),
  50081. name: "Front",
  50082. image: {
  50083. source: "./media/characters/flicker-wisp/front.svg",
  50084. extra: 1835/1613,
  50085. bottom: 449/2284
  50086. }
  50087. },
  50088. side: {
  50089. height: math.unit(8.7, "feet"),
  50090. name: "Side",
  50091. image: {
  50092. source: "./media/characters/flicker-wisp/side.svg",
  50093. extra: 1841/1642,
  50094. bottom: 336/2177
  50095. },
  50096. default: true
  50097. },
  50098. maw: {
  50099. height: math.unit(3.35, "feet"),
  50100. name: "Maw",
  50101. image: {
  50102. source: "./media/characters/flicker-wisp/maw.svg",
  50103. extra: 2338/1506,
  50104. bottom: 0/2338
  50105. }
  50106. },
  50107. ovipositor: {
  50108. height: math.unit(4.95, "feet"),
  50109. name: "Ovipositor",
  50110. image: {
  50111. source: "./media/characters/flicker-wisp/ovipositor.svg"
  50112. }
  50113. },
  50114. egg: {
  50115. height: math.unit(0.385, "feet"),
  50116. weight: math.unit(2, "lb"),
  50117. name: "Egg",
  50118. image: {
  50119. source: "./media/characters/flicker-wisp/egg.svg"
  50120. }
  50121. },
  50122. },
  50123. [
  50124. {
  50125. name: "Normal",
  50126. height: math.unit(8.7, "feet"),
  50127. default: true
  50128. },
  50129. ]
  50130. ))
  50131. characterMakers.push(() => makeCharacter(
  50132. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  50133. {
  50134. side: {
  50135. height: math.unit(11, "feet"),
  50136. name: "Side",
  50137. image: {
  50138. source: "./media/characters/faefnul/side.svg",
  50139. extra: 1100/1007,
  50140. bottom: 0/1100
  50141. }
  50142. },
  50143. },
  50144. [
  50145. {
  50146. name: "Normal",
  50147. height: math.unit(11, "feet"),
  50148. default: true
  50149. },
  50150. ]
  50151. ))
  50152. characterMakers.push(() => makeCharacter(
  50153. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  50154. {
  50155. front: {
  50156. height: math.unit(6 + 2/12, "feet"),
  50157. name: "Front",
  50158. image: {
  50159. source: "./media/characters/shady/front.svg",
  50160. extra: 502/461,
  50161. bottom: 9/511
  50162. }
  50163. },
  50164. kneeling: {
  50165. height: math.unit(4.6, "feet"),
  50166. name: "Kneeling",
  50167. image: {
  50168. source: "./media/characters/shady/kneeling.svg",
  50169. extra: 1328/1219,
  50170. bottom: 117/1445
  50171. }
  50172. },
  50173. maw: {
  50174. height: math.unit(2, "feet"),
  50175. name: "Maw",
  50176. image: {
  50177. source: "./media/characters/shady/maw.svg"
  50178. }
  50179. },
  50180. },
  50181. [
  50182. {
  50183. name: "Nano",
  50184. height: math.unit(1, "mm")
  50185. },
  50186. {
  50187. name: "Micro",
  50188. height: math.unit(12, "mm")
  50189. },
  50190. {
  50191. name: "Tiny",
  50192. height: math.unit(3, "inches")
  50193. },
  50194. {
  50195. name: "Normal",
  50196. height: math.unit(6 + 2/12, "feet"),
  50197. default: true
  50198. },
  50199. {
  50200. name: "Big",
  50201. height: math.unit(15, "feet")
  50202. },
  50203. {
  50204. name: "Macro",
  50205. height: math.unit(150, "feet")
  50206. },
  50207. {
  50208. name: "Titanic",
  50209. height: math.unit(500, "feet")
  50210. },
  50211. ]
  50212. ))
  50213. characterMakers.push(() => makeCharacter(
  50214. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50215. {
  50216. front: {
  50217. height: math.unit(12, "feet"),
  50218. name: "Front",
  50219. image: {
  50220. source: "./media/characters/fenrir/front.svg",
  50221. extra: 968/875,
  50222. bottom: 22/990
  50223. }
  50224. },
  50225. },
  50226. [
  50227. {
  50228. name: "Big",
  50229. height: math.unit(12, "feet"),
  50230. default: true
  50231. },
  50232. ]
  50233. ))
  50234. characterMakers.push(() => makeCharacter(
  50235. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50236. {
  50237. front: {
  50238. height: math.unit(5 + 4/12, "feet"),
  50239. name: "Front",
  50240. image: {
  50241. source: "./media/characters/makar/front.svg",
  50242. extra: 1181/1112,
  50243. bottom: 78/1259
  50244. }
  50245. },
  50246. },
  50247. [
  50248. {
  50249. name: "Normal",
  50250. height: math.unit(5 + 4/12, "feet"),
  50251. default: true
  50252. },
  50253. ]
  50254. ))
  50255. characterMakers.push(() => makeCharacter(
  50256. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50257. {
  50258. front: {
  50259. height: math.unit(5 + 7/12, "feet"),
  50260. name: "Front",
  50261. image: {
  50262. source: "./media/characters/callow/front.svg",
  50263. extra: 1482/1304,
  50264. bottom: 23/1505
  50265. }
  50266. },
  50267. back: {
  50268. height: math.unit(5 + 7/12, "feet"),
  50269. name: "Back",
  50270. image: {
  50271. source: "./media/characters/callow/back.svg",
  50272. extra: 1484/1296,
  50273. bottom: 25/1509
  50274. }
  50275. },
  50276. },
  50277. [
  50278. {
  50279. name: "Micro",
  50280. height: math.unit(3, "inches"),
  50281. default: true
  50282. },
  50283. {
  50284. name: "Normal",
  50285. height: math.unit(5 + 7/12, "feet")
  50286. },
  50287. ]
  50288. ))
  50289. characterMakers.push(() => makeCharacter(
  50290. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50291. {
  50292. front: {
  50293. height: math.unit(6 + 2/12, "feet"),
  50294. name: "Front",
  50295. image: {
  50296. source: "./media/characters/natel/front.svg",
  50297. extra: 1833/1692,
  50298. bottom: 166/1999
  50299. }
  50300. },
  50301. },
  50302. [
  50303. {
  50304. name: "Normal",
  50305. height: math.unit(6 + 2/12, "feet"),
  50306. default: true
  50307. },
  50308. ]
  50309. ))
  50310. characterMakers.push(() => makeCharacter(
  50311. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50312. {
  50313. front: {
  50314. height: math.unit(1.75, "meters"),
  50315. name: "Front",
  50316. image: {
  50317. source: "./media/characters/misu/front.svg",
  50318. extra: 1690/1558,
  50319. bottom: 234/1924
  50320. }
  50321. },
  50322. back: {
  50323. height: math.unit(1.75, "meters"),
  50324. name: "Back",
  50325. image: {
  50326. source: "./media/characters/misu/back.svg",
  50327. extra: 1762/1618,
  50328. bottom: 146/1908
  50329. }
  50330. },
  50331. frontNude: {
  50332. height: math.unit(1.75, "meters"),
  50333. name: "Front (Nude)",
  50334. image: {
  50335. source: "./media/characters/misu/front-nude.svg",
  50336. extra: 1690/1558,
  50337. bottom: 234/1924
  50338. }
  50339. },
  50340. backNude: {
  50341. height: math.unit(1.75, "meters"),
  50342. name: "Back (Nude)",
  50343. image: {
  50344. source: "./media/characters/misu/back-nude.svg",
  50345. extra: 1762/1618,
  50346. bottom: 146/1908
  50347. }
  50348. },
  50349. frontErect: {
  50350. height: math.unit(1.75, "meters"),
  50351. name: "Front (Erect)",
  50352. image: {
  50353. source: "./media/characters/misu/front-erect.svg",
  50354. extra: 1690/1558,
  50355. bottom: 234/1924
  50356. }
  50357. },
  50358. maw: {
  50359. height: math.unit(0.47, "meters"),
  50360. name: "Maw",
  50361. image: {
  50362. source: "./media/characters/misu/maw.svg"
  50363. }
  50364. },
  50365. head: {
  50366. height: math.unit(0.35, "meters"),
  50367. name: "Head",
  50368. image: {
  50369. source: "./media/characters/misu/head.svg"
  50370. }
  50371. },
  50372. rear: {
  50373. height: math.unit(0.47, "meters"),
  50374. name: "Rear",
  50375. image: {
  50376. source: "./media/characters/misu/rear.svg"
  50377. }
  50378. },
  50379. },
  50380. [
  50381. {
  50382. name: "Normal",
  50383. height: math.unit(1.75, "meters")
  50384. },
  50385. {
  50386. name: "Not good for the people",
  50387. height: math.unit(42, "meters")
  50388. },
  50389. {
  50390. name: "Not good for the neighborhood",
  50391. height: math.unit(135, "meters")
  50392. },
  50393. {
  50394. name: "Bit bigger problem",
  50395. height: math.unit(380, "meters"),
  50396. default: true
  50397. },
  50398. {
  50399. name: "Not good for the city",
  50400. height: math.unit(1.5, "km")
  50401. },
  50402. {
  50403. name: "Not good for the county",
  50404. height: math.unit(5.5, "km")
  50405. },
  50406. {
  50407. name: "Not good for the state",
  50408. height: math.unit(25, "km")
  50409. },
  50410. {
  50411. name: "Not good for the country",
  50412. height: math.unit(125, "km")
  50413. },
  50414. {
  50415. name: "Not good for the continent",
  50416. height: math.unit(2100, "km")
  50417. },
  50418. {
  50419. name: "Not good for the planet",
  50420. height: math.unit(35000, "km")
  50421. },
  50422. {
  50423. name: "Just no",
  50424. height: math.unit(8.5e18, "km")
  50425. },
  50426. ]
  50427. ))
  50428. characterMakers.push(() => makeCharacter(
  50429. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50430. {
  50431. front: {
  50432. height: math.unit(6.5, "feet"),
  50433. name: "Front",
  50434. image: {
  50435. source: "./media/characters/poppy/front.svg",
  50436. extra: 1878/1812,
  50437. bottom: 43/1921
  50438. }
  50439. },
  50440. feet: {
  50441. height: math.unit(1.06, "feet"),
  50442. name: "Feet",
  50443. image: {
  50444. source: "./media/characters/poppy/feet.svg",
  50445. extra: 1083/1083,
  50446. bottom: 87/1170
  50447. }
  50448. },
  50449. },
  50450. [
  50451. {
  50452. name: "Human",
  50453. height: math.unit(6.5, "feet")
  50454. },
  50455. {
  50456. name: "Default",
  50457. height: math.unit(300, "feet"),
  50458. default: true
  50459. },
  50460. {
  50461. name: "Huge",
  50462. height: math.unit(850, "feet")
  50463. },
  50464. {
  50465. name: "Mega",
  50466. height: math.unit(8000, "feet")
  50467. },
  50468. {
  50469. name: "Giga",
  50470. height: math.unit(300, "miles")
  50471. },
  50472. ]
  50473. ))
  50474. characterMakers.push(() => makeCharacter(
  50475. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50476. {
  50477. bipedal: {
  50478. height: math.unit(7, "feet"),
  50479. name: "Bipedal",
  50480. image: {
  50481. source: "./media/characters/zener/bipedal.svg",
  50482. extra: 874/805,
  50483. bottom: 109/983
  50484. }
  50485. },
  50486. quadrupedal: {
  50487. height: math.unit(4.64, "feet"),
  50488. name: "Quadrupedal",
  50489. image: {
  50490. source: "./media/characters/zener/quadrupedal.svg",
  50491. extra: 638/507,
  50492. bottom: 190/828
  50493. }
  50494. },
  50495. cock: {
  50496. height: math.unit(18, "inches"),
  50497. name: "Cock",
  50498. image: {
  50499. source: "./media/characters/zener/cock.svg"
  50500. }
  50501. },
  50502. },
  50503. [
  50504. {
  50505. name: "Normal",
  50506. height: math.unit(7, "feet"),
  50507. default: true
  50508. },
  50509. ]
  50510. ))
  50511. characterMakers.push(() => makeCharacter(
  50512. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50513. {
  50514. nude: {
  50515. height: math.unit(5 + 6/12, "feet"),
  50516. name: "Nude",
  50517. image: {
  50518. source: "./media/characters/charlie-dog/nude.svg",
  50519. extra: 768/734,
  50520. bottom: 26/794
  50521. }
  50522. },
  50523. dressed: {
  50524. height: math.unit(5 + 6/12, "feet"),
  50525. name: "Dressed",
  50526. image: {
  50527. source: "./media/characters/charlie-dog/dressed.svg",
  50528. extra: 768/734,
  50529. bottom: 26/794
  50530. }
  50531. },
  50532. },
  50533. [
  50534. {
  50535. name: "Normal",
  50536. height: math.unit(5 + 6/12, "feet"),
  50537. default: true
  50538. },
  50539. ]
  50540. ))
  50541. characterMakers.push(() => makeCharacter(
  50542. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50543. {
  50544. front: {
  50545. height: math.unit(6 + 4/12, "feet"),
  50546. name: "Front",
  50547. image: {
  50548. source: "./media/characters/ir'istrasz/front.svg",
  50549. extra: 1014/977,
  50550. bottom: 65/1079
  50551. }
  50552. },
  50553. back: {
  50554. height: math.unit(6 + 4/12, "feet"),
  50555. name: "Back",
  50556. image: {
  50557. source: "./media/characters/ir'istrasz/back.svg",
  50558. extra: 1024/992,
  50559. bottom: 34/1058
  50560. }
  50561. },
  50562. },
  50563. [
  50564. {
  50565. name: "Normal",
  50566. height: math.unit(6 + 4/12, "feet"),
  50567. default: true
  50568. },
  50569. ]
  50570. ))
  50571. characterMakers.push(() => makeCharacter(
  50572. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50573. {
  50574. front: {
  50575. height: math.unit(5 + 8/12, "feet"),
  50576. name: "Front",
  50577. image: {
  50578. source: "./media/characters/dee-ditto/front.svg",
  50579. extra: 1874/1785,
  50580. bottom: 68/1942
  50581. }
  50582. },
  50583. back: {
  50584. height: math.unit(5 + 8/12, "feet"),
  50585. name: "Back",
  50586. image: {
  50587. source: "./media/characters/dee-ditto/back.svg",
  50588. extra: 1870/1783,
  50589. bottom: 77/1947
  50590. }
  50591. },
  50592. },
  50593. [
  50594. {
  50595. name: "Normal",
  50596. height: math.unit(5 + 8/12, "feet"),
  50597. default: true
  50598. },
  50599. ]
  50600. ))
  50601. characterMakers.push(() => makeCharacter(
  50602. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50603. {
  50604. front: {
  50605. height: math.unit(7 + 6/12, "feet"),
  50606. name: "Front",
  50607. image: {
  50608. source: "./media/characters/fey/front.svg",
  50609. extra: 995/979,
  50610. bottom: 30/1025
  50611. }
  50612. },
  50613. back: {
  50614. height: math.unit(7 + 6/12, "feet"),
  50615. name: "Back",
  50616. image: {
  50617. source: "./media/characters/fey/back.svg",
  50618. extra: 1079/1008,
  50619. bottom: 5/1084
  50620. }
  50621. },
  50622. dressed: {
  50623. height: math.unit(7 + 6/12, "feet"),
  50624. name: "Dressed",
  50625. image: {
  50626. source: "./media/characters/fey/dressed.svg",
  50627. extra: 995/979,
  50628. bottom: 30/1025
  50629. }
  50630. },
  50631. },
  50632. [
  50633. {
  50634. name: "Normal",
  50635. height: math.unit(7 + 6/12, "feet"),
  50636. default: true
  50637. },
  50638. ]
  50639. ))
  50640. characterMakers.push(() => makeCharacter(
  50641. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50642. {
  50643. standing: {
  50644. height: math.unit(17, "feet"),
  50645. name: "Standing",
  50646. image: {
  50647. source: "./media/characters/aster/standing.svg",
  50648. extra: 1798/1598,
  50649. bottom: 117/1915
  50650. }
  50651. },
  50652. },
  50653. [
  50654. {
  50655. name: "Normal",
  50656. height: math.unit(17, "feet"),
  50657. default: true
  50658. },
  50659. {
  50660. name: "Homewrecker",
  50661. height: math.unit(95, "feet")
  50662. },
  50663. {
  50664. name: "Planet Devourer",
  50665. height: math.unit(1008000, "miles")
  50666. },
  50667. ]
  50668. ))
  50669. characterMakers.push(() => makeCharacter(
  50670. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50671. {
  50672. front: {
  50673. height: math.unit(6 + 5/12, "feet"),
  50674. weight: math.unit(265, "lb"),
  50675. name: "Front",
  50676. image: {
  50677. source: "./media/characters/devon-childs/front.svg",
  50678. extra: 1795/1721,
  50679. bottom: 41/1836
  50680. }
  50681. },
  50682. side: {
  50683. height: math.unit(6 + 5/12, "feet"),
  50684. weight: math.unit(265, "lb"),
  50685. name: "Side",
  50686. image: {
  50687. source: "./media/characters/devon-childs/side.svg",
  50688. extra: 1812/1738,
  50689. bottom: 30/1842
  50690. }
  50691. },
  50692. back: {
  50693. height: math.unit(6 + 5/12, "feet"),
  50694. weight: math.unit(265, "lb"),
  50695. name: "Back",
  50696. image: {
  50697. source: "./media/characters/devon-childs/back.svg",
  50698. extra: 1808/1735,
  50699. bottom: 23/1831
  50700. }
  50701. },
  50702. hand: {
  50703. height: math.unit(1.464, "feet"),
  50704. name: "Hand",
  50705. image: {
  50706. source: "./media/characters/devon-childs/hand.svg"
  50707. }
  50708. },
  50709. foot: {
  50710. height: math.unit(1.6, "feet"),
  50711. name: "Foot",
  50712. image: {
  50713. source: "./media/characters/devon-childs/foot.svg"
  50714. }
  50715. },
  50716. },
  50717. [
  50718. {
  50719. name: "Micro",
  50720. height: math.unit(7, "cm")
  50721. },
  50722. {
  50723. name: "Normal",
  50724. height: math.unit(6 + 5/12, "feet"),
  50725. default: true
  50726. },
  50727. {
  50728. name: "Macro",
  50729. height: math.unit(154, "feet")
  50730. },
  50731. ]
  50732. ))
  50733. characterMakers.push(() => makeCharacter(
  50734. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50735. {
  50736. front: {
  50737. height: math.unit(6, "feet"),
  50738. weight: math.unit(180, "lb"),
  50739. name: "Front",
  50740. image: {
  50741. source: "./media/characters/lydemox-vir/front.svg",
  50742. extra: 1632/1435,
  50743. bottom: 58/1690
  50744. }
  50745. },
  50746. frontSFW: {
  50747. height: math.unit(6, "feet"),
  50748. weight: math.unit(180, "lb"),
  50749. name: "Front (SFW)",
  50750. image: {
  50751. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50752. extra: 1632/1435,
  50753. bottom: 58/1690
  50754. }
  50755. },
  50756. back: {
  50757. height: math.unit(6, "feet"),
  50758. weight: math.unit(180, "lb"),
  50759. name: "Back",
  50760. image: {
  50761. source: "./media/characters/lydemox-vir/back.svg",
  50762. extra: 1593/1408,
  50763. bottom: 31/1624
  50764. }
  50765. },
  50766. paw: {
  50767. height: math.unit(1.85, "feet"),
  50768. name: "Paw",
  50769. image: {
  50770. source: "./media/characters/lydemox-vir/paw.svg"
  50771. }
  50772. },
  50773. dick: {
  50774. height: math.unit(1.8, "feet"),
  50775. name: "Dick",
  50776. image: {
  50777. source: "./media/characters/lydemox-vir/dick.svg"
  50778. }
  50779. },
  50780. },
  50781. [
  50782. {
  50783. name: "Macro",
  50784. height: math.unit(100, "feet"),
  50785. default: true
  50786. },
  50787. {
  50788. name: "Teramacro",
  50789. height: math.unit(1, "earth")
  50790. },
  50791. {
  50792. name: "Planetary",
  50793. height: math.unit(20, "earths")
  50794. },
  50795. ]
  50796. ))
  50797. characterMakers.push(() => makeCharacter(
  50798. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50799. {
  50800. front: {
  50801. height: math.unit(15 + 8/12, "feet"),
  50802. weight: math.unit(1237, "kg"),
  50803. name: "Front",
  50804. image: {
  50805. source: "./media/characters/mia/front.svg",
  50806. extra: 1573/1446,
  50807. bottom: 58/1631
  50808. }
  50809. },
  50810. },
  50811. [
  50812. {
  50813. name: "Small",
  50814. height: math.unit(9 + 5/12, "feet")
  50815. },
  50816. {
  50817. name: "Normal",
  50818. height: math.unit(15 + 8/12, "feet"),
  50819. default: true
  50820. },
  50821. ]
  50822. ))
  50823. characterMakers.push(() => makeCharacter(
  50824. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50825. {
  50826. front: {
  50827. height: math.unit(10 + 6/12, "feet"),
  50828. weight: math.unit(1.3, "tons"),
  50829. name: "Front",
  50830. image: {
  50831. source: "./media/characters/mr-graves/front.svg",
  50832. extra: 1779/1695,
  50833. bottom: 198/1977
  50834. }
  50835. },
  50836. },
  50837. [
  50838. {
  50839. name: "Normal",
  50840. height: math.unit(10 + 6 /12, "feet"),
  50841. default: true
  50842. },
  50843. ]
  50844. ))
  50845. characterMakers.push(() => makeCharacter(
  50846. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50847. {
  50848. dressedFront: {
  50849. height: math.unit(5 + 8/12, "feet"),
  50850. weight: math.unit(125, "lb"),
  50851. name: "Dressed (Front)",
  50852. image: {
  50853. source: "./media/characters/jess/dressed-front.svg",
  50854. extra: 1176/1152,
  50855. bottom: 42/1218
  50856. }
  50857. },
  50858. dressedSide: {
  50859. height: math.unit(5 + 8/12, "feet"),
  50860. weight: math.unit(125, "lb"),
  50861. name: "Dressed (Side)",
  50862. image: {
  50863. source: "./media/characters/jess/dressed-side.svg",
  50864. extra: 1204/1190,
  50865. bottom: 6/1210
  50866. }
  50867. },
  50868. nudeFront: {
  50869. height: math.unit(5 + 8/12, "feet"),
  50870. weight: math.unit(125, "lb"),
  50871. name: "Nude (Front)",
  50872. image: {
  50873. source: "./media/characters/jess/nude-front.svg",
  50874. extra: 1176/1152,
  50875. bottom: 42/1218
  50876. }
  50877. },
  50878. nudeSide: {
  50879. height: math.unit(5 + 8/12, "feet"),
  50880. weight: math.unit(125, "lb"),
  50881. name: "Nude (Side)",
  50882. image: {
  50883. source: "./media/characters/jess/nude-side.svg",
  50884. extra: 1204/1190,
  50885. bottom: 6/1210
  50886. }
  50887. },
  50888. organsFront: {
  50889. height: math.unit(2.83799342105, "feet"),
  50890. name: "Organs (Front)",
  50891. image: {
  50892. source: "./media/characters/jess/organs-front.svg"
  50893. }
  50894. },
  50895. organsSide: {
  50896. height: math.unit(2.64225290474, "feet"),
  50897. name: "Organs (Side)",
  50898. image: {
  50899. source: "./media/characters/jess/organs-side.svg"
  50900. }
  50901. },
  50902. digestiveTractFront: {
  50903. height: math.unit(2.8106580871, "feet"),
  50904. name: "Digestive Tract (Front)",
  50905. image: {
  50906. source: "./media/characters/jess/digestive-tract-front.svg"
  50907. }
  50908. },
  50909. digestiveTractSide: {
  50910. height: math.unit(2.54365045014, "feet"),
  50911. name: "Digestive Tract (Side)",
  50912. image: {
  50913. source: "./media/characters/jess/digestive-tract-side.svg"
  50914. }
  50915. },
  50916. respiratorySystemFront: {
  50917. height: math.unit(1.11196233456, "feet"),
  50918. name: "Respiratory System (Front)",
  50919. image: {
  50920. source: "./media/characters/jess/respiratory-system-front.svg"
  50921. }
  50922. },
  50923. respiratorySystemSide: {
  50924. height: math.unit(0.89327966297, "feet"),
  50925. name: "Respiratory System (Side)",
  50926. image: {
  50927. source: "./media/characters/jess/respiratory-system-side.svg"
  50928. }
  50929. },
  50930. urinaryTractFront: {
  50931. height: math.unit(1.16126356186, "feet"),
  50932. name: "Urinary Tract (Front)",
  50933. image: {
  50934. source: "./media/characters/jess/urinary-tract-front.svg"
  50935. }
  50936. },
  50937. urinaryTractSide: {
  50938. height: math.unit(1.20910039627, "feet"),
  50939. name: "Urinary Tract (Side)",
  50940. image: {
  50941. source: "./media/characters/jess/urinary-tract-side.svg"
  50942. }
  50943. },
  50944. reproductiveOrgansFront: {
  50945. height: math.unit(0.48422591566, "feet"),
  50946. name: "Reproductive Organs (Front)",
  50947. image: {
  50948. source: "./media/characters/jess/reproductive-organs-front.svg"
  50949. }
  50950. },
  50951. reproductiveOrgansSide: {
  50952. height: math.unit(0.61553314481, "feet"),
  50953. name: "Reproductive Organs (Side)",
  50954. image: {
  50955. source: "./media/characters/jess/reproductive-organs-side.svg"
  50956. }
  50957. },
  50958. breastsFront: {
  50959. height: math.unit(0.47690395121, "feet"),
  50960. name: "Breasts (Front)",
  50961. image: {
  50962. source: "./media/characters/jess/breasts-front.svg"
  50963. }
  50964. },
  50965. breastsSide: {
  50966. height: math.unit(0.30556998307, "feet"),
  50967. name: "Breasts (Side)",
  50968. image: {
  50969. source: "./media/characters/jess/breasts-side.svg"
  50970. }
  50971. },
  50972. heartFront: {
  50973. height: math.unit(0.53011022622, "feet"),
  50974. name: "Heart (Front)",
  50975. image: {
  50976. source: "./media/characters/jess/heart-front.svg"
  50977. }
  50978. },
  50979. heartSide: {
  50980. height: math.unit(0.51790695213, "feet"),
  50981. name: "Heart (Side)",
  50982. image: {
  50983. source: "./media/characters/jess/heart-side.svg"
  50984. }
  50985. },
  50986. earsAndNoseFront: {
  50987. height: math.unit(0.29385483995, "feet"),
  50988. name: "Ears and Nose (Front)",
  50989. image: {
  50990. source: "./media/characters/jess/ears-and-nose-front.svg"
  50991. }
  50992. },
  50993. earsAndNoseSide: {
  50994. height: math.unit(0.18109658741, "feet"),
  50995. name: "Ears and Nose (Side)",
  50996. image: {
  50997. source: "./media/characters/jess/ears-and-nose-side.svg"
  50998. }
  50999. },
  51000. },
  51001. [
  51002. {
  51003. name: "Normal",
  51004. height: math.unit(5 + 8/12, "feet"),
  51005. default: true
  51006. },
  51007. ]
  51008. ))
  51009. characterMakers.push(() => makeCharacter(
  51010. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  51011. {
  51012. front: {
  51013. height: math.unit(6, "feet"),
  51014. weight: math.unit(6.64467e-7, "grams"),
  51015. name: "Front",
  51016. image: {
  51017. source: "./media/characters/wimpering/front.svg",
  51018. extra: 597/587,
  51019. bottom: 34/631
  51020. }
  51021. },
  51022. },
  51023. [
  51024. {
  51025. name: "Micro",
  51026. height: math.unit(0.4, "mm"),
  51027. default: true
  51028. },
  51029. ]
  51030. ))
  51031. characterMakers.push(() => makeCharacter(
  51032. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  51033. {
  51034. front: {
  51035. height: math.unit(5 + 2/12, "feet"),
  51036. weight: math.unit(110, "lb"),
  51037. name: "Front",
  51038. image: {
  51039. source: "./media/characters/keltre/front.svg",
  51040. extra: 1099/1057,
  51041. bottom: 22/1121
  51042. }
  51043. },
  51044. back: {
  51045. height: math.unit(5 + 2/12, "feet"),
  51046. weight: math.unit(110, "lb"),
  51047. name: "Back",
  51048. image: {
  51049. source: "./media/characters/keltre/back.svg",
  51050. extra: 1095/1053,
  51051. bottom: 17/1112
  51052. }
  51053. },
  51054. dressed: {
  51055. height: math.unit(5 + 2/12, "feet"),
  51056. weight: math.unit(110, "lb"),
  51057. name: "Dressed",
  51058. image: {
  51059. source: "./media/characters/keltre/dressed.svg",
  51060. extra: 1099/1057,
  51061. bottom: 22/1121
  51062. }
  51063. },
  51064. winter: {
  51065. height: math.unit(5 + 2/12, "feet"),
  51066. weight: math.unit(110, "lb"),
  51067. name: "Winter",
  51068. image: {
  51069. source: "./media/characters/keltre/winter.svg",
  51070. extra: 1099/1057,
  51071. bottom: 22/1121
  51072. }
  51073. },
  51074. head: {
  51075. height: math.unit(1.61 * 0.86, "feet"),
  51076. name: "Head",
  51077. image: {
  51078. source: "./media/characters/keltre/head.svg",
  51079. extra: 534/421,
  51080. bottom: 0/534
  51081. }
  51082. },
  51083. hand: {
  51084. height: math.unit(1.3 * 0.86, "feet"),
  51085. name: "Hand",
  51086. image: {
  51087. source: "./media/characters/keltre/hand.svg"
  51088. }
  51089. },
  51090. foot: {
  51091. height: math.unit(1.8 * 0.86, "feet"),
  51092. name: "Foot",
  51093. image: {
  51094. source: "./media/characters/keltre/foot.svg"
  51095. }
  51096. },
  51097. },
  51098. [
  51099. {
  51100. name: "Fine",
  51101. height: math.unit(1, "inch")
  51102. },
  51103. {
  51104. name: "Dimnutive",
  51105. height: math.unit(4, "inches")
  51106. },
  51107. {
  51108. name: "Tiny",
  51109. height: math.unit(1, "foot")
  51110. },
  51111. {
  51112. name: "Small",
  51113. height: math.unit(3, "feet")
  51114. },
  51115. {
  51116. name: "Normal",
  51117. height: math.unit(5 + 2/12, "feet"),
  51118. default: true
  51119. },
  51120. ]
  51121. ))
  51122. characterMakers.push(() => makeCharacter(
  51123. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  51124. {
  51125. front: {
  51126. height: math.unit(6 + 2/12, "feet"),
  51127. name: "Front",
  51128. image: {
  51129. source: "./media/characters/nox/front.svg",
  51130. extra: 1917/1830,
  51131. bottom: 74/1991
  51132. }
  51133. },
  51134. back: {
  51135. height: math.unit(6 + 2/12, "feet"),
  51136. name: "Back",
  51137. image: {
  51138. source: "./media/characters/nox/back.svg",
  51139. extra: 1896/1815,
  51140. bottom: 21/1917
  51141. }
  51142. },
  51143. head: {
  51144. height: math.unit(1.1, "feet"),
  51145. name: "Head",
  51146. image: {
  51147. source: "./media/characters/nox/head.svg",
  51148. extra: 874/704,
  51149. bottom: 0/874
  51150. }
  51151. },
  51152. tattoo: {
  51153. height: math.unit(0.729, "feet"),
  51154. name: "Tattoo",
  51155. image: {
  51156. source: "./media/characters/nox/tattoo.svg"
  51157. }
  51158. },
  51159. },
  51160. [
  51161. {
  51162. name: "Normal",
  51163. height: math.unit(6 + 2/12, "feet")
  51164. },
  51165. {
  51166. name: "Gigamacro",
  51167. height: math.unit(2, "earths"),
  51168. default: true
  51169. },
  51170. {
  51171. name: "Cosmic",
  51172. height: math.unit(867, "yottameters")
  51173. },
  51174. ]
  51175. ))
  51176. characterMakers.push(() => makeCharacter(
  51177. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  51178. {
  51179. front: {
  51180. height: math.unit(6, "feet"),
  51181. weight: math.unit(150, "lb"),
  51182. name: "Front",
  51183. image: {
  51184. source: "./media/characters/caspian/front.svg",
  51185. extra: 1443/1359,
  51186. bottom: 0/1443
  51187. }
  51188. },
  51189. back: {
  51190. height: math.unit(6, "feet"),
  51191. weight: math.unit(150, "lb"),
  51192. name: "Back",
  51193. image: {
  51194. source: "./media/characters/caspian/back.svg",
  51195. extra: 1379/1309,
  51196. bottom: 0/1379
  51197. }
  51198. },
  51199. head: {
  51200. height: math.unit(0.9, "feet"),
  51201. name: "Head",
  51202. image: {
  51203. source: "./media/characters/caspian/head.svg",
  51204. extra: 692/492,
  51205. bottom: 0/692
  51206. }
  51207. },
  51208. headAlt: {
  51209. height: math.unit(0.95, "feet"),
  51210. name: "Head (Alt)",
  51211. image: {
  51212. source: "./media/characters/caspian/head-alt.svg",
  51213. extra: 668/508,
  51214. bottom: 0/668
  51215. }
  51216. },
  51217. hand: {
  51218. height: math.unit(0.8, "feet"),
  51219. name: "Hand",
  51220. image: {
  51221. source: "./media/characters/caspian/hand.svg"
  51222. }
  51223. },
  51224. paw: {
  51225. height: math.unit(0.95, "feet"),
  51226. name: "Paw",
  51227. image: {
  51228. source: "./media/characters/caspian/paw.svg"
  51229. }
  51230. },
  51231. },
  51232. [
  51233. {
  51234. name: "Normal",
  51235. height: math.unit(162, "feet"),
  51236. default: true
  51237. },
  51238. ]
  51239. ))
  51240. characterMakers.push(() => makeCharacter(
  51241. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51242. {
  51243. front: {
  51244. height: math.unit(6, "feet"),
  51245. name: "Front",
  51246. image: {
  51247. source: "./media/characters/myra-aisling/front.svg",
  51248. extra: 1268/1166,
  51249. bottom: 73/1341
  51250. }
  51251. },
  51252. back: {
  51253. height: math.unit(6, "feet"),
  51254. name: "Back",
  51255. image: {
  51256. source: "./media/characters/myra-aisling/back.svg",
  51257. extra: 1249/1149,
  51258. bottom: 79/1328
  51259. }
  51260. },
  51261. dressed: {
  51262. height: math.unit(6, "feet"),
  51263. name: "Dressed",
  51264. image: {
  51265. source: "./media/characters/myra-aisling/dressed.svg",
  51266. extra: 1290/1189,
  51267. bottom: 47/1337
  51268. }
  51269. },
  51270. hand: {
  51271. height: math.unit(1.1, "feet"),
  51272. name: "Hand",
  51273. image: {
  51274. source: "./media/characters/myra-aisling/hand.svg"
  51275. }
  51276. },
  51277. paw: {
  51278. height: math.unit(1.23, "feet"),
  51279. name: "Paw",
  51280. image: {
  51281. source: "./media/characters/myra-aisling/paw.svg"
  51282. }
  51283. },
  51284. },
  51285. [
  51286. {
  51287. name: "Normal",
  51288. height: math.unit(160, "feet"),
  51289. default: true
  51290. },
  51291. ]
  51292. ))
  51293. characterMakers.push(() => makeCharacter(
  51294. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51295. {
  51296. front: {
  51297. height: math.unit(6, "feet"),
  51298. name: "Front",
  51299. image: {
  51300. source: "./media/characters/tenley-sidero/front.svg",
  51301. extra: 1365/1276,
  51302. bottom: 47/1412
  51303. }
  51304. },
  51305. back: {
  51306. height: math.unit(6, "feet"),
  51307. name: "Back",
  51308. image: {
  51309. source: "./media/characters/tenley-sidero/back.svg",
  51310. extra: 1383/1283,
  51311. bottom: 35/1418
  51312. }
  51313. },
  51314. dressed: {
  51315. height: math.unit(6, "feet"),
  51316. name: "Dressed",
  51317. image: {
  51318. source: "./media/characters/tenley-sidero/dressed.svg",
  51319. extra: 1364/1275,
  51320. bottom: 42/1406
  51321. }
  51322. },
  51323. head: {
  51324. height: math.unit(1.47, "feet"),
  51325. name: "Head",
  51326. image: {
  51327. source: "./media/characters/tenley-sidero/head.svg",
  51328. extra: 610/490,
  51329. bottom: 0/610
  51330. }
  51331. },
  51332. },
  51333. [
  51334. {
  51335. name: "Normal",
  51336. height: math.unit(154, "feet"),
  51337. default: true
  51338. },
  51339. ]
  51340. ))
  51341. characterMakers.push(() => makeCharacter(
  51342. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51343. {
  51344. front: {
  51345. height: math.unit(5, "inches"),
  51346. name: "Front",
  51347. image: {
  51348. source: "./media/characters/mallory/front.svg",
  51349. extra: 1919/1678,
  51350. bottom: 29/1948
  51351. }
  51352. },
  51353. hand: {
  51354. height: math.unit(0.73, "inches"),
  51355. name: "Hand",
  51356. image: {
  51357. source: "./media/characters/mallory/hand.svg"
  51358. }
  51359. },
  51360. paw: {
  51361. height: math.unit(0.68, "inches"),
  51362. name: "Paw",
  51363. image: {
  51364. source: "./media/characters/mallory/paw.svg"
  51365. }
  51366. },
  51367. },
  51368. [
  51369. {
  51370. name: "Small",
  51371. height: math.unit(5, "inches"),
  51372. default: true
  51373. },
  51374. ]
  51375. ))
  51376. characterMakers.push(() => makeCharacter(
  51377. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51378. {
  51379. naked: {
  51380. height: math.unit(6, "feet"),
  51381. name: "Naked",
  51382. image: {
  51383. source: "./media/characters/mab/naked.svg",
  51384. extra: 1855/1757,
  51385. bottom: 208/2063
  51386. }
  51387. },
  51388. outside: {
  51389. height: math.unit(6, "feet"),
  51390. name: "Outside",
  51391. image: {
  51392. source: "./media/characters/mab/outside.svg",
  51393. extra: 1855/1757,
  51394. bottom: 208/2063
  51395. }
  51396. },
  51397. party: {
  51398. height: math.unit(6, "feet"),
  51399. name: "Party",
  51400. image: {
  51401. source: "./media/characters/mab/party.svg",
  51402. extra: 1855/1757,
  51403. bottom: 208/2063
  51404. }
  51405. },
  51406. },
  51407. [
  51408. {
  51409. name: "Normal",
  51410. height: math.unit(165, "feet"),
  51411. default: true
  51412. },
  51413. ]
  51414. ))
  51415. characterMakers.push(() => makeCharacter(
  51416. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51417. {
  51418. feral: {
  51419. height: math.unit(12, "feet"),
  51420. weight: math.unit(20000, "lb"),
  51421. name: "Side",
  51422. image: {
  51423. source: "./media/characters/winter/feral.svg",
  51424. extra: 1286/943,
  51425. bottom: 112/1398
  51426. },
  51427. form: "feral",
  51428. default: true
  51429. },
  51430. feralNsfw: {
  51431. height: math.unit(12, "feet"),
  51432. weight: math.unit(20000, "lb"),
  51433. name: "Side (NSFW)",
  51434. image: {
  51435. source: "./media/characters/winter/feral-nsfw.svg",
  51436. extra: 1286/943,
  51437. bottom: 112/1398
  51438. },
  51439. form: "feral"
  51440. },
  51441. dick: {
  51442. height: math.unit(3.79, "feet"),
  51443. name: "Dick",
  51444. image: {
  51445. source: "./media/characters/winter/dick.svg"
  51446. },
  51447. form: "feral"
  51448. },
  51449. anthro: {
  51450. height: math.unit(12, "feet"),
  51451. weight: math.unit(10, "tons"),
  51452. name: "Anthro",
  51453. image: {
  51454. source: "./media/characters/winter/anthro.svg",
  51455. extra: 1701/1553,
  51456. bottom: 64/1765
  51457. },
  51458. form: "anthro",
  51459. default: true
  51460. },
  51461. },
  51462. [
  51463. {
  51464. name: "Big",
  51465. height: math.unit(12, "feet"),
  51466. default: true,
  51467. form: "feral"
  51468. },
  51469. {
  51470. name: "Big",
  51471. height: math.unit(12, "feet"),
  51472. default: true,
  51473. form: "anthro"
  51474. },
  51475. ],
  51476. {
  51477. "feral": {
  51478. name: "Feral",
  51479. default: true
  51480. },
  51481. "anthro": {
  51482. name: "Anthro"
  51483. }
  51484. }
  51485. ))
  51486. characterMakers.push(() => makeCharacter(
  51487. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51488. {
  51489. front: {
  51490. height: math.unit(4.1, "inches"),
  51491. name: "Front",
  51492. image: {
  51493. source: "./media/characters/alto/front.svg",
  51494. extra: 736/627,
  51495. bottom: 90/826
  51496. }
  51497. },
  51498. },
  51499. [
  51500. {
  51501. name: "Normal",
  51502. height: math.unit(4.1, "inches"),
  51503. default: true
  51504. },
  51505. ]
  51506. ))
  51507. characterMakers.push(() => makeCharacter(
  51508. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51509. {
  51510. sitting: {
  51511. height: math.unit(3, "feet"),
  51512. name: "Sitting",
  51513. image: {
  51514. source: "./media/characters/ratstrid-v/sitting.svg",
  51515. extra: 355/310,
  51516. bottom: 136/491
  51517. }
  51518. },
  51519. },
  51520. [
  51521. {
  51522. name: "Normal",
  51523. height: math.unit(3, "feet"),
  51524. default: true
  51525. },
  51526. ]
  51527. ))
  51528. characterMakers.push(() => makeCharacter(
  51529. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51530. {
  51531. back: {
  51532. height: math.unit(6, "feet"),
  51533. weight: math.unit(450, "lb"),
  51534. name: "Back",
  51535. image: {
  51536. source: "./media/characters/siz/back.svg",
  51537. extra: 1449/1274,
  51538. bottom: 13/1462
  51539. }
  51540. },
  51541. },
  51542. [
  51543. {
  51544. name: "Smallest",
  51545. height: math.unit(18 + 3/12, "feet")
  51546. },
  51547. {
  51548. name: "Modest",
  51549. height: math.unit(56 + 8/12, "feet"),
  51550. default: true
  51551. },
  51552. {
  51553. name: "Largest",
  51554. height: math.unit(3590, "feet")
  51555. },
  51556. ]
  51557. ))
  51558. characterMakers.push(() => makeCharacter(
  51559. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51560. {
  51561. front: {
  51562. height: math.unit(5 + 9/12, "feet"),
  51563. weight: math.unit(150, "lb"),
  51564. name: "Front",
  51565. image: {
  51566. source: "./media/characters/ven/front.svg",
  51567. extra: 1372/1320,
  51568. bottom: 73/1445
  51569. }
  51570. },
  51571. side: {
  51572. height: math.unit(5 + 9/12, "feet"),
  51573. weight: math.unit(1150, "lb"),
  51574. name: "Side",
  51575. image: {
  51576. source: "./media/characters/ven/side.svg",
  51577. extra: 1119/1070,
  51578. bottom: 42/1161
  51579. },
  51580. default: true
  51581. },
  51582. },
  51583. [
  51584. {
  51585. name: "Normal",
  51586. height: math.unit(5 + 9/12, "feet"),
  51587. default: true
  51588. },
  51589. ]
  51590. ))
  51591. characterMakers.push(() => makeCharacter(
  51592. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51593. {
  51594. front: {
  51595. height: math.unit(12, "feet"),
  51596. weight: math.unit(1000, "kg"),
  51597. name: "Front",
  51598. image: {
  51599. source: "./media/characters/maple/front.svg",
  51600. extra: 1193/1081,
  51601. bottom: 22/1215
  51602. }
  51603. },
  51604. },
  51605. [
  51606. {
  51607. name: "Compressed",
  51608. height: math.unit(7, "feet")
  51609. },
  51610. {
  51611. name: "Normal",
  51612. height: math.unit(12, "feet"),
  51613. default: true
  51614. },
  51615. ]
  51616. ))
  51617. characterMakers.push(() => makeCharacter(
  51618. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51619. {
  51620. front: {
  51621. height: math.unit(9, "feet"),
  51622. weight: math.unit(1500, "lb"),
  51623. name: "Front",
  51624. image: {
  51625. source: "./media/characters/nora/front.svg",
  51626. extra: 1348/1286,
  51627. bottom: 218/1566
  51628. }
  51629. },
  51630. erect: {
  51631. height: math.unit(9, "feet"),
  51632. weight: math.unit(11500, "lb"),
  51633. name: "Erect",
  51634. image: {
  51635. source: "./media/characters/nora/erect.svg",
  51636. extra: 1488/1433,
  51637. bottom: 133/1621
  51638. }
  51639. },
  51640. },
  51641. [
  51642. {
  51643. name: "Normal",
  51644. height: math.unit(9, "feet"),
  51645. default: true
  51646. },
  51647. ]
  51648. ))
  51649. characterMakers.push(() => makeCharacter(
  51650. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51651. {
  51652. front: {
  51653. height: math.unit(25, "feet"),
  51654. weight: math.unit(27500, "lb"),
  51655. name: "Front",
  51656. image: {
  51657. source: "./media/characters/north-caudin/front.svg",
  51658. extra: 1184/1082,
  51659. bottom: 23/1207
  51660. }
  51661. },
  51662. },
  51663. [
  51664. {
  51665. name: "Compressed",
  51666. height: math.unit(10, "feet")
  51667. },
  51668. {
  51669. name: "Normal",
  51670. height: math.unit(25, "feet"),
  51671. default: true
  51672. },
  51673. ]
  51674. ))
  51675. characterMakers.push(() => makeCharacter(
  51676. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51677. {
  51678. front: {
  51679. height: math.unit(9, "feet"),
  51680. weight: math.unit(1250, "lb"),
  51681. name: "Front",
  51682. image: {
  51683. source: "./media/characters/merrian/front.svg",
  51684. extra: 2393/2304,
  51685. bottom: 40/2433
  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: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51699. {
  51700. front: {
  51701. height: math.unit(9, "feet"),
  51702. weight: math.unit(1000, "lb"),
  51703. name: "Front",
  51704. image: {
  51705. source: "./media/characters/hazel/front.svg",
  51706. extra: 2351/2298,
  51707. bottom: 38/2389
  51708. }
  51709. },
  51710. },
  51711. [
  51712. {
  51713. name: "Normal",
  51714. height: math.unit(9, "feet"),
  51715. default: true
  51716. },
  51717. ]
  51718. ))
  51719. characterMakers.push(() => makeCharacter(
  51720. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51721. {
  51722. front: {
  51723. height: math.unit(13, "feet"),
  51724. weight: math.unit(3200, "lb"),
  51725. name: "Front",
  51726. image: {
  51727. source: "./media/characters/emma/front.svg",
  51728. extra: 2263/2029,
  51729. bottom: 68/2331
  51730. }
  51731. },
  51732. },
  51733. [
  51734. {
  51735. name: "Normal",
  51736. height: math.unit(13, "feet"),
  51737. default: true
  51738. },
  51739. ]
  51740. ))
  51741. characterMakers.push(() => makeCharacter(
  51742. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51743. {
  51744. front: {
  51745. height: math.unit(11 + 9/12, "feet"),
  51746. weight: math.unit(2500, "lb"),
  51747. name: "Front",
  51748. image: {
  51749. source: "./media/characters/ilumina/front.svg",
  51750. extra: 2248/2209,
  51751. bottom: 164/2412
  51752. }
  51753. },
  51754. },
  51755. [
  51756. {
  51757. name: "Normal",
  51758. height: math.unit(11 + 9/12, "feet"),
  51759. default: true
  51760. },
  51761. ]
  51762. ))
  51763. characterMakers.push(() => makeCharacter(
  51764. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51765. {
  51766. front: {
  51767. height: math.unit(8 + 10/12, "feet"),
  51768. weight: math.unit(1350, "lb"),
  51769. name: "Front",
  51770. image: {
  51771. source: "./media/characters/moonshine/front.svg",
  51772. extra: 2395/2288,
  51773. bottom: 40/2435
  51774. }
  51775. },
  51776. },
  51777. [
  51778. {
  51779. name: "Normal",
  51780. height: math.unit(8 + 10/12, "feet"),
  51781. default: true
  51782. },
  51783. ]
  51784. ))
  51785. characterMakers.push(() => makeCharacter(
  51786. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51787. {
  51788. front: {
  51789. height: math.unit(14, "feet"),
  51790. weight: math.unit(3400, "lb"),
  51791. name: "Front",
  51792. image: {
  51793. source: "./media/characters/aletia/front.svg",
  51794. extra: 1185/1052,
  51795. bottom: 21/1206
  51796. }
  51797. },
  51798. },
  51799. [
  51800. {
  51801. name: "Compressed",
  51802. height: math.unit(8, "feet")
  51803. },
  51804. {
  51805. name: "Normal",
  51806. height: math.unit(14, "feet"),
  51807. default: true
  51808. },
  51809. ]
  51810. ))
  51811. characterMakers.push(() => makeCharacter(
  51812. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51813. {
  51814. front: {
  51815. height: math.unit(17, "feet"),
  51816. weight: math.unit(6500, "lb"),
  51817. name: "Front",
  51818. image: {
  51819. source: "./media/characters/deidra/front.svg",
  51820. extra: 1201/1081,
  51821. bottom: 16/1217
  51822. }
  51823. },
  51824. },
  51825. [
  51826. {
  51827. name: "Compressed",
  51828. height: math.unit(9 + 6/12, "feet")
  51829. },
  51830. {
  51831. name: "Normal",
  51832. height: math.unit(17, "feet"),
  51833. default: true
  51834. },
  51835. ]
  51836. ))
  51837. characterMakers.push(() => makeCharacter(
  51838. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51839. {
  51840. front: {
  51841. height: math.unit(7 + 4/12, "feet"),
  51842. weight: math.unit(280, "lb"),
  51843. name: "Front",
  51844. image: {
  51845. source: "./media/characters/freki-yrmori/front.svg",
  51846. extra: 1286/1182,
  51847. bottom: 29/1315
  51848. }
  51849. },
  51850. maw: {
  51851. height: math.unit(0.9, "feet"),
  51852. name: "Maw",
  51853. image: {
  51854. source: "./media/characters/freki-yrmori/maw.svg"
  51855. }
  51856. },
  51857. },
  51858. [
  51859. {
  51860. name: "Normal",
  51861. height: math.unit(7 + 4/12, "feet"),
  51862. default: true
  51863. },
  51864. {
  51865. name: "Macro",
  51866. height: math.unit(38.5, "meters")
  51867. },
  51868. ]
  51869. ))
  51870. characterMakers.push(() => makeCharacter(
  51871. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51872. {
  51873. side: {
  51874. height: math.unit(47.2, "meters"),
  51875. weight: math.unit(10000, "tons"),
  51876. name: "Side",
  51877. image: {
  51878. source: "./media/characters/aetherios/side.svg",
  51879. extra: 2363/642,
  51880. bottom: 221/2584
  51881. }
  51882. },
  51883. top: {
  51884. height: math.unit(240, "meters"),
  51885. weight: math.unit(10000, "tons"),
  51886. name: "Top",
  51887. image: {
  51888. source: "./media/characters/aetherios/top.svg"
  51889. }
  51890. },
  51891. bottom: {
  51892. height: math.unit(240, "meters"),
  51893. weight: math.unit(10000, "tons"),
  51894. name: "Bottom",
  51895. image: {
  51896. source: "./media/characters/aetherios/bottom.svg"
  51897. }
  51898. },
  51899. head: {
  51900. height: math.unit(38.6, "meters"),
  51901. name: "Head",
  51902. image: {
  51903. source: "./media/characters/aetherios/head.svg",
  51904. extra: 1335/1112,
  51905. bottom: 0/1335
  51906. }
  51907. },
  51908. front: {
  51909. height: math.unit(29, "meters"),
  51910. name: "Front",
  51911. image: {
  51912. source: "./media/characters/aetherios/front.svg",
  51913. extra: 1266/953,
  51914. bottom: 158/1424
  51915. }
  51916. },
  51917. maw: {
  51918. height: math.unit(16.37, "meters"),
  51919. name: "Maw",
  51920. image: {
  51921. source: "./media/characters/aetherios/maw.svg",
  51922. extra: 748/637,
  51923. bottom: 0/748
  51924. },
  51925. extraAttributes: {
  51926. preyCapacity: {
  51927. name: "Capacity",
  51928. power: 3,
  51929. type: "volume",
  51930. base: math.unit(1000, "people")
  51931. },
  51932. tongueSize: {
  51933. name: "Tongue Size",
  51934. power: 2,
  51935. type: "area",
  51936. base: math.unit(21, "m^2")
  51937. }
  51938. }
  51939. },
  51940. forepaw: {
  51941. height: math.unit(18, "meters"),
  51942. name: "Forepaw",
  51943. image: {
  51944. source: "./media/characters/aetherios/forepaw.svg"
  51945. }
  51946. },
  51947. hindpaw: {
  51948. height: math.unit(23, "meters"),
  51949. name: "Hindpaw",
  51950. image: {
  51951. source: "./media/characters/aetherios/hindpaw.svg"
  51952. }
  51953. },
  51954. genitals: {
  51955. height: math.unit(42, "meters"),
  51956. name: "Genitals",
  51957. image: {
  51958. source: "./media/characters/aetherios/genitals.svg"
  51959. }
  51960. },
  51961. },
  51962. [
  51963. {
  51964. name: "Normal",
  51965. height: math.unit(47.2, "meters"),
  51966. default: true
  51967. },
  51968. {
  51969. name: "Macro",
  51970. height: math.unit(160, "meters")
  51971. },
  51972. {
  51973. name: "Mega",
  51974. height: math.unit(1.87, "km")
  51975. },
  51976. {
  51977. name: "Giga",
  51978. height: math.unit(40000, "km")
  51979. },
  51980. {
  51981. name: "Stellar",
  51982. height: math.unit(158000000, "km")
  51983. },
  51984. {
  51985. name: "Cosmic",
  51986. height: math.unit(9.46e12, "km")
  51987. },
  51988. ]
  51989. ))
  51990. characterMakers.push(() => makeCharacter(
  51991. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51992. {
  51993. front: {
  51994. height: math.unit(5 + 4/12, "feet"),
  51995. weight: math.unit(80, "lb"),
  51996. name: "Front",
  51997. image: {
  51998. source: "./media/characters/mizu-gieeg/front.svg",
  51999. extra: 850/709,
  52000. bottom: 52/902
  52001. }
  52002. },
  52003. back: {
  52004. height: math.unit(5 + 4/12, "feet"),
  52005. weight: math.unit(80, "lb"),
  52006. name: "Back",
  52007. image: {
  52008. source: "./media/characters/mizu-gieeg/back.svg",
  52009. extra: 882/745,
  52010. bottom: 25/907
  52011. }
  52012. },
  52013. },
  52014. [
  52015. {
  52016. name: "Normal",
  52017. height: math.unit(5 + 4/12, "feet"),
  52018. default: true
  52019. },
  52020. ]
  52021. ))
  52022. characterMakers.push(() => makeCharacter(
  52023. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  52024. {
  52025. front: {
  52026. height: math.unit(6, "feet"),
  52027. name: "Front",
  52028. image: {
  52029. source: "./media/characters/roselle-st-papier/front.svg",
  52030. extra: 1430/1280,
  52031. bottom: 37/1467
  52032. }
  52033. },
  52034. back: {
  52035. height: math.unit(6, "feet"),
  52036. name: "Back",
  52037. image: {
  52038. source: "./media/characters/roselle-st-papier/back.svg",
  52039. extra: 1491/1296,
  52040. bottom: 23/1514
  52041. }
  52042. },
  52043. ear: {
  52044. height: math.unit(1.26, "feet"),
  52045. name: "Ear",
  52046. image: {
  52047. source: "./media/characters/roselle-st-papier/ear.svg"
  52048. }
  52049. },
  52050. },
  52051. [
  52052. {
  52053. name: "Normal",
  52054. height: math.unit(150, "feet"),
  52055. default: true
  52056. },
  52057. ]
  52058. ))
  52059. characterMakers.push(() => makeCharacter(
  52060. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  52061. {
  52062. front: {
  52063. height: math.unit(1, "inches"),
  52064. name: "Front",
  52065. image: {
  52066. source: "./media/characters/valargent/front.svg",
  52067. extra: 1825/1694,
  52068. bottom: 62/1887
  52069. }
  52070. },
  52071. back: {
  52072. height: math.unit(1, "inches"),
  52073. name: "Back",
  52074. image: {
  52075. source: "./media/characters/valargent/back.svg",
  52076. extra: 1775/1682,
  52077. bottom: 88/1863
  52078. }
  52079. },
  52080. },
  52081. [
  52082. {
  52083. name: "Micro",
  52084. height: math.unit(1, "inch"),
  52085. default: true
  52086. },
  52087. ]
  52088. ))
  52089. characterMakers.push(() => makeCharacter(
  52090. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  52091. {
  52092. front: {
  52093. height: math.unit(3.4, "meters"),
  52094. name: "Front",
  52095. image: {
  52096. source: "./media/characters/zarina/front.svg",
  52097. extra: 1733/1425,
  52098. bottom: 93/1826
  52099. }
  52100. },
  52101. squatting: {
  52102. height: math.unit(2.14, "meters"),
  52103. name: "Squatting",
  52104. image: {
  52105. source: "./media/characters/zarina/squatting.svg",
  52106. extra: 1073/788,
  52107. bottom: 63/1136
  52108. }
  52109. },
  52110. back: {
  52111. height: math.unit(2.14, "meters"),
  52112. name: "Back",
  52113. image: {
  52114. source: "./media/characters/zarina/back.svg",
  52115. extra: 1128/885,
  52116. bottom: 0/1128
  52117. }
  52118. },
  52119. },
  52120. [
  52121. {
  52122. name: "Normal",
  52123. height: math.unit(3.4, "meters"),
  52124. default: true
  52125. },
  52126. {
  52127. name: "Big",
  52128. height: math.unit(5, "meters")
  52129. },
  52130. {
  52131. name: "Macro",
  52132. height: math.unit(110, "meters")
  52133. },
  52134. ]
  52135. ))
  52136. characterMakers.push(() => makeCharacter(
  52137. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  52138. {
  52139. front: {
  52140. height: math.unit(7, "feet"),
  52141. name: "Front",
  52142. image: {
  52143. source: "./media/characters/ventus-astro-fox/front.svg",
  52144. extra: 1792/1623,
  52145. bottom: 28/1820
  52146. }
  52147. },
  52148. back: {
  52149. height: math.unit(7, "feet"),
  52150. name: "Back",
  52151. image: {
  52152. source: "./media/characters/ventus-astro-fox/back.svg",
  52153. extra: 1789/1620,
  52154. bottom: 31/1820
  52155. }
  52156. },
  52157. outfit: {
  52158. height: math.unit(7, "feet"),
  52159. name: "Outfit",
  52160. image: {
  52161. source: "./media/characters/ventus-astro-fox/outfit.svg",
  52162. extra: 1054/925,
  52163. bottom: 15/1069
  52164. }
  52165. },
  52166. head: {
  52167. height: math.unit(1.12, "feet"),
  52168. name: "Head",
  52169. image: {
  52170. source: "./media/characters/ventus-astro-fox/head.svg",
  52171. extra: 866/504,
  52172. bottom: 0/866
  52173. }
  52174. },
  52175. hand: {
  52176. height: math.unit(1, "feet"),
  52177. name: "Hand",
  52178. image: {
  52179. source: "./media/characters/ventus-astro-fox/hand.svg"
  52180. }
  52181. },
  52182. paw: {
  52183. height: math.unit(1.5, "feet"),
  52184. name: "Paw",
  52185. image: {
  52186. source: "./media/characters/ventus-astro-fox/paw.svg"
  52187. }
  52188. },
  52189. },
  52190. [
  52191. {
  52192. name: "Normal",
  52193. height: math.unit(7, "feet"),
  52194. default: true
  52195. },
  52196. {
  52197. name: "Macro",
  52198. height: math.unit(200, "feet")
  52199. },
  52200. {
  52201. name: "Cosmic",
  52202. height: math.unit(3, "universes")
  52203. },
  52204. ]
  52205. ))
  52206. characterMakers.push(() => makeCharacter(
  52207. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52208. {
  52209. front: {
  52210. height: math.unit(3, "meters"),
  52211. weight: math.unit(7000, "lb"),
  52212. name: "Front",
  52213. image: {
  52214. source: "./media/characters/core-t/front.svg",
  52215. extra: 5729/4941,
  52216. bottom: 1129/6858
  52217. }
  52218. },
  52219. },
  52220. [
  52221. {
  52222. name: "Big",
  52223. height: math.unit(3, "meters"),
  52224. default: true
  52225. },
  52226. ]
  52227. ))
  52228. characterMakers.push(() => makeCharacter(
  52229. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52230. {
  52231. normal: {
  52232. height: math.unit(6 + 6/12, "feet"),
  52233. weight: math.unit(275, "lb"),
  52234. name: "Front",
  52235. image: {
  52236. source: "./media/characters/cadbunny/normal.svg",
  52237. extra: 1129/947,
  52238. bottom: 93/1222
  52239. },
  52240. default: true,
  52241. form: "normal"
  52242. },
  52243. gigantamax: {
  52244. height: math.unit(26, "feet"),
  52245. weight: math.unit(16000, "lb"),
  52246. name: "Front",
  52247. image: {
  52248. source: "./media/characters/cadbunny/gigantamax.svg",
  52249. extra: 1133/944,
  52250. bottom: 90/1223
  52251. },
  52252. default: true,
  52253. form: "gigantamax"
  52254. },
  52255. },
  52256. [
  52257. {
  52258. name: "Normal",
  52259. height: math.unit(6 + 6/12, "feet"),
  52260. default: true,
  52261. form: "normal"
  52262. },
  52263. {
  52264. name: "Small",
  52265. height: math.unit(26, "feet"),
  52266. default: true,
  52267. form: "gigantamax"
  52268. },
  52269. {
  52270. name: "Large",
  52271. height: math.unit(78, "feet"),
  52272. form: "gigantamax"
  52273. },
  52274. ],
  52275. {
  52276. "normal": {
  52277. name: "Normal",
  52278. default: true
  52279. },
  52280. "gigantamax": {
  52281. name: "Gigantamax"
  52282. }
  52283. }
  52284. ))
  52285. characterMakers.push(() => makeCharacter(
  52286. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52287. {
  52288. anthroFront: {
  52289. height: math.unit(8, "feet"),
  52290. weight: math.unit(300, "lb"),
  52291. name: "Front",
  52292. image: {
  52293. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52294. extra: 1272/1176,
  52295. bottom: 53/1325
  52296. },
  52297. form: "anthro",
  52298. default: true
  52299. },
  52300. feralSide: {
  52301. height: math.unit(4, "feet"),
  52302. weight: math.unit(250, "lb"),
  52303. name: "Side",
  52304. image: {
  52305. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52306. extra: 731/621,
  52307. bottom: 0/731
  52308. },
  52309. form: "feral",
  52310. default: true
  52311. },
  52312. },
  52313. [
  52314. {
  52315. name: "Regular",
  52316. height: math.unit(8, "feet"),
  52317. form: "anthro"
  52318. },
  52319. {
  52320. name: "Macro",
  52321. height: math.unit(250, "feet"),
  52322. form: "anthro",
  52323. default: true
  52324. },
  52325. {
  52326. name: "Regular",
  52327. height: math.unit(4, "feet"),
  52328. form: "feral"
  52329. },
  52330. {
  52331. name: "Macro",
  52332. height: math.unit(125, "feet"),
  52333. form: "feral",
  52334. default: true
  52335. },
  52336. ],
  52337. {
  52338. "anthro": {
  52339. name: "Anthro",
  52340. default: true
  52341. },
  52342. "feral": {
  52343. name: "Feral",
  52344. },
  52345. }
  52346. ))
  52347. characterMakers.push(() => makeCharacter(
  52348. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52349. {
  52350. front: {
  52351. height: math.unit(11 + 10/12, "feet"),
  52352. weight: math.unit(1587, "kg"),
  52353. name: "Front",
  52354. image: {
  52355. source: "./media/characters/maple-javira-dragon/front.svg",
  52356. extra: 1136/744,
  52357. bottom: 73/1209
  52358. }
  52359. },
  52360. side: {
  52361. height: math.unit(11 + 10/12, "feet"),
  52362. weight: math.unit(1587, "kg"),
  52363. name: "Side",
  52364. image: {
  52365. source: "./media/characters/maple-javira-dragon/side.svg",
  52366. extra: 712/505,
  52367. bottom: 17/729
  52368. }
  52369. },
  52370. head: {
  52371. height: math.unit(8.05, "feet"),
  52372. name: "Head",
  52373. image: {
  52374. source: "./media/characters/maple-javira-dragon/head.svg",
  52375. extra: 1420/1344,
  52376. bottom: 0/1420
  52377. }
  52378. },
  52379. },
  52380. [
  52381. {
  52382. name: "Normal",
  52383. height: math.unit(11 + 10/12, "feet"),
  52384. default: true
  52385. },
  52386. ]
  52387. ))
  52388. characterMakers.push(() => makeCharacter(
  52389. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52390. {
  52391. front: {
  52392. height: math.unit(117, "cm"),
  52393. weight: math.unit(50, "kg"),
  52394. name: "Front",
  52395. image: {
  52396. source: "./media/characters/sonia-wyverntail/front.svg",
  52397. extra: 708/592,
  52398. bottom: 25/733
  52399. }
  52400. },
  52401. },
  52402. [
  52403. {
  52404. name: "Normal",
  52405. height: math.unit(117, "cm"),
  52406. default: true
  52407. },
  52408. ]
  52409. ))
  52410. characterMakers.push(() => makeCharacter(
  52411. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52412. {
  52413. front: {
  52414. height: math.unit(6 + 5/12, "feet"),
  52415. name: "Front",
  52416. image: {
  52417. source: "./media/characters/micah/front.svg",
  52418. extra: 1758/1546,
  52419. bottom: 214/1972
  52420. }
  52421. },
  52422. },
  52423. [
  52424. {
  52425. name: "Normal",
  52426. height: math.unit(6 + 5/12, "feet"),
  52427. default: true
  52428. },
  52429. ]
  52430. ))
  52431. characterMakers.push(() => makeCharacter(
  52432. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52433. {
  52434. front: {
  52435. height: math.unit(1.75, "meters"),
  52436. weight: math.unit(100, "kg"),
  52437. name: "Front",
  52438. image: {
  52439. source: "./media/characters/zarya/front.svg",
  52440. extra: 741/735,
  52441. bottom: 44/785
  52442. },
  52443. extraAttributes: {
  52444. "tailLength": {
  52445. name: "Tail Length",
  52446. power: 1,
  52447. type: "length",
  52448. base: math.unit(180, "cm")
  52449. },
  52450. "pawLength": {
  52451. name: "Paw Length",
  52452. power: 1,
  52453. type: "length",
  52454. base: math.unit(31, "cm")
  52455. },
  52456. }
  52457. },
  52458. side: {
  52459. height: math.unit(1.75, "meters"),
  52460. weight: math.unit(100, "kg"),
  52461. name: "Side",
  52462. image: {
  52463. source: "./media/characters/zarya/side.svg",
  52464. extra: 776/770,
  52465. bottom: 17/793
  52466. },
  52467. extraAttributes: {
  52468. "tailLength": {
  52469. name: "Tail Length",
  52470. power: 1,
  52471. type: "length",
  52472. base: math.unit(180, "cm")
  52473. },
  52474. "pawLength": {
  52475. name: "Paw Length",
  52476. power: 1,
  52477. type: "length",
  52478. base: math.unit(31, "cm")
  52479. },
  52480. }
  52481. },
  52482. back: {
  52483. height: math.unit(1.75, "meters"),
  52484. weight: math.unit(100, "kg"),
  52485. name: "Back",
  52486. image: {
  52487. source: "./media/characters/zarya/back.svg",
  52488. extra: 741/735,
  52489. bottom: 44/785
  52490. },
  52491. extraAttributes: {
  52492. "tailLength": {
  52493. name: "Tail Length",
  52494. power: 1,
  52495. type: "length",
  52496. base: math.unit(180, "cm")
  52497. },
  52498. "pawLength": {
  52499. name: "Paw Length",
  52500. power: 1,
  52501. type: "length",
  52502. base: math.unit(31, "cm")
  52503. },
  52504. }
  52505. },
  52506. frontNoTail: {
  52507. height: math.unit(1.75, "meters"),
  52508. weight: math.unit(100, "kg"),
  52509. name: "Front (No Tail)",
  52510. image: {
  52511. source: "./media/characters/zarya/front-no-tail.svg",
  52512. extra: 741/735,
  52513. bottom: 44/785
  52514. },
  52515. extraAttributes: {
  52516. "tailLength": {
  52517. name: "Tail Length",
  52518. power: 1,
  52519. type: "length",
  52520. base: math.unit(180, "cm")
  52521. },
  52522. "pawLength": {
  52523. name: "Paw Length",
  52524. power: 1,
  52525. type: "length",
  52526. base: math.unit(31, "cm")
  52527. },
  52528. }
  52529. },
  52530. dressed: {
  52531. height: math.unit(1.75, "meters"),
  52532. weight: math.unit(100, "kg"),
  52533. name: "Dressed",
  52534. image: {
  52535. source: "./media/characters/zarya/dressed.svg",
  52536. extra: 683/672,
  52537. bottom: 79/762
  52538. },
  52539. extraAttributes: {
  52540. "tailLength": {
  52541. name: "Tail Length",
  52542. power: 1,
  52543. type: "length",
  52544. base: math.unit(180, "cm")
  52545. },
  52546. "pawLength": {
  52547. name: "Paw Length",
  52548. power: 1,
  52549. type: "length",
  52550. base: math.unit(31, "cm")
  52551. },
  52552. }
  52553. },
  52554. },
  52555. [
  52556. {
  52557. name: "Micro",
  52558. height: math.unit(5, "cm")
  52559. },
  52560. {
  52561. name: "Normal",
  52562. height: math.unit(1.75, "meters"),
  52563. default: true
  52564. },
  52565. {
  52566. name: "Macro",
  52567. height: math.unit(122, "meters")
  52568. },
  52569. ]
  52570. ))
  52571. characterMakers.push(() => makeCharacter(
  52572. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52573. {
  52574. front: {
  52575. height: math.unit(7.5, "feet"),
  52576. name: "Front",
  52577. image: {
  52578. source: "./media/characters/sven-hatisson/front.svg",
  52579. extra: 917/857,
  52580. bottom: 42/959
  52581. }
  52582. },
  52583. back: {
  52584. height: math.unit(7.5, "feet"),
  52585. name: "Back",
  52586. image: {
  52587. source: "./media/characters/sven-hatisson/back.svg",
  52588. extra: 903/856,
  52589. bottom: 15/918
  52590. }
  52591. },
  52592. },
  52593. [
  52594. {
  52595. name: "Base Height",
  52596. height: math.unit(7.5, "feet")
  52597. },
  52598. {
  52599. name: "Usual Height",
  52600. height: math.unit(13.5, "feet"),
  52601. default: true
  52602. },
  52603. {
  52604. name: "Smaller Macro",
  52605. height: math.unit(85, "feet")
  52606. },
  52607. {
  52608. name: "Moderate Macro",
  52609. height: math.unit(320, "feet")
  52610. },
  52611. {
  52612. name: "Large Macro",
  52613. height: math.unit(1000, "feet")
  52614. },
  52615. {
  52616. name: "Largest Size",
  52617. height: math.unit(2, "miles")
  52618. },
  52619. ]
  52620. ))
  52621. characterMakers.push(() => makeCharacter(
  52622. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52623. {
  52624. side: {
  52625. height: math.unit(1.8, "meters"),
  52626. weight: math.unit(275, "kg"),
  52627. name: "Side",
  52628. image: {
  52629. source: "./media/characters/terra/side.svg",
  52630. extra: 1273/1147,
  52631. bottom: 0/1273
  52632. }
  52633. },
  52634. },
  52635. [
  52636. {
  52637. name: "Normal",
  52638. height: math.unit(16.2, "meters"),
  52639. default: true
  52640. },
  52641. ]
  52642. ))
  52643. characterMakers.push(() => makeCharacter(
  52644. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52645. {
  52646. borzoiFront: {
  52647. height: math.unit(6 + 9/12, "feet"),
  52648. name: "Front",
  52649. image: {
  52650. source: "./media/characters/rae/borzoi-front.svg",
  52651. extra: 1161/1098,
  52652. bottom: 31/1192
  52653. },
  52654. form: "borzoi",
  52655. default: true
  52656. },
  52657. werewolfFront: {
  52658. height: math.unit(8 + 7/12, "feet"),
  52659. name: "Front",
  52660. image: {
  52661. source: "./media/characters/rae/werewolf-front.svg",
  52662. extra: 1411/1334,
  52663. bottom: 127/1538
  52664. },
  52665. form: "werewolf",
  52666. default: true
  52667. },
  52668. },
  52669. [
  52670. {
  52671. name: "Normal",
  52672. height: math.unit(6 + 9/12, "feet"),
  52673. default: true,
  52674. form: "borzoi"
  52675. },
  52676. {
  52677. name: "Normal",
  52678. height: math.unit(8 + 7/12, "feet"),
  52679. default: true,
  52680. form: "werewolf"
  52681. },
  52682. ],
  52683. {
  52684. "borzoi": {
  52685. name: "Borzoi",
  52686. default: true
  52687. },
  52688. "werewolf": {
  52689. name: "Werewolf",
  52690. },
  52691. }
  52692. ))
  52693. characterMakers.push(() => makeCharacter(
  52694. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52695. {
  52696. front: {
  52697. height: math.unit(8 + 7/12, "feet"),
  52698. weight: math.unit(482, "lb"),
  52699. name: "Front",
  52700. image: {
  52701. source: "./media/characters/kit/front.svg",
  52702. extra: 1247/1103,
  52703. bottom: 41/1288
  52704. }
  52705. },
  52706. back: {
  52707. height: math.unit(8 + 7/12, "feet"),
  52708. weight: math.unit(482, "lb"),
  52709. name: "Back",
  52710. image: {
  52711. source: "./media/characters/kit/back.svg",
  52712. extra: 1252/1123,
  52713. bottom: 21/1273
  52714. }
  52715. },
  52716. paw: {
  52717. height: math.unit(1.46, "feet"),
  52718. name: "Paw",
  52719. image: {
  52720. source: "./media/characters/kit/paw.svg"
  52721. }
  52722. },
  52723. },
  52724. [
  52725. {
  52726. name: "Normal",
  52727. height: math.unit(2.61, "meters"),
  52728. default: true
  52729. },
  52730. {
  52731. name: "\"Tall\"",
  52732. height: math.unit(8.21, "meters")
  52733. },
  52734. {
  52735. name: "Tall",
  52736. height: math.unit(19.6, "meters")
  52737. },
  52738. {
  52739. name: "Very Tall",
  52740. height: math.unit(57.91, "meters")
  52741. },
  52742. {
  52743. name: "Semi-Macro",
  52744. height: math.unit(138.64, "meters")
  52745. },
  52746. {
  52747. name: "Macro",
  52748. height: math.unit(831.99, "meters")
  52749. },
  52750. {
  52751. name: "EX-Macro",
  52752. height: math.unit(96451121, "meters")
  52753. },
  52754. {
  52755. name: "S1-Omnipotent",
  52756. height: math.unit(4.42074e+9, "meters")
  52757. },
  52758. {
  52759. name: "S2-Omnipotent",
  52760. height: math.unit(9.42074e+17, "meters")
  52761. },
  52762. {
  52763. name: "Omnipotent",
  52764. height: math.unit(4.23112e+24, "meters")
  52765. },
  52766. {
  52767. name: "Hypergod",
  52768. height: math.unit(5.05176e+27, "meters")
  52769. },
  52770. {
  52771. name: "Hypergod-EX",
  52772. height: math.unit(9.45532e+49, "meters")
  52773. },
  52774. {
  52775. name: "Hypergod-SP",
  52776. height: math.unit(9.45532e+195, "meters")
  52777. },
  52778. ]
  52779. ))
  52780. characterMakers.push(() => makeCharacter(
  52781. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52782. {
  52783. side: {
  52784. height: math.unit(0.6, "meters"),
  52785. weight: math.unit(24, "kg"),
  52786. name: "Side",
  52787. image: {
  52788. source: "./media/characters/celeste/side.svg",
  52789. extra: 810/517,
  52790. bottom: 53/863
  52791. }
  52792. },
  52793. },
  52794. [
  52795. {
  52796. name: "Velociraptor",
  52797. height: math.unit(0.6, "meters"),
  52798. default: true
  52799. },
  52800. {
  52801. name: "Utahraptor",
  52802. height: math.unit(1.8, "meters")
  52803. },
  52804. {
  52805. name: "Gallimimus",
  52806. height: math.unit(4.0, "meters")
  52807. },
  52808. {
  52809. name: "Large",
  52810. height: math.unit(20, "meters")
  52811. },
  52812. {
  52813. name: "Planetary",
  52814. height: math.unit(50, "megameters")
  52815. },
  52816. {
  52817. name: "Stellar",
  52818. height: math.unit(1.5, "gigameters")
  52819. },
  52820. {
  52821. name: "Galactic",
  52822. height: math.unit(100, "exameters")
  52823. },
  52824. ]
  52825. ))
  52826. characterMakers.push(() => makeCharacter(
  52827. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52828. {
  52829. front: {
  52830. height: math.unit(6, "feet"),
  52831. weight: math.unit(210, "lb"),
  52832. name: "Front",
  52833. image: {
  52834. source: "./media/characters/glacia/front.svg",
  52835. extra: 958/901,
  52836. bottom: 45/1003
  52837. }
  52838. },
  52839. },
  52840. [
  52841. {
  52842. name: "Macro",
  52843. height: math.unit(1000, "meters"),
  52844. default: true
  52845. },
  52846. ]
  52847. ))
  52848. characterMakers.push(() => makeCharacter(
  52849. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52850. {
  52851. front: {
  52852. height: math.unit(4, "meters"),
  52853. name: "Front",
  52854. image: {
  52855. source: "./media/characters/giri/front.svg",
  52856. extra: 966/894,
  52857. bottom: 21/987
  52858. }
  52859. },
  52860. },
  52861. [
  52862. {
  52863. name: "Normal",
  52864. height: math.unit(4, "meters"),
  52865. default: true
  52866. },
  52867. ]
  52868. ))
  52869. characterMakers.push(() => makeCharacter(
  52870. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52871. {
  52872. back: {
  52873. height: math.unit(4, "feet"),
  52874. weight: math.unit(37, "lb"),
  52875. name: "Back",
  52876. image: {
  52877. source: "./media/characters/tin/back.svg",
  52878. extra: 845/780,
  52879. bottom: 28/873
  52880. }
  52881. },
  52882. },
  52883. [
  52884. {
  52885. name: "Normal",
  52886. height: math.unit(4, "feet"),
  52887. default: true
  52888. },
  52889. ]
  52890. ))
  52891. characterMakers.push(() => makeCharacter(
  52892. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52893. {
  52894. front: {
  52895. height: math.unit(25, "feet"),
  52896. name: "Front",
  52897. image: {
  52898. source: "./media/characters/cadenza-vivace/front.svg",
  52899. extra: 1842/1578,
  52900. bottom: 30/1872
  52901. }
  52902. },
  52903. },
  52904. [
  52905. {
  52906. name: "Macro",
  52907. height: math.unit(25, "feet"),
  52908. default: true
  52909. },
  52910. ]
  52911. ))
  52912. characterMakers.push(() => makeCharacter(
  52913. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52914. {
  52915. front: {
  52916. height: math.unit(10, "feet"),
  52917. weight: math.unit(625, "kg"),
  52918. name: "Front",
  52919. image: {
  52920. source: "./media/characters/zain/front.svg",
  52921. extra: 1682/1498,
  52922. bottom: 223/1905
  52923. }
  52924. },
  52925. back: {
  52926. height: math.unit(10, "feet"),
  52927. weight: math.unit(625, "kg"),
  52928. name: "Back",
  52929. image: {
  52930. source: "./media/characters/zain/back.svg",
  52931. extra: 1814/1657,
  52932. bottom: 152/1966
  52933. }
  52934. },
  52935. head: {
  52936. height: math.unit(10, "feet"),
  52937. weight: math.unit(625, "kg"),
  52938. name: "Head",
  52939. image: {
  52940. source: "./media/characters/zain/head.svg",
  52941. extra: 1059/762,
  52942. bottom: 0/1059
  52943. }
  52944. },
  52945. },
  52946. [
  52947. {
  52948. name: "Normal",
  52949. height: math.unit(10, "feet"),
  52950. default: true
  52951. },
  52952. ]
  52953. ))
  52954. characterMakers.push(() => makeCharacter(
  52955. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52956. {
  52957. front: {
  52958. height: math.unit(6 + 5/12, "feet"),
  52959. weight: math.unit(750, "lb"),
  52960. name: "Front",
  52961. image: {
  52962. source: "./media/characters/ruchex/front.svg",
  52963. extra: 877/820,
  52964. bottom: 17/894
  52965. },
  52966. extraAttributes: {
  52967. "width": {
  52968. name: "Width",
  52969. power: 1,
  52970. type: "length",
  52971. base: math.unit(4.757, "feet")
  52972. },
  52973. }
  52974. },
  52975. },
  52976. [
  52977. {
  52978. name: "Normal",
  52979. height: math.unit(6 + 5/12, "feet"),
  52980. default: true
  52981. },
  52982. ]
  52983. ))
  52984. characterMakers.push(() => makeCharacter(
  52985. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52986. {
  52987. dressedFront: {
  52988. height: math.unit(191, "cm"),
  52989. weight: math.unit(80, "kg"),
  52990. name: "Front",
  52991. image: {
  52992. source: "./media/characters/buster/dressed-front.svg",
  52993. extra: 1022/973,
  52994. bottom: 69/1091
  52995. }
  52996. },
  52997. dressedBack: {
  52998. height: math.unit(191, "cm"),
  52999. weight: math.unit(80, "kg"),
  53000. name: "Back",
  53001. image: {
  53002. source: "./media/characters/buster/dressed-back.svg",
  53003. extra: 1018/970,
  53004. bottom: 55/1073
  53005. }
  53006. },
  53007. nudeFront: {
  53008. height: math.unit(191, "cm"),
  53009. weight: math.unit(80, "kg"),
  53010. name: "Front (Nude)",
  53011. image: {
  53012. source: "./media/characters/buster/nude-front.svg",
  53013. extra: 1022/973,
  53014. bottom: 69/1091
  53015. }
  53016. },
  53017. nudeBack: {
  53018. height: math.unit(191, "cm"),
  53019. weight: math.unit(80, "kg"),
  53020. name: "Back (Nude)",
  53021. image: {
  53022. source: "./media/characters/buster/nude-back.svg",
  53023. extra: 1018/970,
  53024. bottom: 55/1073
  53025. }
  53026. },
  53027. dick: {
  53028. height: math.unit(2.59, "feet"),
  53029. name: "Dick",
  53030. image: {
  53031. source: "./media/characters/buster/dick.svg"
  53032. }
  53033. },
  53034. ass: {
  53035. height: math.unit(1.2, "feet"),
  53036. name: "Ass",
  53037. image: {
  53038. source: "./media/characters/buster/ass.svg"
  53039. }
  53040. },
  53041. },
  53042. [
  53043. {
  53044. name: "Normal",
  53045. height: math.unit(191, "cm"),
  53046. default: true
  53047. },
  53048. ]
  53049. ))
  53050. characterMakers.push(() => makeCharacter(
  53051. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  53052. {
  53053. side: {
  53054. height: math.unit(8.1, "feet"),
  53055. weight: math.unit(3500, "lb"),
  53056. name: "Side",
  53057. image: {
  53058. source: "./media/characters/sonya/side.svg",
  53059. extra: 1730/1317,
  53060. bottom: 86/1816
  53061. }
  53062. },
  53063. },
  53064. [
  53065. {
  53066. name: "Normal",
  53067. height: math.unit(8.1, "feet"),
  53068. default: true
  53069. },
  53070. ]
  53071. ))
  53072. characterMakers.push(() => makeCharacter(
  53073. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  53074. {
  53075. front: {
  53076. height: math.unit(6, "feet"),
  53077. weight: math.unit(150, "lb"),
  53078. name: "Front",
  53079. image: {
  53080. source: "./media/characters/cadence-andrysiak/front.svg",
  53081. extra: 1164/1121,
  53082. bottom: 60/1224
  53083. }
  53084. },
  53085. back: {
  53086. height: math.unit(6, "feet"),
  53087. weight: math.unit(150, "lb"),
  53088. name: "Back",
  53089. image: {
  53090. source: "./media/characters/cadence-andrysiak/back.svg",
  53091. extra: 1200/1165,
  53092. bottom: 9/1209
  53093. }
  53094. },
  53095. dressed: {
  53096. height: math.unit(6, "feet"),
  53097. weight: math.unit(150, "lb"),
  53098. name: "Dressed",
  53099. image: {
  53100. source: "./media/characters/cadence-andrysiak/dressed.svg",
  53101. extra: 1164/1121,
  53102. bottom: 60/1224
  53103. }
  53104. },
  53105. },
  53106. [
  53107. {
  53108. name: "Micro",
  53109. height: math.unit(1, "mm")
  53110. },
  53111. {
  53112. name: "Normal",
  53113. height: math.unit(6, "feet"),
  53114. default: true
  53115. },
  53116. ]
  53117. ))
  53118. characterMakers.push(() => makeCharacter(
  53119. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  53120. {
  53121. front: {
  53122. height: math.unit(60, "inches"),
  53123. weight: math.unit(16, "lb"),
  53124. preyCapacity: math.unit(80, "liters"),
  53125. name: "Front",
  53126. image: {
  53127. source: "./media/characters/penny-lynx/front.svg",
  53128. extra: 1959/1769,
  53129. bottom: 49/2008
  53130. }
  53131. },
  53132. },
  53133. [
  53134. {
  53135. name: "Nokia",
  53136. height: math.unit(2, "inches")
  53137. },
  53138. {
  53139. name: "Desktop",
  53140. height: math.unit(24, "inches")
  53141. },
  53142. {
  53143. name: "TV",
  53144. height: math.unit(60, "inches")
  53145. },
  53146. {
  53147. name: "Jumbotron",
  53148. height: math.unit(12, "feet")
  53149. },
  53150. {
  53151. name: "Billboard",
  53152. height: math.unit(48, "feet"),
  53153. default: true
  53154. },
  53155. {
  53156. name: "IMAX",
  53157. height: math.unit(96, "feet")
  53158. },
  53159. {
  53160. name: "SINGULARITY",
  53161. height: math.unit(864938, "miles")
  53162. },
  53163. ]
  53164. ))
  53165. characterMakers.push(() => makeCharacter(
  53166. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  53167. {
  53168. front: {
  53169. height: math.unit(5 + 4/12, "feet"),
  53170. weight: math.unit(230, "lb"),
  53171. name: "Front",
  53172. image: {
  53173. source: "./media/characters/sukebe/front.svg",
  53174. extra: 2130/2038,
  53175. bottom: 90/2220
  53176. }
  53177. },
  53178. back: {
  53179. height: math.unit(3.48, "feet"),
  53180. weight: math.unit(230, "lb"),
  53181. name: "Back",
  53182. image: {
  53183. source: "./media/characters/sukebe/back.svg",
  53184. extra: 1670/1604,
  53185. bottom: 0/1670
  53186. }
  53187. },
  53188. },
  53189. [
  53190. {
  53191. name: "Normal",
  53192. height: math.unit(5 + 4/12, "feet"),
  53193. default: true
  53194. },
  53195. ]
  53196. ))
  53197. characterMakers.push(() => makeCharacter(
  53198. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53199. {
  53200. front: {
  53201. height: math.unit(6, "feet"),
  53202. name: "Front",
  53203. image: {
  53204. source: "./media/characters/nylla/front.svg",
  53205. extra: 1868/1699,
  53206. bottom: 97/1965
  53207. }
  53208. },
  53209. back: {
  53210. height: math.unit(6, "feet"),
  53211. name: "Back",
  53212. image: {
  53213. source: "./media/characters/nylla/back.svg",
  53214. extra: 1889/1712,
  53215. bottom: 93/1982
  53216. }
  53217. },
  53218. frontNsfw: {
  53219. height: math.unit(6, "feet"),
  53220. name: "Front (NSFW)",
  53221. image: {
  53222. source: "./media/characters/nylla/front-nsfw.svg",
  53223. extra: 1868/1699,
  53224. bottom: 97/1965
  53225. },
  53226. extraAttributes: {
  53227. "dickLength": {
  53228. name: "Dick Length",
  53229. power: 1,
  53230. type: "length",
  53231. base: math.unit(1.4, "feet")
  53232. },
  53233. "cumVolume": {
  53234. name: "Cum Volume",
  53235. power: 3,
  53236. type: "volume",
  53237. base: math.unit(100, "mL")
  53238. },
  53239. }
  53240. },
  53241. backNsfw: {
  53242. height: math.unit(6, "feet"),
  53243. name: "Back (NSFW)",
  53244. image: {
  53245. source: "./media/characters/nylla/back-nsfw.svg",
  53246. extra: 1889/1712,
  53247. bottom: 93/1982
  53248. }
  53249. },
  53250. maw: {
  53251. height: math.unit(2.10, "feet"),
  53252. name: "Maw",
  53253. image: {
  53254. source: "./media/characters/nylla/maw.svg"
  53255. }
  53256. },
  53257. paws: {
  53258. height: math.unit(2.06, "feet"),
  53259. name: "Paws",
  53260. image: {
  53261. source: "./media/characters/nylla/paws.svg"
  53262. }
  53263. },
  53264. muzzle: {
  53265. height: math.unit(0.61, "feet"),
  53266. name: "Muzzle",
  53267. image: {
  53268. source: "./media/characters/nylla/muzzle.svg"
  53269. }
  53270. },
  53271. sheath: {
  53272. height: math.unit(1.305, "feet"),
  53273. name: "Sheath",
  53274. image: {
  53275. source: "./media/characters/nylla/sheath.svg"
  53276. }
  53277. },
  53278. },
  53279. [
  53280. {
  53281. name: "Micro",
  53282. height: math.unit(7.5, "inches")
  53283. },
  53284. {
  53285. name: "Normal",
  53286. height: math.unit(7, "feet"),
  53287. default: true
  53288. },
  53289. {
  53290. name: "Macro",
  53291. height: math.unit(60, "feet")
  53292. },
  53293. {
  53294. name: "Mega",
  53295. height: math.unit(200, "feet")
  53296. },
  53297. ]
  53298. ))
  53299. characterMakers.push(() => makeCharacter(
  53300. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53301. {
  53302. front: {
  53303. height: math.unit(10, "feet"),
  53304. weight: math.unit(2300, "lb"),
  53305. name: "Front",
  53306. image: {
  53307. source: "./media/characters/hunt3r/front.svg",
  53308. extra: 1909/1742,
  53309. bottom: 46/1955
  53310. }
  53311. },
  53312. },
  53313. [
  53314. {
  53315. name: "Normal",
  53316. height: math.unit(10, "feet"),
  53317. default: true
  53318. },
  53319. ]
  53320. ))
  53321. characterMakers.push(() => makeCharacter(
  53322. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53323. {
  53324. dressed: {
  53325. height: math.unit(11, "feet"),
  53326. weight: math.unit(18500, "lb"),
  53327. preyCapacity: math.unit(9, "people"),
  53328. name: "Dressed",
  53329. image: {
  53330. source: "./media/characters/cylphis/dressed.svg",
  53331. extra: 1028/1003,
  53332. bottom: 75/1103
  53333. },
  53334. },
  53335. undressed: {
  53336. height: math.unit(11, "feet"),
  53337. weight: math.unit(18500, "lb"),
  53338. preyCapacity: math.unit(9, "people"),
  53339. name: "Undressed",
  53340. image: {
  53341. source: "./media/characters/cylphis/undressed.svg",
  53342. extra: 1028/1003,
  53343. bottom: 75/1103
  53344. }
  53345. },
  53346. full: {
  53347. height: math.unit(11, "feet"),
  53348. weight: math.unit(18500 + 150*9, "lb"),
  53349. preyCapacity: math.unit(9, "people"),
  53350. name: "Full",
  53351. image: {
  53352. source: "./media/characters/cylphis/full.svg",
  53353. extra: 1028/1003,
  53354. bottom: 75/1103
  53355. }
  53356. },
  53357. },
  53358. [
  53359. {
  53360. name: "Small",
  53361. height: math.unit(8, "feet")
  53362. },
  53363. {
  53364. name: "Normal",
  53365. height: math.unit(11, "feet"),
  53366. default: true
  53367. },
  53368. ]
  53369. ))
  53370. characterMakers.push(() => makeCharacter(
  53371. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53372. {
  53373. front: {
  53374. height: math.unit(2 + 7/12, "feet"),
  53375. name: "Front",
  53376. image: {
  53377. source: "./media/characters/orishan/front.svg",
  53378. extra: 1058/1023,
  53379. bottom: 23/1081
  53380. }
  53381. },
  53382. back: {
  53383. height: math.unit(2 + 7/12, "feet"),
  53384. name: "Back",
  53385. image: {
  53386. source: "./media/characters/orishan/back.svg",
  53387. extra: 1058/1023,
  53388. bottom: 23/1081
  53389. }
  53390. },
  53391. },
  53392. [
  53393. {
  53394. name: "Micro",
  53395. height: math.unit(2, "cm")
  53396. },
  53397. {
  53398. name: "Normal",
  53399. height: math.unit(2 + 7/12, "feet"),
  53400. default: true
  53401. },
  53402. ]
  53403. ))
  53404. characterMakers.push(() => makeCharacter(
  53405. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53406. {
  53407. front: {
  53408. height: math.unit(3, "meters"),
  53409. weight: math.unit(508, "kg"),
  53410. name: "Front",
  53411. image: {
  53412. source: "./media/characters/seranis/front.svg",
  53413. extra: 1478/1454,
  53414. bottom: 41/1519
  53415. }
  53416. },
  53417. },
  53418. [
  53419. {
  53420. name: "Normal",
  53421. height: math.unit(3, "meters"),
  53422. default: true
  53423. },
  53424. {
  53425. name: "Macro",
  53426. height: math.unit(108, "meters")
  53427. },
  53428. {
  53429. name: "Megamacro",
  53430. height: math.unit(1250, "meters")
  53431. },
  53432. ]
  53433. ))
  53434. characterMakers.push(() => makeCharacter(
  53435. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53436. {
  53437. undressed: {
  53438. height: math.unit(5 + 3/12, "feet"),
  53439. name: "Undressed",
  53440. image: {
  53441. source: "./media/characters/ankou/undressed.svg",
  53442. extra: 1301/1213,
  53443. bottom: 87/1388
  53444. }
  53445. },
  53446. dressed: {
  53447. height: math.unit(5 + 3/12, "feet"),
  53448. name: "Dressed",
  53449. image: {
  53450. source: "./media/characters/ankou/dressed.svg",
  53451. extra: 1301/1213,
  53452. bottom: 87/1388
  53453. }
  53454. },
  53455. head: {
  53456. height: math.unit(1.61, "feet"),
  53457. name: "Head",
  53458. image: {
  53459. source: "./media/characters/ankou/head.svg"
  53460. }
  53461. },
  53462. },
  53463. [
  53464. {
  53465. name: "Normal",
  53466. height: math.unit(5 + 3/12, "feet"),
  53467. default: true
  53468. },
  53469. ]
  53470. ))
  53471. characterMakers.push(() => makeCharacter(
  53472. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53473. {
  53474. side: {
  53475. height: math.unit(6 + 3/12, "feet"),
  53476. weight: math.unit(200, "kg"),
  53477. name: "Side",
  53478. image: {
  53479. source: "./media/characters/juniper-skunktaur/side.svg",
  53480. extra: 1574/1229,
  53481. bottom: 38/1612
  53482. }
  53483. },
  53484. front: {
  53485. height: math.unit(6 + 3/12, "feet"),
  53486. weight: math.unit(200, "kg"),
  53487. name: "Front",
  53488. image: {
  53489. source: "./media/characters/juniper-skunktaur/front.svg",
  53490. extra: 1337/1278,
  53491. bottom: 22/1359
  53492. }
  53493. },
  53494. back: {
  53495. height: math.unit(6 + 3/12, "feet"),
  53496. weight: math.unit(200, "kg"),
  53497. name: "Back",
  53498. image: {
  53499. source: "./media/characters/juniper-skunktaur/back.svg",
  53500. extra: 1618/1273,
  53501. bottom: 13/1631
  53502. }
  53503. },
  53504. top: {
  53505. height: math.unit(2.62, "feet"),
  53506. weight: math.unit(200, "kg"),
  53507. name: "Top",
  53508. image: {
  53509. source: "./media/characters/juniper-skunktaur/top.svg"
  53510. }
  53511. },
  53512. },
  53513. [
  53514. {
  53515. name: "Normal",
  53516. height: math.unit(6 + 3/12, "feet"),
  53517. default: true
  53518. },
  53519. ]
  53520. ))
  53521. characterMakers.push(() => makeCharacter(
  53522. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53523. {
  53524. front: {
  53525. height: math.unit(20.5, "feet"),
  53526. name: "Front",
  53527. image: {
  53528. source: "./media/characters/rei/front.svg",
  53529. extra: 1349/1195,
  53530. bottom: 31/1380
  53531. }
  53532. },
  53533. back: {
  53534. height: math.unit(20.5, "feet"),
  53535. name: "Back",
  53536. image: {
  53537. source: "./media/characters/rei/back.svg",
  53538. extra: 1358/1204,
  53539. bottom: 22/1380
  53540. }
  53541. },
  53542. pawsDigi: {
  53543. height: math.unit(3.45, "feet"),
  53544. name: "Paws (Digi)",
  53545. image: {
  53546. source: "./media/characters/rei/paws-digi.svg"
  53547. }
  53548. },
  53549. pawsPlanti: {
  53550. height: math.unit(3.45, "feet"),
  53551. name: "Paws (Planti)",
  53552. image: {
  53553. source: "./media/characters/rei/paws-planti.svg"
  53554. }
  53555. },
  53556. },
  53557. [
  53558. {
  53559. name: "Normal",
  53560. height: math.unit(20.5, "feet"),
  53561. default: true
  53562. },
  53563. ]
  53564. ))
  53565. characterMakers.push(() => makeCharacter(
  53566. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53567. {
  53568. front: {
  53569. height: math.unit(5 + 11/12, "feet"),
  53570. name: "Front",
  53571. image: {
  53572. source: "./media/characters/carina/front.svg",
  53573. extra: 1720/1449,
  53574. bottom: 14/1734
  53575. }
  53576. },
  53577. back: {
  53578. height: math.unit(5 + 11/12, "feet"),
  53579. name: "Back",
  53580. image: {
  53581. source: "./media/characters/carina/back.svg",
  53582. extra: 1493/1445,
  53583. bottom: 17/1510
  53584. }
  53585. },
  53586. paw: {
  53587. height: math.unit(0.92, "feet"),
  53588. name: "Paw",
  53589. image: {
  53590. source: "./media/characters/carina/paw.svg"
  53591. }
  53592. },
  53593. },
  53594. [
  53595. {
  53596. name: "Normal",
  53597. height: math.unit(5 + 11/12, "feet"),
  53598. default: true
  53599. },
  53600. ]
  53601. ))
  53602. characterMakers.push(() => makeCharacter(
  53603. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53604. {
  53605. normal_front: {
  53606. height: math.unit(4.88, "meters"),
  53607. name: "Front",
  53608. image: {
  53609. source: "./media/characters/maya/normal-front.svg",
  53610. extra: 1222/1145,
  53611. bottom: 57/1279
  53612. },
  53613. form: "normal",
  53614. default: true
  53615. },
  53616. monstrous_front: {
  53617. height: math.unit(10, "meters"),
  53618. name: "Front",
  53619. image: {
  53620. source: "./media/characters/maya/monstrous-front.svg",
  53621. extra: 1523/1109,
  53622. bottom: 113/1636
  53623. },
  53624. form: "monstrous",
  53625. extraAttributes: {
  53626. "swallowSize": {
  53627. name: "Tailmaw Bite Size",
  53628. power: 3,
  53629. type: "volume",
  53630. base: math.unit(43000, "liters")
  53631. },
  53632. }
  53633. },
  53634. taur_front: {
  53635. height: math.unit(10, "meters"),
  53636. name: "Front",
  53637. image: {
  53638. source: "./media/characters/maya/taur-front.svg",
  53639. extra: 743/506,
  53640. bottom: 101/844
  53641. },
  53642. form: "taur",
  53643. },
  53644. },
  53645. [
  53646. {
  53647. name: "Normal",
  53648. height: math.unit(4.88, "meters"),
  53649. default: true,
  53650. form: "normal"
  53651. },
  53652. {
  53653. name: "Macro",
  53654. height: math.unit(38.1, "meters"),
  53655. form: "normal"
  53656. },
  53657. {
  53658. name: "Macro+",
  53659. height: math.unit(152.4, "meters"),
  53660. form: "normal"
  53661. },
  53662. {
  53663. name: "Macro++",
  53664. height: math.unit(16.09, "km"),
  53665. form: "normal"
  53666. },
  53667. {
  53668. name: "Mega-macro",
  53669. height: math.unit(700, "megameters"),
  53670. form: "normal"
  53671. },
  53672. {
  53673. name: "Satiated",
  53674. height: math.unit(10, "meters"),
  53675. default: true,
  53676. form: "monstrous"
  53677. },
  53678. {
  53679. name: "Hungry",
  53680. height: math.unit(75, "meters"),
  53681. form: "monstrous"
  53682. },
  53683. {
  53684. name: "Ravenous",
  53685. height: math.unit(500, "meters"),
  53686. form: "monstrous"
  53687. },
  53688. {
  53689. name: "\"Normal\"",
  53690. height: math.unit(10, "meters"),
  53691. form: "taur"
  53692. },
  53693. {
  53694. name: "Macro",
  53695. height: math.unit(50, "meters"),
  53696. form: "taur"
  53697. },
  53698. ],
  53699. {
  53700. "normal": {
  53701. name: "Normal",
  53702. default: true
  53703. },
  53704. "monstrous": {
  53705. name: "Monstrous",
  53706. },
  53707. "taur": {
  53708. name: "Taur",
  53709. },
  53710. }
  53711. ))
  53712. characterMakers.push(() => makeCharacter(
  53713. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53714. {
  53715. front: {
  53716. height: math.unit(6 + 2/12, "feet"),
  53717. weight: math.unit(500, "lb"),
  53718. preyCapacity: math.unit(4, "people"),
  53719. name: "Front",
  53720. image: {
  53721. source: "./media/characters/yepir/front.svg"
  53722. }
  53723. },
  53724. side: {
  53725. height: math.unit(6 + 2/12, "feet"),
  53726. weight: math.unit(500, "lb"),
  53727. preyCapacity: math.unit(4, "people"),
  53728. name: "Side",
  53729. image: {
  53730. source: "./media/characters/yepir/side.svg"
  53731. }
  53732. },
  53733. paw: {
  53734. height: math.unit(1.05, "feet"),
  53735. name: "Paw",
  53736. image: {
  53737. source: "./media/characters/yepir/paw.svg"
  53738. }
  53739. },
  53740. },
  53741. [
  53742. {
  53743. name: "Normal",
  53744. height: math.unit(6 + 2/12, "feet"),
  53745. default: true
  53746. },
  53747. ]
  53748. ))
  53749. characterMakers.push(() => makeCharacter(
  53750. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53751. {
  53752. front: {
  53753. height: math.unit(5 + 4/12, "feet"),
  53754. name: "Front",
  53755. image: {
  53756. source: "./media/characters/russec/front.svg",
  53757. extra: 1926/1626,
  53758. bottom: 72/1998
  53759. }
  53760. },
  53761. back: {
  53762. height: math.unit(5 + 4/12, "feet"),
  53763. name: "Back",
  53764. image: {
  53765. source: "./media/characters/russec/back.svg",
  53766. extra: 1910/1591,
  53767. bottom: 48/1958
  53768. }
  53769. },
  53770. },
  53771. [
  53772. {
  53773. name: "Small",
  53774. height: math.unit(5 + 4/12, "feet")
  53775. },
  53776. {
  53777. name: "Normal",
  53778. height: math.unit(72, "feet"),
  53779. default: true
  53780. },
  53781. ]
  53782. ))
  53783. characterMakers.push(() => makeCharacter(
  53784. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53785. {
  53786. side: {
  53787. height: math.unit(12, "feet"),
  53788. name: "Side",
  53789. image: {
  53790. source: "./media/characters/cianus/side.svg",
  53791. extra: 808/526,
  53792. bottom: 61/869
  53793. }
  53794. },
  53795. },
  53796. [
  53797. {
  53798. name: "Normal",
  53799. height: math.unit(12, "feet"),
  53800. default: true
  53801. },
  53802. ]
  53803. ))
  53804. characterMakers.push(() => makeCharacter(
  53805. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53806. {
  53807. front: {
  53808. height: math.unit(9 + 6/12, "feet"),
  53809. weight: math.unit(300, "lb"),
  53810. name: "Front",
  53811. image: {
  53812. source: "./media/characters/ahab/front.svg",
  53813. extra: 1897/1868,
  53814. bottom: 121/2018
  53815. }
  53816. },
  53817. frontNsfw: {
  53818. height: math.unit(9 + 6/12, "feet"),
  53819. weight: math.unit(300, "lb"),
  53820. name: "Front-nsfw",
  53821. image: {
  53822. source: "./media/characters/ahab/front-nsfw.svg",
  53823. extra: 1897/1868,
  53824. bottom: 121/2018
  53825. }
  53826. },
  53827. },
  53828. [
  53829. {
  53830. name: "Normal",
  53831. height: math.unit(9 + 6/12, "feet")
  53832. },
  53833. {
  53834. name: "Macro",
  53835. height: math.unit(657, "feet"),
  53836. default: true
  53837. },
  53838. ]
  53839. ))
  53840. characterMakers.push(() => makeCharacter(
  53841. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53842. {
  53843. front: {
  53844. height: math.unit(2.69, "meters"),
  53845. weight: math.unit(132, "kg"),
  53846. name: "Front",
  53847. image: {
  53848. source: "./media/characters/aarkus/front.svg",
  53849. extra: 1400/1231,
  53850. bottom: 34/1434
  53851. }
  53852. },
  53853. back: {
  53854. height: math.unit(2.69, "meters"),
  53855. weight: math.unit(132, "kg"),
  53856. name: "Back",
  53857. image: {
  53858. source: "./media/characters/aarkus/back.svg",
  53859. extra: 1381/1218,
  53860. bottom: 30/1411
  53861. }
  53862. },
  53863. frontNsfw: {
  53864. height: math.unit(2.69, "meters"),
  53865. weight: math.unit(132, "kg"),
  53866. name: "Front (NSFW)",
  53867. image: {
  53868. source: "./media/characters/aarkus/front-nsfw.svg",
  53869. extra: 1400/1231,
  53870. bottom: 34/1434
  53871. }
  53872. },
  53873. foot: {
  53874. height: math.unit(1.45, "feet"),
  53875. name: "Foot",
  53876. image: {
  53877. source: "./media/characters/aarkus/foot.svg"
  53878. }
  53879. },
  53880. head: {
  53881. height: math.unit(2.85, "feet"),
  53882. name: "Head",
  53883. image: {
  53884. source: "./media/characters/aarkus/head.svg"
  53885. }
  53886. },
  53887. headAlt: {
  53888. height: math.unit(3.07, "feet"),
  53889. name: "Head (Alt)",
  53890. image: {
  53891. source: "./media/characters/aarkus/head-alt.svg"
  53892. }
  53893. },
  53894. mouth: {
  53895. height: math.unit(1.25, "feet"),
  53896. name: "Mouth",
  53897. image: {
  53898. source: "./media/characters/aarkus/mouth.svg"
  53899. }
  53900. },
  53901. dick: {
  53902. height: math.unit(1.77, "feet"),
  53903. name: "Dick",
  53904. image: {
  53905. source: "./media/characters/aarkus/dick.svg"
  53906. }
  53907. },
  53908. },
  53909. [
  53910. {
  53911. name: "Normal",
  53912. height: math.unit(2.69, "meters"),
  53913. default: true
  53914. },
  53915. {
  53916. name: "Macro",
  53917. height: math.unit(269, "meters")
  53918. },
  53919. {
  53920. name: "Macro+",
  53921. height: math.unit(672.5, "meters")
  53922. },
  53923. {
  53924. name: "Megamacro",
  53925. height: math.unit(2.017, "km")
  53926. },
  53927. ]
  53928. ))
  53929. characterMakers.push(() => makeCharacter(
  53930. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53931. {
  53932. front: {
  53933. height: math.unit(23.47, "cm"),
  53934. weight: math.unit(600, "grams"),
  53935. name: "Front",
  53936. image: {
  53937. source: "./media/characters/diode/front.svg",
  53938. extra: 1778/1396,
  53939. bottom: 95/1873
  53940. }
  53941. },
  53942. side: {
  53943. height: math.unit(23.47, "cm"),
  53944. weight: math.unit(600, "grams"),
  53945. name: "Side",
  53946. image: {
  53947. source: "./media/characters/diode/side.svg",
  53948. extra: 1831/1404,
  53949. bottom: 86/1917
  53950. }
  53951. },
  53952. wings: {
  53953. height: math.unit(0.683, "feet"),
  53954. name: "Wings",
  53955. image: {
  53956. source: "./media/characters/diode/wings.svg"
  53957. }
  53958. },
  53959. },
  53960. [
  53961. {
  53962. name: "Normal",
  53963. height: math.unit(23.47, "cm"),
  53964. default: true
  53965. },
  53966. ]
  53967. ))
  53968. characterMakers.push(() => makeCharacter(
  53969. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53970. {
  53971. front: {
  53972. height: math.unit(6 + 3/12, "feet"),
  53973. weight: math.unit(250, "lb"),
  53974. name: "Front",
  53975. image: {
  53976. source: "./media/characters/reika/front.svg",
  53977. extra: 1120/1078,
  53978. bottom: 86/1206
  53979. }
  53980. },
  53981. },
  53982. [
  53983. {
  53984. name: "Normal",
  53985. height: math.unit(6 + 3/12, "feet"),
  53986. default: true
  53987. },
  53988. ]
  53989. ))
  53990. characterMakers.push(() => makeCharacter(
  53991. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53992. {
  53993. front: {
  53994. height: math.unit(16 + 8/12, "feet"),
  53995. weight: math.unit(9000, "lb"),
  53996. name: "Front",
  53997. image: {
  53998. source: "./media/characters/lokuto-takama/front.svg",
  53999. extra: 1774/1632,
  54000. bottom: 147/1921
  54001. },
  54002. extraAttributes: {
  54003. "bustWidth": {
  54004. name: "Bust Width",
  54005. power: 1,
  54006. type: "length",
  54007. base: math.unit(2.4, "meters")
  54008. },
  54009. "breastWeight": {
  54010. name: "Breast Weight",
  54011. power: 3,
  54012. type: "mass",
  54013. base: math.unit(1000, "kg")
  54014. },
  54015. }
  54016. },
  54017. },
  54018. [
  54019. {
  54020. name: "Normal",
  54021. height: math.unit(16 + 8/12, "feet"),
  54022. default: true
  54023. },
  54024. ]
  54025. ))
  54026. characterMakers.push(() => makeCharacter(
  54027. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  54028. {
  54029. front: {
  54030. height: math.unit(10, "cm"),
  54031. weight: math.unit(850, "grams"),
  54032. name: "Front",
  54033. image: {
  54034. source: "./media/characters/owak-bone/front.svg",
  54035. extra: 1965/1801,
  54036. bottom: 31/1996
  54037. }
  54038. },
  54039. },
  54040. [
  54041. {
  54042. name: "Normal",
  54043. height: math.unit(10, "cm"),
  54044. default: true
  54045. },
  54046. ]
  54047. ))
  54048. characterMakers.push(() => makeCharacter(
  54049. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  54050. {
  54051. front: {
  54052. height: math.unit(2 + 6/12, "feet"),
  54053. weight: math.unit(9, "lb"),
  54054. name: "Front",
  54055. image: {
  54056. source: "./media/characters/muffin/front.svg",
  54057. extra: 1220/1195,
  54058. bottom: 84/1304
  54059. }
  54060. },
  54061. },
  54062. [
  54063. {
  54064. name: "Normal",
  54065. height: math.unit(2 + 6/12, "feet"),
  54066. default: true
  54067. },
  54068. ]
  54069. ))
  54070. characterMakers.push(() => makeCharacter(
  54071. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  54072. {
  54073. front: {
  54074. height: math.unit(7, "feet"),
  54075. name: "Front",
  54076. image: {
  54077. source: "./media/characters/chimera/front.svg",
  54078. extra: 1752/1614,
  54079. bottom: 68/1820
  54080. }
  54081. },
  54082. },
  54083. [
  54084. {
  54085. name: "Normal",
  54086. height: math.unit(7, "feet")
  54087. },
  54088. {
  54089. name: "Gigamacro",
  54090. height: math.unit(2.9, "gigameters"),
  54091. default: true
  54092. },
  54093. {
  54094. name: "Universal",
  54095. height: math.unit(1.56e26, "yottameters")
  54096. },
  54097. ]
  54098. ))
  54099. characterMakers.push(() => makeCharacter(
  54100. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  54101. {
  54102. front: {
  54103. height: math.unit(3, "feet"),
  54104. weight: math.unit(20, "lb"),
  54105. name: "Front",
  54106. image: {
  54107. source: "./media/characters/kit-fennec-fox/front.svg",
  54108. extra: 1027/932,
  54109. bottom: 16/1043
  54110. }
  54111. },
  54112. back: {
  54113. height: math.unit(3, "feet"),
  54114. weight: math.unit(20, "lb"),
  54115. name: "Back",
  54116. image: {
  54117. source: "./media/characters/kit-fennec-fox/back.svg",
  54118. extra: 1027/932,
  54119. bottom: 16/1043
  54120. }
  54121. },
  54122. },
  54123. [
  54124. {
  54125. name: "Normal",
  54126. height: math.unit(3, "feet"),
  54127. default: true
  54128. },
  54129. ]
  54130. ))
  54131. characterMakers.push(() => makeCharacter(
  54132. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  54133. {
  54134. front: {
  54135. height: math.unit(167, "cm"),
  54136. name: "Front",
  54137. image: {
  54138. source: "./media/characters/blue-otter/front.svg",
  54139. extra: 1951/1920,
  54140. bottom: 31/1982
  54141. }
  54142. },
  54143. },
  54144. [
  54145. {
  54146. name: "Otter-Sized",
  54147. height: math.unit(100, "cm")
  54148. },
  54149. {
  54150. name: "Normal",
  54151. height: math.unit(167, "cm"),
  54152. default: true
  54153. },
  54154. ]
  54155. ))
  54156. characterMakers.push(() => makeCharacter(
  54157. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  54158. {
  54159. front: {
  54160. height: math.unit(4 + 4/12, "feet"),
  54161. name: "Front",
  54162. image: {
  54163. source: "./media/characters/maverick-leopard-gecko/front.svg",
  54164. extra: 1072/1067,
  54165. bottom: 117/1189
  54166. }
  54167. },
  54168. back: {
  54169. height: math.unit(4 + 4/12, "feet"),
  54170. name: "Back",
  54171. image: {
  54172. source: "./media/characters/maverick-leopard-gecko/back.svg",
  54173. extra: 1135/1129,
  54174. bottom: 57/1192
  54175. }
  54176. },
  54177. head: {
  54178. height: math.unit(1.77, "feet"),
  54179. name: "Head",
  54180. image: {
  54181. source: "./media/characters/maverick-leopard-gecko/head.svg"
  54182. }
  54183. },
  54184. },
  54185. [
  54186. {
  54187. name: "Normal",
  54188. height: math.unit(4 + 4/12, "feet"),
  54189. default: true
  54190. },
  54191. ]
  54192. ))
  54193. characterMakers.push(() => makeCharacter(
  54194. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54195. {
  54196. front: {
  54197. height: math.unit(2, "inches"),
  54198. name: "Front",
  54199. image: {
  54200. source: "./media/characters/carley-hartford/front.svg",
  54201. extra: 1035/988,
  54202. bottom: 23/1058
  54203. }
  54204. },
  54205. back: {
  54206. height: math.unit(2, "inches"),
  54207. name: "Back",
  54208. image: {
  54209. source: "./media/characters/carley-hartford/back.svg",
  54210. extra: 1035/988,
  54211. bottom: 23/1058
  54212. }
  54213. },
  54214. dressed: {
  54215. height: math.unit(2, "inches"),
  54216. name: "Dressed",
  54217. image: {
  54218. source: "./media/characters/carley-hartford/dressed.svg",
  54219. extra: 651/620,
  54220. bottom: 0/651
  54221. }
  54222. },
  54223. },
  54224. [
  54225. {
  54226. name: "Micro",
  54227. height: math.unit(2, "inches"),
  54228. default: true
  54229. },
  54230. {
  54231. name: "Macro",
  54232. height: math.unit(6 + 3/12, "feet")
  54233. },
  54234. ]
  54235. ))
  54236. characterMakers.push(() => makeCharacter(
  54237. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54238. {
  54239. front: {
  54240. height: math.unit(2 + 3/12, "feet"),
  54241. weight: math.unit(15 + 7/16, "lb"),
  54242. name: "Front",
  54243. image: {
  54244. source: "./media/characters/duke/front.svg",
  54245. extra: 910/815,
  54246. bottom: 30/940
  54247. }
  54248. },
  54249. },
  54250. [
  54251. {
  54252. name: "Normal",
  54253. height: math.unit(2 + 3/12, "feet"),
  54254. default: true
  54255. },
  54256. ]
  54257. ))
  54258. characterMakers.push(() => makeCharacter(
  54259. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54260. {
  54261. front: {
  54262. height: math.unit(5 + 4/12, "feet"),
  54263. weight: math.unit(156, "lb"),
  54264. name: "Front",
  54265. image: {
  54266. source: "./media/characters/dein/front.svg",
  54267. extra: 855/815,
  54268. bottom: 48/903
  54269. }
  54270. },
  54271. side: {
  54272. height: math.unit(5 + 4/12, "feet"),
  54273. weight: math.unit(156, "lb"),
  54274. name: "side",
  54275. image: {
  54276. source: "./media/characters/dein/side.svg",
  54277. extra: 846/803,
  54278. bottom: 25/871
  54279. }
  54280. },
  54281. maw: {
  54282. height: math.unit(1.45, "feet"),
  54283. name: "Maw",
  54284. image: {
  54285. source: "./media/characters/dein/maw.svg"
  54286. }
  54287. },
  54288. },
  54289. [
  54290. {
  54291. name: "Ferret Sized",
  54292. height: math.unit(2 + 5/12, "feet")
  54293. },
  54294. {
  54295. name: "Normal",
  54296. height: math.unit(5 + 4/12, "feet"),
  54297. default: true
  54298. },
  54299. ]
  54300. ))
  54301. characterMakers.push(() => makeCharacter(
  54302. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54303. {
  54304. front: {
  54305. height: math.unit(84 + 8/12, "feet"),
  54306. weight: math.unit(942180, "lb"),
  54307. name: "Front",
  54308. image: {
  54309. source: "./media/characters/daurine-arima/front.svg",
  54310. extra: 1989/1782,
  54311. bottom: 37/2026
  54312. }
  54313. },
  54314. side: {
  54315. height: math.unit(84 + 8/12, "feet"),
  54316. weight: math.unit(942180, "lb"),
  54317. name: "Side",
  54318. image: {
  54319. source: "./media/characters/daurine-arima/side.svg",
  54320. extra: 1997/1790,
  54321. bottom: 21/2018
  54322. }
  54323. },
  54324. back: {
  54325. height: math.unit(84 + 8/12, "feet"),
  54326. weight: math.unit(942180, "lb"),
  54327. name: "Back",
  54328. image: {
  54329. source: "./media/characters/daurine-arima/back.svg",
  54330. extra: 1992/1800,
  54331. bottom: 12/2004
  54332. }
  54333. },
  54334. head: {
  54335. height: math.unit(15.5, "feet"),
  54336. name: "Head",
  54337. image: {
  54338. source: "./media/characters/daurine-arima/head.svg"
  54339. }
  54340. },
  54341. headAlt: {
  54342. height: math.unit(19.19, "feet"),
  54343. name: "Head (Alt)",
  54344. image: {
  54345. source: "./media/characters/daurine-arima/head-alt.svg"
  54346. }
  54347. },
  54348. },
  54349. [
  54350. {
  54351. name: "Minimum height",
  54352. height: math.unit(8 + 10/12, "feet")
  54353. },
  54354. {
  54355. name: "Comfort height",
  54356. height: math.unit(19 + 6 /12, "feet")
  54357. },
  54358. {
  54359. name: "\"Normal\" height",
  54360. height: math.unit(28 + 10/12, "feet")
  54361. },
  54362. {
  54363. name: "Base height",
  54364. height: math.unit(84 + 8/12, "feet"),
  54365. default: true
  54366. },
  54367. {
  54368. name: "Mini-macro",
  54369. height: math.unit(2360, "feet")
  54370. },
  54371. {
  54372. name: "Macro",
  54373. height: math.unit(10, "miles")
  54374. },
  54375. {
  54376. name: "Goddess",
  54377. height: math.unit(9.99e40, "yottameters")
  54378. },
  54379. ]
  54380. ))
  54381. characterMakers.push(() => makeCharacter(
  54382. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54383. {
  54384. front: {
  54385. height: math.unit(2.3, "meters"),
  54386. name: "Front",
  54387. image: {
  54388. source: "./media/characters/cilenomon/front.svg",
  54389. extra: 1963/1778,
  54390. bottom: 54/2017
  54391. }
  54392. },
  54393. },
  54394. [
  54395. {
  54396. name: "Normal",
  54397. height: math.unit(2.3, "meters"),
  54398. default: true
  54399. },
  54400. {
  54401. name: "Big",
  54402. height: math.unit(5, "meters")
  54403. },
  54404. {
  54405. name: "Macro",
  54406. height: math.unit(30, "meters")
  54407. },
  54408. {
  54409. name: "True",
  54410. height: math.unit(1, "universe")
  54411. },
  54412. ]
  54413. ))
  54414. characterMakers.push(() => makeCharacter(
  54415. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54416. {
  54417. front: {
  54418. height: math.unit(5, "feet"),
  54419. name: "Front",
  54420. image: {
  54421. source: "./media/characters/sen-mink/front.svg",
  54422. extra: 1727/1675,
  54423. bottom: 35/1762
  54424. }
  54425. },
  54426. },
  54427. [
  54428. {
  54429. name: "Normal",
  54430. height: math.unit(5, "feet"),
  54431. default: true
  54432. },
  54433. ]
  54434. ))
  54435. characterMakers.push(() => makeCharacter(
  54436. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54437. {
  54438. front: {
  54439. height: math.unit(5.42999, "feet"),
  54440. weight: math.unit(100, "lb"),
  54441. name: "Front",
  54442. image: {
  54443. source: "./media/characters/ophois/front.svg",
  54444. extra: 1429/1286,
  54445. bottom: 60/1489
  54446. }
  54447. },
  54448. },
  54449. [
  54450. {
  54451. name: "Normal",
  54452. height: math.unit(5.42999, "feet"),
  54453. default: true
  54454. },
  54455. ]
  54456. ))
  54457. characterMakers.push(() => makeCharacter(
  54458. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54459. {
  54460. front: {
  54461. height: math.unit(2, "meters"),
  54462. name: "Front",
  54463. image: {
  54464. source: "./media/characters/riley/front.svg",
  54465. extra: 1779/1754,
  54466. bottom: 139/1918
  54467. }
  54468. },
  54469. },
  54470. [
  54471. {
  54472. name: "Normal",
  54473. height: math.unit(2, "meters"),
  54474. default: true
  54475. },
  54476. ]
  54477. ))
  54478. characterMakers.push(() => makeCharacter(
  54479. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54480. {
  54481. front: {
  54482. height: math.unit(6 + 2/12, "feet"),
  54483. weight: math.unit(195, "lb"),
  54484. preyCapacity: math.unit(6, "people"),
  54485. name: "Front",
  54486. image: {
  54487. source: "./media/characters/shuken-flash/front.svg",
  54488. extra: 1905/1739,
  54489. bottom: 65/1970
  54490. }
  54491. },
  54492. back: {
  54493. height: math.unit(6 + 2/12, "feet"),
  54494. weight: math.unit(195, "lb"),
  54495. preyCapacity: math.unit(6, "people"),
  54496. name: "Back",
  54497. image: {
  54498. source: "./media/characters/shuken-flash/back.svg",
  54499. extra: 1912/1751,
  54500. bottom: 13/1925
  54501. }
  54502. },
  54503. },
  54504. [
  54505. {
  54506. name: "Normal",
  54507. height: math.unit(6 + 2/12, "feet"),
  54508. default: true
  54509. },
  54510. ]
  54511. ))
  54512. characterMakers.push(() => makeCharacter(
  54513. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54514. {
  54515. front: {
  54516. height: math.unit(5 + 9/12, "feet"),
  54517. weight: math.unit(150, "lb"),
  54518. name: "Front",
  54519. image: {
  54520. source: "./media/characters/plat/front.svg",
  54521. extra: 1816/1703,
  54522. bottom: 43/1859
  54523. }
  54524. },
  54525. side: {
  54526. height: math.unit(5 + 9/12, "feet"),
  54527. weight: math.unit(300, "lb"),
  54528. name: "Side",
  54529. image: {
  54530. source: "./media/characters/plat/side.svg",
  54531. extra: 1824/1699,
  54532. bottom: 18/1842
  54533. }
  54534. },
  54535. },
  54536. [
  54537. {
  54538. name: "Normal",
  54539. height: math.unit(5 + 9/12, "feet"),
  54540. default: true
  54541. },
  54542. ]
  54543. ))
  54544. characterMakers.push(() => makeCharacter(
  54545. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54546. {
  54547. front: {
  54548. height: math.unit(9, "feet"),
  54549. weight: math.unit(1800, "lb"),
  54550. name: "Front",
  54551. image: {
  54552. source: "./media/characters/elaine/front.svg",
  54553. extra: 1833/1354,
  54554. bottom: 25/1858
  54555. }
  54556. },
  54557. back: {
  54558. height: math.unit(8.8, "feet"),
  54559. weight: math.unit(1800, "lb"),
  54560. name: "Back",
  54561. image: {
  54562. source: "./media/characters/elaine/back.svg",
  54563. extra: 1641/1233,
  54564. bottom: 53/1694
  54565. }
  54566. },
  54567. },
  54568. [
  54569. {
  54570. name: "Normal",
  54571. height: math.unit(9, "feet"),
  54572. default: true
  54573. },
  54574. ]
  54575. ))
  54576. characterMakers.push(() => makeCharacter(
  54577. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54578. {
  54579. front: {
  54580. height: math.unit(17 + 9/12, "feet"),
  54581. weight: math.unit(8000, "lb"),
  54582. name: "Front",
  54583. image: {
  54584. source: "./media/characters/vera-raven/front.svg",
  54585. extra: 1457/1412,
  54586. bottom: 121/1578
  54587. }
  54588. },
  54589. side: {
  54590. height: math.unit(17 + 9/12, "feet"),
  54591. weight: math.unit(8000, "lb"),
  54592. name: "Side",
  54593. image: {
  54594. source: "./media/characters/vera-raven/side.svg",
  54595. extra: 1510/1464,
  54596. bottom: 54/1564
  54597. }
  54598. },
  54599. },
  54600. [
  54601. {
  54602. name: "Normal",
  54603. height: math.unit(17 + 9/12, "feet"),
  54604. default: true
  54605. },
  54606. ]
  54607. ))
  54608. characterMakers.push(() => makeCharacter(
  54609. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54610. {
  54611. dressed: {
  54612. height: math.unit(6 + 9/12, "feet"),
  54613. name: "Dressed",
  54614. image: {
  54615. source: "./media/characters/nakisha/dressed.svg",
  54616. extra: 1909/1757,
  54617. bottom: 48/1957
  54618. }
  54619. },
  54620. nude: {
  54621. height: math.unit(6 + 9/12, "feet"),
  54622. name: "Nude",
  54623. image: {
  54624. source: "./media/characters/nakisha/nude.svg",
  54625. extra: 1917/1765,
  54626. bottom: 34/1951
  54627. }
  54628. },
  54629. },
  54630. [
  54631. {
  54632. name: "Normal",
  54633. height: math.unit(6 + 9/12, "feet"),
  54634. default: true
  54635. },
  54636. ]
  54637. ))
  54638. characterMakers.push(() => makeCharacter(
  54639. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54640. {
  54641. front: {
  54642. height: math.unit(87, "meters"),
  54643. name: "Front",
  54644. image: {
  54645. source: "./media/characters/serafin/front.svg",
  54646. extra: 1919/1776,
  54647. bottom: 65/1984
  54648. }
  54649. },
  54650. },
  54651. [
  54652. {
  54653. name: "Normal",
  54654. height: math.unit(87, "meters"),
  54655. default: true
  54656. },
  54657. ]
  54658. ))
  54659. characterMakers.push(() => makeCharacter(
  54660. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54661. {
  54662. front: {
  54663. height: math.unit(6, "feet"),
  54664. weight: math.unit(200, "lb"),
  54665. name: "Front",
  54666. image: {
  54667. source: "./media/characters/poptart/front.svg",
  54668. extra: 615/583,
  54669. bottom: 23/638
  54670. }
  54671. },
  54672. back: {
  54673. height: math.unit(6, "feet"),
  54674. weight: math.unit(200, "lb"),
  54675. name: "Back",
  54676. image: {
  54677. source: "./media/characters/poptart/back.svg",
  54678. extra: 617/584,
  54679. bottom: 22/639
  54680. }
  54681. },
  54682. frontNsfw: {
  54683. height: math.unit(6, "feet"),
  54684. weight: math.unit(200, "lb"),
  54685. name: "Front (NSFW)",
  54686. image: {
  54687. source: "./media/characters/poptart/front-nsfw.svg",
  54688. extra: 615/583,
  54689. bottom: 23/638
  54690. }
  54691. },
  54692. backNsfw: {
  54693. height: math.unit(6, "feet"),
  54694. weight: math.unit(200, "lb"),
  54695. name: "Back (NSFW)",
  54696. image: {
  54697. source: "./media/characters/poptart/back-nsfw.svg",
  54698. extra: 617/584,
  54699. bottom: 22/639
  54700. }
  54701. },
  54702. hand: {
  54703. height: math.unit(1.14, "feet"),
  54704. name: "Hand",
  54705. image: {
  54706. source: "./media/characters/poptart/hand.svg"
  54707. }
  54708. },
  54709. foot: {
  54710. height: math.unit(1.5, "feet"),
  54711. name: "Foot",
  54712. image: {
  54713. source: "./media/characters/poptart/foot.svg"
  54714. }
  54715. },
  54716. },
  54717. [
  54718. {
  54719. name: "Normal",
  54720. height: math.unit(6, "feet"),
  54721. default: true
  54722. },
  54723. {
  54724. name: "Grande",
  54725. height: math.unit(350, "feet")
  54726. },
  54727. {
  54728. name: "Massif",
  54729. height: math.unit(967, "feet")
  54730. },
  54731. ]
  54732. ))
  54733. characterMakers.push(() => makeCharacter(
  54734. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54735. {
  54736. hyenaSide: {
  54737. height: math.unit(120, "cm"),
  54738. weight: math.unit(120, "lb"),
  54739. name: "Side",
  54740. image: {
  54741. source: "./media/characters/trance/hyena-side.svg",
  54742. extra: 998/904,
  54743. bottom: 76/1074
  54744. }
  54745. },
  54746. },
  54747. [
  54748. {
  54749. name: "Normal",
  54750. height: math.unit(120, "cm"),
  54751. default: true
  54752. },
  54753. {
  54754. name: "Dire",
  54755. height: math.unit(230, "cm")
  54756. },
  54757. {
  54758. name: "Macro",
  54759. height: math.unit(37, "feet")
  54760. },
  54761. ]
  54762. ))
  54763. characterMakers.push(() => makeCharacter(
  54764. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54765. {
  54766. front: {
  54767. height: math.unit(6 + 3/12, "feet"),
  54768. name: "Front",
  54769. image: {
  54770. source: "./media/characters/michael-berretta/front.svg",
  54771. extra: 515/494,
  54772. bottom: 20/535
  54773. }
  54774. },
  54775. back: {
  54776. height: math.unit(6 + 3/12, "feet"),
  54777. name: "Back",
  54778. image: {
  54779. source: "./media/characters/michael-berretta/back.svg",
  54780. extra: 520/497,
  54781. bottom: 21/541
  54782. }
  54783. },
  54784. frontNsfw: {
  54785. height: math.unit(6 + 3/12, "feet"),
  54786. name: "Front (NSFW)",
  54787. image: {
  54788. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54789. extra: 515/494,
  54790. bottom: 20/535
  54791. }
  54792. },
  54793. dick: {
  54794. height: math.unit(1, "feet"),
  54795. name: "Dick",
  54796. image: {
  54797. source: "./media/characters/michael-berretta/dick.svg"
  54798. }
  54799. },
  54800. },
  54801. [
  54802. {
  54803. name: "Normal",
  54804. height: math.unit(6 + 3/12, "feet"),
  54805. default: true
  54806. },
  54807. {
  54808. name: "Big",
  54809. height: math.unit(12, "feet")
  54810. },
  54811. {
  54812. name: "Macro",
  54813. height: math.unit(187.5, "feet")
  54814. },
  54815. ]
  54816. ))
  54817. characterMakers.push(() => makeCharacter(
  54818. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54819. {
  54820. front: {
  54821. height: math.unit(9 + 9/12, "feet"),
  54822. weight: math.unit(1244, "lb"),
  54823. name: "Front",
  54824. image: {
  54825. source: "./media/characters/stella-edgecomb/front.svg",
  54826. extra: 1835/1706,
  54827. bottom: 49/1884
  54828. }
  54829. },
  54830. pen: {
  54831. height: math.unit(0.95, "feet"),
  54832. name: "Pen",
  54833. image: {
  54834. source: "./media/characters/stella-edgecomb/pen.svg"
  54835. }
  54836. },
  54837. },
  54838. [
  54839. {
  54840. name: "Cozy Bear",
  54841. height: math.unit(0.5, "inches")
  54842. },
  54843. {
  54844. name: "Normal",
  54845. height: math.unit(9 + 9/12, "feet"),
  54846. default: true
  54847. },
  54848. {
  54849. name: "Giga Bear",
  54850. height: math.unit(1, "mile")
  54851. },
  54852. {
  54853. name: "Great Bear",
  54854. height: math.unit(53, "miles")
  54855. },
  54856. {
  54857. name: "Goddess Bear",
  54858. height: math.unit(40000, "miles")
  54859. },
  54860. {
  54861. name: "Sun Bear",
  54862. height: math.unit(900000, "miles")
  54863. },
  54864. ]
  54865. ))
  54866. characterMakers.push(() => makeCharacter(
  54867. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54868. {
  54869. anthroFront: {
  54870. height: math.unit(556, "cm"),
  54871. weight: math.unit(2650, "kg"),
  54872. preyCapacity: math.unit(3, "people"),
  54873. name: "Front",
  54874. image: {
  54875. source: "./media/characters/ash´iika/front.svg",
  54876. extra: 710/673,
  54877. bottom: 15/725
  54878. },
  54879. form: "anthro",
  54880. default: true
  54881. },
  54882. anthroSide: {
  54883. height: math.unit(556, "cm"),
  54884. weight: math.unit(2650, "kg"),
  54885. preyCapacity: math.unit(3, "people"),
  54886. name: "Side",
  54887. image: {
  54888. source: "./media/characters/ash´iika/side.svg",
  54889. extra: 696/676,
  54890. bottom: 13/709
  54891. },
  54892. form: "anthro"
  54893. },
  54894. anthroDressed: {
  54895. height: math.unit(556, "cm"),
  54896. weight: math.unit(2650, "kg"),
  54897. preyCapacity: math.unit(3, "people"),
  54898. name: "Dressed",
  54899. image: {
  54900. source: "./media/characters/ash´iika/dressed.svg",
  54901. extra: 710/673,
  54902. bottom: 15/725
  54903. },
  54904. form: "anthro"
  54905. },
  54906. anthroHead: {
  54907. height: math.unit(3.5, "feet"),
  54908. name: "Head",
  54909. image: {
  54910. source: "./media/characters/ash´iika/head.svg",
  54911. extra: 348/291,
  54912. bottom: 45/393
  54913. },
  54914. form: "anthro"
  54915. },
  54916. feralSide: {
  54917. height: math.unit(870, "cm"),
  54918. weight: math.unit(17500, "kg"),
  54919. preyCapacity: math.unit(15, "people"),
  54920. name: "Side",
  54921. image: {
  54922. source: "./media/characters/ash´iika/feral.svg",
  54923. extra: 595/199,
  54924. bottom: 7/602
  54925. },
  54926. form: "feral",
  54927. default: true,
  54928. },
  54929. },
  54930. [
  54931. {
  54932. name: "Normal",
  54933. height: math.unit(556, "cm"),
  54934. default: true,
  54935. form: "anthro"
  54936. },
  54937. {
  54938. name: "Macro",
  54939. height: math.unit(88, "meters"),
  54940. form: "anthro"
  54941. },
  54942. {
  54943. name: "Normal",
  54944. height: math.unit(870, "cm"),
  54945. default: true,
  54946. form: "feral"
  54947. },
  54948. {
  54949. name: "Large",
  54950. height: math.unit(25, "meters"),
  54951. form: "feral"
  54952. },
  54953. ],
  54954. {
  54955. "anthro": {
  54956. name: "Anthro",
  54957. default: true
  54958. },
  54959. "feral": {
  54960. name: "Feral",
  54961. },
  54962. }
  54963. ))
  54964. characterMakers.push(() => makeCharacter(
  54965. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54966. {
  54967. front: {
  54968. height: math.unit(10, "feet"),
  54969. weight: math.unit(800, "lb"),
  54970. name: "Front",
  54971. image: {
  54972. source: "./media/characters/yen/front.svg",
  54973. extra: 443/411,
  54974. bottom: 6/449
  54975. }
  54976. },
  54977. sleeping: {
  54978. height: math.unit(10, "feet"),
  54979. weight: math.unit(800, "lb"),
  54980. name: "Sleeping",
  54981. image: {
  54982. source: "./media/characters/yen/sleeping.svg",
  54983. extra: 470/422,
  54984. bottom: 0/470
  54985. }
  54986. },
  54987. head: {
  54988. height: math.unit(2.2, "feet"),
  54989. name: "Head",
  54990. image: {
  54991. source: "./media/characters/yen/head.svg"
  54992. }
  54993. },
  54994. headAlt: {
  54995. height: math.unit(2.1, "feet"),
  54996. name: "Head (Alt)",
  54997. image: {
  54998. source: "./media/characters/yen/head-alt.svg"
  54999. }
  55000. },
  55001. },
  55002. [
  55003. {
  55004. name: "Normal",
  55005. height: math.unit(10, "feet"),
  55006. default: true
  55007. },
  55008. ]
  55009. ))
  55010. characterMakers.push(() => makeCharacter(
  55011. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  55012. {
  55013. front: {
  55014. height: math.unit(12, "feet"),
  55015. name: "Front",
  55016. image: {
  55017. source: "./media/characters/citra/front.svg",
  55018. extra: 1950/1710,
  55019. bottom: 47/1997
  55020. }
  55021. },
  55022. },
  55023. [
  55024. {
  55025. name: "Normal",
  55026. height: math.unit(12, "feet"),
  55027. default: true
  55028. },
  55029. ]
  55030. ))
  55031. characterMakers.push(() => makeCharacter(
  55032. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  55033. {
  55034. side: {
  55035. height: math.unit(7 + 10/12, "feet"),
  55036. name: "Side",
  55037. image: {
  55038. source: "./media/characters/sholstim/side.svg",
  55039. extra: 786/682,
  55040. bottom: 40/826
  55041. }
  55042. },
  55043. },
  55044. [
  55045. {
  55046. name: "Normal",
  55047. height: math.unit(7 + 10/12, "feet"),
  55048. default: true
  55049. },
  55050. ]
  55051. ))
  55052. characterMakers.push(() => makeCharacter(
  55053. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  55054. {
  55055. front: {
  55056. height: math.unit(3.10, "meters"),
  55057. name: "Front",
  55058. image: {
  55059. source: "./media/characters/aggyn/front.svg",
  55060. extra: 1188/963,
  55061. bottom: 24/1212
  55062. }
  55063. },
  55064. },
  55065. [
  55066. {
  55067. name: "Normal",
  55068. height: math.unit(3.10, "meters"),
  55069. default: true
  55070. },
  55071. ]
  55072. ))
  55073. characterMakers.push(() => makeCharacter(
  55074. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  55075. {
  55076. front: {
  55077. height: math.unit(7 + 5/12, "feet"),
  55078. weight: math.unit(687, "lb"),
  55079. name: "Front",
  55080. image: {
  55081. source: "./media/characters/alsandair-hergenroether/front.svg",
  55082. extra: 1251/1186,
  55083. bottom: 75/1326
  55084. }
  55085. },
  55086. back: {
  55087. height: math.unit(7 + 5/12, "feet"),
  55088. weight: math.unit(687, "lb"),
  55089. name: "Back",
  55090. image: {
  55091. source: "./media/characters/alsandair-hergenroether/back.svg",
  55092. extra: 1290/1229,
  55093. bottom: 17/1307
  55094. }
  55095. },
  55096. },
  55097. [
  55098. {
  55099. name: "Max Compression",
  55100. height: math.unit(7 + 5/12, "feet"),
  55101. default: true
  55102. },
  55103. {
  55104. name: "\"Normal\"",
  55105. height: math.unit(2, "universes")
  55106. },
  55107. ]
  55108. ))
  55109. characterMakers.push(() => makeCharacter(
  55110. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  55111. {
  55112. front: {
  55113. height: math.unit(4 + 1/12, "feet"),
  55114. weight: math.unit(92, "lb"),
  55115. name: "Front",
  55116. image: {
  55117. source: "./media/characters/ie/front.svg",
  55118. extra: 1585/1352,
  55119. bottom: 91/1676
  55120. }
  55121. },
  55122. },
  55123. [
  55124. {
  55125. name: "Normal",
  55126. height: math.unit(4 + 1/12, "feet"),
  55127. default: true
  55128. },
  55129. ]
  55130. ))
  55131. characterMakers.push(() => makeCharacter(
  55132. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  55133. {
  55134. anthro: {
  55135. height: math.unit(6, "feet"),
  55136. weight: math.unit(150, "lb"),
  55137. name: "Front",
  55138. image: {
  55139. source: "./media/characters/willow/anthro.svg",
  55140. extra: 1073/986,
  55141. bottom: 34/1107
  55142. },
  55143. form: "anthro",
  55144. default: true
  55145. },
  55146. taur: {
  55147. height: math.unit(6, "feet"),
  55148. weight: math.unit(150, "lb"),
  55149. name: "Side",
  55150. image: {
  55151. source: "./media/characters/willow/taur.svg",
  55152. extra: 647/512,
  55153. bottom: 136/783
  55154. },
  55155. form: "taur",
  55156. default: true
  55157. },
  55158. },
  55159. [
  55160. {
  55161. name: "Humanoid",
  55162. height: math.unit(2.7, "meters"),
  55163. form: "anthro"
  55164. },
  55165. {
  55166. name: "Normal",
  55167. height: math.unit(9, "meters"),
  55168. form: "anthro",
  55169. default: true
  55170. },
  55171. {
  55172. name: "Humanoid",
  55173. height: math.unit(2.1, "meters"),
  55174. form: "taur"
  55175. },
  55176. {
  55177. name: "Normal",
  55178. height: math.unit(7, "meters"),
  55179. form: "taur",
  55180. default: true
  55181. },
  55182. ],
  55183. {
  55184. "anthro": {
  55185. name: "Anthro",
  55186. default: true
  55187. },
  55188. "taur": {
  55189. name: "Taur",
  55190. },
  55191. }
  55192. ))
  55193. characterMakers.push(() => makeCharacter(
  55194. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55195. {
  55196. front: {
  55197. height: math.unit(2 + 5/12, "feet"),
  55198. name: "Front",
  55199. image: {
  55200. source: "./media/characters/kyan/front.svg",
  55201. extra: 460/334,
  55202. bottom: 23/483
  55203. },
  55204. extraAttributes: {
  55205. "toeLength": {
  55206. name: "Toe Length",
  55207. power: 1,
  55208. type: "length",
  55209. base: math.unit(7, "cm")
  55210. },
  55211. "toeclawLength": {
  55212. name: "Toeclaw Length",
  55213. power: 1,
  55214. type: "length",
  55215. base: math.unit(4.7, "cm")
  55216. },
  55217. "earHeight": {
  55218. name: "Ear Height",
  55219. power: 1,
  55220. type: "length",
  55221. base: math.unit(14.1, "cm")
  55222. },
  55223. }
  55224. },
  55225. paws: {
  55226. height: math.unit(0.45, "feet"),
  55227. name: "Paws",
  55228. image: {
  55229. source: "./media/characters/kyan/paws.svg",
  55230. extra: 581/581,
  55231. bottom: 114/695
  55232. }
  55233. },
  55234. },
  55235. [
  55236. {
  55237. name: "Normal",
  55238. height: math.unit(2 + 5/12, "feet"),
  55239. default: true
  55240. },
  55241. ]
  55242. ))
  55243. characterMakers.push(() => makeCharacter(
  55244. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55245. {
  55246. front: {
  55247. height: math.unit(2 + 2/3, "feet"),
  55248. name: "Front",
  55249. image: {
  55250. source: "./media/characters/xazzon/front.svg",
  55251. extra: 1109/984,
  55252. bottom: 42/1151
  55253. }
  55254. },
  55255. back: {
  55256. height: math.unit(2 + 2/3, "feet"),
  55257. name: "Back",
  55258. image: {
  55259. source: "./media/characters/xazzon/back.svg",
  55260. extra: 1095/971,
  55261. bottom: 23/1118
  55262. }
  55263. },
  55264. },
  55265. [
  55266. {
  55267. name: "Normal",
  55268. height: math.unit(2 + 2/3, "feet"),
  55269. default: true
  55270. },
  55271. ]
  55272. ))
  55273. characterMakers.push(() => makeCharacter(
  55274. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55275. {
  55276. front: {
  55277. height: math.unit(8, "feet"),
  55278. weight: math.unit(300, "lb"),
  55279. name: "Front",
  55280. image: {
  55281. source: "./media/characters/khyla-shadowsong/front.svg",
  55282. extra: 861/798,
  55283. bottom: 32/893
  55284. }
  55285. },
  55286. side: {
  55287. height: math.unit(8, "feet"),
  55288. weight: math.unit(300, "lb"),
  55289. name: "Side",
  55290. image: {
  55291. source: "./media/characters/khyla-shadowsong/side.svg",
  55292. extra: 790/750,
  55293. bottom: 87/877
  55294. }
  55295. },
  55296. back: {
  55297. height: math.unit(8, "feet"),
  55298. weight: math.unit(300, "lb"),
  55299. name: "Back",
  55300. image: {
  55301. source: "./media/characters/khyla-shadowsong/back.svg",
  55302. extra: 855/808,
  55303. bottom: 14/869
  55304. }
  55305. },
  55306. head: {
  55307. height: math.unit(2.7, "feet"),
  55308. name: "Head",
  55309. image: {
  55310. source: "./media/characters/khyla-shadowsong/head.svg"
  55311. }
  55312. },
  55313. },
  55314. [
  55315. {
  55316. name: "Micro",
  55317. height: math.unit(6, "inches")
  55318. },
  55319. {
  55320. name: "Normal",
  55321. height: math.unit(8, "feet"),
  55322. default: true
  55323. },
  55324. ]
  55325. ))
  55326. characterMakers.push(() => makeCharacter(
  55327. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55328. {
  55329. hyperFront: {
  55330. height: math.unit(9 + 4/12, "feet"),
  55331. weight: math.unit(2000, "lb"),
  55332. name: "Front",
  55333. image: {
  55334. source: "./media/characters/tiden/hyper-front.svg",
  55335. extra: 400/382,
  55336. bottom: 6/406
  55337. },
  55338. form: "hyper",
  55339. },
  55340. regularFront: {
  55341. height: math.unit(7 + 10/12, "feet"),
  55342. weight: math.unit(470, "lb"),
  55343. name: "Front",
  55344. image: {
  55345. source: "./media/characters/tiden/regular-front.svg",
  55346. extra: 468/442,
  55347. bottom: 6/474
  55348. },
  55349. form: "regular",
  55350. },
  55351. },
  55352. [
  55353. {
  55354. name: "Normal",
  55355. height: math.unit(9 + 4/12, "feet"),
  55356. default: true,
  55357. form: "hyper"
  55358. },
  55359. {
  55360. name: "Normal",
  55361. height: math.unit(7 + 10/12, "feet"),
  55362. default: true,
  55363. form: "regular"
  55364. },
  55365. ],
  55366. {
  55367. "hyper": {
  55368. name: "Hyper",
  55369. default: true
  55370. },
  55371. "regular": {
  55372. name: "Regular",
  55373. },
  55374. }
  55375. ))
  55376. characterMakers.push(() => makeCharacter(
  55377. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55378. {
  55379. side: {
  55380. height: math.unit(6, "feet"),
  55381. weight: math.unit(150, "lb"),
  55382. name: "Side",
  55383. image: {
  55384. source: "./media/characters/jason-crowe/side.svg",
  55385. extra: 1771/766,
  55386. bottom: 219/1990
  55387. }
  55388. },
  55389. },
  55390. [
  55391. {
  55392. name: "Pocket Gryphon",
  55393. height: math.unit(6, "cm")
  55394. },
  55395. {
  55396. name: "Raven",
  55397. height: math.unit(60, "cm")
  55398. },
  55399. {
  55400. name: "Normal",
  55401. height: math.unit(1, "meter"),
  55402. default: true
  55403. },
  55404. ]
  55405. ))
  55406. characterMakers.push(() => makeCharacter(
  55407. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55408. {
  55409. front: {
  55410. height: math.unit(9 + 6/12, "feet"),
  55411. weight: math.unit(1100, "lb"),
  55412. name: "Front",
  55413. image: {
  55414. source: "./media/characters/django/front.svg",
  55415. extra: 1231/1136,
  55416. bottom: 34/1265
  55417. }
  55418. },
  55419. side: {
  55420. height: math.unit(9 + 6/12, "feet"),
  55421. weight: math.unit(1100, "lb"),
  55422. name: "Side",
  55423. image: {
  55424. source: "./media/characters/django/side.svg",
  55425. extra: 1267/1174,
  55426. bottom: 9/1276
  55427. }
  55428. },
  55429. },
  55430. [
  55431. {
  55432. name: "Normal",
  55433. height: math.unit(9 + 6/12, "feet"),
  55434. default: true
  55435. },
  55436. {
  55437. name: "Macro 1",
  55438. height: math.unit(50, "feet")
  55439. },
  55440. {
  55441. name: "Macro 2",
  55442. height: math.unit(500, "feet")
  55443. },
  55444. {
  55445. name: "Mega Macro",
  55446. height: math.unit(5300, "feet")
  55447. },
  55448. ]
  55449. ))
  55450. characterMakers.push(() => makeCharacter(
  55451. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55452. {
  55453. frontSfw: {
  55454. height: math.unit(120, "cm"),
  55455. weight: math.unit(15, "kg"),
  55456. name: "Front (SFW)",
  55457. image: {
  55458. source: "./media/characters/eri/front-sfw.svg",
  55459. extra: 1014/939,
  55460. bottom: 37/1051
  55461. },
  55462. form: "moth",
  55463. },
  55464. frontNsfw: {
  55465. height: math.unit(120, "cm"),
  55466. weight: math.unit(15, "kg"),
  55467. name: "Front (NSFW)",
  55468. image: {
  55469. source: "./media/characters/eri/front-nsfw.svg",
  55470. extra: 1014/939,
  55471. bottom: 37/1051
  55472. },
  55473. form: "moth",
  55474. default: true
  55475. },
  55476. egg: {
  55477. height: math.unit(10, "cm"),
  55478. name: "Egg",
  55479. image: {
  55480. source: "./media/characters/eri/egg.svg"
  55481. },
  55482. form: "egg",
  55483. default: true
  55484. },
  55485. },
  55486. [
  55487. {
  55488. name: "Normal",
  55489. height: math.unit(120, "cm"),
  55490. default: true,
  55491. form: "moth"
  55492. },
  55493. {
  55494. name: "Normal",
  55495. height: math.unit(10, "cm"),
  55496. default: true,
  55497. form: "egg"
  55498. },
  55499. ],
  55500. {
  55501. "moth": {
  55502. name: "Moth",
  55503. default: true
  55504. },
  55505. "egg": {
  55506. name: "Egg",
  55507. },
  55508. }
  55509. ))
  55510. characterMakers.push(() => makeCharacter(
  55511. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55512. {
  55513. front: {
  55514. height: math.unit(200, "feet"),
  55515. name: "Front",
  55516. image: {
  55517. source: "./media/characters/bishop-dowser/front.svg",
  55518. extra: 933/868,
  55519. bottom: 106/1039
  55520. }
  55521. },
  55522. },
  55523. [
  55524. {
  55525. name: "Giant",
  55526. height: math.unit(200, "feet"),
  55527. default: true
  55528. },
  55529. ]
  55530. ))
  55531. characterMakers.push(() => makeCharacter(
  55532. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55533. {
  55534. front: {
  55535. height: math.unit(2, "meters"),
  55536. preyCapacity: math.unit(3, "people"),
  55537. name: "Front",
  55538. image: {
  55539. source: "./media/characters/fryra/front.svg",
  55540. extra: 1025/948,
  55541. bottom: 30/1055
  55542. },
  55543. extraAttributes: {
  55544. "breastVolume": {
  55545. name: "Breast Volume",
  55546. power: 3,
  55547. type: "volume",
  55548. base: math.unit(8, "liters")
  55549. },
  55550. }
  55551. },
  55552. back: {
  55553. height: math.unit(2, "meters"),
  55554. preyCapacity: math.unit(3, "people"),
  55555. name: "Back",
  55556. image: {
  55557. source: "./media/characters/fryra/back.svg",
  55558. extra: 993/938,
  55559. bottom: 38/1031
  55560. },
  55561. extraAttributes: {
  55562. "breastVolume": {
  55563. name: "Breast Volume",
  55564. power: 3,
  55565. type: "volume",
  55566. base: math.unit(8, "liters")
  55567. },
  55568. }
  55569. },
  55570. head: {
  55571. height: math.unit(1.33, "feet"),
  55572. name: "Head",
  55573. image: {
  55574. source: "./media/characters/fryra/head.svg"
  55575. }
  55576. },
  55577. maw: {
  55578. height: math.unit(0.56, "feet"),
  55579. name: "Maw",
  55580. image: {
  55581. source: "./media/characters/fryra/maw.svg"
  55582. }
  55583. },
  55584. },
  55585. [
  55586. {
  55587. name: "Micro",
  55588. height: math.unit(5, "cm")
  55589. },
  55590. {
  55591. name: "Normal",
  55592. height: math.unit(2, "meters"),
  55593. default: true
  55594. },
  55595. {
  55596. name: "Small Macro",
  55597. height: math.unit(8, "meters")
  55598. },
  55599. {
  55600. name: "Macro",
  55601. height: math.unit(50, "meters")
  55602. },
  55603. {
  55604. name: "Megamacro",
  55605. height: math.unit(1, "km")
  55606. },
  55607. {
  55608. name: "Planetary",
  55609. height: math.unit(300000, "km")
  55610. },
  55611. {
  55612. name: "Universal",
  55613. height: math.unit(250, "lightyears")
  55614. },
  55615. {
  55616. name: "Fabric of Reality",
  55617. height: math.unit(1000, "multiverses")
  55618. },
  55619. ]
  55620. ))
  55621. characterMakers.push(() => makeCharacter(
  55622. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55623. {
  55624. frontDressed: {
  55625. height: math.unit(6 + 2/12, "feet"),
  55626. name: "Front (Dressed)",
  55627. image: {
  55628. source: "./media/characters/fiera/front-dressed.svg",
  55629. extra: 1883/1793,
  55630. bottom: 70/1953
  55631. }
  55632. },
  55633. backDressed: {
  55634. height: math.unit(6 + 2/12, "feet"),
  55635. name: "Back (Dressed)",
  55636. image: {
  55637. source: "./media/characters/fiera/back-dressed.svg",
  55638. extra: 1847/1780,
  55639. bottom: 70/1917
  55640. }
  55641. },
  55642. frontNude: {
  55643. height: math.unit(6 + 2/12, "feet"),
  55644. name: "Front (Nude)",
  55645. image: {
  55646. source: "./media/characters/fiera/front-nude.svg",
  55647. extra: 1875/1785,
  55648. bottom: 66/1941
  55649. }
  55650. },
  55651. backNude: {
  55652. height: math.unit(6 + 2/12, "feet"),
  55653. name: "Back (Nude)",
  55654. image: {
  55655. source: "./media/characters/fiera/back-nude.svg",
  55656. extra: 1855/1788,
  55657. bottom: 44/1899
  55658. }
  55659. },
  55660. maw: {
  55661. height: math.unit(1.3, "feet"),
  55662. name: "Maw",
  55663. image: {
  55664. source: "./media/characters/fiera/maw.svg"
  55665. }
  55666. },
  55667. paw: {
  55668. height: math.unit(1, "feet"),
  55669. name: "Paw",
  55670. image: {
  55671. source: "./media/characters/fiera/paw.svg"
  55672. }
  55673. },
  55674. shoe: {
  55675. height: math.unit(1.05, "feet"),
  55676. name: "Shoe",
  55677. image: {
  55678. source: "./media/characters/fiera/shoe.svg"
  55679. }
  55680. },
  55681. },
  55682. [
  55683. {
  55684. name: "Normal",
  55685. height: math.unit(6 + 2/12, "feet"),
  55686. default: true
  55687. },
  55688. {
  55689. name: "Size Difference",
  55690. height: math.unit(13, "feet")
  55691. },
  55692. {
  55693. name: "Macro",
  55694. height: math.unit(60, "feet")
  55695. },
  55696. {
  55697. name: "Mega Macro",
  55698. height: math.unit(200, "feet")
  55699. },
  55700. ]
  55701. ))
  55702. characterMakers.push(() => makeCharacter(
  55703. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55704. {
  55705. back: {
  55706. height: math.unit(6, "feet"),
  55707. name: "Back",
  55708. image: {
  55709. source: "./media/characters/flare/back.svg",
  55710. extra: 1883/1765,
  55711. bottom: 32/1915
  55712. }
  55713. },
  55714. },
  55715. [
  55716. {
  55717. name: "Normal",
  55718. height: math.unit(6 + 2/12, "feet"),
  55719. default: true
  55720. },
  55721. {
  55722. name: "Size Difference",
  55723. height: math.unit(13, "feet")
  55724. },
  55725. {
  55726. name: "Macro",
  55727. height: math.unit(60, "feet")
  55728. },
  55729. {
  55730. name: "Macro 2",
  55731. height: math.unit(100, "feet")
  55732. },
  55733. {
  55734. name: "Mega Macro",
  55735. height: math.unit(200, "feet")
  55736. },
  55737. ]
  55738. ))
  55739. characterMakers.push(() => makeCharacter(
  55740. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55741. {
  55742. front: {
  55743. height: math.unit(2.2, "m"),
  55744. weight: math.unit(300, "kg"),
  55745. name: "Front",
  55746. image: {
  55747. source: "./media/characters/hanna/front.svg",
  55748. extra: 1696/1502,
  55749. bottom: 206/1902
  55750. }
  55751. },
  55752. },
  55753. [
  55754. {
  55755. name: "Humanoid",
  55756. height: math.unit(2.2, "meters")
  55757. },
  55758. {
  55759. name: "Normal",
  55760. height: math.unit(4.8, "meters"),
  55761. default: true
  55762. },
  55763. ]
  55764. ))
  55765. characterMakers.push(() => makeCharacter(
  55766. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55767. {
  55768. front: {
  55769. height: math.unit(2.8, "meters"),
  55770. name: "Front",
  55771. image: {
  55772. source: "./media/characters/argo/front.svg",
  55773. extra: 731/518,
  55774. bottom: 84/815
  55775. }
  55776. },
  55777. },
  55778. [
  55779. {
  55780. name: "Normal",
  55781. height: math.unit(3, "meters"),
  55782. default: true
  55783. },
  55784. ]
  55785. ))
  55786. characterMakers.push(() => makeCharacter(
  55787. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55788. {
  55789. side: {
  55790. height: math.unit(3.8, "meters"),
  55791. name: "Side",
  55792. image: {
  55793. source: "./media/characters/sybil/side.svg",
  55794. extra: 382/361,
  55795. bottom: 25/407
  55796. }
  55797. },
  55798. },
  55799. [
  55800. {
  55801. name: "Normal",
  55802. height: math.unit(3.8, "meters"),
  55803. default: true
  55804. },
  55805. ]
  55806. ))
  55807. characterMakers.push(() => makeCharacter(
  55808. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55809. {
  55810. side: {
  55811. height: math.unit(6, "meters"),
  55812. name: "Side",
  55813. image: {
  55814. source: "./media/characters/plum/side.svg",
  55815. extra: 858/755,
  55816. bottom: 45/903
  55817. },
  55818. form: "taur",
  55819. default: true
  55820. },
  55821. back: {
  55822. height: math.unit(6.3, "meters"),
  55823. name: "Back",
  55824. image: {
  55825. source: "./media/characters/plum/back.svg",
  55826. extra: 887/813,
  55827. bottom: 32/919
  55828. },
  55829. form: "taur",
  55830. },
  55831. feral: {
  55832. height: math.unit(5.5, "meter"),
  55833. name: "Front",
  55834. image: {
  55835. source: "./media/characters/plum/feral.svg",
  55836. extra: 568/403,
  55837. bottom: 51/619
  55838. },
  55839. form: "feral",
  55840. default: true
  55841. },
  55842. head: {
  55843. height: math.unit(1.46, "meter"),
  55844. name: "Head",
  55845. image: {
  55846. source: "./media/characters/plum/head.svg"
  55847. },
  55848. form: "taur"
  55849. },
  55850. tailTop: {
  55851. height: math.unit(5.6, "meter"),
  55852. name: "Tail (Top)",
  55853. image: {
  55854. source: "./media/characters/plum/tail-top.svg"
  55855. },
  55856. form: "taur",
  55857. },
  55858. tailBottom: {
  55859. height: math.unit(5.6, "meter"),
  55860. name: "Tail (Bottom)",
  55861. image: {
  55862. source: "./media/characters/plum/tail-bottom.svg"
  55863. },
  55864. form: "taur",
  55865. },
  55866. feralHead: {
  55867. height: math.unit(2.56549521, "meter"),
  55868. name: "Head",
  55869. image: {
  55870. source: "./media/characters/plum/head.svg"
  55871. },
  55872. form: "feral"
  55873. },
  55874. feralTailTop: {
  55875. height: math.unit(5.44728435, "meter"),
  55876. name: "Tail (Top)",
  55877. image: {
  55878. source: "./media/characters/plum/tail-top.svg"
  55879. },
  55880. form: "feral",
  55881. },
  55882. feralTailBottom: {
  55883. height: math.unit(5.44728435, "meter"),
  55884. name: "Tail (Bottom)",
  55885. image: {
  55886. source: "./media/characters/plum/tail-bottom.svg"
  55887. },
  55888. form: "feral",
  55889. },
  55890. },
  55891. [
  55892. {
  55893. name: "Normal",
  55894. height: math.unit(6, "meters"),
  55895. default: true,
  55896. form: "taur"
  55897. },
  55898. {
  55899. name: "Normal",
  55900. height: math.unit(5.5, "meters"),
  55901. default: true,
  55902. form: "feral"
  55903. },
  55904. ],
  55905. {
  55906. "taur": {
  55907. name: "Taur",
  55908. default: true
  55909. },
  55910. "feral": {
  55911. name: "Feral",
  55912. },
  55913. }
  55914. ))
  55915. characterMakers.push(() => makeCharacter(
  55916. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55917. {
  55918. front: {
  55919. height: math.unit(6, "feet"),
  55920. weight: math.unit(115, "lb"),
  55921. name: "Front",
  55922. image: {
  55923. source: "./media/characters/celeste-kitsune/front.svg",
  55924. extra: 393/366,
  55925. bottom: 7/400
  55926. }
  55927. },
  55928. side: {
  55929. height: math.unit(6, "feet"),
  55930. weight: math.unit(115, "lb"),
  55931. name: "Side",
  55932. image: {
  55933. source: "./media/characters/celeste-kitsune/side.svg",
  55934. extra: 818/765,
  55935. bottom: 40/858
  55936. }
  55937. },
  55938. },
  55939. [
  55940. {
  55941. name: "Megamacro",
  55942. height: math.unit(1500, "miles"),
  55943. default: true
  55944. },
  55945. ]
  55946. ))
  55947. characterMakers.push(() => makeCharacter(
  55948. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55949. {
  55950. front: {
  55951. height: math.unit(8, "meters"),
  55952. name: "Front",
  55953. image: {
  55954. source: "./media/characters/io/front.svg",
  55955. extra: 865/722,
  55956. bottom: 58/923
  55957. }
  55958. },
  55959. back: {
  55960. height: math.unit(8, "meters"),
  55961. name: "Back",
  55962. image: {
  55963. source: "./media/characters/io/back.svg",
  55964. extra: 920/776,
  55965. bottom: 42/962
  55966. }
  55967. },
  55968. head: {
  55969. height: math.unit(5.09, "meters"),
  55970. name: "Head",
  55971. image: {
  55972. source: "./media/characters/io/head.svg"
  55973. }
  55974. },
  55975. hand: {
  55976. height: math.unit(1.6, "meters"),
  55977. name: "Hand",
  55978. image: {
  55979. source: "./media/characters/io/hand.svg"
  55980. }
  55981. },
  55982. foot: {
  55983. height: math.unit(2.4, "meters"),
  55984. name: "Foot",
  55985. image: {
  55986. source: "./media/characters/io/foot.svg"
  55987. }
  55988. },
  55989. },
  55990. [
  55991. {
  55992. name: "Normal",
  55993. height: math.unit(8, "meters"),
  55994. default: true
  55995. },
  55996. ]
  55997. ))
  55998. characterMakers.push(() => makeCharacter(
  55999. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  56000. {
  56001. side: {
  56002. height: math.unit(6 + 3/12, "feet"),
  56003. weight: math.unit(225, "lb"),
  56004. name: "Side",
  56005. image: {
  56006. source: "./media/characters/silas/side.svg",
  56007. extra: 703/653,
  56008. bottom: 23/726
  56009. },
  56010. extraAttributes: {
  56011. "pawLength": {
  56012. name: "Paw Length",
  56013. power: 1,
  56014. type: "length",
  56015. base: math.unit(12, "inches")
  56016. },
  56017. "pawWidth": {
  56018. name: "Paw Width",
  56019. power: 1,
  56020. type: "length",
  56021. base: math.unit(4.5, "inches")
  56022. },
  56023. "pawArea": {
  56024. name: "Paw Area",
  56025. power: 2,
  56026. type: "area",
  56027. base: math.unit(12 * 4.5, "inches^2")
  56028. },
  56029. }
  56030. },
  56031. },
  56032. [
  56033. {
  56034. name: "Normal",
  56035. height: math.unit(6 + 3/12, "feet"),
  56036. default: true
  56037. },
  56038. ]
  56039. ))
  56040. characterMakers.push(() => makeCharacter(
  56041. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  56042. {
  56043. back: {
  56044. height: math.unit(1.6, "meters"),
  56045. weight: math.unit(150, "lb"),
  56046. name: "Back",
  56047. image: {
  56048. source: "./media/characters/zari/back.svg",
  56049. extra: 424/411,
  56050. bottom: 32/456
  56051. },
  56052. extraAttributes: {
  56053. "bladderCapacity": {
  56054. name: "Bladder Size",
  56055. power: 3,
  56056. type: "volume",
  56057. base: math.unit(500, "mL")
  56058. },
  56059. "bladderFlow": {
  56060. name: "Flow Rate",
  56061. power: 3,
  56062. type: "volume",
  56063. base: math.unit(25, "mL")
  56064. },
  56065. }
  56066. },
  56067. },
  56068. [
  56069. {
  56070. name: "Normal",
  56071. height: math.unit(1.6, "meters"),
  56072. default: true
  56073. },
  56074. ]
  56075. ))
  56076. characterMakers.push(() => makeCharacter(
  56077. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  56078. {
  56079. front: {
  56080. height: math.unit(25, "feet"),
  56081. weight: math.unit(5, "tons"),
  56082. name: "Front",
  56083. image: {
  56084. source: "./media/characters/charlie-human/front.svg",
  56085. extra: 1870/1740,
  56086. bottom: 102/1972
  56087. },
  56088. extraAttributes: {
  56089. "dickLength": {
  56090. name: "Dick Length",
  56091. power: 1,
  56092. type: "length",
  56093. base: math.unit(9, "feet")
  56094. },
  56095. }
  56096. },
  56097. back: {
  56098. height: math.unit(25, "feet"),
  56099. weight: math.unit(5, "tons"),
  56100. name: "Back",
  56101. image: {
  56102. source: "./media/characters/charlie-human/back.svg",
  56103. extra: 1858/1733,
  56104. bottom: 105/1963
  56105. },
  56106. extraAttributes: {
  56107. "dickLength": {
  56108. name: "Dick Length",
  56109. power: 1,
  56110. type: "length",
  56111. base: math.unit(9, "feet")
  56112. },
  56113. }
  56114. },
  56115. },
  56116. [
  56117. {
  56118. name: "\"Normal\"",
  56119. height: math.unit(6 + 4/12, "feet")
  56120. },
  56121. {
  56122. name: "Big",
  56123. height: math.unit(25, "feet"),
  56124. default: true
  56125. },
  56126. ]
  56127. ))
  56128. characterMakers.push(() => makeCharacter(
  56129. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  56130. {
  56131. front: {
  56132. height: math.unit(6 + 4/12, "feet"),
  56133. weight: math.unit(320, "lb"),
  56134. name: "Front",
  56135. image: {
  56136. source: "./media/characters/ookitsu/front.svg",
  56137. extra: 1160/976,
  56138. bottom: 38/1198
  56139. }
  56140. },
  56141. frontNsfw: {
  56142. height: math.unit(6 + 4/12, "feet"),
  56143. weight: math.unit(320, "lb"),
  56144. name: "Front (NSFW)",
  56145. image: {
  56146. source: "./media/characters/ookitsu/front-nsfw.svg",
  56147. extra: 1160/976,
  56148. bottom: 38/1198
  56149. }
  56150. },
  56151. back: {
  56152. height: math.unit(6 + 4/12, "feet"),
  56153. weight: math.unit(320, "lb"),
  56154. name: "Back",
  56155. image: {
  56156. source: "./media/characters/ookitsu/back.svg",
  56157. extra: 1030/975,
  56158. bottom: 70/1100
  56159. }
  56160. },
  56161. head: {
  56162. height: math.unit(1.79, "feet"),
  56163. name: "Head",
  56164. image: {
  56165. source: "./media/characters/ookitsu/head.svg"
  56166. }
  56167. },
  56168. hand: {
  56169. height: math.unit(0.92, "feet"),
  56170. name: "Hand",
  56171. image: {
  56172. source: "./media/characters/ookitsu/hand.svg"
  56173. }
  56174. },
  56175. tails: {
  56176. height: math.unit(3.3, "feet"),
  56177. name: "Tails",
  56178. image: {
  56179. source: "./media/characters/ookitsu/tails.svg"
  56180. }
  56181. },
  56182. dick: {
  56183. height: math.unit(1.10833, "feet"),
  56184. name: "Dick",
  56185. image: {
  56186. source: "./media/characters/ookitsu/dick.svg"
  56187. }
  56188. },
  56189. },
  56190. [
  56191. {
  56192. name: "Normal",
  56193. height: math.unit(6 + 4/12, "feet"),
  56194. default: true
  56195. },
  56196. {
  56197. name: "Macro",
  56198. height: math.unit(30, "feet")
  56199. },
  56200. ]
  56201. ))
  56202. characterMakers.push(() => makeCharacter(
  56203. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56204. {
  56205. anthroFront: {
  56206. height: math.unit(6, "feet"),
  56207. weight: math.unit(250, "lb"),
  56208. name: "Front",
  56209. image: {
  56210. source: "./media/characters/jhusky/anthro-front.svg",
  56211. extra: 474/439,
  56212. bottom: 7/481
  56213. },
  56214. form: "anthro",
  56215. default: true
  56216. },
  56217. taurSideSfw: {
  56218. height: math.unit(6 + 4/12, "feet"),
  56219. weight: math.unit(500, "lb"),
  56220. name: "Side (SFW)",
  56221. image: {
  56222. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56223. extra: 1741/1629,
  56224. bottom: 196/1937
  56225. },
  56226. form: "taur",
  56227. default: true
  56228. },
  56229. taurSideNsfw: {
  56230. height: math.unit(6 + 4/12, "feet"),
  56231. weight: math.unit(500, "lb"),
  56232. name: "Taur (NSFW)",
  56233. image: {
  56234. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56235. extra: 1741/1629,
  56236. bottom: 196/1937
  56237. },
  56238. form: "taur",
  56239. },
  56240. },
  56241. [
  56242. {
  56243. name: "Huge",
  56244. height: math.unit(500, "feet"),
  56245. form: "anthro"
  56246. },
  56247. {
  56248. name: "Macro",
  56249. height: math.unit(1000, "feet"),
  56250. default: true,
  56251. form: "anthro"
  56252. },
  56253. {
  56254. name: "Megamacro",
  56255. height: math.unit(10000, "feet"),
  56256. form: "anthro"
  56257. },
  56258. {
  56259. name: "Huge",
  56260. height: math.unit(528, "feet"),
  56261. form: "taur"
  56262. },
  56263. {
  56264. name: "Macro",
  56265. height: math.unit(1056, "feet"),
  56266. default: true,
  56267. form: "taur"
  56268. },
  56269. {
  56270. name: "Megamacro",
  56271. height: math.unit(10556, "feet"),
  56272. form: "taur"
  56273. },
  56274. ],
  56275. {
  56276. "anthro": {
  56277. name: "Anthro",
  56278. default: true
  56279. },
  56280. "taur": {
  56281. name: "Taur",
  56282. },
  56283. }
  56284. ))
  56285. characterMakers.push(() => makeCharacter(
  56286. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56287. {
  56288. front: {
  56289. height: math.unit(8, "feet"),
  56290. weight: math.unit(500, "lb"),
  56291. name: "Front",
  56292. image: {
  56293. source: "./media/characters/armail/front.svg",
  56294. extra: 1753/1669,
  56295. bottom: 155/1908
  56296. }
  56297. },
  56298. back: {
  56299. height: math.unit(8, "feet"),
  56300. weight: math.unit(500, "lb"),
  56301. name: "Back",
  56302. image: {
  56303. source: "./media/characters/armail/back.svg",
  56304. extra: 1872/1803,
  56305. bottom: 63/1935
  56306. }
  56307. },
  56308. },
  56309. [
  56310. {
  56311. name: "Micro",
  56312. height: math.unit(0.25, "feet")
  56313. },
  56314. {
  56315. name: "Normal",
  56316. height: math.unit(8, "feet"),
  56317. default: true
  56318. },
  56319. {
  56320. name: "Mini-macro",
  56321. height: math.unit(30, "feet")
  56322. },
  56323. {
  56324. name: "Macro",
  56325. height: math.unit(400, "feet")
  56326. },
  56327. {
  56328. name: "Mega-macro",
  56329. height: math.unit(6000, "feet")
  56330. },
  56331. ]
  56332. ))
  56333. characterMakers.push(() => makeCharacter(
  56334. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56335. {
  56336. front: {
  56337. height: math.unit(6 + 7/12, "feet"),
  56338. weight: math.unit(210, "lb"),
  56339. name: "Front",
  56340. image: {
  56341. source: "./media/characters/wilfred-t-buxton/front.svg",
  56342. extra: 1068/882,
  56343. bottom: 28/1096
  56344. }
  56345. },
  56346. },
  56347. [
  56348. {
  56349. name: "Normal",
  56350. height: math.unit(6 + 7/12, "feet"),
  56351. default: true
  56352. },
  56353. ]
  56354. ))
  56355. characterMakers.push(() => makeCharacter(
  56356. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56357. {
  56358. front: {
  56359. height: math.unit(5 + 2/12, "feet"),
  56360. weight: math.unit(120, "lb"),
  56361. name: "Front",
  56362. image: {
  56363. source: "./media/characters/leighton-marrow/front.svg",
  56364. extra: 441/409,
  56365. bottom: 37/478
  56366. }
  56367. },
  56368. },
  56369. [
  56370. {
  56371. name: "Normal",
  56372. height: math.unit(5 + 2/12, "feet"),
  56373. default: true
  56374. },
  56375. ]
  56376. ))
  56377. characterMakers.push(() => makeCharacter(
  56378. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56379. {
  56380. front: {
  56381. height: math.unit(4, "meters"),
  56382. weight: math.unit(1200, "kg"),
  56383. name: "Front",
  56384. image: {
  56385. source: "./media/characters/licos/front.svg",
  56386. extra: 1727/1604,
  56387. bottom: 101/1828
  56388. },
  56389. form: "anthro",
  56390. default: true
  56391. },
  56392. taur_side: {
  56393. height: math.unit(20, "meters"),
  56394. weight: math.unit(1100000, "kg"),
  56395. name: "Side",
  56396. image: {
  56397. source: "./media/characters/licos/taur.svg",
  56398. extra: 1158/1091,
  56399. bottom: 80/1238
  56400. },
  56401. form: "taur",
  56402. default: true
  56403. },
  56404. },
  56405. [
  56406. {
  56407. name: "Normal",
  56408. height: math.unit(4, "meters"),
  56409. default: true,
  56410. form: "anthro"
  56411. },
  56412. {
  56413. name: "Normal",
  56414. height: math.unit(20, "meters"),
  56415. default: true,
  56416. form: "taur"
  56417. },
  56418. ],
  56419. {
  56420. "anthro": {
  56421. name: "Anthro",
  56422. default: true
  56423. },
  56424. "taur": {
  56425. name: "Taur",
  56426. },
  56427. }
  56428. ))
  56429. characterMakers.push(() => makeCharacter(
  56430. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56431. {
  56432. front: {
  56433. height: math.unit(10 + 3/12, "feet"),
  56434. name: "Front",
  56435. image: {
  56436. source: "./media/characters/theo-monkey/front.svg",
  56437. extra: 1735/1658,
  56438. bottom: 73/1808
  56439. }
  56440. },
  56441. back: {
  56442. height: math.unit(10 + 3/12, "feet"),
  56443. name: "Back",
  56444. image: {
  56445. source: "./media/characters/theo-monkey/back.svg",
  56446. extra: 1742/1664,
  56447. bottom: 33/1775
  56448. }
  56449. },
  56450. head: {
  56451. height: math.unit(2.29, "feet"),
  56452. name: "Head",
  56453. image: {
  56454. source: "./media/characters/theo-monkey/head.svg"
  56455. }
  56456. },
  56457. handPalm: {
  56458. height: math.unit(1.73, "feet"),
  56459. name: "Hand (Palm)",
  56460. image: {
  56461. source: "./media/characters/theo-monkey/hand-palm.svg"
  56462. }
  56463. },
  56464. handBack: {
  56465. height: math.unit(1.63, "feet"),
  56466. name: "Hand (Back)",
  56467. image: {
  56468. source: "./media/characters/theo-monkey/hand-back.svg"
  56469. }
  56470. },
  56471. footSole: {
  56472. height: math.unit(2.15, "feet"),
  56473. name: "Foot (Sole)",
  56474. image: {
  56475. source: "./media/characters/theo-monkey/foot-sole.svg"
  56476. }
  56477. },
  56478. footSide: {
  56479. height: math.unit(1.6, "feet"),
  56480. name: "Foot (Side)",
  56481. image: {
  56482. source: "./media/characters/theo-monkey/foot-side.svg"
  56483. }
  56484. },
  56485. },
  56486. [
  56487. {
  56488. name: "Normal",
  56489. height: math.unit(10 + 3/12, "feet"),
  56490. default: true
  56491. },
  56492. ]
  56493. ))
  56494. characterMakers.push(() => makeCharacter(
  56495. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56496. {
  56497. front: {
  56498. height: math.unit(11, "feet"),
  56499. weight: math.unit(3000, "lb"),
  56500. preyCapacity: math.unit(10, "people"),
  56501. name: "Front",
  56502. image: {
  56503. source: "./media/characters/brook/front.svg",
  56504. extra: 909/835,
  56505. bottom: 108/1017
  56506. }
  56507. },
  56508. back: {
  56509. height: math.unit(11, "feet"),
  56510. weight: math.unit(3000, "lb"),
  56511. preyCapacity: math.unit(10, "people"),
  56512. name: "Back",
  56513. image: {
  56514. source: "./media/characters/brook/back.svg",
  56515. extra: 976/916,
  56516. bottom: 34/1010
  56517. }
  56518. },
  56519. backAlt: {
  56520. height: math.unit(11, "feet"),
  56521. weight: math.unit(3000, "lb"),
  56522. preyCapacity: math.unit(10, "people"),
  56523. name: "Back (Alt)",
  56524. image: {
  56525. source: "./media/characters/brook/back-alt.svg",
  56526. extra: 1283/1213,
  56527. bottom: 35/1318
  56528. }
  56529. },
  56530. bust: {
  56531. height: math.unit(9.0859030837, "feet"),
  56532. weight: math.unit(3000, "lb"),
  56533. preyCapacity: math.unit(10, "people"),
  56534. name: "Bust",
  56535. image: {
  56536. source: "./media/characters/brook/bust.svg",
  56537. extra: 2043/1923,
  56538. bottom: 0/2043
  56539. }
  56540. },
  56541. },
  56542. [
  56543. {
  56544. name: "Small",
  56545. height: math.unit(11, "feet"),
  56546. default: true
  56547. },
  56548. {
  56549. name: "Towering",
  56550. height: math.unit(5, "km")
  56551. },
  56552. {
  56553. name: "Enormous",
  56554. height: math.unit(25, "earths")
  56555. },
  56556. ]
  56557. ))
  56558. characterMakers.push(() => makeCharacter(
  56559. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56560. {
  56561. front: {
  56562. height: math.unit(4, "feet"),
  56563. weight: math.unit(150, "lb"),
  56564. name: "Front",
  56565. image: {
  56566. source: "./media/characters/squishi/front.svg",
  56567. extra: 1428/1271,
  56568. bottom: 30/1458
  56569. },
  56570. extraAttributes: {
  56571. "pawSize": {
  56572. name: "Paw Size",
  56573. power: 1,
  56574. type: "length",
  56575. base: math.unit(14, "ShoeSizeMensUS"),
  56576. defaultUnit: "ShoeSizeMensUS"
  56577. },
  56578. }
  56579. },
  56580. side: {
  56581. height: math.unit(4, "feet"),
  56582. weight: math.unit(150, "lb"),
  56583. name: "Side",
  56584. image: {
  56585. source: "./media/characters/squishi/side.svg",
  56586. extra: 1428/1271,
  56587. bottom: 30/1458
  56588. },
  56589. extraAttributes: {
  56590. "pawSize": {
  56591. name: "Paw Size",
  56592. power: 1,
  56593. type: "length",
  56594. base: math.unit(14, "ShoeSizeMensUS"),
  56595. defaultUnit: "ShoeSizeMensUS"
  56596. },
  56597. }
  56598. },
  56599. back: {
  56600. height: math.unit(4, "feet"),
  56601. weight: math.unit(150, "lb"),
  56602. name: "Back",
  56603. image: {
  56604. source: "./media/characters/squishi/back.svg",
  56605. extra: 1428/1271,
  56606. bottom: 30/1458
  56607. },
  56608. extraAttributes: {
  56609. "pawSize": {
  56610. name: "Paw Size",
  56611. power: 1,
  56612. type: "length",
  56613. base: math.unit(14, "ShoeSizeMensUS"),
  56614. defaultUnit: "ShoeSizeMensUS"
  56615. },
  56616. }
  56617. },
  56618. },
  56619. [
  56620. {
  56621. name: "Normal",
  56622. height: math.unit(4, "feet"),
  56623. default: true
  56624. },
  56625. ]
  56626. ))
  56627. characterMakers.push(() => makeCharacter(
  56628. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56629. {
  56630. front: {
  56631. height: math.unit(7 + 8/12, "feet"),
  56632. weight: math.unit(333, "lb"),
  56633. name: "Front",
  56634. image: {
  56635. source: "./media/characters/vincent-vasroc/front.svg",
  56636. extra: 1962/1860,
  56637. bottom: 41/2003
  56638. }
  56639. },
  56640. back: {
  56641. height: math.unit(7 + 8/12, "feet"),
  56642. weight: math.unit(333, "lb"),
  56643. name: "Back",
  56644. image: {
  56645. source: "./media/characters/vincent-vasroc/back.svg",
  56646. extra: 1952/1815,
  56647. bottom: 33/1985
  56648. }
  56649. },
  56650. paw: {
  56651. height: math.unit(1.24, "feet"),
  56652. name: "Paw",
  56653. image: {
  56654. source: "./media/characters/vincent-vasroc/paw.svg"
  56655. }
  56656. },
  56657. ear: {
  56658. height: math.unit(0.75, "feet"),
  56659. name: "Ear",
  56660. image: {
  56661. source: "./media/characters/vincent-vasroc/ear.svg"
  56662. }
  56663. },
  56664. },
  56665. [
  56666. {
  56667. name: "Nano",
  56668. height: math.unit(92, "micrometers")
  56669. },
  56670. {
  56671. name: "Normal",
  56672. height: math.unit(7 + 8/12, "feet"),
  56673. default: true
  56674. },
  56675. ]
  56676. ))
  56677. characterMakers.push(() => makeCharacter(
  56678. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56679. {
  56680. frontNsfw: {
  56681. height: math.unit(40, "feet"),
  56682. weight: math.unit(58, "tons"),
  56683. name: "Front (NSFW)",
  56684. image: {
  56685. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56686. extra: 1265/965,
  56687. bottom: 155/1420
  56688. }
  56689. },
  56690. frontSfw: {
  56691. height: math.unit(40, "feet"),
  56692. weight: math.unit(58, "tons"),
  56693. name: "Front (SFW)",
  56694. image: {
  56695. source: "./media/characters/ru-kahn/front-sfw.svg",
  56696. extra: 1265/965,
  56697. bottom: 80/1345
  56698. }
  56699. },
  56700. },
  56701. [
  56702. {
  56703. name: "Small",
  56704. height: math.unit(4, "feet")
  56705. },
  56706. {
  56707. name: "Normal",
  56708. height: math.unit(40, "feet"),
  56709. default: true
  56710. },
  56711. {
  56712. name: "Macro",
  56713. height: math.unit(400, "feet")
  56714. },
  56715. ]
  56716. ))
  56717. characterMakers.push(() => makeCharacter(
  56718. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56719. {
  56720. frontNude: {
  56721. height: math.unit(6 + 5/12, "feet"),
  56722. name: "Front (Nude)",
  56723. image: {
  56724. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56725. extra: 1369/1366,
  56726. bottom: 68/1437
  56727. }
  56728. },
  56729. frontDressed: {
  56730. height: math.unit(6 + 5/12, "feet"),
  56731. name: "Front (Dressed)",
  56732. image: {
  56733. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56734. extra: 1369/1366,
  56735. bottom: 68/1437
  56736. }
  56737. },
  56738. },
  56739. [
  56740. {
  56741. name: "Normal",
  56742. height: math.unit(6 + 5/12, "feet"),
  56743. default: true
  56744. },
  56745. {
  56746. name: "Maximum",
  56747. height: math.unit(1930, "feet")
  56748. },
  56749. ]
  56750. ))
  56751. characterMakers.push(() => makeCharacter(
  56752. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56753. {
  56754. front: {
  56755. height: math.unit(5 + 6/12, "feet"),
  56756. name: "Front",
  56757. image: {
  56758. source: "./media/characters/kaja/front.svg",
  56759. extra: 1874/1514,
  56760. bottom: 117/1991
  56761. }
  56762. },
  56763. },
  56764. [
  56765. {
  56766. name: "Normal",
  56767. height: math.unit(5 + 6/12, "feet"),
  56768. default: true
  56769. },
  56770. ]
  56771. ))
  56772. characterMakers.push(() => makeCharacter(
  56773. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56774. {
  56775. front: {
  56776. height: math.unit(5 + 9/12, "feet"),
  56777. weight: math.unit(200, "lb"),
  56778. name: "Front",
  56779. image: {
  56780. source: "./media/characters/mark-smith/front.svg",
  56781. extra: 1004/943,
  56782. bottom: 58/1062
  56783. }
  56784. },
  56785. back: {
  56786. height: math.unit(5 + 9/12, "feet"),
  56787. weight: math.unit(200, "lb"),
  56788. name: "Back",
  56789. image: {
  56790. source: "./media/characters/mark-smith/back.svg",
  56791. extra: 1023/953,
  56792. bottom: 24/1047
  56793. }
  56794. },
  56795. head: {
  56796. height: math.unit(1.82, "feet"),
  56797. name: "Head",
  56798. image: {
  56799. source: "./media/characters/mark-smith/head.svg"
  56800. }
  56801. },
  56802. hand: {
  56803. height: math.unit(1.4, "feet"),
  56804. name: "Hand",
  56805. image: {
  56806. source: "./media/characters/mark-smith/hand.svg"
  56807. }
  56808. },
  56809. paw: {
  56810. height: math.unit(1.69, "feet"),
  56811. name: "Paw",
  56812. image: {
  56813. source: "./media/characters/mark-smith/paw.svg"
  56814. }
  56815. },
  56816. },
  56817. [
  56818. {
  56819. name: "Micro",
  56820. height: math.unit(0.25, "inches")
  56821. },
  56822. {
  56823. name: "Normal",
  56824. height: math.unit(5 + 9/12, "feet"),
  56825. default: true
  56826. },
  56827. {
  56828. name: "Macro",
  56829. height: math.unit(500, "feet")
  56830. },
  56831. ]
  56832. ))
  56833. characterMakers.push(() => makeCharacter(
  56834. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56835. {
  56836. frontNude: {
  56837. height: math.unit(6, "feet"),
  56838. name: "Front (Nude)",
  56839. image: {
  56840. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56841. extra: 1384/1321,
  56842. bottom: 57/1441
  56843. }
  56844. },
  56845. frontDressed: {
  56846. height: math.unit(6, "feet"),
  56847. name: "Front (Dressed)",
  56848. image: {
  56849. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56850. extra: 1384/1321,
  56851. bottom: 57/1441
  56852. }
  56853. },
  56854. },
  56855. [
  56856. {
  56857. name: "Normal",
  56858. height: math.unit(6, "feet"),
  56859. default: true
  56860. },
  56861. {
  56862. name: "Maximum",
  56863. height: math.unit(1776, "feet")
  56864. },
  56865. ]
  56866. ))
  56867. characterMakers.push(() => makeCharacter(
  56868. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56869. {
  56870. front: {
  56871. height: math.unit(2 + 4/12, "feet"),
  56872. weight: math.unit(350, "lb"),
  56873. name: "Front",
  56874. image: {
  56875. source: "./media/characters/devos/front.svg",
  56876. extra: 958/852,
  56877. bottom: 143/1101
  56878. }
  56879. },
  56880. },
  56881. [
  56882. {
  56883. name: "Base",
  56884. height: math.unit(2 + 4/12, "feet"),
  56885. default: true
  56886. },
  56887. ]
  56888. ))
  56889. characterMakers.push(() => makeCharacter(
  56890. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56891. {
  56892. front: {
  56893. height: math.unit(9 + 2/12, "feet"),
  56894. name: "Front",
  56895. image: {
  56896. source: "./media/characters/hiveheart/front.svg",
  56897. extra: 394/364,
  56898. bottom: 65/459
  56899. }
  56900. },
  56901. back: {
  56902. height: math.unit(9 + 2/12, "feet"),
  56903. name: "Back",
  56904. image: {
  56905. source: "./media/characters/hiveheart/back.svg",
  56906. extra: 374/357,
  56907. bottom: 63/437
  56908. }
  56909. },
  56910. },
  56911. [
  56912. {
  56913. name: "Base",
  56914. height: math.unit(9 + 2/12, "feet"),
  56915. default: true
  56916. },
  56917. ]
  56918. ))
  56919. characterMakers.push(() => makeCharacter(
  56920. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56921. {
  56922. front: {
  56923. height: math.unit(2.5, "inches"),
  56924. weight: math.unit(0.6, "oz"),
  56925. name: "Front",
  56926. image: {
  56927. source: "./media/characters/bryn/front.svg",
  56928. extra: 1484/1119,
  56929. bottom: 66/1550
  56930. }
  56931. },
  56932. back: {
  56933. height: math.unit(2.5, "inches"),
  56934. weight: math.unit(0.6, "oz"),
  56935. name: "Back",
  56936. image: {
  56937. source: "./media/characters/bryn/back.svg",
  56938. extra: 1472/1170,
  56939. bottom: 32/1504
  56940. }
  56941. },
  56942. wings: {
  56943. height: math.unit(2.5, "inches"),
  56944. weight: math.unit(0.6, "oz"),
  56945. name: "Wings",
  56946. image: {
  56947. source: "./media/characters/bryn/wings.svg",
  56948. extra: 567/448,
  56949. bottom: 10/577
  56950. }
  56951. },
  56952. dressed: {
  56953. height: math.unit(2.5, "inches"),
  56954. weight: math.unit(0.6, "oz"),
  56955. name: "Dressed",
  56956. image: {
  56957. source: "./media/characters/bryn/dressed.svg",
  56958. extra: 719/589,
  56959. bottom: 54/773
  56960. }
  56961. },
  56962. head: {
  56963. height: math.unit(1.75, "inches"),
  56964. name: "Head",
  56965. image: {
  56966. source: "./media/characters/bryn/head.svg"
  56967. }
  56968. },
  56969. foot: {
  56970. height: math.unit(0.4, "inches"),
  56971. name: "Foot",
  56972. image: {
  56973. source: "./media/characters/bryn/foot.svg"
  56974. }
  56975. },
  56976. },
  56977. [
  56978. {
  56979. name: "Normal",
  56980. height: math.unit(2.5, "inches"),
  56981. default: true
  56982. },
  56983. ]
  56984. ))
  56985. characterMakers.push(() => makeCharacter(
  56986. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56987. {
  56988. side: {
  56989. height: math.unit(7, "feet"),
  56990. weight: math.unit(657, "kg"),
  56991. name: "Side",
  56992. image: {
  56993. source: "./media/characters/delta/side.svg",
  56994. extra: 781/212,
  56995. bottom: 7/788
  56996. },
  56997. extraAttributes: {
  56998. "wingspan": {
  56999. name: "Wingspan",
  57000. power: 1,
  57001. type: "length",
  57002. base: math.unit(48, "feet")
  57003. },
  57004. "length": {
  57005. name: "Length",
  57006. power: 1,
  57007. type: "length",
  57008. base: math.unit(21, "feet")
  57009. },
  57010. "pawSize": {
  57011. name: "Paw Size",
  57012. power: 2,
  57013. type: "area",
  57014. base: math.unit(1.5*1.4, "feet^2")
  57015. },
  57016. }
  57017. },
  57018. },
  57019. [
  57020. {
  57021. name: "Normal",
  57022. height: math.unit(6, "feet"),
  57023. default: true
  57024. },
  57025. ]
  57026. ))
  57027. characterMakers.push(() => makeCharacter(
  57028. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  57029. {
  57030. front: {
  57031. height: math.unit(6, "feet"),
  57032. name: "Front",
  57033. image: {
  57034. source: "./media/characters/pyrow/front.svg",
  57035. extra: 513/486,
  57036. bottom: 14/527
  57037. }
  57038. },
  57039. frontWing: {
  57040. height: math.unit(6, "feet"),
  57041. name: "Front (Wing)",
  57042. image: {
  57043. source: "./media/characters/pyrow/front-wing.svg",
  57044. extra: 539/383,
  57045. bottom: 20/559
  57046. }
  57047. },
  57048. back: {
  57049. height: math.unit(6, "feet"),
  57050. name: "Back",
  57051. image: {
  57052. source: "./media/characters/pyrow/back.svg",
  57053. extra: 500/473,
  57054. bottom: 9/509
  57055. }
  57056. },
  57057. },
  57058. [
  57059. {
  57060. name: "Normal",
  57061. height: math.unit(6, "feet"),
  57062. default: true
  57063. },
  57064. ]
  57065. ))
  57066. characterMakers.push(() => makeCharacter(
  57067. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  57068. {
  57069. front: {
  57070. height: math.unit(5, "meters"),
  57071. weight: math.unit(3, "tonnes"),
  57072. name: "Front",
  57073. image: {
  57074. source: "./media/characters/velikan/front.svg",
  57075. extra: 867/744,
  57076. bottom: 71/938
  57077. },
  57078. extraAttributes: {
  57079. "shoeSize": {
  57080. name: "Shoe Size",
  57081. power: 1,
  57082. type: "length",
  57083. base: math.unit(135, "ShoeSizeUK"),
  57084. defaultUnit: "ShoeSizeUK"
  57085. },
  57086. }
  57087. },
  57088. },
  57089. [
  57090. {
  57091. name: "Normal",
  57092. height: math.unit(5, "meters"),
  57093. default: true
  57094. },
  57095. {
  57096. name: "Macro",
  57097. height: math.unit(1, "km")
  57098. },
  57099. {
  57100. name: "Mega Macro",
  57101. height: math.unit(100, "km")
  57102. },
  57103. {
  57104. name: "Giga Macro",
  57105. height: math.unit(2, "megameters")
  57106. },
  57107. {
  57108. name: "Planetary",
  57109. height: math.unit(22, "megameters")
  57110. },
  57111. {
  57112. name: "Solar",
  57113. height: math.unit(8, "gigameters")
  57114. },
  57115. {
  57116. name: "Cosmic",
  57117. height: math.unit(10, "zettameters")
  57118. },
  57119. {
  57120. name: "Omni",
  57121. height: math.unit(9e260, "multiverses")
  57122. },
  57123. ]
  57124. ))
  57125. characterMakers.push(() => makeCharacter(
  57126. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  57127. {
  57128. front: {
  57129. height: math.unit(4 + 3/12, "feet"),
  57130. weight: math.unit(90, "lb"),
  57131. name: "Front",
  57132. image: {
  57133. source: "./media/characters/sabiki/front.svg",
  57134. extra: 1662/1423,
  57135. bottom: 65/1727
  57136. }
  57137. },
  57138. },
  57139. [
  57140. {
  57141. name: "Normal",
  57142. height: math.unit(4 + 3/12, "feet"),
  57143. default: true
  57144. },
  57145. ]
  57146. ))
  57147. characterMakers.push(() => makeCharacter(
  57148. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  57149. {
  57150. frontSfw: {
  57151. height: math.unit(2, "mm"),
  57152. name: "Front (SFW)",
  57153. image: {
  57154. source: "./media/characters/carmel/front-sfw.svg",
  57155. extra: 1131/1006,
  57156. bottom: 66/1197
  57157. }
  57158. },
  57159. frontNsfw: {
  57160. height: math.unit(2, "mm"),
  57161. name: "Front (NSFW)",
  57162. image: {
  57163. source: "./media/characters/carmel/front-nsfw.svg",
  57164. extra: 1131/1006,
  57165. bottom: 66/1197
  57166. }
  57167. },
  57168. foot: {
  57169. height: math.unit(0.3, "mm"),
  57170. name: "Foot",
  57171. image: {
  57172. source: "./media/characters/carmel/foot.svg"
  57173. }
  57174. },
  57175. tongue: {
  57176. height: math.unit(0.71, "mm"),
  57177. name: "Tongue",
  57178. image: {
  57179. source: "./media/characters/carmel/tongue.svg"
  57180. }
  57181. },
  57182. dick: {
  57183. height: math.unit(0.085, "mm"),
  57184. name: "Dick",
  57185. image: {
  57186. source: "./media/characters/carmel/dick.svg"
  57187. }
  57188. },
  57189. },
  57190. [
  57191. {
  57192. name: "Micro",
  57193. height: math.unit(2, "mm"),
  57194. default: true
  57195. },
  57196. {
  57197. name: "Normal",
  57198. height: math.unit(4 + 8/12, "feet")
  57199. },
  57200. {
  57201. name: "Mega Macro",
  57202. height: math.unit(250, "feet")
  57203. },
  57204. {
  57205. name: "BIGGER",
  57206. height: math.unit(1000, "feet")
  57207. },
  57208. {
  57209. name: "BIGGEST",
  57210. height: math.unit(2, "miles")
  57211. },
  57212. ]
  57213. ))
  57214. characterMakers.push(() => makeCharacter(
  57215. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57216. {
  57217. front: {
  57218. height: math.unit(6.5, "feet"),
  57219. weight: math.unit(198, "lb"),
  57220. name: "Front",
  57221. image: {
  57222. source: "./media/characters/tamani/anthro.svg",
  57223. extra: 930/890,
  57224. bottom: 34/964
  57225. },
  57226. form: "anthro",
  57227. default: true
  57228. },
  57229. side: {
  57230. height: math.unit(6, "feet"),
  57231. weight: math.unit(198*2, "lb"),
  57232. name: "Side",
  57233. image: {
  57234. source: "./media/characters/tamani/feral.svg",
  57235. extra: 559/519,
  57236. bottom: 43/602
  57237. },
  57238. form: "feral"
  57239. },
  57240. },
  57241. [
  57242. {
  57243. name: "Normal",
  57244. height: math.unit(6.5, "feet"),
  57245. default: true,
  57246. form: "anthro"
  57247. },
  57248. {
  57249. name: "Normal",
  57250. height: math.unit(6, "feet"),
  57251. default: true,
  57252. form: "feral"
  57253. },
  57254. ],
  57255. {
  57256. "anthro": {
  57257. name: "Anthro",
  57258. default: true
  57259. },
  57260. "feral": {
  57261. name: "Feral",
  57262. },
  57263. }
  57264. ))
  57265. characterMakers.push(() => makeCharacter(
  57266. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57267. {
  57268. front: {
  57269. height: math.unit(4 + 1/12, "feet"),
  57270. weight: math.unit(114, "lb"),
  57271. name: "Front",
  57272. image: {
  57273. source: "./media/characters/dex/front.svg",
  57274. extra: 787/680,
  57275. bottom: 18/805
  57276. }
  57277. },
  57278. side: {
  57279. height: math.unit(4 + 1/12, "feet"),
  57280. weight: math.unit(114, "lb"),
  57281. name: "Side",
  57282. image: {
  57283. source: "./media/characters/dex/side.svg",
  57284. extra: 785/680,
  57285. bottom: 12/797
  57286. }
  57287. },
  57288. back: {
  57289. height: math.unit(4 + 1/12, "feet"),
  57290. weight: math.unit(114, "lb"),
  57291. name: "Back",
  57292. image: {
  57293. source: "./media/characters/dex/back.svg",
  57294. extra: 785/681,
  57295. bottom: 17/802
  57296. }
  57297. },
  57298. loungewear: {
  57299. height: math.unit(4 + 1/12, "feet"),
  57300. weight: math.unit(114, "lb"),
  57301. name: "Loungewear",
  57302. image: {
  57303. source: "./media/characters/dex/loungewear.svg",
  57304. extra: 787/680,
  57305. bottom: 18/805
  57306. }
  57307. },
  57308. workout: {
  57309. height: math.unit(4 + 1/12, "feet"),
  57310. weight: math.unit(114, "lb"),
  57311. name: "Workout",
  57312. image: {
  57313. source: "./media/characters/dex/workout.svg",
  57314. extra: 787/680,
  57315. bottom: 18/805
  57316. }
  57317. },
  57318. schoolUniform: {
  57319. height: math.unit(4 + 1/12, "feet"),
  57320. weight: math.unit(114, "lb"),
  57321. name: "School-uniform",
  57322. image: {
  57323. source: "./media/characters/dex/school-uniform.svg",
  57324. extra: 787/680,
  57325. bottom: 18/805
  57326. }
  57327. },
  57328. maw: {
  57329. height: math.unit(0.55, "feet"),
  57330. name: "Maw",
  57331. image: {
  57332. source: "./media/characters/dex/maw.svg"
  57333. }
  57334. },
  57335. paw: {
  57336. height: math.unit(0.87, "feet"),
  57337. name: "Paw",
  57338. image: {
  57339. source: "./media/characters/dex/paw.svg"
  57340. }
  57341. },
  57342. bust: {
  57343. height: math.unit(1.67, "feet"),
  57344. name: "Bust",
  57345. image: {
  57346. source: "./media/characters/dex/bust.svg"
  57347. }
  57348. },
  57349. },
  57350. [
  57351. {
  57352. name: "Normal",
  57353. height: math.unit(4 + 1/12, "feet"),
  57354. default: true
  57355. },
  57356. ]
  57357. ))
  57358. characterMakers.push(() => makeCharacter(
  57359. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57360. {
  57361. front: {
  57362. height: math.unit(4 + 3/12, "feet"),
  57363. weight: math.unit(60, "lb"),
  57364. name: "Front",
  57365. image: {
  57366. source: "./media/characters/silke/front.svg",
  57367. extra: 1334/1122,
  57368. bottom: 21/1355
  57369. }
  57370. },
  57371. back: {
  57372. height: math.unit(4 + 3/12, "feet"),
  57373. weight: math.unit(60, "lb"),
  57374. name: "Back",
  57375. image: {
  57376. source: "./media/characters/silke/back.svg",
  57377. extra: 1328/1092,
  57378. bottom: 16/1344
  57379. }
  57380. },
  57381. dressed: {
  57382. height: math.unit(4 + 3/12, "feet"),
  57383. weight: math.unit(60, "lb"),
  57384. name: "Dressed",
  57385. image: {
  57386. source: "./media/characters/silke/dressed.svg",
  57387. extra: 1334/1122,
  57388. bottom: 43/1377
  57389. }
  57390. },
  57391. },
  57392. [
  57393. {
  57394. name: "Normal",
  57395. height: math.unit(4 + 3/12, "feet"),
  57396. default: true
  57397. },
  57398. ]
  57399. ))
  57400. characterMakers.push(() => makeCharacter(
  57401. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57402. {
  57403. front: {
  57404. height: math.unit(1.58, "meters"),
  57405. weight: math.unit(47, "kg"),
  57406. name: "Front",
  57407. image: {
  57408. source: "./media/characters/wireshark/front.svg",
  57409. extra: 883/838,
  57410. bottom: 66/949
  57411. }
  57412. },
  57413. },
  57414. [
  57415. {
  57416. name: "Normal",
  57417. height: math.unit(1.58, "meters"),
  57418. default: true
  57419. },
  57420. ]
  57421. ))
  57422. characterMakers.push(() => makeCharacter(
  57423. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57424. {
  57425. front: {
  57426. height: math.unit(6, "meters"),
  57427. weight: math.unit(15000, "kg"),
  57428. name: "Front",
  57429. image: {
  57430. source: "./media/characters/gallagher/front.svg",
  57431. extra: 532/493,
  57432. bottom: 0/532
  57433. }
  57434. },
  57435. },
  57436. [
  57437. {
  57438. name: "Normal",
  57439. height: math.unit(6, "meters"),
  57440. default: true
  57441. },
  57442. ]
  57443. ))
  57444. characterMakers.push(() => makeCharacter(
  57445. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57446. {
  57447. front: {
  57448. height: math.unit(2.4, "meters"),
  57449. weight: math.unit(270, "kg"),
  57450. name: "Front",
  57451. image: {
  57452. source: "./media/characters/alice/front.svg",
  57453. extra: 950/900,
  57454. bottom: 36/986
  57455. }
  57456. },
  57457. side: {
  57458. height: math.unit(2.4, "meters"),
  57459. weight: math.unit(270, "kg"),
  57460. name: "Side",
  57461. image: {
  57462. source: "./media/characters/alice/side.svg",
  57463. extra: 921/876,
  57464. bottom: 19/940
  57465. }
  57466. },
  57467. dressed: {
  57468. height: math.unit(2.4, "meters"),
  57469. weight: math.unit(270, "kg"),
  57470. name: "Dressed",
  57471. image: {
  57472. source: "./media/characters/alice/dressed.svg",
  57473. extra: 905/850,
  57474. bottom: 81/986
  57475. }
  57476. },
  57477. fishnet: {
  57478. height: math.unit(2.4, "meters"),
  57479. weight: math.unit(270, "kg"),
  57480. name: "Fishnet",
  57481. image: {
  57482. source: "./media/characters/alice/fishnet.svg",
  57483. extra: 905/850,
  57484. bottom: 81/986
  57485. }
  57486. },
  57487. },
  57488. [
  57489. {
  57490. name: "Normal",
  57491. height: math.unit(2.4, "meters"),
  57492. default: true
  57493. },
  57494. ]
  57495. ))
  57496. characterMakers.push(() => makeCharacter(
  57497. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57498. {
  57499. front: {
  57500. height: math.unit(175.25, "feet"),
  57501. name: "Front",
  57502. image: {
  57503. source: "./media/characters/fio/front.svg",
  57504. extra: 1883/1591,
  57505. bottom: 34/1917
  57506. }
  57507. },
  57508. },
  57509. [
  57510. {
  57511. name: "Normal",
  57512. height: math.unit(175.25, "cm"),
  57513. default: true
  57514. },
  57515. ]
  57516. ))
  57517. characterMakers.push(() => makeCharacter(
  57518. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57519. {
  57520. side: {
  57521. height: math.unit(6, "meters"),
  57522. weight: math.unit(3400, "kg"),
  57523. preyCapacity: math.unit(1700, "liters"),
  57524. name: "Side",
  57525. image: {
  57526. source: "./media/characters/hass/side.svg",
  57527. extra: 1058/997,
  57528. bottom: 177/1235
  57529. }
  57530. },
  57531. feeding: {
  57532. height: math.unit(6*0.63, "meters"),
  57533. weight: math.unit(3400, "kg"),
  57534. preyCapacity: math.unit(1700, "liters"),
  57535. name: "Feeding",
  57536. image: {
  57537. source: "./media/characters/hass/feeding.svg",
  57538. extra: 689/579,
  57539. bottom: 146/835
  57540. }
  57541. },
  57542. guts: {
  57543. height: math.unit(6, "meters"),
  57544. weight: math.unit(3400, "kg"),
  57545. name: "Guts",
  57546. image: {
  57547. source: "./media/characters/hass/guts.svg",
  57548. extra: 1223/1198,
  57549. bottom: 182/1405
  57550. }
  57551. },
  57552. dickFront: {
  57553. height: math.unit(1.4, "meters"),
  57554. name: "Dick (Front)",
  57555. image: {
  57556. source: "./media/characters/hass/dick-front.svg"
  57557. }
  57558. },
  57559. dickSide: {
  57560. height: math.unit(1.3, "meters"),
  57561. name: "Dick (Side)",
  57562. image: {
  57563. source: "./media/characters/hass/dick-side.svg"
  57564. }
  57565. },
  57566. dickBack: {
  57567. height: math.unit(1.4, "meters"),
  57568. name: "Dick (Back)",
  57569. image: {
  57570. source: "./media/characters/hass/dick-back.svg"
  57571. }
  57572. },
  57573. },
  57574. [
  57575. {
  57576. name: "Normal",
  57577. height: math.unit(6, "meters"),
  57578. default: true
  57579. },
  57580. ]
  57581. ))
  57582. characterMakers.push(() => makeCharacter(
  57583. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57584. {
  57585. front: {
  57586. height: math.unit(4, "feet"),
  57587. weight: math.unit(60, "lb"),
  57588. name: "Front",
  57589. image: {
  57590. source: "./media/characters/hickory-finnegan/front.svg",
  57591. extra: 444/411,
  57592. bottom: 10/454
  57593. }
  57594. },
  57595. side: {
  57596. height: math.unit(4, "feet"),
  57597. weight: math.unit(60, "lb"),
  57598. name: "Side",
  57599. image: {
  57600. source: "./media/characters/hickory-finnegan/side.svg",
  57601. extra: 444/411,
  57602. bottom: 10/454
  57603. }
  57604. },
  57605. back: {
  57606. height: math.unit(4, "feet"),
  57607. weight: math.unit(60, "lb"),
  57608. name: "Back",
  57609. image: {
  57610. source: "./media/characters/hickory-finnegan/back.svg",
  57611. extra: 444/411,
  57612. bottom: 10/454
  57613. }
  57614. },
  57615. },
  57616. [
  57617. {
  57618. name: "Normal",
  57619. height: math.unit(4, "feet"),
  57620. default: true
  57621. },
  57622. ]
  57623. ))
  57624. characterMakers.push(() => makeCharacter(
  57625. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57626. {
  57627. snivy_front: {
  57628. height: math.unit(2, "feet"),
  57629. weight: math.unit(17.9, "lb"),
  57630. name: "Front",
  57631. image: {
  57632. source: "./media/characters/robin-phox/snivy-front.svg",
  57633. extra: 569/504,
  57634. bottom: 33/602
  57635. },
  57636. form: "snivy",
  57637. default: true
  57638. },
  57639. snivy_frontNsfw: {
  57640. height: math.unit(2, "feet"),
  57641. weight: math.unit(17.9, "lb"),
  57642. name: "Front (NSFW)",
  57643. image: {
  57644. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57645. extra: 569/504,
  57646. bottom: 33/602
  57647. },
  57648. form: "snivy",
  57649. },
  57650. snivy_back: {
  57651. height: math.unit(2, "feet"),
  57652. weight: math.unit(17.9, "lb"),
  57653. name: "Back",
  57654. image: {
  57655. source: "./media/characters/robin-phox/snivy-back.svg",
  57656. extra: 577/508,
  57657. bottom: 21/598
  57658. },
  57659. form: "snivy",
  57660. },
  57661. snivy_foot: {
  57662. height: math.unit(0.68, "feet"),
  57663. name: "Foot",
  57664. image: {
  57665. source: "./media/characters/robin-phox/snivy-foot.svg"
  57666. },
  57667. form: "snivy",
  57668. },
  57669. snivy_sole: {
  57670. height: math.unit(0.68, "feet"),
  57671. name: "Sole",
  57672. image: {
  57673. source: "./media/characters/robin-phox/snivy-sole.svg"
  57674. },
  57675. form: "snivy",
  57676. },
  57677. yoshi_front: {
  57678. height: math.unit(6, "feet"),
  57679. weight: math.unit(150, "lb"),
  57680. name: "Front",
  57681. image: {
  57682. source: "./media/characters/robin-phox/yoshi-front.svg",
  57683. extra: 890/792,
  57684. bottom: 29/919
  57685. },
  57686. form: "yoshi",
  57687. default: true
  57688. },
  57689. yoshi_frontNsfw: {
  57690. height: math.unit(6, "feet"),
  57691. weight: math.unit(150, "lb"),
  57692. name: "Front (NSFW)",
  57693. image: {
  57694. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57695. extra: 890/792,
  57696. bottom: 29/919
  57697. },
  57698. form: "yoshi",
  57699. },
  57700. yoshi_back: {
  57701. height: math.unit(6, "feet"),
  57702. weight: math.unit(150, "lb"),
  57703. name: "Back",
  57704. image: {
  57705. source: "./media/characters/robin-phox/yoshi-back.svg",
  57706. extra: 890/792,
  57707. bottom: 29/919
  57708. },
  57709. form: "yoshi",
  57710. },
  57711. yoshi_foot: {
  57712. height: math.unit(1.5, "feet"),
  57713. name: "Foot",
  57714. image: {
  57715. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57716. },
  57717. form: "yoshi",
  57718. },
  57719. delphox_front: {
  57720. height: math.unit(4 + 11/12, "feet"),
  57721. weight: math.unit(86, "lb"),
  57722. name: "Front",
  57723. image: {
  57724. source: "./media/characters/robin-phox/delphox-front.svg",
  57725. extra: 1266/1069,
  57726. bottom: 32/1298
  57727. },
  57728. form: "delphox",
  57729. default: true
  57730. },
  57731. delphox_frontNsfw: {
  57732. height: math.unit(4 + 11/12, "feet"),
  57733. weight: math.unit(86, "lb"),
  57734. name: "Front (NSFW)",
  57735. image: {
  57736. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57737. extra: 1266/1069,
  57738. bottom: 32/1298
  57739. },
  57740. form: "delphox",
  57741. },
  57742. delphox_back: {
  57743. height: math.unit(4 + 11/12, "feet"),
  57744. weight: math.unit(86, "lb"),
  57745. name: "Back",
  57746. image: {
  57747. source: "./media/characters/robin-phox/delphox-back.svg",
  57748. extra: 1269/1083,
  57749. bottom: 15/1284
  57750. },
  57751. form: "delphox",
  57752. },
  57753. mienshao_front: {
  57754. height: math.unit(4 + 7/12, "feet"),
  57755. weight: math.unit(78.3, "lb"),
  57756. name: "Front",
  57757. image: {
  57758. source: "./media/characters/robin-phox/mienshao-front.svg",
  57759. extra: 1052/970,
  57760. bottom: 108/1160
  57761. },
  57762. form: "mienshao",
  57763. default: true
  57764. },
  57765. mienshao_frontNsfw: {
  57766. height: math.unit(4 + 7/12, "feet"),
  57767. weight: math.unit(78.3, "lb"),
  57768. name: "Front (NSFW)",
  57769. image: {
  57770. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57771. extra: 1052/970,
  57772. bottom: 108/1160
  57773. },
  57774. form: "mienshao",
  57775. },
  57776. mienshao_back: {
  57777. height: math.unit(4 + 7/12, "feet"),
  57778. weight: math.unit(78.3, "lb"),
  57779. name: "Back",
  57780. image: {
  57781. source: "./media/characters/robin-phox/mienshao-back.svg",
  57782. extra: 1102/982,
  57783. bottom: 32/1134
  57784. },
  57785. form: "mienshao",
  57786. },
  57787. inteleon_front: {
  57788. height: math.unit(6 + 3/12, "feet"),
  57789. weight: math.unit(99.6, "lb"),
  57790. name: "Front",
  57791. image: {
  57792. source: "./media/characters/robin-phox/inteleon-front.svg",
  57793. extra: 910/799,
  57794. bottom: 76/986
  57795. },
  57796. form: "inteleon",
  57797. default: true
  57798. },
  57799. inteleon_frontNsfw: {
  57800. height: math.unit(6 + 3/12, "feet"),
  57801. weight: math.unit(99.6, "lb"),
  57802. name: "Front (NSFW)",
  57803. image: {
  57804. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57805. extra: 910/799,
  57806. bottom: 76/986
  57807. },
  57808. form: "inteleon",
  57809. },
  57810. inteleon_back: {
  57811. height: math.unit(6 + 3/12, "feet"),
  57812. weight: math.unit(99.6, "lb"),
  57813. name: "Back",
  57814. image: {
  57815. source: "./media/characters/robin-phox/inteleon-back.svg",
  57816. extra: 907/796,
  57817. bottom: 25/932
  57818. },
  57819. form: "inteleon",
  57820. },
  57821. reshiram_front: {
  57822. height: math.unit(10 + 6/12, "feet"),
  57823. weight: math.unit(727.5, "lb"),
  57824. name: "Front",
  57825. image: {
  57826. source: "./media/characters/robin-phox/reshiram-front.svg",
  57827. extra: 1198/940,
  57828. bottom: 123/1321
  57829. },
  57830. form: "reshiram",
  57831. },
  57832. reshiram_frontNsfw: {
  57833. height: math.unit(10 + 6/12, "feet"),
  57834. weight: math.unit(727.5, "lb"),
  57835. name: "Front-nsfw",
  57836. image: {
  57837. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57838. extra: 1198/940,
  57839. bottom: 123/1321
  57840. },
  57841. form: "reshiram",
  57842. },
  57843. reshiram_back: {
  57844. height: math.unit(10 + 6/12, "feet"),
  57845. weight: math.unit(727.5, "lb"),
  57846. name: "Back",
  57847. image: {
  57848. source: "./media/characters/robin-phox/reshiram-back.svg",
  57849. extra: 1024/904,
  57850. bottom: 85/1109
  57851. },
  57852. form: "reshiram",
  57853. },
  57854. samurott_front: {
  57855. height: math.unit(8, "feet"),
  57856. weight: math.unit(208.6, "lb"),
  57857. name: "Front",
  57858. image: {
  57859. source: "./media/characters/robin-phox/samurott-front.svg",
  57860. extra: 1048/984,
  57861. bottom: 100/1148
  57862. },
  57863. form: "samurott",
  57864. },
  57865. samurott_frontNsfw: {
  57866. height: math.unit(8, "feet"),
  57867. weight: math.unit(208.6, "lb"),
  57868. name: "Front-nsfw",
  57869. image: {
  57870. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57871. extra: 1048/984,
  57872. bottom: 100/1148
  57873. },
  57874. form: "samurott",
  57875. },
  57876. samurott_back: {
  57877. height: math.unit(8, "feet"),
  57878. weight: math.unit(208.6, "lb"),
  57879. name: "Back",
  57880. image: {
  57881. source: "./media/characters/robin-phox/samurott-back.svg",
  57882. extra: 1110/1042,
  57883. bottom: 12/1122
  57884. },
  57885. form: "samurott",
  57886. },
  57887. samurott_feral: {
  57888. height: math.unit(4 + 11/12, "feet"),
  57889. weight: math.unit(208.6, "lb"),
  57890. name: "Feral",
  57891. image: {
  57892. source: "./media/characters/robin-phox/samurott-feral.svg",
  57893. extra: 766/681,
  57894. bottom: 108/874
  57895. },
  57896. form: "samurott",
  57897. },
  57898. },
  57899. [
  57900. {
  57901. name: "Normal",
  57902. height: math.unit(2, "feet"),
  57903. default: true,
  57904. form: "snivy"
  57905. },
  57906. {
  57907. name: "Normal",
  57908. height: math.unit(6, "feet"),
  57909. default: true,
  57910. form: "yoshi"
  57911. },
  57912. {
  57913. name: "Normal",
  57914. height: math.unit(4 + 11/12, "feet"),
  57915. default: true,
  57916. form: "delphox"
  57917. },
  57918. {
  57919. name: "Normal",
  57920. height: math.unit(4 + 7/12, "feet"),
  57921. default: true,
  57922. form: "mienshao"
  57923. },
  57924. {
  57925. name: "Normal",
  57926. height: math.unit(6 + 3/12, "feet"),
  57927. default: true,
  57928. form: "inteleon"
  57929. },
  57930. {
  57931. name: "Normal",
  57932. height: math.unit(10 + 6/12, "feet"),
  57933. default: true,
  57934. form: "reshiram"
  57935. },
  57936. {
  57937. name: "Normal",
  57938. height: math.unit(8, "feet"),
  57939. default: true,
  57940. form: "samurott"
  57941. },
  57942. {
  57943. name: "Macro",
  57944. height: math.unit(500, "feet"),
  57945. allForms: true
  57946. },
  57947. {
  57948. name: "Mega Macro",
  57949. height: math.unit(10, "earths"),
  57950. allForms: true
  57951. },
  57952. {
  57953. name: "Giga Macro",
  57954. height: math.unit(1, "galaxy"),
  57955. allForms: true
  57956. },
  57957. {
  57958. name: "Godly Macro",
  57959. height: math.unit(1e10, "multiverses"),
  57960. allForms: true
  57961. },
  57962. ],
  57963. {
  57964. "snivy": {
  57965. name: "Snivy",
  57966. default: true
  57967. },
  57968. "yoshi": {
  57969. name: "Yoshi",
  57970. },
  57971. "delphox": {
  57972. name: "Delphox",
  57973. },
  57974. "mienshao": {
  57975. name: "Mienshao",
  57976. },
  57977. "inteleon": {
  57978. name: "Inteleon",
  57979. },
  57980. "reshiram": {
  57981. name: "Reshiram",
  57982. },
  57983. "samurott": {
  57984. name: "Samurott",
  57985. },
  57986. }
  57987. ))
  57988. characterMakers.push(() => makeCharacter(
  57989. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57990. {
  57991. front: {
  57992. height: math.unit(4, "feet"),
  57993. name: "Front",
  57994. image: {
  57995. source: "./media/characters/ash-leung/front.svg",
  57996. extra: 1916/1792,
  57997. bottom: 50/1966
  57998. }
  57999. },
  58000. },
  58001. [
  58002. {
  58003. name: "Atomic",
  58004. height: math.unit(1, "angstrom")
  58005. },
  58006. {
  58007. name: "Microscopic",
  58008. height: math.unit(4000, "angstroms")
  58009. },
  58010. {
  58011. name: "Speck",
  58012. height: math.unit(1, "mm")
  58013. },
  58014. {
  58015. name: "Small",
  58016. height: math.unit(1, "inch")
  58017. },
  58018. {
  58019. name: "Normal",
  58020. height: math.unit(4, "feet"),
  58021. default: true
  58022. },
  58023. ]
  58024. ))
  58025. characterMakers.push(() => makeCharacter(
  58026. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  58027. {
  58028. frontDressed: {
  58029. height: math.unit(2.08, "meters"),
  58030. weight: math.unit(175, "lb"),
  58031. name: "Front (Dressed)",
  58032. image: {
  58033. source: "./media/characters/carie/front-dressed.svg",
  58034. extra: 456/417,
  58035. bottom: 7/463
  58036. }
  58037. },
  58038. backDressed: {
  58039. height: math.unit(2.08, "meters"),
  58040. weight: math.unit(175, "lb"),
  58041. name: "Back (Dressed)",
  58042. image: {
  58043. source: "./media/characters/carie/back-dressed.svg",
  58044. extra: 455/414,
  58045. bottom: 11/466
  58046. }
  58047. },
  58048. front: {
  58049. height: math.unit(2, "meters"),
  58050. weight: math.unit(175, "lb"),
  58051. name: "Front",
  58052. image: {
  58053. source: "./media/characters/carie/front.svg",
  58054. extra: 438/399,
  58055. bottom: 12/450
  58056. }
  58057. },
  58058. back: {
  58059. height: math.unit(2, "meters"),
  58060. weight: math.unit(175, "lb"),
  58061. name: "Back",
  58062. image: {
  58063. source: "./media/characters/carie/back.svg",
  58064. extra: 438/397,
  58065. bottom: 7/445
  58066. }
  58067. },
  58068. },
  58069. [
  58070. {
  58071. name: "Normal",
  58072. height: math.unit(2.08, "meters"),
  58073. default: true
  58074. },
  58075. {
  58076. name: "Macro",
  58077. height: math.unit(2.08e3, "meters")
  58078. },
  58079. {
  58080. name: "Mega Macro",
  58081. height: math.unit(2.08e6, "meters")
  58082. },
  58083. {
  58084. name: "Giga Macro",
  58085. height: math.unit(2.08e9, "meters")
  58086. },
  58087. {
  58088. name: "Tera Macro",
  58089. height: math.unit(2.08e12, "meters")
  58090. },
  58091. {
  58092. name: "Peta Macro",
  58093. height: math.unit(2.08e15, "meters")
  58094. },
  58095. {
  58096. name: "Exa Macro",
  58097. height: math.unit(2.08e18, "meters")
  58098. },
  58099. {
  58100. name: "Zetta Macro",
  58101. height: math.unit(2.08e21, "meters")
  58102. },
  58103. {
  58104. name: "Yotta Macro",
  58105. height: math.unit(2.08e24, "meters")
  58106. },
  58107. ]
  58108. ))
  58109. characterMakers.push(() => makeCharacter(
  58110. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  58111. {
  58112. front: {
  58113. height: math.unit(5 + 2/12, "feet"),
  58114. weight: math.unit(120, "lb"),
  58115. name: "Front",
  58116. image: {
  58117. source: "./media/characters/sai-bree/front.svg",
  58118. extra: 1843/1702,
  58119. bottom: 91/1934
  58120. }
  58121. },
  58122. back: {
  58123. height: math.unit(5 + 2/12, "feet"),
  58124. weight: math.unit(120, "lb"),
  58125. name: "Back",
  58126. image: {
  58127. source: "./media/characters/sai-bree/back.svg",
  58128. extra: 1809/1637,
  58129. bottom: 56/1865
  58130. }
  58131. },
  58132. },
  58133. [
  58134. {
  58135. name: "Normal",
  58136. height: math.unit(5 + 2/12, "feet"),
  58137. default: true
  58138. },
  58139. {
  58140. name: "Macro",
  58141. height: math.unit(500, "feet")
  58142. },
  58143. ]
  58144. ))
  58145. characterMakers.push(() => makeCharacter(
  58146. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  58147. {
  58148. side: {
  58149. height: math.unit(0.77, "meters"),
  58150. weight: math.unit(120, "lb"),
  58151. name: "Side",
  58152. image: {
  58153. source: "./media/characters/davwyn/side.svg",
  58154. extra: 1557/1225,
  58155. bottom: 131/1688
  58156. }
  58157. },
  58158. front: {
  58159. height: math.unit(0.835410, "meters"),
  58160. weight: math.unit(120, "lb"),
  58161. name: "Front",
  58162. image: {
  58163. source: "./media/characters/davwyn/front.svg",
  58164. extra: 870/843,
  58165. bottom: 175/1045
  58166. }
  58167. },
  58168. },
  58169. [
  58170. {
  58171. name: "Minidrake",
  58172. height: math.unit(0.77/4, "meters")
  58173. },
  58174. {
  58175. name: "Normal",
  58176. height: math.unit(0.77, "meters"),
  58177. default: true
  58178. },
  58179. ]
  58180. ))
  58181. characterMakers.push(() => makeCharacter(
  58182. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  58183. {
  58184. front: {
  58185. height: math.unit(10 + 3/12, "feet"),
  58186. weight: math.unit(2857, "lb"),
  58187. name: "Front",
  58188. image: {
  58189. source: "./media/characters/balans/front.svg",
  58190. extra: 427/402,
  58191. bottom: 26/453
  58192. }
  58193. },
  58194. side: {
  58195. height: math.unit(10 + 3/12, "feet"),
  58196. weight: math.unit(2857, "lb"),
  58197. name: "Side",
  58198. image: {
  58199. source: "./media/characters/balans/side.svg",
  58200. extra: 397/371,
  58201. bottom: 17/414
  58202. }
  58203. },
  58204. back: {
  58205. height: math.unit(10 + 3/12, "feet"),
  58206. weight: math.unit(2857, "lb"),
  58207. name: "Back",
  58208. image: {
  58209. source: "./media/characters/balans/back.svg",
  58210. extra: 408/381,
  58211. bottom: 14/422
  58212. }
  58213. },
  58214. hand: {
  58215. height: math.unit(1.15, "feet"),
  58216. name: "Hand",
  58217. image: {
  58218. source: "./media/characters/balans/hand.svg"
  58219. }
  58220. },
  58221. footRest: {
  58222. height: math.unit(3.1, "feet"),
  58223. name: "Foot (Rest)",
  58224. image: {
  58225. source: "./media/characters/balans/foot-rest.svg"
  58226. }
  58227. },
  58228. footActive: {
  58229. height: math.unit(3.5, "feet"),
  58230. name: "Foot (Active)",
  58231. image: {
  58232. source: "./media/characters/balans/foot-active.svg"
  58233. }
  58234. },
  58235. },
  58236. [
  58237. {
  58238. name: "Normal",
  58239. height: math.unit(10 + 3/12, "feet"),
  58240. default: true
  58241. },
  58242. ]
  58243. ))
  58244. characterMakers.push(() => makeCharacter(
  58245. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58246. {
  58247. side: {
  58248. height: math.unit(9, "meters"),
  58249. weight: math.unit(114, "tonnes"),
  58250. name: "Side",
  58251. image: {
  58252. source: "./media/characters/eldkveikir/side.svg",
  58253. extra: 1927/338,
  58254. bottom: 42/1969
  58255. }
  58256. },
  58257. sitting: {
  58258. height: math.unit(13.4, "meters"),
  58259. weight: math.unit(114, "tonnes"),
  58260. name: "Sitting",
  58261. image: {
  58262. source: "./media/characters/eldkveikir/sitting.svg",
  58263. extra: 1108/963,
  58264. bottom: 610/1718
  58265. }
  58266. },
  58267. maw: {
  58268. height: math.unit(8.36, "meters"),
  58269. name: "Maw",
  58270. image: {
  58271. source: "./media/characters/eldkveikir/maw.svg"
  58272. }
  58273. },
  58274. hand: {
  58275. height: math.unit(4.84, "meters"),
  58276. name: "Hand",
  58277. image: {
  58278. source: "./media/characters/eldkveikir/hand.svg"
  58279. }
  58280. },
  58281. foot: {
  58282. height: math.unit(6.9, "meters"),
  58283. name: "Foot",
  58284. image: {
  58285. source: "./media/characters/eldkveikir/foot.svg"
  58286. }
  58287. },
  58288. genitals: {
  58289. height: math.unit(9.6, "meters"),
  58290. name: "Genitals",
  58291. image: {
  58292. source: "./media/characters/eldkveikir/genitals.svg"
  58293. }
  58294. },
  58295. },
  58296. [
  58297. {
  58298. name: "Normal",
  58299. height: math.unit(9, "meters"),
  58300. default: true
  58301. },
  58302. ]
  58303. ))
  58304. characterMakers.push(() => makeCharacter(
  58305. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58306. {
  58307. front: {
  58308. height: math.unit(14, "feet"),
  58309. weight: math.unit(4100, "lb"),
  58310. name: "Front",
  58311. image: {
  58312. source: "./media/characters/arrow/front.svg",
  58313. extra: 330/318,
  58314. bottom: 56/386
  58315. }
  58316. },
  58317. },
  58318. [
  58319. {
  58320. name: "Normal",
  58321. height: math.unit(14, "feet"),
  58322. default: true
  58323. },
  58324. {
  58325. name: "Minimacro",
  58326. height: math.unit(63, "feet")
  58327. },
  58328. {
  58329. name: "Macro",
  58330. height: math.unit(630, "feet")
  58331. },
  58332. {
  58333. name: "Megamacro",
  58334. height: math.unit(12600, "feet")
  58335. },
  58336. {
  58337. name: "Gigamacro",
  58338. height: math.unit(18000, "miles")
  58339. },
  58340. ]
  58341. ))
  58342. characterMakers.push(() => makeCharacter(
  58343. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58344. {
  58345. front: {
  58346. height: math.unit(10, "feet"),
  58347. weight: math.unit(2.4, "tons"),
  58348. name: "Front",
  58349. image: {
  58350. source: "./media/characters/3yk-k0-unit/front.svg",
  58351. extra: 573/561,
  58352. bottom: 33/606
  58353. }
  58354. },
  58355. back: {
  58356. height: math.unit(10, "feet"),
  58357. weight: math.unit(2.4, "tons"),
  58358. name: "Back",
  58359. image: {
  58360. source: "./media/characters/3yk-k0-unit/back.svg",
  58361. extra: 614/573,
  58362. bottom: 32/646
  58363. }
  58364. },
  58365. maw: {
  58366. height: math.unit(2.15, "feet"),
  58367. name: "Maw",
  58368. image: {
  58369. source: "./media/characters/3yk-k0-unit/maw.svg"
  58370. }
  58371. },
  58372. },
  58373. [
  58374. {
  58375. name: "Normal",
  58376. height: math.unit(10, "feet"),
  58377. default: true
  58378. },
  58379. ]
  58380. ))
  58381. characterMakers.push(() => makeCharacter(
  58382. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58383. {
  58384. front: {
  58385. height: math.unit(8 + 8/12, "feet"),
  58386. name: "Front",
  58387. image: {
  58388. source: "./media/characters/nemo/front.svg",
  58389. extra: 1308/1217,
  58390. bottom: 57/1365
  58391. }
  58392. },
  58393. },
  58394. [
  58395. {
  58396. name: "Normal",
  58397. height: math.unit(8 + 8/12, "feet"),
  58398. default: true
  58399. },
  58400. ]
  58401. ))
  58402. characterMakers.push(() => makeCharacter(
  58403. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58404. {
  58405. front: {
  58406. height: math.unit(8, "feet"),
  58407. weight: math.unit(760, "lb"),
  58408. name: "Front",
  58409. image: {
  58410. source: "./media/characters/rexx/front.svg",
  58411. extra: 786/750,
  58412. bottom: 17/803
  58413. },
  58414. extraAttributes: {
  58415. "pawLength": {
  58416. name: "Paw Length",
  58417. power: 1,
  58418. type: "length",
  58419. base: math.unit(27, "inches")
  58420. },
  58421. }
  58422. },
  58423. },
  58424. [
  58425. {
  58426. name: "Micro",
  58427. height: math.unit(2, "inches")
  58428. },
  58429. {
  58430. name: "Normal",
  58431. height: math.unit(8, "feet"),
  58432. default: true
  58433. },
  58434. {
  58435. name: "Macro",
  58436. height: math.unit(150, "feet")
  58437. },
  58438. ]
  58439. ))
  58440. characterMakers.push(() => makeCharacter(
  58441. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58442. {
  58443. front: {
  58444. height: math.unit(18, "feet"),
  58445. weight: math.unit(1975, "lb"),
  58446. name: "Front",
  58447. image: {
  58448. source: "./media/characters/draco/front.svg",
  58449. extra: 1325/1241,
  58450. bottom: 83/1408
  58451. }
  58452. },
  58453. back: {
  58454. height: math.unit(18, "feet"),
  58455. weight: math.unit(1975, "lb"),
  58456. name: "Back",
  58457. image: {
  58458. source: "./media/characters/draco/back.svg",
  58459. extra: 1332/1250,
  58460. bottom: 43/1375
  58461. }
  58462. },
  58463. dick: {
  58464. height: math.unit(7.5, "feet"),
  58465. name: "Dick",
  58466. image: {
  58467. source: "./media/characters/draco/dick.svg"
  58468. }
  58469. },
  58470. },
  58471. [
  58472. {
  58473. name: "Normal",
  58474. height: math.unit(18, "feet"),
  58475. default: true
  58476. },
  58477. ]
  58478. ))
  58479. characterMakers.push(() => makeCharacter(
  58480. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58481. {
  58482. front: {
  58483. height: math.unit(3.2, "meters"),
  58484. name: "Front",
  58485. image: {
  58486. source: "./media/characters/harriett/front.svg",
  58487. extra: 1966/1915,
  58488. bottom: 9/1975
  58489. }
  58490. },
  58491. },
  58492. [
  58493. {
  58494. name: "Normal",
  58495. height: math.unit(3.2, "meters"),
  58496. default: true
  58497. },
  58498. ]
  58499. ))
  58500. characterMakers.push(() => makeCharacter(
  58501. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58502. {
  58503. sitting: {
  58504. height: math.unit(0.8, "meter"),
  58505. name: "Sitting",
  58506. image: {
  58507. source: "./media/characters/serpentus/sitting.svg",
  58508. extra: 293/290,
  58509. bottom: 140/433
  58510. }
  58511. },
  58512. },
  58513. [
  58514. {
  58515. name: "Normal",
  58516. height: math.unit(0.8, "meter"),
  58517. default: true
  58518. },
  58519. ]
  58520. ))
  58521. characterMakers.push(() => makeCharacter(
  58522. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58523. {
  58524. front: {
  58525. height: math.unit(5.7174385736, "feet"),
  58526. name: "Front",
  58527. image: {
  58528. source: "./media/characters/nova-polecat/front.svg",
  58529. extra: 1317/1216,
  58530. bottom: 92/1409
  58531. }
  58532. },
  58533. },
  58534. [
  58535. {
  58536. name: "Normal",
  58537. height: math.unit(5.7174385736, "feet"),
  58538. default: true
  58539. },
  58540. ]
  58541. ))
  58542. characterMakers.push(() => makeCharacter(
  58543. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58544. {
  58545. front: {
  58546. height: math.unit(5 + 4/12, "feet"),
  58547. weight: math.unit(250, "lb"),
  58548. name: "Front",
  58549. image: {
  58550. source: "./media/characters/mook/front.svg",
  58551. extra: 1088/1037,
  58552. bottom: 132/1220
  58553. }
  58554. },
  58555. back: {
  58556. height: math.unit(5 + 1/12, "feet"),
  58557. weight: math.unit(250, "lb"),
  58558. name: "Back",
  58559. image: {
  58560. source: "./media/characters/mook/back.svg",
  58561. extra: 1184/905,
  58562. bottom: 96/1280
  58563. }
  58564. },
  58565. head: {
  58566. height: math.unit(1.85, "feet"),
  58567. name: "Head",
  58568. image: {
  58569. source: "./media/characters/mook/head.svg"
  58570. }
  58571. },
  58572. hand: {
  58573. height: math.unit(1.9, "feet"),
  58574. name: "Hand",
  58575. image: {
  58576. source: "./media/characters/mook/hand.svg"
  58577. }
  58578. },
  58579. palm: {
  58580. height: math.unit(1.84, "feet"),
  58581. name: "Palm",
  58582. image: {
  58583. source: "./media/characters/mook/palm.svg"
  58584. }
  58585. },
  58586. foot: {
  58587. height: math.unit(1.44, "feet"),
  58588. name: "Foot",
  58589. image: {
  58590. source: "./media/characters/mook/foot.svg"
  58591. }
  58592. },
  58593. sole: {
  58594. height: math.unit(1.44, "feet"),
  58595. name: "Sole",
  58596. image: {
  58597. source: "./media/characters/mook/sole.svg"
  58598. }
  58599. },
  58600. },
  58601. [
  58602. {
  58603. name: "Normal",
  58604. height: math.unit(5 + 4/12, "feet"),
  58605. default: true
  58606. },
  58607. {
  58608. name: "Big",
  58609. height: math.unit(12, "feet")
  58610. },
  58611. ]
  58612. ))
  58613. characterMakers.push(() => makeCharacter(
  58614. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58615. {
  58616. front: {
  58617. height: math.unit(6 + 10/12, "feet"),
  58618. weight: math.unit(233, "lb"),
  58619. name: "Front",
  58620. image: {
  58621. source: "./media/characters/kayla/front.svg",
  58622. extra: 1850/1775,
  58623. bottom: 65/1915
  58624. }
  58625. },
  58626. },
  58627. [
  58628. {
  58629. name: "Normal",
  58630. height: math.unit(6 + 10/12, "feet"),
  58631. default: true
  58632. },
  58633. {
  58634. name: "Amazonian",
  58635. height: math.unit(12 + 5/12, "feet")
  58636. },
  58637. {
  58638. name: "Mini Giantess",
  58639. height: math.unit(26, "feet")
  58640. },
  58641. {
  58642. name: "Giantess",
  58643. height: math.unit(200, "feet")
  58644. },
  58645. {
  58646. name: "Mega Giantess",
  58647. height: math.unit(2500, "feet")
  58648. },
  58649. {
  58650. name: "City Sized",
  58651. height: math.unit(50, "miles")
  58652. },
  58653. {
  58654. name: "Country Sized",
  58655. height: math.unit(500, "miles")
  58656. },
  58657. {
  58658. name: "Continent Sized",
  58659. height: math.unit(2500, "miles")
  58660. },
  58661. {
  58662. name: "Planet Sized",
  58663. height: math.unit(10000, "miles")
  58664. },
  58665. {
  58666. name: "Star Sized",
  58667. height: math.unit(5e6, "miles")
  58668. },
  58669. {
  58670. name: "Solar System Sized",
  58671. height: math.unit(125, "AU")
  58672. },
  58673. {
  58674. name: "Galaxy Sized",
  58675. height: math.unit(300e3, "lightyears")
  58676. },
  58677. {
  58678. name: "Universe Sized",
  58679. height: math.unit(200e9, "lightyears")
  58680. },
  58681. {
  58682. name: "Multiverse Sized",
  58683. height: math.unit(20, "exauniverses")
  58684. },
  58685. {
  58686. name: "Mother of Existence",
  58687. height: math.unit(1e6, "yottauniverses")
  58688. },
  58689. ]
  58690. ))
  58691. characterMakers.push(() => makeCharacter(
  58692. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58693. {
  58694. side: {
  58695. height: math.unit(9.5, "meters"),
  58696. name: "Side",
  58697. image: {
  58698. source: "./media/characters/kulve-ragnarok/side.svg",
  58699. extra: 364/326,
  58700. bottom: 50/414
  58701. }
  58702. },
  58703. },
  58704. [
  58705. {
  58706. name: "Normal",
  58707. height: math.unit(9.5, "meters"),
  58708. default: true
  58709. },
  58710. ]
  58711. ))
  58712. characterMakers.push(() => makeCharacter(
  58713. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58714. {
  58715. front: {
  58716. height: math.unit(8 + 9/12, "feet"),
  58717. name: "Front",
  58718. image: {
  58719. source: "./media/characters/atlas-goat/front.svg",
  58720. extra: 1462/1323,
  58721. bottom: 12/1474
  58722. }
  58723. },
  58724. },
  58725. [
  58726. {
  58727. name: "Normal",
  58728. height: math.unit(8 + 9/12, "feet"),
  58729. default: true
  58730. },
  58731. {
  58732. name: "Skyline",
  58733. height: math.unit(845, "feet")
  58734. },
  58735. {
  58736. name: "Orbital",
  58737. height: math.unit(93000, "miles")
  58738. },
  58739. {
  58740. name: "Constellation",
  58741. height: math.unit(27000, "lightyears")
  58742. },
  58743. ]
  58744. ))
  58745. characterMakers.push(() => makeCharacter(
  58746. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58747. {
  58748. side: {
  58749. height: math.unit(1.8, "meters"),
  58750. weight: math.unit(120, "kg"),
  58751. name: "Side",
  58752. image: {
  58753. source: "./media/characters/xie-ling/side.svg",
  58754. extra: 646/574,
  58755. bottom: 44/690
  58756. }
  58757. },
  58758. },
  58759. [
  58760. {
  58761. name: "Tiny",
  58762. height: math.unit(1.80, "meters")
  58763. },
  58764. {
  58765. name: "Small",
  58766. height: math.unit(6, "meters")
  58767. },
  58768. {
  58769. name: "Medium",
  58770. height: math.unit(15, "meters")
  58771. },
  58772. {
  58773. name: "Normal",
  58774. height: math.unit(30, "meters"),
  58775. default: true
  58776. },
  58777. {
  58778. name: "Above Normal",
  58779. height: math.unit(60, "meters")
  58780. },
  58781. {
  58782. name: "Big",
  58783. height: math.unit(220, "meters")
  58784. },
  58785. {
  58786. name: "Giant",
  58787. height: math.unit(2.2, "km")
  58788. },
  58789. {
  58790. name: "Macro",
  58791. height: math.unit(25, "km")
  58792. },
  58793. {
  58794. name: "Mega Macro",
  58795. height: math.unit(350, "km")
  58796. },
  58797. {
  58798. name: "Mega Macro+",
  58799. height: math.unit(5000, "km")
  58800. },
  58801. {
  58802. name: "Goddess",
  58803. height: math.unit(3, "multiverses")
  58804. },
  58805. ]
  58806. ))
  58807. characterMakers.push(() => makeCharacter(
  58808. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58809. {
  58810. frontSfw: {
  58811. height: math.unit(5 + 11/12, "feet"),
  58812. weight: math.unit(210, "lb"),
  58813. name: "Front",
  58814. image: {
  58815. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58816. extra: 1928/1821,
  58817. bottom: 45/1973
  58818. }
  58819. },
  58820. backSfw: {
  58821. height: math.unit(5 + 11/12, "feet"),
  58822. weight: math.unit(210, "lb"),
  58823. name: "Back",
  58824. image: {
  58825. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58826. extra: 1920/1813,
  58827. bottom: 34/1954
  58828. }
  58829. },
  58830. frontNsfw: {
  58831. height: math.unit(5 + 11/12, "feet"),
  58832. weight: math.unit(210, "lb"),
  58833. name: "Front (NSFW)",
  58834. image: {
  58835. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58836. extra: 1928/1821,
  58837. bottom: 45/1973
  58838. }
  58839. },
  58840. backNsfw: {
  58841. height: math.unit(5 + 11/12, "feet"),
  58842. weight: math.unit(210, "lb"),
  58843. name: "Back (NSFW)",
  58844. image: {
  58845. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58846. extra: 1920/1813,
  58847. bottom: 34/1954
  58848. }
  58849. },
  58850. },
  58851. [
  58852. {
  58853. name: "Normal",
  58854. height: math.unit(5 + 11/12, "feet"),
  58855. default: true
  58856. },
  58857. {
  58858. name: "Goddess",
  58859. height: math.unit(20 + 3/12, "feet")
  58860. },
  58861. {
  58862. name: "Breaker of Man",
  58863. height: math.unit(329 + 9/12, "feet")
  58864. },
  58865. {
  58866. name: "Solar Justice",
  58867. height: math.unit(0.6, "solarradii")
  58868. },
  58869. {
  58870. name: "She Who Judges",
  58871. height: math.unit(1, "universe")
  58872. },
  58873. ]
  58874. ))
  58875. characterMakers.push(() => makeCharacter(
  58876. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58877. {
  58878. casual_front: {
  58879. height: math.unit(6 + 1/12, "feet"),
  58880. weight: math.unit(190, "lb"),
  58881. preyCapacity: math.unit(1, "people"),
  58882. name: "Front",
  58883. image: {
  58884. source: "./media/characters/managarmr/casual-front.svg",
  58885. extra: 411/381,
  58886. bottom: 15/426
  58887. },
  58888. extraAttributes: {
  58889. "pawSize": {
  58890. name: "Paw Size",
  58891. power: 1,
  58892. type: "length",
  58893. base: math.unit(0.2, "meters")
  58894. },
  58895. },
  58896. form: "casual",
  58897. },
  58898. casual_back: {
  58899. height: math.unit(6 + 1/12, "feet"),
  58900. weight: math.unit(190, "lb"),
  58901. preyCapacity: math.unit(1, "people"),
  58902. name: "Back",
  58903. image: {
  58904. source: "./media/characters/managarmr/casual-back.svg",
  58905. extra: 413/383,
  58906. bottom: 13/426
  58907. },
  58908. extraAttributes: {
  58909. "pawSize": {
  58910. name: "Paw Size",
  58911. power: 1,
  58912. type: "length",
  58913. base: math.unit(0.2, "meters")
  58914. },
  58915. },
  58916. form: "casual",
  58917. },
  58918. base_front: {
  58919. height: math.unit(7, "feet"),
  58920. weight: math.unit(210, "lb"),
  58921. preyCapacity: math.unit(2, "people"),
  58922. name: "Front",
  58923. image: {
  58924. source: "./media/characters/managarmr/base-front.svg",
  58925. extra: 580/485,
  58926. bottom: 32/612
  58927. },
  58928. extraAttributes: {
  58929. "wingspan": {
  58930. name: "Wingspan",
  58931. power: 1,
  58932. type: "length",
  58933. base: math.unit(4, "meters")
  58934. },
  58935. "pawSize": {
  58936. name: "Paw Size",
  58937. power: 1,
  58938. type: "length",
  58939. base: math.unit(0.2, "meters")
  58940. },
  58941. },
  58942. form: "base",
  58943. },
  58944. "true-divine_front": {
  58945. height: math.unit(40, "feet"),
  58946. weight: math.unit(39000, "lb"),
  58947. preyCapacity: math.unit(375, "people"),
  58948. name: "Front",
  58949. image: {
  58950. source: "./media/characters/managarmr/true-divine-front.svg",
  58951. extra: 725/573,
  58952. bottom: 120/845
  58953. },
  58954. extraAttributes: {
  58955. "wingspan": {
  58956. name: "Wingspan",
  58957. power: 1,
  58958. type: "length",
  58959. base: math.unit(20, "meters")
  58960. },
  58961. "pawSize": {
  58962. name: "Paw Size",
  58963. power: 1,
  58964. type: "length",
  58965. base: math.unit(1.5, "meters")
  58966. },
  58967. },
  58968. form: "true-divine",
  58969. },
  58970. },
  58971. [
  58972. {
  58973. name: "Normal",
  58974. height: math.unit(6 + 1/12, "feet"),
  58975. form: "casual",
  58976. default: true
  58977. },
  58978. {
  58979. name: "Normal",
  58980. height: math.unit(7, "feet"),
  58981. form: "base",
  58982. default: true
  58983. },
  58984. ],
  58985. {
  58986. "casual": {
  58987. name: "Casual",
  58988. default: true
  58989. },
  58990. "base": {
  58991. name: "Base",
  58992. },
  58993. "true-divine": {
  58994. name: "True Divine",
  58995. },
  58996. }
  58997. ))
  58998. characterMakers.push(() => makeCharacter(
  58999. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  59000. {
  59001. front: {
  59002. height: math.unit(1.8, "meters"),
  59003. weight: math.unit(110, "kg"),
  59004. name: "Front",
  59005. image: {
  59006. source: "./media/characters/mystra/front.svg",
  59007. extra: 529/442,
  59008. bottom: 31/560
  59009. }
  59010. },
  59011. frontLewd: {
  59012. height: math.unit(1.8, "meters"),
  59013. weight: math.unit(110, "kg"),
  59014. name: "Front (Lewd)",
  59015. image: {
  59016. source: "./media/characters/mystra/front-lewd.svg",
  59017. extra: 529/442,
  59018. bottom: 31/560
  59019. }
  59020. },
  59021. head: {
  59022. height: math.unit(1.63, "feet"),
  59023. name: "Head",
  59024. image: {
  59025. source: "./media/characters/mystra/head.svg"
  59026. }
  59027. },
  59028. paw: {
  59029. height: math.unit(1.9, "feet"),
  59030. name: "Paw",
  59031. image: {
  59032. source: "./media/characters/mystra/paw.svg"
  59033. }
  59034. },
  59035. },
  59036. [
  59037. {
  59038. name: "Incognito",
  59039. height: math.unit(2.3, "meters")
  59040. },
  59041. {
  59042. name: "Small Macro",
  59043. height: math.unit(300, "meters")
  59044. },
  59045. {
  59046. name: "Small Mega",
  59047. height: math.unit(2, "km")
  59048. },
  59049. {
  59050. name: "Mega",
  59051. height: math.unit(30, "km")
  59052. },
  59053. {
  59054. name: "Small Giga",
  59055. height: math.unit(100, "km")
  59056. },
  59057. {
  59058. name: "Giga",
  59059. height: math.unit(1000, "km"),
  59060. default: true
  59061. },
  59062. {
  59063. name: "Continental",
  59064. height: math.unit(5000, "km")
  59065. },
  59066. {
  59067. name: "Terra",
  59068. height: math.unit(20000, "km")
  59069. },
  59070. {
  59071. name: "Solar",
  59072. height: math.unit(2e6, "km")
  59073. },
  59074. {
  59075. name: "Galactic",
  59076. height: math.unit(528502, "lightyears")
  59077. },
  59078. {
  59079. name: "Universal",
  59080. height: math.unit(20, "universes")
  59081. },
  59082. ]
  59083. ))
  59084. characterMakers.push(() => makeCharacter(
  59085. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  59086. {
  59087. front: {
  59088. height: math.unit(2, "meters"),
  59089. weight: math.unit(140, "kg"),
  59090. name: "Front",
  59091. image: {
  59092. source: "./media/characters/caleb/front.svg",
  59093. extra: 873/817,
  59094. bottom: 47/920
  59095. }
  59096. },
  59097. back: {
  59098. height: math.unit(2, "meters"),
  59099. weight: math.unit(140, "kg"),
  59100. name: "Back",
  59101. image: {
  59102. source: "./media/characters/caleb/back.svg",
  59103. extra: 877/828,
  59104. bottom: 24/901
  59105. }
  59106. },
  59107. snakeTail: {
  59108. height: math.unit(1.44, "feet"),
  59109. name: "Snake Tail",
  59110. image: {
  59111. source: "./media/characters/caleb/snake-tail.svg"
  59112. }
  59113. },
  59114. dick: {
  59115. height: math.unit(2.6, "feet"),
  59116. name: "Dick",
  59117. image: {
  59118. source: "./media/characters/caleb/dick.svg"
  59119. }
  59120. },
  59121. },
  59122. [
  59123. {
  59124. name: "Incognito",
  59125. height: math.unit(3, "meters")
  59126. },
  59127. {
  59128. name: "Home Size",
  59129. height: math.unit(200, "meters"),
  59130. default: true
  59131. },
  59132. {
  59133. name: "Macro",
  59134. height: math.unit(500, "meters")
  59135. },
  59136. {
  59137. name: "Big Macro",
  59138. height: math.unit(5, "km")
  59139. },
  59140. {
  59141. name: "Giga",
  59142. height: math.unit(250, "km")
  59143. },
  59144. {
  59145. name: "Giga+",
  59146. height: math.unit(5000, "km")
  59147. },
  59148. {
  59149. name: "Small Terra",
  59150. height: math.unit(35e3, "km")
  59151. },
  59152. {
  59153. name: "Terra",
  59154. height: math.unit(2e6, "km")
  59155. },
  59156. {
  59157. name: "Terra+",
  59158. height: math.unit(1.5e6, "km")
  59159. },
  59160. ]
  59161. ))
  59162. characterMakers.push(() => makeCharacter(
  59163. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  59164. {
  59165. front: {
  59166. height: math.unit(2, "meters"),
  59167. weight: math.unit(120, "kg"),
  59168. name: "Front",
  59169. image: {
  59170. source: "./media/characters/gilirian/front.svg",
  59171. extra: 805/737,
  59172. bottom: 13/818
  59173. }
  59174. },
  59175. side: {
  59176. height: math.unit(2, "meters"),
  59177. weight: math.unit(120, "kg"),
  59178. name: "Side",
  59179. image: {
  59180. source: "./media/characters/gilirian/side.svg",
  59181. extra: 810/746,
  59182. bottom: 6/816
  59183. }
  59184. },
  59185. back: {
  59186. height: math.unit(2, "meters"),
  59187. weight: math.unit(120, "kg"),
  59188. name: "Back",
  59189. image: {
  59190. source: "./media/characters/gilirian/back.svg",
  59191. extra: 815/745,
  59192. bottom: 15/830
  59193. }
  59194. },
  59195. frontNsfw: {
  59196. height: math.unit(2, "meters"),
  59197. weight: math.unit(120, "kg"),
  59198. name: "Front (NSFW)",
  59199. image: {
  59200. source: "./media/characters/gilirian/front-nsfw.svg",
  59201. extra: 805/737,
  59202. bottom: 13/818
  59203. }
  59204. },
  59205. sideNsfw: {
  59206. height: math.unit(2, "meters"),
  59207. weight: math.unit(120, "kg"),
  59208. name: "Side (NSFW)",
  59209. image: {
  59210. source: "./media/characters/gilirian/side-nsfw.svg",
  59211. extra: 810/746,
  59212. bottom: 6/816
  59213. }
  59214. },
  59215. },
  59216. [
  59217. {
  59218. name: "Incognito",
  59219. height: math.unit(2, "meters"),
  59220. default: true
  59221. },
  59222. {
  59223. name: "Macro",
  59224. height: math.unit(250, "meters")
  59225. },
  59226. {
  59227. name: "Big Macro",
  59228. height: math.unit(1500, "meters")
  59229. },
  59230. {
  59231. name: "Mega",
  59232. height: math.unit(40, "km")
  59233. },
  59234. {
  59235. name: "Giga",
  59236. height: math.unit(300, "km")
  59237. },
  59238. {
  59239. name: "Extra Giga",
  59240. height: math.unit(5000, "km")
  59241. },
  59242. {
  59243. name: "Small Terra",
  59244. height: math.unit(10e3, "km")
  59245. },
  59246. {
  59247. name: "Terra",
  59248. height: math.unit(3e5, "km")
  59249. },
  59250. {
  59251. name: "Galactic",
  59252. height: math.unit(369950, "lightyears")
  59253. },
  59254. ]
  59255. ))
  59256. characterMakers.push(() => makeCharacter(
  59257. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59258. {
  59259. front: {
  59260. height: math.unit(2.5, "meters"),
  59261. weight: math.unit(230, "lb"),
  59262. name: "Front",
  59263. image: {
  59264. source: "./media/characters/tarken/front.svg",
  59265. extra: 764/720,
  59266. bottom: 49/813
  59267. }
  59268. },
  59269. back: {
  59270. height: math.unit(2.5, "meters"),
  59271. weight: math.unit(230, "lb"),
  59272. name: "Back",
  59273. image: {
  59274. source: "./media/characters/tarken/back.svg",
  59275. extra: 756/720,
  59276. bottom: 35/791
  59277. }
  59278. },
  59279. frontNsfw: {
  59280. height: math.unit(2.5, "meters"),
  59281. weight: math.unit(230, "lb"),
  59282. name: "Front (NSFW)",
  59283. image: {
  59284. source: "./media/characters/tarken/front-nsfw.svg",
  59285. extra: 764/720,
  59286. bottom: 49/813
  59287. }
  59288. },
  59289. backNsfw: {
  59290. height: math.unit(2.5, "meters"),
  59291. weight: math.unit(230, "lb"),
  59292. name: "Back (NSFW)",
  59293. image: {
  59294. source: "./media/characters/tarken/back-nsfw.svg",
  59295. extra: 756/720,
  59296. bottom: 35/791
  59297. }
  59298. },
  59299. head: {
  59300. height: math.unit(2.22, "feet"),
  59301. name: "Head",
  59302. image: {
  59303. source: "./media/characters/tarken/head.svg"
  59304. }
  59305. },
  59306. tail: {
  59307. height: math.unit(5.25, "feet"),
  59308. name: "Tail",
  59309. image: {
  59310. source: "./media/characters/tarken/tail.svg"
  59311. }
  59312. },
  59313. dick: {
  59314. height: math.unit(1.95, "feet"),
  59315. name: "Dick",
  59316. image: {
  59317. source: "./media/characters/tarken/dick.svg"
  59318. }
  59319. },
  59320. hand: {
  59321. height: math.unit(1.78, "feet"),
  59322. name: "Hand",
  59323. image: {
  59324. source: "./media/characters/tarken/hand.svg"
  59325. }
  59326. },
  59327. beam: {
  59328. height: math.unit(1.5, "feet"),
  59329. name: "Beam",
  59330. image: {
  59331. source: "./media/characters/tarken/beam.svg"
  59332. }
  59333. },
  59334. },
  59335. [
  59336. {
  59337. name: "Original Size",
  59338. height: math.unit(2.5, "meters")
  59339. },
  59340. {
  59341. name: "Macro",
  59342. height: math.unit(150, "meters"),
  59343. default: true
  59344. },
  59345. {
  59346. name: "Macro+",
  59347. height: math.unit(300, "meters")
  59348. },
  59349. {
  59350. name: "Mega",
  59351. height: math.unit(2, "km")
  59352. },
  59353. {
  59354. name: "Mega+",
  59355. height: math.unit(35, "km")
  59356. },
  59357.  {
  59358. name: "Mega++",
  59359. height: math.unit(60, "km")
  59360. },
  59361. {
  59362. name: "Giga",
  59363. height: math.unit(200, "km")
  59364. },
  59365. {
  59366. name: "Giga+",
  59367. height: math.unit(2500, "km")
  59368. },
  59369. {
  59370. name: "Giga++",
  59371. height: math.unit(6600, "km")
  59372. },
  59373. {
  59374. name: "Terra",
  59375. height: math.unit(20000, "km")
  59376. },
  59377. {
  59378. name: "Terra+",
  59379. height: math.unit(300000, "km")
  59380. },
  59381. ]
  59382. ))
  59383. characterMakers.push(() => makeCharacter(
  59384. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59385. {
  59386. magpie_dressed: {
  59387. height: math.unit(1.7, "meters"),
  59388. weight: math.unit(70, "kg"),
  59389. name: "Dressed",
  59390. image: {
  59391. source: "./media/characters/otreus/magpie-dressed.svg",
  59392. extra: 691/672,
  59393. bottom: 116/807
  59394. },
  59395. form: "magpie",
  59396. default: true
  59397. },
  59398. magpie_nude: {
  59399. height: math.unit(1.7, "meters"),
  59400. weight: math.unit(70, "kg"),
  59401. name: "Nude",
  59402. image: {
  59403. source: "./media/characters/otreus/magpie-nude.svg",
  59404. extra: 691/672,
  59405. bottom: 116/807
  59406. },
  59407. form: "magpie",
  59408. },
  59409. magpie_dressedLewd: {
  59410. height: math.unit(1.7, "meters"),
  59411. weight: math.unit(70, "kg"),
  59412. name: "Dressed (Lewd)",
  59413. image: {
  59414. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59415. extra: 691/672,
  59416. bottom: 116/807
  59417. },
  59418. form: "magpie",
  59419. },
  59420. magpie_nudeLewd: {
  59421. height: math.unit(1.7, "meters"),
  59422. weight: math.unit(70, "kg"),
  59423. name: "Nude (Lewd)",
  59424. image: {
  59425. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59426. extra: 691/672,
  59427. bottom: 116/807
  59428. },
  59429. form: "magpie",
  59430. },
  59431. magpie_leftFoot: {
  59432. height: math.unit(1.58, "feet"),
  59433. name: "Left Foot",
  59434. image: {
  59435. source: "./media/characters/otreus/magpie-left-foot.svg"
  59436. },
  59437. form: "magpie",
  59438. },
  59439. magpie_rightFoot: {
  59440. height: math.unit(1.58, "feet"),
  59441. name: "Right Foot",
  59442. image: {
  59443. source: "./media/characters/otreus/magpie-right-foot.svg"
  59444. },
  59445. form: "magpie",
  59446. },
  59447. magpie_wingspan: {
  59448. height: math.unit(2, "meters"),
  59449. weight: math.unit(70, "kg"),
  59450. name: "Wingspan",
  59451. image: {
  59452. source: "./media/characters/otreus/magpie-wingspan.svg"
  59453. },
  59454. extraAttributes: {
  59455. "wingspan": {
  59456. name: "Wingspan",
  59457. power: 1,
  59458. type: "length",
  59459. base: math.unit(3.35, "meters")
  59460. },
  59461. },
  59462. form: "magpie",
  59463. },
  59464. hippogriff_dressed: {
  59465. height: math.unit(1.7, "meters"),
  59466. weight: math.unit(70, "kg"),
  59467. name: "Dressed",
  59468. image: {
  59469. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59470. extra: 710/689,
  59471. bottom: 67/777
  59472. },
  59473. form: "hippogriff",
  59474. default: true
  59475. },
  59476. hippogriff_nude: {
  59477. height: math.unit(1.7, "meters"),
  59478. weight: math.unit(70, "kg"),
  59479. name: "Nude",
  59480. image: {
  59481. source: "./media/characters/otreus/hippogriff-nude.svg",
  59482. extra: 710/689,
  59483. bottom: 67/777
  59484. },
  59485. form: "hippogriff",
  59486. },
  59487. hippogriff_dressedLewd: {
  59488. height: math.unit(1.7, "meters"),
  59489. weight: math.unit(70, "kg"),
  59490. name: "Dressed (Lewd)",
  59491. image: {
  59492. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59493. extra: 710/689,
  59494. bottom: 67/777
  59495. },
  59496. form: "hippogriff",
  59497. },
  59498. hippogriff_nudeLewd: {
  59499. height: math.unit(1.7, "meters"),
  59500. weight: math.unit(70, "kg"),
  59501. name: "Nude (Lewd)",
  59502. image: {
  59503. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59504. extra: 710/689,
  59505. bottom: 67/777
  59506. },
  59507. form: "hippogriff",
  59508. },
  59509. },
  59510. [
  59511. {
  59512. name: "Original Size",
  59513. height: math.unit(1.7, "meters"),
  59514. allForms: true
  59515. },
  59516. {
  59517. name: "Incognito Size",
  59518. height: math.unit(2, "meters"),
  59519. allForms: true
  59520. },
  59521. {
  59522. name: "Mega",
  59523. height: math.unit(2, "km"),
  59524. allForms: true
  59525. },
  59526. {
  59527. name: "Mega+",
  59528. height: math.unit(40, "km"),
  59529. allForms: true
  59530. },
  59531. {
  59532. name: "Giga",
  59533. height: math.unit(250, "km"),
  59534. allForms: true
  59535. },
  59536. {
  59537. name: "Giga+",
  59538. height: math.unit(3000, "km"),
  59539. allForms: true
  59540. },
  59541. {
  59542. name: "Terra",
  59543. height: math.unit(20000, "km"),
  59544. allForms: true
  59545. },
  59546. {
  59547. name: "Solar (Home Size)",
  59548. height: math.unit(3e6, "km"),
  59549. allForms: true,
  59550. default: true
  59551. },
  59552. ],
  59553. {
  59554. "magpie": {
  59555. name: "Magpie",
  59556. default: true
  59557. },
  59558. "hippogriff": {
  59559. name: "Hippogriff",
  59560. },
  59561. }
  59562. ))
  59563. characterMakers.push(() => makeCharacter(
  59564. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59565. {
  59566. frontDressed: {
  59567. height: math.unit(1.8, "meters"),
  59568. weight: math.unit(90, "kg"),
  59569. name: "Front (Dressed)",
  59570. image: {
  59571. source: "./media/characters/thalia/front-dressed.svg",
  59572. extra: 478/402,
  59573. bottom: 55/533
  59574. }
  59575. },
  59576. backDressed: {
  59577. height: math.unit(1.8, "meters"),
  59578. weight: math.unit(90, "kg"),
  59579. name: "Back (Dressed)",
  59580. image: {
  59581. source: "./media/characters/thalia/back-dressed.svg",
  59582. extra: 500/424,
  59583. bottom: 15/515
  59584. }
  59585. },
  59586. frontNude: {
  59587. height: math.unit(1.8, "meters"),
  59588. weight: math.unit(90, "kg"),
  59589. name: "Front (Nude)",
  59590. image: {
  59591. source: "./media/characters/thalia/front-nude.svg",
  59592. extra: 478/402,
  59593. bottom: 55/533
  59594. }
  59595. },
  59596. backNude: {
  59597. height: math.unit(1.8, "meters"),
  59598. weight: math.unit(90, "kg"),
  59599. name: "Back (Nude)",
  59600. image: {
  59601. source: "./media/characters/thalia/back-nude.svg",
  59602. extra: 500/424,
  59603. bottom: 15/515
  59604. }
  59605. },
  59606. },
  59607. [
  59608. {
  59609. name: "Incognito",
  59610. height: math.unit(3, "meters")
  59611. },
  59612. {
  59613. name: "Macro",
  59614. height: math.unit(500, "meters")
  59615. },
  59616. {
  59617. name: "Mega",
  59618. height: math.unit(5, "km")
  59619. },
  59620. {
  59621. name: "Mega+",
  59622. height: math.unit(30, "km")
  59623. },
  59624. {
  59625. name: "Giga",
  59626. height: math.unit(350, "km")
  59627. },
  59628. {
  59629. name: "Giga+",
  59630. height: math.unit(4000, "km")
  59631. },
  59632. {
  59633. name: "Terra",
  59634. height: math.unit(35000, "km")
  59635. },
  59636. {
  59637. name: "Original Size",
  59638. height: math.unit(130000, "km")
  59639. },
  59640. {
  59641. name: "Solar (Home Size)",
  59642. height: math.unit(4e6, "km"),
  59643. default: true
  59644. },
  59645. ]
  59646. ))
  59647. characterMakers.push(() => makeCharacter(
  59648. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59649. {
  59650. front: {
  59651. height: math.unit(1.8, "meters"),
  59652. weight: math.unit(95, "kg"),
  59653. name: "Front",
  59654. image: {
  59655. source: "./media/characters/shango/front.svg",
  59656. extra: 1925/1774,
  59657. bottom: 67/1992
  59658. }
  59659. },
  59660. back: {
  59661. height: math.unit(1.8, "meters"),
  59662. weight: math.unit(95, "kg"),
  59663. name: "Back",
  59664. image: {
  59665. source: "./media/characters/shango/back.svg",
  59666. extra: 1915/1766,
  59667. bottom: 52/1967
  59668. }
  59669. },
  59670. frontLewd: {
  59671. height: math.unit(1.8, "meters"),
  59672. weight: math.unit(95, "kg"),
  59673. name: "Front (Lewd)",
  59674. image: {
  59675. source: "./media/characters/shango/front-lewd.svg",
  59676. extra: 1925/1774,
  59677. bottom: 67/1992
  59678. }
  59679. },
  59680. backLewd: {
  59681. height: math.unit(1.8, "meters"),
  59682. weight: math.unit(95, "kg"),
  59683. name: "Back (Lewd)",
  59684. image: {
  59685. source: "./media/characters/shango/back-lewd.svg",
  59686. extra: 1915/1766,
  59687. bottom: 52/1967
  59688. }
  59689. },
  59690. maw: {
  59691. height: math.unit(1.64, "feet"),
  59692. name: "Maw",
  59693. image: {
  59694. source: "./media/characters/shango/maw.svg"
  59695. }
  59696. },
  59697. dick: {
  59698. height: math.unit(2.14, "feet"),
  59699. name: "Dick",
  59700. image: {
  59701. source: "./media/characters/shango/dick.svg"
  59702. }
  59703. },
  59704. },
  59705. [
  59706. {
  59707. name: "Incognito",
  59708. height: math.unit(1.8, "meters")
  59709. },
  59710. {
  59711. name: "Home Size",
  59712. height: math.unit(60, "meters"),
  59713. default: true
  59714. },
  59715. {
  59716. name: "Macro",
  59717. height: math.unit(450, "meters")
  59718. },
  59719. {
  59720. name: "Mega",
  59721. height: math.unit(6, "km")
  59722. },
  59723. {
  59724. name: "Mega+",
  59725. height: math.unit(35, "km")
  59726. },
  59727. {
  59728. name: "Giga",
  59729. height: math.unit(500, "km")
  59730. },
  59731. {
  59732. name: "Giga+",
  59733. height: math.unit(5000, "km")
  59734. },
  59735. {
  59736. name: "Terra",
  59737. height: math.unit(60000, "km")
  59738. },
  59739. {
  59740. name: "Terra+",
  59741. height: math.unit(400000, "km")
  59742. },
  59743. ]
  59744. ))
  59745. characterMakers.push(() => makeCharacter(
  59746. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59747. {
  59748. front: {
  59749. height: math.unit(2, "meters"),
  59750. weight: math.unit(95, "kg"),
  59751. name: "Front",
  59752. image: {
  59753. source: "./media/characters/osiris-gryphon/front.svg",
  59754. extra: 1508/1313,
  59755. bottom: 87/1595
  59756. }
  59757. },
  59758. back: {
  59759. height: math.unit(2, "meters"),
  59760. weight: math.unit(95, "kg"),
  59761. name: "Back",
  59762. image: {
  59763. source: "./media/characters/osiris-gryphon/back.svg",
  59764. extra: 1436/1309,
  59765. bottom: 64/1500
  59766. }
  59767. },
  59768. frontLewd: {
  59769. height: math.unit(2, "meters"),
  59770. weight: math.unit(95, "kg"),
  59771. name: "Front-lewd",
  59772. image: {
  59773. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59774. extra: 1508/1313,
  59775. bottom: 87/1595
  59776. }
  59777. },
  59778. wing: {
  59779. height: math.unit(6.3333, "feet"),
  59780. name: "Wing",
  59781. image: {
  59782. source: "./media/characters/osiris-gryphon/wing.svg"
  59783. }
  59784. },
  59785. },
  59786. [
  59787. {
  59788. name: "Incognito",
  59789. height: math.unit(2, "meters")
  59790. },
  59791. {
  59792. name: "Home Size",
  59793. height: math.unit(30, "meters"),
  59794. default: true
  59795. },
  59796. {
  59797. name: "Macro",
  59798. height: math.unit(100, "meters")
  59799. },
  59800. {
  59801. name: "Macro+",
  59802. height: math.unit(350, "meters")
  59803. },
  59804. {
  59805. name: "Mega",
  59806. height: math.unit(40, "km")
  59807. },
  59808. {
  59809. name: "Giga",
  59810. height: math.unit(300, "km")
  59811. },
  59812. {
  59813. name: "Giga+",
  59814. height: math.unit(2000, "km")
  59815. },
  59816. {
  59817. name: "Terra",
  59818. height: math.unit(30000, "km")
  59819. },
  59820. ]
  59821. ))
  59822. characterMakers.push(() => makeCharacter(
  59823. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59824. {
  59825. front: {
  59826. height: math.unit(2.5, "meters"),
  59827. weight: math.unit(200, "kg"),
  59828. name: "Front",
  59829. image: {
  59830. source: "./media/characters/atlas-dragon/front.svg",
  59831. extra: 745/462,
  59832. bottom: 36/781
  59833. }
  59834. },
  59835. back: {
  59836. height: math.unit(2.5, "meters"),
  59837. weight: math.unit(200, "kg"),
  59838. name: "Back",
  59839. image: {
  59840. source: "./media/characters/atlas-dragon/back.svg",
  59841. extra: 848/822,
  59842. bottom: 57/905
  59843. }
  59844. },
  59845. frontLewd: {
  59846. height: math.unit(2.5, "meters"),
  59847. weight: math.unit(200, "kg"),
  59848. name: "Front (Lewd)",
  59849. image: {
  59850. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59851. extra: 745/462,
  59852. bottom: 36/781
  59853. }
  59854. },
  59855. backLewd: {
  59856. height: math.unit(2.5, "meters"),
  59857. weight: math.unit(200, "kg"),
  59858. name: "Back (Lewd)",
  59859. image: {
  59860. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59861. extra: 848/822,
  59862. bottom: 57/905
  59863. }
  59864. },
  59865. },
  59866. [
  59867. {
  59868. name: "Incognito",
  59869. height: math.unit(2.5, "meters")
  59870. },
  59871. {
  59872. name: "Small Macro",
  59873. height: math.unit(50, "meters")
  59874. },
  59875. {
  59876. name: "Macro",
  59877. height: math.unit(350, "meters")
  59878. },
  59879. {
  59880. name: "Mega",
  59881. height: math.unit(5.5, "kilometers")
  59882. },
  59883. {
  59884. name: "Mega+",
  59885. height: math.unit(50, "km")
  59886. },
  59887. {
  59888. name: "Giga",
  59889. height: math.unit(350, "km")
  59890. },
  59891. {
  59892. name: "Giga+",
  59893. height: math.unit(2000, "km")
  59894. },
  59895. {
  59896. name: "Giga++",
  59897. height: math.unit(6500, "km")
  59898. },
  59899. {
  59900. name: "Terra",
  59901. height: math.unit(30000, "km")
  59902. },
  59903. {
  59904. name: "Terra+",
  59905. height: math.unit(250000, "km")
  59906. },
  59907. {
  59908. name: "True Size",
  59909. height: math.unit(100, "multiverses"),
  59910. default: true
  59911. },
  59912. ]
  59913. ))
  59914. characterMakers.push(() => makeCharacter(
  59915. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59916. {
  59917. front: {
  59918. height: math.unit(1.8, "m"),
  59919. weight: math.unit(120, "kg"),
  59920. name: "Front",
  59921. image: {
  59922. source: "./media/characters/chey/front.svg",
  59923. extra: 1359/1270,
  59924. bottom: 18/1377
  59925. }
  59926. },
  59927. arm: {
  59928. height: math.unit(2.05, "feet"),
  59929. name: "Arm",
  59930. image: {
  59931. source: "./media/characters/chey/arm.svg"
  59932. }
  59933. },
  59934. head: {
  59935. height: math.unit(1.89, "feet"),
  59936. name: "Head",
  59937. image: {
  59938. source: "./media/characters/chey/head.svg"
  59939. }
  59940. },
  59941. },
  59942. [
  59943. {
  59944. name: "Original Size",
  59945. height: math.unit(5, "cm")
  59946. },
  59947. {
  59948. name: "Incognito Size",
  59949. height: math.unit(2.4, "m")
  59950. },
  59951. {
  59952. name: "Home Size",
  59953. height: math.unit(200, "meters"),
  59954. default: true
  59955. },
  59956. {
  59957. name: "Mega",
  59958. height: math.unit(2, "km")
  59959. },
  59960. {
  59961. name: "Giga (Preferred Size)",
  59962. height: math.unit(2000, "km")
  59963. },
  59964. {
  59965. name: "Giga+",
  59966. height: math.unit(6000, "km")
  59967. },
  59968. {
  59969. name: "Terra",
  59970. height: math.unit(17000, "km")
  59971. },
  59972. {
  59973. name: "Terra+",
  59974. height: math.unit(75000, "km")
  59975. },
  59976. {
  59977. name: "Terra++",
  59978. height: math.unit(225000, "km")
  59979. },
  59980. ]
  59981. ))
  59982. characterMakers.push(() => makeCharacter(
  59983. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59984. {
  59985. side: {
  59986. height: math.unit(7.8, "meters"),
  59987. name: "Side",
  59988. image: {
  59989. source: "./media/characters/ragnarok/side.svg",
  59990. extra: 725/621,
  59991. bottom: 72/797
  59992. }
  59993. },
  59994. },
  59995. [
  59996. {
  59997. name: "Normal",
  59998. height: math.unit(7.8, "meters"),
  59999. default: true
  60000. },
  60001. ]
  60002. ))
  60003. characterMakers.push(() => makeCharacter(
  60004. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  60005. {
  60006. hyena_front: {
  60007. height: math.unit(2.1, "meters"),
  60008. weight: math.unit(110, "kg"),
  60009. name: "Front",
  60010. image: {
  60011. source: "./media/characters/nima/hyena-front.svg",
  60012. extra: 1904/1796,
  60013. bottom: 67/1971
  60014. },
  60015. form: "hyena",
  60016. },
  60017. hyena_back: {
  60018. height: math.unit(2.1, "meters"),
  60019. weight: math.unit(110, "kg"),
  60020. name: "Back",
  60021. image: {
  60022. source: "./media/characters/nima/hyena-back.svg",
  60023. extra: 1964/1884,
  60024. bottom: 35/1999
  60025. },
  60026. form: "hyena",
  60027. },
  60028. shark_front: {
  60029. height: math.unit(1.95, "meters"),
  60030. weight: math.unit(110, "kg"),
  60031. name: "Front",
  60032. image: {
  60033. source: "./media/characters/nima/shark-front.svg",
  60034. extra: 2238/2013,
  60035. bottom: 0/223
  60036. },
  60037. form: "shark",
  60038. },
  60039. paw: {
  60040. height: math.unit(1, "feet"),
  60041. name: "Paw",
  60042. image: {
  60043. source: "./media/characters/nima/paw.svg"
  60044. }
  60045. },
  60046. circlet: {
  60047. height: math.unit(0.3, "feet"),
  60048. name: "Circlet",
  60049. image: {
  60050. source: "./media/characters/nima/circlet.svg"
  60051. }
  60052. },
  60053. necklace: {
  60054. height: math.unit(1.2, "feet"),
  60055. name: "Necklace",
  60056. image: {
  60057. source: "./media/characters/nima/necklace.svg"
  60058. }
  60059. },
  60060. bracelet: {
  60061. height: math.unit(0.51, "feet"),
  60062. name: "Bracelet",
  60063. image: {
  60064. source: "./media/characters/nima/bracelet.svg"
  60065. }
  60066. },
  60067. armband: {
  60068. height: math.unit(1.3, "feet"),
  60069. name: "Armband",
  60070. image: {
  60071. source: "./media/characters/nima/armband.svg"
  60072. }
  60073. },
  60074. },
  60075. [
  60076. {
  60077. name: "Incognito",
  60078. height: math.unit(2.1, "meters"),
  60079. allForms: true
  60080. },
  60081. {
  60082. name: "Small Macro",
  60083. height: math.unit(50, "meters"),
  60084. allForms: true
  60085. },
  60086. {
  60087. name: "Macro",
  60088. height: math.unit(200, "meters"),
  60089. allForms: true
  60090. },
  60091. {
  60092. name: "Mega",
  60093. height: math.unit(2.5, "km"),
  60094. allForms: true
  60095. },
  60096. {
  60097. name: "Mega+",
  60098. height: math.unit(30, "km"),
  60099. allForms: true
  60100. },
  60101. {
  60102. name: "Giga (Home Size)",
  60103. height: math.unit(400, "km"),
  60104. allForms: true,
  60105. default: true
  60106. },
  60107. {
  60108. name: "Giga+",
  60109. height: math.unit(2500, "km"),
  60110. allForms: true
  60111. },
  60112. {
  60113. name: "Giga++",
  60114. height: math.unit(8000, "km"),
  60115. allForms: true
  60116. },
  60117. {
  60118. name: "Terra",
  60119. height: math.unit(20000, "km"),
  60120. allForms: true
  60121. },
  60122. {
  60123. name: "Terra+",
  60124. height: math.unit(70000, "km"),
  60125. allForms: true
  60126. },
  60127. {
  60128. name: "Terra++",
  60129. height: math.unit(600000, "km"),
  60130. allForms: true
  60131. },
  60132. {
  60133. name: "Galactic",
  60134. height: math.unit(40, "galaxies"),
  60135. allForms: true
  60136. },
  60137. {
  60138. name: "Universal",
  60139. height: math.unit(40, "universes"),
  60140. allForms: true
  60141. },
  60142. ],
  60143. {
  60144. "hyena": {
  60145. name: "Hyena",
  60146. default: true
  60147. },
  60148. "shark": {
  60149. name: "Shark",
  60150. },
  60151. }
  60152. ))
  60153. characterMakers.push(() => makeCharacter(
  60154. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  60155. {
  60156. anthro_front: {
  60157. height: math.unit(1.5, "meters"),
  60158. name: "Front",
  60159. image: {
  60160. source: "./media/characters/adelaide/anthro-front.svg",
  60161. extra: 860/783,
  60162. bottom: 60/920
  60163. },
  60164. form: "anthro",
  60165. default: true
  60166. },
  60167. hand: {
  60168. height: math.unit(0.65, "feet"),
  60169. name: "Hand",
  60170. image: {
  60171. source: "./media/characters/adelaide/hand.svg"
  60172. },
  60173. form: "anthro"
  60174. },
  60175. foot: {
  60176. height: math.unit(1.38 * 259 / 314, "feet"),
  60177. name: "Foot",
  60178. image: {
  60179. source: "./media/characters/adelaide/foot.svg",
  60180. extra: 259/259,
  60181. bottom: 55/314
  60182. },
  60183. form: "anthro"
  60184. },
  60185. feather: {
  60186. height: math.unit(0.85, "feet"),
  60187. name: "Feather",
  60188. image: {
  60189. source: "./media/characters/adelaide/feather.svg"
  60190. },
  60191. form: "anthro"
  60192. },
  60193. feral_side: {
  60194. height: math.unit(1, "meters"),
  60195. name: "Side",
  60196. image: {
  60197. source: "./media/characters/adelaide/feral-side.svg",
  60198. extra: 550/467,
  60199. bottom: 37/587
  60200. },
  60201. form: "feral",
  60202. default: true
  60203. },
  60204. feral_hand: {
  60205. height: math.unit(0.58, "feet"),
  60206. name: "Hand",
  60207. image: {
  60208. source: "./media/characters/adelaide/hand.svg"
  60209. },
  60210. form: "feral"
  60211. },
  60212. feral_foot: {
  60213. height: math.unit(1.2 * 259 / 314, "feet"),
  60214. name: "Foot",
  60215. image: {
  60216. source: "./media/characters/adelaide/foot.svg",
  60217. extra: 259/259,
  60218. bottom: 55/314
  60219. },
  60220. form: "feral"
  60221. },
  60222. feral_feather: {
  60223. height: math.unit(0.63, "feet"),
  60224. name: "Feather",
  60225. image: {
  60226. source: "./media/characters/adelaide/feather.svg"
  60227. },
  60228. form: "feral"
  60229. },
  60230. },
  60231. [
  60232. {
  60233. name: "Normal",
  60234. height: math.unit(1.5, "meters"),
  60235. form: "anthro",
  60236. default: true
  60237. },
  60238. {
  60239. name: "Normal",
  60240. height: math.unit(1, "meters"),
  60241. form: "feral",
  60242. default: true
  60243. },
  60244. ],
  60245. {
  60246. "anthro": {
  60247. name: "Anthro",
  60248. default: true
  60249. },
  60250. "feral": {
  60251. name: "Feral",
  60252. },
  60253. }
  60254. ))
  60255. characterMakers.push(() => makeCharacter(
  60256. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60257. {
  60258. front: {
  60259. height: math.unit(2.5, "meters"),
  60260. name: "Front",
  60261. image: {
  60262. source: "./media/characters/goa/front.svg",
  60263. extra: 1109/1013,
  60264. bottom: 150/1259
  60265. }
  60266. },
  60267. },
  60268. [
  60269. {
  60270. name: "Normal",
  60271. height: math.unit(2.5, "meters"),
  60272. default: true
  60273. },
  60274. ]
  60275. ))
  60276. characterMakers.push(() => makeCharacter(
  60277. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60278. {
  60279. front: {
  60280. height: math.unit(2, "meters"),
  60281. weight: math.unit(100, "kg"),
  60282. name: "Front",
  60283. image: {
  60284. source: "./media/characters/kiki-weavile/front.svg",
  60285. extra: 357/332,
  60286. bottom: 60/417
  60287. }
  60288. },
  60289. },
  60290. [
  60291. {
  60292. name: "Normal",
  60293. height: math.unit(2, "meters"),
  60294. default: true
  60295. },
  60296. ]
  60297. ))
  60298. characterMakers.push(() => makeCharacter(
  60299. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60300. {
  60301. side: {
  60302. height: math.unit(1.6, "meters"),
  60303. name: "Side",
  60304. image: {
  60305. source: "./media/characters/liza/side.svg",
  60306. extra: 943/915,
  60307. bottom: 72/1015
  60308. }
  60309. },
  60310. },
  60311. [
  60312. {
  60313. name: "Normal",
  60314. height: math.unit(1.6, "meters"),
  60315. default: true
  60316. },
  60317. ]
  60318. ))
  60319. characterMakers.push(() => makeCharacter(
  60320. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60321. {
  60322. side: {
  60323. height: math.unit(2.5, "meters"),
  60324. preyCapacity: math.unit(1, "people"),
  60325. name: "Side",
  60326. image: {
  60327. source: "./media/characters/persephone-sweetbreath/side.svg",
  60328. extra: 796/700,
  60329. bottom: 44/840
  60330. }
  60331. },
  60332. sideVore: {
  60333. height: math.unit(2.5, "meters"),
  60334. preyCapacity: math.unit(1, "people"),
  60335. name: "Side (Full)",
  60336. image: {
  60337. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60338. extra: 796/700,
  60339. bottom: 44/840
  60340. }
  60341. },
  60342. },
  60343. [
  60344. {
  60345. name: "Normal",
  60346. height: math.unit(2.5, "meters"),
  60347. default: true
  60348. },
  60349. ]
  60350. ))
  60351. characterMakers.push(() => makeCharacter(
  60352. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60353. {
  60354. front: {
  60355. height: math.unit(32, "meters"),
  60356. name: "Front",
  60357. image: {
  60358. source: "./media/characters/pierce/front.svg",
  60359. extra: 1695/1475,
  60360. bottom: 185/1880
  60361. }
  60362. },
  60363. side: {
  60364. height: math.unit(32, "meters"),
  60365. name: "Side",
  60366. image: {
  60367. source: "./media/characters/pierce/side.svg",
  60368. extra: 974/859,
  60369. bottom: 43/1017
  60370. }
  60371. },
  60372. frontWingless: {
  60373. height: math.unit(32, "meters"),
  60374. name: "Front (Wingless)",
  60375. image: {
  60376. source: "./media/characters/pierce/front-wingless.svg",
  60377. extra: 1695/1475,
  60378. bottom: 185/1880
  60379. }
  60380. },
  60381. sideWingless: {
  60382. height: math.unit(32, "meters"),
  60383. name: "Side (Wingless)",
  60384. image: {
  60385. source: "./media/characters/pierce/side-wingless.svg",
  60386. extra: 974/859,
  60387. bottom: 43/1017
  60388. }
  60389. },
  60390. maw: {
  60391. height: math.unit(19.3, "meters"),
  60392. name: "Maw",
  60393. image: {
  60394. source: "./media/characters/pierce/maw.svg"
  60395. }
  60396. },
  60397. },
  60398. [
  60399. {
  60400. name: "Small",
  60401. height: math.unit(8.5, "meters")
  60402. },
  60403. {
  60404. name: "Normal",
  60405. height: math.unit(32, "meters"),
  60406. default: true
  60407. },
  60408. ]
  60409. ))
  60410. characterMakers.push(() => makeCharacter(
  60411. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60412. {
  60413. front: {
  60414. height: math.unit(2.3, "meters"),
  60415. weight: math.unit(165, "kg"),
  60416. name: "Front",
  60417. image: {
  60418. source: "./media/characters/shira/front.svg",
  60419. extra: 924/919,
  60420. bottom: 17/941
  60421. },
  60422. form: "cobra",
  60423. default: true
  60424. },
  60425. back: {
  60426. height: math.unit(2.3, "meters"),
  60427. weight: math.unit(165, "kg"),
  60428. name: "Back",
  60429. image: {
  60430. source: "./media/characters/shira/back.svg",
  60431. extra: 928/922,
  60432. bottom: 18/946
  60433. },
  60434. form: "cobra"
  60435. },
  60436. frontLewd: {
  60437. height: math.unit(2.3, "meters"),
  60438. weight: math.unit(165, "kg"),
  60439. name: "Front (Lewd)",
  60440. image: {
  60441. source: "./media/characters/shira/front-lewd.svg",
  60442. extra: 924/919,
  60443. bottom: 17/941
  60444. },
  60445. form: "cobra"
  60446. },
  60447. backLewd: {
  60448. height: math.unit(2.3, "meters"),
  60449. weight: math.unit(165, "kg"),
  60450. name: "Back (Lewd)",
  60451. image: {
  60452. source: "./media/characters/shira/back-lewd.svg",
  60453. extra: 928/922,
  60454. bottom: 18/946
  60455. },
  60456. form: "cobra"
  60457. },
  60458. maw: {
  60459. height: math.unit(1.14, "feet"),
  60460. name: "Maw",
  60461. image: {
  60462. source: "./media/characters/shira/maw.svg"
  60463. },
  60464. form: "cobra"
  60465. },
  60466. magma_front: {
  60467. height: math.unit(2.3, "meters"),
  60468. weight: math.unit(165, "kg"),
  60469. name: "Front",
  60470. image: {
  60471. source: "./media/characters/shira/magma-front.svg",
  60472. extra: 1870/1693,
  60473. bottom: 24/1894
  60474. },
  60475. form: "magma",
  60476. },
  60477. magma_back: {
  60478. height: math.unit(2.3, "meters"),
  60479. weight: math.unit(165, "kg"),
  60480. name: "Back",
  60481. image: {
  60482. source: "./media/characters/shira/magma-back.svg",
  60483. extra: 1918/1756,
  60484. bottom: 46/1964
  60485. },
  60486. form: "magma",
  60487. },
  60488. },
  60489. [
  60490. {
  60491. name: "Incognito",
  60492. height: math.unit(2.3, "meters"),
  60493. allForms: true
  60494. },
  60495. {
  60496. name: "Home Size",
  60497. height: math.unit(150, "meters"),
  60498. default: true,
  60499. allForms: true
  60500. },
  60501. {
  60502. name: "Macro",
  60503. height: math.unit(2, "km"),
  60504. allForms: true
  60505. },
  60506. {
  60507. name: "Mega",
  60508. height: math.unit(30, "km"),
  60509. allForms: true
  60510. },
  60511. {
  60512. name: "Giga",
  60513. height: math.unit(450, "km"),
  60514. allForms: true
  60515. },
  60516. {
  60517. name: "Giga+",
  60518. height: math.unit(3000, "km"),
  60519. allForms: true
  60520. },
  60521. {
  60522. name: "Giga++",
  60523. height: math.unit(6000, "km"),
  60524. allForms: true
  60525. },
  60526. {
  60527. name: "Terra",
  60528. height: math.unit(80000, "km"),
  60529. allForms: true
  60530. },
  60531. {
  60532. name: "Terra+",
  60533. height: math.unit(350000, "km"),
  60534. allForms: true
  60535. },
  60536. {
  60537. name: "Solar",
  60538. height: math.unit(1e6, "km"),
  60539. allForms: true
  60540. },
  60541. ],
  60542. {
  60543. "cobra": {
  60544. name: "Cobra",
  60545. default: true
  60546. },
  60547. "magma": {
  60548. name: "Magma Dragon",
  60549. },
  60550. }
  60551. ))
  60552. characterMakers.push(() => makeCharacter(
  60553. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60554. {
  60555. front: {
  60556. height: math.unit(2, "meters"),
  60557. weight: math.unit(160, "kg"),
  60558. name: "Front",
  60559. image: {
  60560. source: "./media/characters/daxerios/front.svg",
  60561. extra: 1334/1277,
  60562. bottom: 45/1379
  60563. }
  60564. },
  60565. frontLewd: {
  60566. height: math.unit(2, "meters"),
  60567. weight: math.unit(160, "kg"),
  60568. name: "Front (Lewd)",
  60569. image: {
  60570. source: "./media/characters/daxerios/front-lewd.svg",
  60571. extra: 1334/1277,
  60572. bottom: 45/1379
  60573. }
  60574. },
  60575. dick: {
  60576. height: math.unit(2.35, "feet"),
  60577. name: "Dick",
  60578. image: {
  60579. source: "./media/characters/daxerios/dick.svg"
  60580. }
  60581. },
  60582. },
  60583. [
  60584. {
  60585. name: "\"Small\"",
  60586. height: math.unit(5, "meters")
  60587. },
  60588. {
  60589. name: "Original Size",
  60590. height: math.unit(500, "meters"),
  60591. default: true
  60592. },
  60593. {
  60594. name: "Mega",
  60595. height: math.unit(2, "km")
  60596. },
  60597. {
  60598. name: "Mega+",
  60599. height: math.unit(35, "km")
  60600. },
  60601. {
  60602. name: "Giga",
  60603. height: math.unit(250, "km")
  60604. },
  60605. {
  60606. name: "Giga+",
  60607. height: math.unit(3000, "km")
  60608. },
  60609. {
  60610. name: "Terra",
  60611. height: math.unit(25000, "km")
  60612. },
  60613. {
  60614. name: "Terra+",
  60615. height: math.unit(300000, "km")
  60616. },
  60617. {
  60618. name: "Solar",
  60619. height: math.unit(1e6, "km")
  60620. },
  60621. ]
  60622. ))
  60623. characterMakers.push(() => makeCharacter(
  60624. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60625. {
  60626. front: {
  60627. height: math.unit(8 + 4/12, "feet"),
  60628. weight: math.unit(464, "lb"),
  60629. name: "Front",
  60630. image: {
  60631. source: "./media/characters/caveat/front.svg",
  60632. extra: 1861/1678,
  60633. bottom: 40/1901
  60634. }
  60635. },
  60636. },
  60637. [
  60638. {
  60639. name: "Normal",
  60640. height: math.unit(8 + 4/12, "feet"),
  60641. default: true
  60642. },
  60643. ]
  60644. ))
  60645. characterMakers.push(() => makeCharacter(
  60646. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60647. {
  60648. front: {
  60649. height: math.unit(12, "feet"),
  60650. weight: math.unit(1800, "lb"),
  60651. name: "Front",
  60652. image: {
  60653. source: "./media/characters/centbair/front.svg",
  60654. extra: 781/663,
  60655. bottom: 25/806
  60656. }
  60657. },
  60658. frontNsfw: {
  60659. height: math.unit(12, "feet"),
  60660. weight: math.unit(1800, "lb"),
  60661. name: "Front (NSFW)",
  60662. image: {
  60663. source: "./media/characters/centbair/front-nsfw.svg",
  60664. extra: 781/663,
  60665. bottom: 25/806
  60666. }
  60667. },
  60668. back: {
  60669. height: math.unit(12, "feet"),
  60670. weight: math.unit(1800, "lb"),
  60671. name: "Back",
  60672. image: {
  60673. source: "./media/characters/centbair/back.svg",
  60674. extra: 808/761,
  60675. bottom: 19/827
  60676. }
  60677. },
  60678. dick: {
  60679. height: math.unit(6.5, "feet"),
  60680. name: "Dick",
  60681. image: {
  60682. source: "./media/characters/centbair/dick.svg"
  60683. }
  60684. },
  60685. slit: {
  60686. height: math.unit(3.25, "feet"),
  60687. name: "Slit",
  60688. image: {
  60689. source: "./media/characters/centbair/slit.svg"
  60690. }
  60691. },
  60692. },
  60693. [
  60694. {
  60695. name: "Normal",
  60696. height: math.unit(12, "feet"),
  60697. default: true
  60698. },
  60699. ]
  60700. ))
  60701. characterMakers.push(() => makeCharacter(
  60702. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60703. {
  60704. front: {
  60705. height: math.unit(5 + 7/12, "feet"),
  60706. name: "Front",
  60707. image: {
  60708. source: "./media/characters/andy/front.svg",
  60709. extra: 634/588,
  60710. bottom: 36/670
  60711. },
  60712. extraAttributes: {
  60713. "pawLength": {
  60714. name: "Paw Length",
  60715. power: 1,
  60716. type: "length",
  60717. base: math.unit(1, "feet")
  60718. },
  60719. }
  60720. },
  60721. side: {
  60722. height: math.unit(5 + 7/12, "feet"),
  60723. name: "Side",
  60724. image: {
  60725. source: "./media/characters/andy/side.svg",
  60726. extra: 641/596,
  60727. bottom: 34/675
  60728. },
  60729. extraAttributes: {
  60730. "pawLength": {
  60731. name: "Paw Length",
  60732. power: 1,
  60733. type: "length",
  60734. base: math.unit(1, "feet")
  60735. },
  60736. }
  60737. },
  60738. back: {
  60739. height: math.unit(5 + 7/12, "feet"),
  60740. name: "Back",
  60741. image: {
  60742. source: "./media/characters/andy/back.svg",
  60743. extra: 618/583,
  60744. bottom: 39/657
  60745. },
  60746. extraAttributes: {
  60747. "pawLength": {
  60748. name: "Paw Length",
  60749. power: 1,
  60750. type: "length",
  60751. base: math.unit(1, "feet")
  60752. },
  60753. }
  60754. },
  60755. paw: {
  60756. height: math.unit(1.13, "feet"),
  60757. name: "Paw",
  60758. image: {
  60759. source: "./media/characters/andy/paw.svg"
  60760. }
  60761. },
  60762. },
  60763. [
  60764. {
  60765. name: "Micro",
  60766. height: math.unit(4, "inches")
  60767. },
  60768. {
  60769. name: "Normal",
  60770. height: math.unit(5 + 7/12, "feet"),
  60771. default: true
  60772. },
  60773. {
  60774. name: "Macro",
  60775. height: math.unit(390.42, "feet")
  60776. },
  60777. ]
  60778. ))
  60779. characterMakers.push(() => makeCharacter(
  60780. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60781. {
  60782. front: {
  60783. height: math.unit(7, "feet"),
  60784. weight: math.unit(250, "lb"),
  60785. name: "Front",
  60786. image: {
  60787. source: "./media/characters/vix-titan/front.svg",
  60788. extra: 460/428,
  60789. bottom: 15/475
  60790. },
  60791. extraAttributes: {
  60792. "pawWidth": {
  60793. name: "Paw Width",
  60794. power: 1,
  60795. type: "length",
  60796. base: math.unit(0.75, "feet")
  60797. },
  60798. }
  60799. },
  60800. },
  60801. [
  60802. {
  60803. name: "Normal",
  60804. height: math.unit(7, "feet"),
  60805. default: true
  60806. },
  60807. {
  60808. name: "Giant",
  60809. height: math.unit(1500, "feet")
  60810. },
  60811. {
  60812. name: "Mega",
  60813. height: math.unit(10, "miles")
  60814. },
  60815. {
  60816. name: "Giga",
  60817. height: math.unit(150, "miles")
  60818. },
  60819. {
  60820. name: "Tera",
  60821. height: math.unit(144000, "miles")
  60822. },
  60823. ]
  60824. ))
  60825. characterMakers.push(() => makeCharacter(
  60826. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60827. {
  60828. front: {
  60829. height: math.unit(6 + 2/12, "feet"),
  60830. name: "Front",
  60831. image: {
  60832. source: "./media/characters/reiku/front.svg",
  60833. extra: 1910/1757,
  60834. bottom: 103/2013
  60835. },
  60836. extraAttributes: {
  60837. "thighThickness": {
  60838. name: "Thigh Thickness",
  60839. power: 1,
  60840. type: "length",
  60841. base: math.unit(1.12, "feet")
  60842. },
  60843. "assThickness": {
  60844. name: "Ass Thickness",
  60845. power: 1,
  60846. type: "length",
  60847. base: math.unit(1.12*2, "feet")
  60848. },
  60849. }
  60850. },
  60851. side: {
  60852. height: math.unit(6 + 2/12, "feet"),
  60853. name: "Side",
  60854. image: {
  60855. source: "./media/characters/reiku/side.svg",
  60856. extra: 1846/1748,
  60857. bottom: 99/1945
  60858. },
  60859. extraAttributes: {
  60860. "thighThickness": {
  60861. name: "Thigh Thickness",
  60862. power: 1,
  60863. type: "length",
  60864. base: math.unit(1.12, "feet")
  60865. },
  60866. "assThickness": {
  60867. name: "Ass Thickness",
  60868. power: 1,
  60869. type: "length",
  60870. base: math.unit(1.12*2, "feet")
  60871. },
  60872. }
  60873. },
  60874. back: {
  60875. height: math.unit(6 + 2/12, "feet"),
  60876. name: "Back",
  60877. image: {
  60878. source: "./media/characters/reiku/back.svg",
  60879. extra: 1941/1786,
  60880. bottom: 34/1975
  60881. },
  60882. extraAttributes: {
  60883. "thighThickness": {
  60884. name: "Thigh Thickness",
  60885. power: 1,
  60886. type: "length",
  60887. base: math.unit(1.12, "feet")
  60888. },
  60889. "assThickness": {
  60890. name: "Ass Thickness",
  60891. power: 1,
  60892. type: "length",
  60893. base: math.unit(1.12*2, "feet")
  60894. },
  60895. }
  60896. },
  60897. head: {
  60898. height: math.unit(1.8, "feet"),
  60899. name: "Head",
  60900. image: {
  60901. source: "./media/characters/reiku/head.svg"
  60902. }
  60903. },
  60904. tailTop: {
  60905. height: math.unit(8.4, "feet"),
  60906. name: "Tail (Top)",
  60907. image: {
  60908. source: "./media/characters/reiku/tail-top.svg"
  60909. }
  60910. },
  60911. tailBottom: {
  60912. height: math.unit(8.4, "feet"),
  60913. name: "Tail (Bottom)",
  60914. image: {
  60915. source: "./media/characters/reiku/tail-bottom.svg"
  60916. }
  60917. },
  60918. foot: {
  60919. height: math.unit(2.6, "feet"),
  60920. name: "Foot",
  60921. image: {
  60922. source: "./media/characters/reiku/foot.svg"
  60923. }
  60924. },
  60925. footCurled: {
  60926. height: math.unit(2.3, "feet"),
  60927. name: "Foot (Curled)",
  60928. image: {
  60929. source: "./media/characters/reiku/foot-curled.svg"
  60930. }
  60931. },
  60932. footSide: {
  60933. height: math.unit(1.26, "feet"),
  60934. name: "Foot (Side)",
  60935. image: {
  60936. source: "./media/characters/reiku/foot-side.svg"
  60937. }
  60938. },
  60939. },
  60940. [
  60941. {
  60942. name: "Normal",
  60943. height: math.unit(6 + 2/12, "feet"),
  60944. default: true
  60945. },
  60946. ]
  60947. ))
  60948. characterMakers.push(() => makeCharacter(
  60949. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60950. {
  60951. front: {
  60952. height: math.unit(7, "feet"),
  60953. weight: math.unit(500, "kg"),
  60954. name: "Front",
  60955. image: {
  60956. source: "./media/characters/cialda/front.svg",
  60957. extra: 912/745,
  60958. bottom: 55/967
  60959. }
  60960. },
  60961. },
  60962. [
  60963. {
  60964. name: "Normal",
  60965. height: math.unit(7, "feet"),
  60966. default: true
  60967. },
  60968. ]
  60969. ))
  60970. characterMakers.push(() => makeCharacter(
  60971. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60972. {
  60973. side: {
  60974. height: math.unit(6, "feet"),
  60975. weight: math.unit(600, "lb"),
  60976. preyCapacity: math.unit(25, "liters"),
  60977. name: "Side",
  60978. image: {
  60979. source: "./media/characters/darkkin/side.svg",
  60980. extra: 1597/1447,
  60981. bottom: 101/1698
  60982. }
  60983. },
  60984. },
  60985. [
  60986. {
  60987. name: "Canon Height",
  60988. height: math.unit(568, "feet"),
  60989. default: true
  60990. },
  60991. ]
  60992. ))
  60993. characterMakers.push(() => makeCharacter(
  60994. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60995. {
  60996. front: {
  60997. height: math.unit(6, "feet"),
  60998. weight: math.unit(1500, "lb"),
  60999. preyCapacity: math.unit(3, "people"),
  61000. name: "Front",
  61001. image: {
  61002. source: "./media/characters/livnia/front.svg",
  61003. extra: 934/932,
  61004. bottom: 83/1017
  61005. }
  61006. },
  61007. back: {
  61008. height: math.unit(6, "feet"),
  61009. weight: math.unit(1500, "lb"),
  61010. preyCapacity: math.unit(3, "people"),
  61011. name: "Back",
  61012. image: {
  61013. source: "./media/characters/livnia/back.svg",
  61014. extra: 916/915,
  61015. bottom: 58/974
  61016. }
  61017. },
  61018. head: {
  61019. height: math.unit(1.53, "feet"),
  61020. name: "Head",
  61021. image: {
  61022. source: "./media/characters/livnia/head.svg"
  61023. }
  61024. },
  61025. maw: {
  61026. height: math.unit(0.78, "feet"),
  61027. name: "Maw",
  61028. image: {
  61029. source: "./media/characters/livnia/maw.svg"
  61030. }
  61031. },
  61032. genitals: {
  61033. height: math.unit(0.35, "feet"),
  61034. name: "Genitals",
  61035. image: {
  61036. source: "./media/characters/livnia/genitals.svg"
  61037. }
  61038. },
  61039. },
  61040. [
  61041. {
  61042. name: "Normal",
  61043. height: math.unit(1000, "feet"),
  61044. default: true
  61045. },
  61046. ]
  61047. ))
  61048. characterMakers.push(() => makeCharacter(
  61049. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  61050. {
  61051. front: {
  61052. height: math.unit(4, "feet"),
  61053. weight: math.unit(73, "lb"),
  61054. name: "Front",
  61055. image: {
  61056. source: "./media/characters/hayaku/front.svg",
  61057. extra: 1011/888,
  61058. bottom: 33/1044
  61059. }
  61060. },
  61061. back: {
  61062. height: math.unit(4, "feet"),
  61063. weight: math.unit(73, "lb"),
  61064. name: "Back",
  61065. image: {
  61066. source: "./media/characters/hayaku/back.svg",
  61067. extra: 1040/930,
  61068. bottom: 20/1060
  61069. }
  61070. },
  61071. },
  61072. [
  61073. {
  61074. name: "Normal",
  61075. height: math.unit(4, "feet"),
  61076. default: true
  61077. },
  61078. ]
  61079. ))
  61080. characterMakers.push(() => makeCharacter(
  61081. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  61082. {
  61083. front: {
  61084. height: math.unit(6 + 7/12, "feet"),
  61085. weight: math.unit(300, "lb"),
  61086. name: "Front",
  61087. image: {
  61088. source: "./media/characters/athena-bryzant/front.svg",
  61089. extra: 870/835,
  61090. bottom: 33/903
  61091. }
  61092. },
  61093. back: {
  61094. height: math.unit(6 + 7/12, "feet"),
  61095. weight: math.unit(300, "lb"),
  61096. name: "Back",
  61097. image: {
  61098. source: "./media/characters/athena-bryzant/back.svg",
  61099. extra: 858/823,
  61100. bottom: 30/888
  61101. }
  61102. },
  61103. head: {
  61104. height: math.unit(2.38, "feet"),
  61105. name: "Head",
  61106. image: {
  61107. source: "./media/characters/athena-bryzant/head.svg"
  61108. }
  61109. },
  61110. wings: {
  61111. height: math.unit(2.85, "feet"),
  61112. name: "Wings",
  61113. image: {
  61114. source: "./media/characters/athena-bryzant/wings.svg"
  61115. }
  61116. },
  61117. },
  61118. [
  61119. {
  61120. name: "Normal",
  61121. height: math.unit(6 + 7/12, "feet"),
  61122. default: true
  61123. },
  61124. {
  61125. name: "Big",
  61126. height: math.unit(8, "feet")
  61127. },
  61128. {
  61129. name: "Very Big",
  61130. height: math.unit(11, "feet")
  61131. },
  61132. ]
  61133. ))
  61134. characterMakers.push(() => makeCharacter(
  61135. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  61136. {
  61137. side: {
  61138. height: math.unit(3, "meters"),
  61139. weight: math.unit(7500, "kg"),
  61140. preyCapacity: math.unit(1e12, "people"),
  61141. name: "Side",
  61142. image: {
  61143. source: "./media/characters/zel-kesh/side.svg",
  61144. extra: 910/407,
  61145. bottom: 147/1057
  61146. }
  61147. },
  61148. },
  61149. [
  61150. {
  61151. name: "Normal",
  61152. height: math.unit(3, "meters"),
  61153. default: true
  61154. },
  61155. ]
  61156. ))
  61157. characterMakers.push(() => makeCharacter(
  61158. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  61159. {
  61160. front: {
  61161. height: math.unit(2, "meters"),
  61162. weight: math.unit(95, "kg"),
  61163. name: "Front",
  61164. image: {
  61165. source: "./media/characters/kane-fox/front.svg",
  61166. extra: 945/888,
  61167. bottom: 27/972
  61168. }
  61169. },
  61170. back: {
  61171. height: math.unit(2, "meters"),
  61172. weight: math.unit(95, "kg"),
  61173. name: "Back",
  61174. image: {
  61175. source: "./media/characters/kane-fox/back.svg",
  61176. extra: 959/914,
  61177. bottom: 15/974
  61178. }
  61179. },
  61180. frontLewd: {
  61181. height: math.unit(2, "meters"),
  61182. weight: math.unit(95, "kg"),
  61183. name: "Front (Lewd)",
  61184. image: {
  61185. source: "./media/characters/kane-fox/front-lewd.svg",
  61186. extra: 945/888,
  61187. bottom: 27/972
  61188. }
  61189. },
  61190. },
  61191. [
  61192. {
  61193. name: "Home Size",
  61194. height: math.unit(2, "meters"),
  61195. default: true
  61196. },
  61197. {
  61198. name: "Macro",
  61199. height: math.unit(200, "meters")
  61200. },
  61201. {
  61202. name: "Small Mega",
  61203. height: math.unit(3, "km")
  61204. },
  61205. {
  61206. name: "Mega",
  61207. height: math.unit(50, "km")
  61208. },
  61209. {
  61210. name: "Giga",
  61211. height: math.unit(200, "km")
  61212. },
  61213. {
  61214. name: "Giga+",
  61215. height: math.unit(2500, "km")
  61216. },
  61217. {
  61218. name: "Terra",
  61219. height: math.unit(70000, "km")
  61220. },
  61221. {
  61222. name: "Terra+",
  61223. height: math.unit(150000, "km")
  61224. },
  61225. {
  61226. name: "Terra++",
  61227. height: math.unit(400000, "km")
  61228. },
  61229. ]
  61230. ))
  61231. characterMakers.push(() => makeCharacter(
  61232. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61233. {
  61234. otter_front: {
  61235. height: math.unit(1.8, "meters"),
  61236. weight: math.unit(90, "kg"),
  61237. name: "Front",
  61238. image: {
  61239. source: "./media/characters/ayranus/otter-front.svg",
  61240. extra: 468/452,
  61241. bottom: 43/511
  61242. },
  61243. form: "otter",
  61244. },
  61245. otter_frontLewd: {
  61246. height: math.unit(1.8, "meters"),
  61247. weight: math.unit(90, "kg"),
  61248. name: "Front (Lewd)",
  61249. image: {
  61250. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61251. extra: 468/452,
  61252. bottom: 43/511
  61253. },
  61254. form: "otter",
  61255. },
  61256. lionbat_front: {
  61257. height: math.unit(1.8, "meters"),
  61258. weight: math.unit(90, "kg"),
  61259. name: "Front (Lewd)",
  61260. image: {
  61261. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61262. extra: 797/740,
  61263. bottom: 78/875
  61264. },
  61265. form: "lionbat",
  61266. },
  61267. paw: {
  61268. height: math.unit(1.5, "feet"),
  61269. name: "Paw",
  61270. image: {
  61271. source: "./media/characters/ayranus/paw.svg"
  61272. },
  61273. },
  61274. },
  61275. [
  61276. {
  61277. name: "Incognito",
  61278. height: math.unit(1.8, "meters"),
  61279. allForms: true
  61280. },
  61281. {
  61282. name: "Macro",
  61283. height: math.unit(60, "meters"),
  61284. allForms: true
  61285. },
  61286. {
  61287. name: "Macro+",
  61288. height: math.unit(200, "meters"),
  61289. allForms: true
  61290. },
  61291. {
  61292. name: "Mega",
  61293. height: math.unit(35, "km"),
  61294. allForms: true
  61295. },
  61296. {
  61297. name: "Giga",
  61298. height: math.unit(220, "km"),
  61299. allForms: true
  61300. },
  61301. {
  61302. name: "Giga+",
  61303. height: math.unit(1500, "km"),
  61304. allForms: true
  61305. },
  61306. {
  61307. name: "Terra",
  61308. height: math.unit(13000, "km"),
  61309. allForms: true
  61310. },
  61311. {
  61312. name: "Terra+",
  61313. height: math.unit(500000, "km"),
  61314. allForms: true
  61315. },
  61316. {
  61317. name: "Galactic",
  61318. height: math.unit(486080, "parsecs"),
  61319. default: true,
  61320. allForms: true
  61321. },
  61322. ],
  61323. {
  61324. "otter": {
  61325. name: "Otter",
  61326. default: true
  61327. },
  61328. "lionbat": {
  61329. name: "Lionbat",
  61330. },
  61331. }
  61332. ))
  61333. characterMakers.push(() => makeCharacter(
  61334. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61335. {
  61336. front: {
  61337. height: math.unit(7 + 4/12, "feet"),
  61338. weight: math.unit(400, "lb"),
  61339. name: "Front",
  61340. image: {
  61341. source: "./media/characters/proxy/front.svg",
  61342. extra: 1605/1542,
  61343. bottom: 55/1660
  61344. }
  61345. },
  61346. side: {
  61347. height: math.unit(7 + 4/12, "feet"),
  61348. weight: math.unit(400, "lb"),
  61349. name: "Side",
  61350. image: {
  61351. source: "./media/characters/proxy/side.svg",
  61352. extra: 794/759,
  61353. bottom: 6/800
  61354. }
  61355. },
  61356. hand: {
  61357. height: math.unit(1.54, "feet"),
  61358. name: "Hand",
  61359. image: {
  61360. source: "./media/characters/proxy/hand.svg"
  61361. }
  61362. },
  61363. paw: {
  61364. height: math.unit(1.53, "feet"),
  61365. name: "Paw",
  61366. image: {
  61367. source: "./media/characters/proxy/paw.svg"
  61368. }
  61369. },
  61370. maw: {
  61371. height: math.unit(1.9, "feet"),
  61372. name: "Maw",
  61373. image: {
  61374. source: "./media/characters/proxy/maw.svg"
  61375. }
  61376. },
  61377. },
  61378. [
  61379. {
  61380. name: "Normal",
  61381. height: math.unit(7 + 4/12, "feet"),
  61382. default: true
  61383. },
  61384. ]
  61385. ))
  61386. characterMakers.push(() => makeCharacter(
  61387. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61388. {
  61389. front: {
  61390. height: math.unit(4, "meters"),
  61391. name: "Front",
  61392. image: {
  61393. source: "./media/characters/crocozilla/front.svg",
  61394. extra: 1790/1742,
  61395. bottom: 78/1868
  61396. }
  61397. },
  61398. },
  61399. [
  61400. {
  61401. name: "Normal",
  61402. height: math.unit(4, "meters"),
  61403. default: true
  61404. },
  61405. ]
  61406. ))
  61407. characterMakers.push(() => makeCharacter(
  61408. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61409. {
  61410. front: {
  61411. height: math.unit(1.8, "meters"),
  61412. weight: math.unit(120, "kg"),
  61413. name: "Front",
  61414. image: {
  61415. source: "./media/characters/kurz/front.svg",
  61416. extra: 1960/1824,
  61417. bottom: 41/2001
  61418. }
  61419. },
  61420. back: {
  61421. height: math.unit(1.8, "meters"),
  61422. weight: math.unit(120, "kg"),
  61423. name: "Back",
  61424. image: {
  61425. source: "./media/characters/kurz/back.svg",
  61426. extra: 1906/1787,
  61427. bottom: 60/1966
  61428. }
  61429. },
  61430. frontLewd: {
  61431. height: math.unit(1.8, "meters"),
  61432. weight: math.unit(120, "kg"),
  61433. name: "Front (Lewd)",
  61434. image: {
  61435. source: "./media/characters/kurz/front-lewd.svg",
  61436. extra: 1960/1824,
  61437. bottom: 41/2001
  61438. }
  61439. },
  61440. maw: {
  61441. height: math.unit(0.69, "meters"),
  61442. name: "Maw",
  61443. image: {
  61444. source: "./media/characters/kurz/maw.svg"
  61445. }
  61446. },
  61447. },
  61448. [
  61449. {
  61450. name: "Original Size",
  61451. height: math.unit(1.8, "meters")
  61452. },
  61453. {
  61454. name: "Incognito Size",
  61455. height: math.unit(2.4, "meters"),
  61456. default: true
  61457. },
  61458. {
  61459. name: "Macro",
  61460. height: math.unit(30, "meters")
  61461. },
  61462. {
  61463. name: "Macro+",
  61464. height: math.unit(250, "meters")
  61465. },
  61466. {
  61467. name: "Mega",
  61468. height: math.unit(2, "km")
  61469. },
  61470. {
  61471. name: "Mega+",
  61472. height: math.unit(35, "km")
  61473. },
  61474. {
  61475. name: "Mega++",
  61476. height: math.unit(75, "km")
  61477. },
  61478. {
  61479. name: "Giga",
  61480. height: math.unit(250, "km")
  61481. },
  61482. {
  61483. name: "Terra",
  61484. height: math.unit(15000, "km")
  61485. },
  61486. {
  61487. name: "Terra+",
  61488. height: math.unit(2250000, "km")
  61489. },
  61490. ]
  61491. ))
  61492. characterMakers.push(() => makeCharacter(
  61493. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61494. {
  61495. front: {
  61496. height: math.unit(16 + 3/12, "feet"),
  61497. weight: math.unit(3575, "lb"),
  61498. name: "Front",
  61499. image: {
  61500. source: "./media/characters/nikita/front.svg",
  61501. extra: 1064/955,
  61502. bottom: 47/1111
  61503. }
  61504. },
  61505. },
  61506. [
  61507. {
  61508. name: "Normal",
  61509. height: math.unit(16 + 3/12, "feet"),
  61510. default: true
  61511. },
  61512. {
  61513. name: "Big",
  61514. height: math.unit(21, "feet")
  61515. },
  61516. {
  61517. name: "Biggest",
  61518. height: math.unit(50, "feet")
  61519. },
  61520. ]
  61521. ))
  61522. characterMakers.push(() => makeCharacter(
  61523. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61524. {
  61525. front: {
  61526. height: math.unit(1.92, "m"),
  61527. weight: math.unit(76, "kg"),
  61528. name: "Front",
  61529. image: {
  61530. source: "./media/characters/kyara/front.svg",
  61531. extra: 1550/1438,
  61532. bottom: 139/1689
  61533. }
  61534. },
  61535. back: {
  61536. height: math.unit(1.92, "m"),
  61537. weight: math.unit(76, "kg"),
  61538. name: "Back",
  61539. image: {
  61540. source: "./media/characters/kyara/back.svg",
  61541. extra: 1523/1427,
  61542. bottom: 83/1606
  61543. }
  61544. },
  61545. head: {
  61546. height: math.unit(1.22, "feet"),
  61547. name: "Head",
  61548. image: {
  61549. source: "./media/characters/kyara/head.svg"
  61550. }
  61551. },
  61552. maw: {
  61553. height: math.unit(0.73, "feet"),
  61554. name: "Maw",
  61555. image: {
  61556. source: "./media/characters/kyara/maw.svg"
  61557. }
  61558. },
  61559. paws: {
  61560. height: math.unit(0.95, "feet"),
  61561. name: "Paws",
  61562. image: {
  61563. source: "./media/characters/kyara/paws.svg"
  61564. }
  61565. },
  61566. },
  61567. [
  61568. {
  61569. name: "Normal",
  61570. height: math.unit(1.92, "meters"),
  61571. default: true
  61572. },
  61573. {
  61574. name: "Mini Macro",
  61575. height: math.unit(192, "meters")
  61576. },
  61577. {
  61578. name: "Macro",
  61579. height: math.unit(480, "meters")
  61580. },
  61581. {
  61582. name: "Mega Macro",
  61583. height: math.unit(1440, "meters")
  61584. },
  61585. ]
  61586. ))
  61587. characterMakers.push(() => makeCharacter(
  61588. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61589. {
  61590. front: {
  61591. height: math.unit(6, "feet"),
  61592. weight: math.unit(160, "lbs"),
  61593. preyCapacity: math.unit(0.05, "people"),
  61594. name: "Front",
  61595. image: {
  61596. source: "./media/characters/layla-amari/front.svg",
  61597. extra: 1922/1723,
  61598. bottom: 90/2012
  61599. }
  61600. },
  61601. back: {
  61602. height: math.unit(6, "feet"),
  61603. weight: math.unit(160, "lbs"),
  61604. preyCapacity: math.unit(0.05, "people"),
  61605. name: "Back",
  61606. image: {
  61607. source: "./media/characters/layla-amari/back.svg",
  61608. extra: 1917/1718,
  61609. bottom: 50/1967
  61610. }
  61611. },
  61612. frontDressed: {
  61613. height: math.unit(6, "feet"),
  61614. weight: math.unit(160, "lbs"),
  61615. preyCapacity: math.unit(0.05, "people"),
  61616. name: "Front (Dressed)",
  61617. image: {
  61618. source: "./media/characters/layla-amari/front-dressed.svg",
  61619. extra: 1922/1723,
  61620. bottom: 90/2012
  61621. }
  61622. },
  61623. face: {
  61624. height: math.unit(0.93, "feet"),
  61625. name: "Face",
  61626. image: {
  61627. source: "./media/characters/layla-amari/face.svg"
  61628. }
  61629. },
  61630. hand: {
  61631. height: math.unit(0.66 , "feet"),
  61632. name: "Hand",
  61633. image: {
  61634. source: "./media/characters/layla-amari/hand.svg"
  61635. }
  61636. },
  61637. foot: {
  61638. height: math.unit(1, "feet"),
  61639. name: "Foot",
  61640. image: {
  61641. source: "./media/characters/layla-amari/foot.svg"
  61642. }
  61643. },
  61644. necklace: {
  61645. height: math.unit(0.32, "feet"),
  61646. name: "Necklace",
  61647. image: {
  61648. source: "./media/characters/layla-amari/necklace.svg"
  61649. }
  61650. },
  61651. nipple: {
  61652. height: math.unit(0.2, "feet"),
  61653. name: "Nipple",
  61654. image: {
  61655. source: "./media/characters/layla-amari/nipple.svg"
  61656. }
  61657. },
  61658. slit: {
  61659. height: math.unit(0.26, "feet"),
  61660. name: "Slit",
  61661. image: {
  61662. source: "./media/characters/layla-amari/slit.svg"
  61663. }
  61664. },
  61665. },
  61666. [
  61667. {
  61668. name: "Natural",
  61669. height: math.unit(825, "feet"),
  61670. default: true
  61671. },
  61672. {
  61673. name: "Enhanced",
  61674. height: math.unit(8250, "feet")
  61675. },
  61676. {
  61677. name: "Apparent Size",
  61678. height: math.unit(9.04363e+8, "meters")
  61679. },
  61680. ]
  61681. ))
  61682. characterMakers.push(() => makeCharacter(
  61683. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61684. {
  61685. front: {
  61686. height: math.unit(1.3, "meters"),
  61687. name: "Front",
  61688. image: {
  61689. source: "./media/characters/percy/front.svg",
  61690. extra: 1444/1289,
  61691. bottom: 54/1498
  61692. }
  61693. },
  61694. },
  61695. [
  61696. {
  61697. name: "Normal",
  61698. height: math.unit(1.3, "meters"),
  61699. default: true
  61700. },
  61701. ]
  61702. ))
  61703. characterMakers.push(() => makeCharacter(
  61704. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61705. {
  61706. side: {
  61707. height: math.unit(10, "meters"),
  61708. name: "Side",
  61709. image: {
  61710. source: "./media/characters/grev/side.svg",
  61711. extra: 653/266,
  61712. bottom: 77/730
  61713. }
  61714. },
  61715. head: {
  61716. height: math.unit(16.2, "m"),
  61717. name: "Head",
  61718. image: {
  61719. source: "./media/characters/grev/head.svg"
  61720. }
  61721. },
  61722. dick: {
  61723. height: math.unit(2.8135932034, "m"),
  61724. name: "Dick",
  61725. image: {
  61726. source: "./media/characters/grev/dick.svg"
  61727. }
  61728. },
  61729. },
  61730. [
  61731. {
  61732. name: "Friend-Sized",
  61733. height: math.unit(80, "cm")
  61734. },
  61735. {
  61736. name: "Normal",
  61737. height: math.unit(10, "meters"),
  61738. default: true
  61739. },
  61740. {
  61741. name: "Macro",
  61742. height: math.unit(200, "meters")
  61743. },
  61744. ]
  61745. ))
  61746. characterMakers.push(() => makeCharacter(
  61747. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61748. {
  61749. front: {
  61750. height: math.unit(19.75, "feet"),
  61751. weight: math.unit(20000, "lb"),
  61752. name: "Front",
  61753. image: {
  61754. source: "./media/characters/azuuca/front.svg",
  61755. extra: 1593/1511,
  61756. bottom: 55/1648
  61757. }
  61758. },
  61759. },
  61760. [
  61761. {
  61762. name: "Normal",
  61763. height: math.unit(19.75, "feet"),
  61764. default: true
  61765. },
  61766. ]
  61767. ))
  61768. characterMakers.push(() => makeCharacter(
  61769. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61770. {
  61771. front: {
  61772. height: math.unit(15, "feet"),
  61773. weight: math.unit(1500, "lb"),
  61774. name: "Front",
  61775. image: {
  61776. source: "./media/characters/valuria/front.svg",
  61777. extra: 1588/1486,
  61778. bottom: 31/1619
  61779. }
  61780. },
  61781. },
  61782. [
  61783. {
  61784. name: "Normal",
  61785. height: math.unit(15, "feet"),
  61786. default: true
  61787. },
  61788. {
  61789. name: "Small",
  61790. height: math.unit(500, "feet")
  61791. },
  61792. {
  61793. name: "Macro",
  61794. height: math.unit(4000, "feet")
  61795. },
  61796. {
  61797. name: "Mega Macro",
  61798. height: math.unit(2000, "miles")
  61799. },
  61800. {
  61801. name: "Giga Macro",
  61802. height: math.unit(3e6, "miles")
  61803. },
  61804. ]
  61805. ))
  61806. characterMakers.push(() => makeCharacter(
  61807. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61808. {
  61809. front: {
  61810. height: math.unit(3500, "solarradii"),
  61811. name: "Front",
  61812. image: {
  61813. source: "./media/characters/terigaia/front.svg",
  61814. extra: 1531/1451,
  61815. bottom: 98/1629
  61816. }
  61817. },
  61818. },
  61819. [
  61820. {
  61821. name: "Normal",
  61822. height: math.unit(3500, "solarradii"),
  61823. default: true
  61824. },
  61825. ]
  61826. ))
  61827. characterMakers.push(() => makeCharacter(
  61828. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61829. {
  61830. front: {
  61831. height: math.unit(9.34, "feet"),
  61832. weight: math.unit(600, "lb"),
  61833. name: "Front",
  61834. image: {
  61835. source: "./media/characters/blair-blaziken/front.svg",
  61836. extra: 1557/1462,
  61837. bottom: 55/1612
  61838. }
  61839. },
  61840. },
  61841. [
  61842. {
  61843. name: "Normal",
  61844. height: math.unit(9.34, "feet"),
  61845. default: true
  61846. },
  61847. ]
  61848. ))
  61849. characterMakers.push(() => makeCharacter(
  61850. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61851. {
  61852. pistrogre_front: {
  61853. height: math.unit(10, "feet"),
  61854. weight: math.unit(10, "tons"),
  61855. name: "Front",
  61856. image: {
  61857. source: "./media/characters/braxia/pistrogre-front.svg",
  61858. extra: 1531/1334,
  61859. bottom: 114/1645
  61860. },
  61861. form: "pistrogre",
  61862. default: true
  61863. },
  61864. human_front: {
  61865. height: math.unit(10, "feet"),
  61866. weight: math.unit(10, "tons"),
  61867. name: "Front",
  61868. image: {
  61869. source: "./media/characters/braxia/human-front.svg",
  61870. extra: 1574/1501,
  61871. bottom: 37/1611
  61872. },
  61873. form: "human",
  61874. default: true
  61875. },
  61876. },
  61877. [
  61878. {
  61879. name: "Normal",
  61880. height: math.unit(10, "feet"),
  61881. default: true,
  61882. allForms: true
  61883. },
  61884. {
  61885. name: "Macro",
  61886. height: math.unit(1000, "feet"),
  61887. allForms: true
  61888. },
  61889. {
  61890. name: "Mega Macro",
  61891. height: math.unit(100, "miles"),
  61892. allForms: true
  61893. },
  61894. {
  61895. name: "Cosmic",
  61896. height: math.unit(1000000, "lightyears"),
  61897. allForms: true
  61898. },
  61899. {
  61900. name: "ϐѮԆԬӁꭍϞԢ",
  61901. height: math.unit(1000, "multiverses"),
  61902. allForms: true
  61903. },
  61904. ],
  61905. {
  61906. "pistrogre": {
  61907. name: "Pistrogre",
  61908. default: true
  61909. },
  61910. "human": {
  61911. name: "Human",
  61912. },
  61913. }
  61914. ))
  61915. characterMakers.push(() => makeCharacter(
  61916. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61917. {
  61918. front: {
  61919. height: math.unit(6 + 1/12, "feet"),
  61920. weight: math.unit(280, "lb"),
  61921. name: "Front",
  61922. image: {
  61923. source: "./media/characters/kiriga-yato/front.svg",
  61924. extra: 445/394,
  61925. bottom: 11/456
  61926. }
  61927. },
  61928. },
  61929. [
  61930. {
  61931. name: "Descended",
  61932. height: math.unit(3, "feet")
  61933. },
  61934. {
  61935. name: "Average",
  61936. height: math.unit(6 + 1/12, "feet"),
  61937. default: true
  61938. },
  61939. {
  61940. name: "Ascended",
  61941. height: math.unit(9 + 2/12, "feet")
  61942. },
  61943. ]
  61944. ))
  61945. characterMakers.push(() => makeCharacter(
  61946. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61947. {
  61948. front: {
  61949. height: math.unit(6, "feet"),
  61950. weight: math.unit(150, "lb"),
  61951. name: "Front",
  61952. image: {
  61953. source: "./media/characters/kylie/front.svg",
  61954. extra: 1114/1046,
  61955. bottom: 65/1179
  61956. },
  61957. extraAttributes: {
  61958. "hoofSize": {
  61959. name: "Hoof Size",
  61960. power: 2,
  61961. type: "area",
  61962. base: math.unit(0.034, "m^2")
  61963. },
  61964. "footSize": {
  61965. name: "Foot Size",
  61966. power: 2,
  61967. type: "area",
  61968. base: math.unit(0.75, "m^2")
  61969. },
  61970. }
  61971. },
  61972. side: {
  61973. height: math.unit(6, "feet"),
  61974. weight: math.unit(150, "lb"),
  61975. name: "Side",
  61976. image: {
  61977. source: "./media/characters/kylie/side.svg",
  61978. extra: 1178/1110,
  61979. bottom: 21/1199
  61980. },
  61981. extraAttributes: {
  61982. "hoofSize": {
  61983. name: "Hoof Size",
  61984. power: 2,
  61985. type: "area",
  61986. base: math.unit(0.034, "m^2")
  61987. },
  61988. "footSize": {
  61989. name: "Foot Size",
  61990. power: 2,
  61991. type: "area",
  61992. base: math.unit(0.75, "m^2")
  61993. },
  61994. }
  61995. },
  61996. back: {
  61997. height: math.unit(6, "feet"),
  61998. weight: math.unit(150, "lb"),
  61999. name: "Back",
  62000. image: {
  62001. source: "./media/characters/kylie/back.svg",
  62002. extra: 1115/1047,
  62003. bottom: 66/1181
  62004. },
  62005. extraAttributes: {
  62006. "hoofSize": {
  62007. name: "Hoof Size",
  62008. power: 2,
  62009. type: "area",
  62010. base: math.unit(0.034, "m^2")
  62011. },
  62012. "footSize": {
  62013. name: "Foot Size",
  62014. power: 2,
  62015. type: "area",
  62016. base: math.unit(0.75, "m^2")
  62017. },
  62018. }
  62019. },
  62020. head: {
  62021. height: math.unit(1.85, "feet"),
  62022. name: "Head",
  62023. image: {
  62024. source: "./media/characters/kylie/head.svg"
  62025. }
  62026. },
  62027. },
  62028. [
  62029. {
  62030. name: "Normal",
  62031. height: math.unit(90, "meters"),
  62032. default: true
  62033. },
  62034. ]
  62035. ))
  62036. characterMakers.push(() => makeCharacter(
  62037. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  62038. {
  62039. front: {
  62040. height: math.unit(245, "feet"),
  62041. weight: math.unit(400000, "lb"),
  62042. name: "Front",
  62043. image: {
  62044. source: "./media/characters/sabado/front.svg",
  62045. extra: 1309/1164,
  62046. bottom: 29/1338
  62047. }
  62048. },
  62049. },
  62050. [
  62051. {
  62052. name: "Normal",
  62053. height: math.unit(245, "feet"),
  62054. default: true
  62055. },
  62056. ]
  62057. ))
  62058. characterMakers.push(() => makeCharacter(
  62059. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  62060. {
  62061. shark_front: {
  62062. height: math.unit(2, "meters"),
  62063. weight: math.unit(200, "kg"),
  62064. name: "Front",
  62065. image: {
  62066. source: "./media/characters/zechal/shark-front.svg",
  62067. extra: 969/925,
  62068. bottom: 74/1043
  62069. },
  62070. form: "shark",
  62071. },
  62072. shark_back: {
  62073. height: math.unit(2, "meters"),
  62074. weight: math.unit(200, "kg"),
  62075. name: "Back",
  62076. image: {
  62077. source: "./media/characters/zechal/shark-back.svg",
  62078. extra: 994/949,
  62079. bottom: 176/1170
  62080. },
  62081. form: "shark",
  62082. },
  62083. shark_frontLewd: {
  62084. height: math.unit(2, "meters"),
  62085. weight: math.unit(200, "kg"),
  62086. name: "Front (Lewd)",
  62087. image: {
  62088. source: "./media/characters/zechal/shark-front-lewd.svg",
  62089. extra: 969/925,
  62090. bottom: 74/1043
  62091. },
  62092. form: "shark",
  62093. },
  62094. shark_side: {
  62095. height: math.unit(1.56, "meters"),
  62096. weight: math.unit(200, "kg"),
  62097. name: "Side",
  62098. image: {
  62099. source: "./media/characters/zechal/shark-side.svg"
  62100. },
  62101. form: "shark",
  62102. },
  62103. dragon_front: {
  62104. height: math.unit(2, "meters"),
  62105. weight: math.unit(200, "kg"),
  62106. name: "Front",
  62107. image: {
  62108. source: "./media/characters/zechal/dragon-front.svg",
  62109. extra: 1041/925,
  62110. bottom: 74/1115
  62111. },
  62112. form: "dragon",
  62113. },
  62114. dragon_back: {
  62115. height: math.unit(2, "meters"),
  62116. weight: math.unit(200, "kg"),
  62117. name: "Back",
  62118. image: {
  62119. source: "./media/characters/zechal/dragon-back.svg",
  62120. extra: 1061/949,
  62121. bottom: 176/1237
  62122. },
  62123. form: "dragon",
  62124. },
  62125. dragon_frontLewd: {
  62126. height: math.unit(2, "meters"),
  62127. weight: math.unit(200, "kg"),
  62128. name: "Front (Lewd)",
  62129. image: {
  62130. source: "./media/characters/zechal/dragon-front-lewd.svg",
  62131. extra: 1041/925,
  62132. bottom: 74/1115
  62133. },
  62134. form: "dragon",
  62135. },
  62136. dragon_side: {
  62137. height: math.unit(1.56, "meters"),
  62138. weight: math.unit(200, "kg"),
  62139. name: "Side",
  62140. image: {
  62141. source: "./media/characters/zechal/dragon-side.svg"
  62142. },
  62143. form: "dragon",
  62144. },
  62145. foot: {
  62146. height: math.unit(0.5, "meters"),
  62147. name: "Foot",
  62148. image: {
  62149. source: "./media/characters/zechal/foot.svg"
  62150. }
  62151. },
  62152. sheathFront: {
  62153. height: math.unit(0.45, "meters"),
  62154. name: "Sheath (Front)",
  62155. image: {
  62156. source: "./media/characters/zechal/sheath-front.svg"
  62157. }
  62158. },
  62159. sheathSide: {
  62160. height: math.unit(0.45, "meters"),
  62161. name: "Sheath (Side)",
  62162. image: {
  62163. source: "./media/characters/zechal/sheath-side.svg"
  62164. }
  62165. },
  62166. },
  62167. [
  62168. {
  62169. name: "Incognito",
  62170. height: math.unit(2, "meters"),
  62171. allForms: true
  62172. },
  62173. {
  62174. name: "Small Rampage",
  62175. height: math.unit(25, "meters"),
  62176. allForms: true
  62177. },
  62178. {
  62179. name: "Home Size",
  62180. height: math.unit(250, "meters"),
  62181. allForms: true,
  62182. default: true
  62183. },
  62184. {
  62185. name: "Macro+",
  62186. height: math.unit(700, "meters"),
  62187. allForms: true
  62188. },
  62189. {
  62190. name: "Small Mega",
  62191. height: math.unit(3, "km"),
  62192. allForms: true
  62193. },
  62194. {
  62195. name: "Mega",
  62196. height: math.unit(15, "km"),
  62197. allForms: true
  62198. },
  62199. {
  62200. name: "Giga",
  62201. height: math.unit(300, "km"),
  62202. allForms: true
  62203. },
  62204. {
  62205. name: "Giga+",
  62206. height: math.unit(1750, "km"),
  62207. allForms: true
  62208. },
  62209. {
  62210. name: "Continental",
  62211. height: math.unit(5000, "km"),
  62212. allForms: true
  62213. },
  62214. {
  62215. name: "Terra",
  62216. height: math.unit(20000, "km"),
  62217. allForms: true
  62218. },
  62219. {
  62220. name: "Terra+",
  62221. height: math.unit(300000, "km"),
  62222. allForms: true
  62223. },
  62224. {
  62225. name: "Solar",
  62226. height: math.unit(40000000, "km"),
  62227. allForms: true
  62228. },
  62229. {
  62230. name: "Galactic",
  62231. height: math.unit(810133, "parsecs"),
  62232. allForms: true
  62233. },
  62234. {
  62235. name: "Universal",
  62236. height: math.unit(25, "universes"),
  62237. allForms: true
  62238. },
  62239. ],
  62240. {
  62241. "shark": {
  62242. name: "Shark",
  62243. default: true
  62244. },
  62245. "dragon": {
  62246. name: "Dragon",
  62247. },
  62248. }
  62249. ))
  62250. characterMakers.push(() => makeCharacter(
  62251. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62252. {
  62253. front: {
  62254. height: math.unit(2.2, "meters"),
  62255. weight: math.unit(150, "kg"),
  62256. name: "Front",
  62257. image: {
  62258. source: "./media/characters/sergis/front.svg",
  62259. extra: 1314/1312,
  62260. bottom: 112/1426
  62261. }
  62262. },
  62263. back: {
  62264. height: math.unit(2.2, "meters"),
  62265. weight: math.unit(150, "kg"),
  62266. name: "Back",
  62267. image: {
  62268. source: "./media/characters/sergis/back.svg",
  62269. extra: 1335/1333,
  62270. bottom: 19/1354
  62271. }
  62272. },
  62273. frontLewd: {
  62274. height: math.unit(2.2, "meters"),
  62275. weight: math.unit(150, "kg"),
  62276. name: "Front (Lewd)",
  62277. image: {
  62278. source: "./media/characters/sergis/front-lewd.svg",
  62279. extra: 1314/1312,
  62280. bottom: 112/1426
  62281. }
  62282. },
  62283. frontDressed: {
  62284. height: math.unit(2.2, "meters"),
  62285. weight: math.unit(150, "kg"),
  62286. name: "Front (Dressed)",
  62287. image: {
  62288. source: "./media/characters/sergis/front-dressed.svg",
  62289. extra: 1330/1328,
  62290. bottom: 95/1425
  62291. }
  62292. },
  62293. frontDressedLewd: {
  62294. height: math.unit(2.2, "meters"),
  62295. weight: math.unit(150, "kg"),
  62296. name: "Front (Dressed, Lewd)",
  62297. image: {
  62298. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62299. extra: 1330/1328,
  62300. bottom: 95/1425
  62301. }
  62302. },
  62303. maw: {
  62304. height: math.unit(0.48, "meters"),
  62305. name: "Maw",
  62306. image: {
  62307. source: "./media/characters/sergis/maw.svg"
  62308. }
  62309. },
  62310. sheath: {
  62311. height: math.unit(0.38, "meters"),
  62312. name: "Sheath",
  62313. image: {
  62314. source: "./media/characters/sergis/sheath.svg"
  62315. }
  62316. },
  62317. },
  62318. [
  62319. {
  62320. name: "Incognito Size",
  62321. height: math.unit(2.2, "meters")
  62322. },
  62323. {
  62324. name: "Small Macro",
  62325. height: math.unit(40, "meters")
  62326. },
  62327. {
  62328. name: "Macro",
  62329. height: math.unit(150, "meters")
  62330. },
  62331. {
  62332. name: "Macro+",
  62333. height: math.unit(300, "meters")
  62334. },
  62335. {
  62336. name: "Mega",
  62337. height: math.unit(2.5, "km")
  62338. },
  62339. {
  62340. name: "Mega+",
  62341. height: math.unit(30, "km")
  62342. },
  62343. {
  62344. name: "Home Size",
  62345. height: math.unit(300, "km"),
  62346. default: true
  62347. },
  62348. {
  62349. name: "Giga+",
  62350. height: math.unit(1000, "km")
  62351. },
  62352. {
  62353. name: "Giga++",
  62354. height: math.unit(6000, "km")
  62355. },
  62356. {
  62357. name: "Terra",
  62358. height: math.unit(70000, "km")
  62359. },
  62360. {
  62361. name: "Terra+",
  62362. height: math.unit(200000, "km")
  62363. },
  62364. {
  62365. name: "Galactic",
  62366. height: math.unit(634200, "lightyears")
  62367. },
  62368. ]
  62369. ))
  62370. characterMakers.push(() => makeCharacter(
  62371. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62372. {
  62373. standard: {
  62374. height: math.unit(1 + 5/12, "feet"),
  62375. name: "Standard",
  62376. image: {
  62377. source: "./media/characters/spade/standard.svg",
  62378. extra: 1794/1703,
  62379. bottom: 115/1909
  62380. }
  62381. },
  62382. disguised: {
  62383. height: math.unit(1 + 5/12, "feet"),
  62384. name: "Disguised",
  62385. image: {
  62386. source: "./media/characters/spade/disguised.svg",
  62387. extra: 1794/1700,
  62388. bottom: 98/1892
  62389. }
  62390. },
  62391. },
  62392. [
  62393. {
  62394. name: "Normal",
  62395. height: math.unit(1 + 5/12, "feet"),
  62396. default: true
  62397. },
  62398. ]
  62399. ))
  62400. characterMakers.push(() => makeCharacter(
  62401. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62402. {
  62403. frontNsfw: {
  62404. height: math.unit(5, "meters"),
  62405. weight: math.unit(2000, "kg"),
  62406. preyCapacity: math.unit(5, "people"),
  62407. name: "Front (NSFW)",
  62408. image: {
  62409. source: "./media/characters/zeanlain/front-nsfw.svg",
  62410. extra: 1087/938,
  62411. bottom: 93/1180
  62412. },
  62413. extraAttributes: {
  62414. "wingspan": {
  62415. name: "Wingspan",
  62416. power: 1,
  62417. type: "length",
  62418. base: math.unit(10, "meters")
  62419. },
  62420. "footSize": {
  62421. name: "Foot Size",
  62422. power: 1,
  62423. type: "length",
  62424. base: math.unit(0.68, "meters")
  62425. },
  62426. "cockLength": {
  62427. name: "Cock Length",
  62428. power: 1,
  62429. type: "length",
  62430. base: math.unit(1.69, "meters")
  62431. },
  62432. "ballVolume": {
  62433. name: "Ball Volume",
  62434. power: 3,
  62435. type: "volume",
  62436. base: math.unit(0.028, "m^3")
  62437. },
  62438. }
  62439. },
  62440. front: {
  62441. height: math.unit(5, "meters"),
  62442. weight: math.unit(2000, "kg"),
  62443. preyCapacity: math.unit(3, "people"),
  62444. name: "Front",
  62445. image: {
  62446. source: "./media/characters/zeanlain/front.svg",
  62447. extra: 1087/938,
  62448. bottom: 93/1180
  62449. },
  62450. extraAttributes: {
  62451. "wingspan": {
  62452. name: "Wingspan",
  62453. power: 1,
  62454. type: "length",
  62455. base: math.unit(10, "meters")
  62456. },
  62457. "footSize": {
  62458. name: "Foot Size",
  62459. power: 1,
  62460. type: "length",
  62461. base: math.unit(0.68, "meters")
  62462. },
  62463. }
  62464. },
  62465. },
  62466. [
  62467. {
  62468. name: "Normal",
  62469. height: math.unit(5, "meters"),
  62470. default: true
  62471. },
  62472. ]
  62473. ))
  62474. characterMakers.push(() => makeCharacter(
  62475. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62476. {
  62477. front: {
  62478. height: math.unit(10, "meters"),
  62479. weight: math.unit(250000, "kg"),
  62480. name: "Front",
  62481. image: {
  62482. source: "./media/characters/airamis/front.svg",
  62483. extra: 865/835,
  62484. bottom: 13/878
  62485. }
  62486. },
  62487. },
  62488. [
  62489. {
  62490. name: "Normal",
  62491. height: math.unit(10, "meters"),
  62492. default: true
  62493. },
  62494. ]
  62495. ))
  62496. characterMakers.push(() => makeCharacter(
  62497. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62498. {
  62499. front: {
  62500. height: math.unit(3 + 3/12, "feet"),
  62501. weight: math.unit(75, "lb"),
  62502. name: "Front",
  62503. image: {
  62504. source: "./media/characters/corra-tourmaline/front.svg",
  62505. extra: 1037/864,
  62506. bottom: 39/1076
  62507. }
  62508. },
  62509. back: {
  62510. height: math.unit(3 + 3/12, "feet"),
  62511. weight: math.unit(75, "lb"),
  62512. name: "Back",
  62513. image: {
  62514. source: "./media/characters/corra-tourmaline/back.svg",
  62515. extra: 1022/849,
  62516. bottom: 26/1048
  62517. }
  62518. },
  62519. dressed: {
  62520. height: math.unit(3 + 3/12, "feet"),
  62521. weight: math.unit(75, "lb"),
  62522. name: "Dressed",
  62523. image: {
  62524. source: "./media/characters/corra-tourmaline/dressed.svg",
  62525. extra: 1037/864,
  62526. bottom: 39/1076
  62527. }
  62528. },
  62529. beans: {
  62530. height: math.unit(0.37, "feet"),
  62531. name: "Beans",
  62532. image: {
  62533. source: "./media/characters/corra-tourmaline/beans.svg"
  62534. }
  62535. },
  62536. },
  62537. [
  62538. {
  62539. name: "Normal",
  62540. height: math.unit(3 + 3/12, "feet"),
  62541. default: true
  62542. },
  62543. {
  62544. name: "Macro",
  62545. height: math.unit(32, "feet")
  62546. },
  62547. ]
  62548. ))
  62549. characterMakers.push(() => makeCharacter(
  62550. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62551. {
  62552. front: {
  62553. height: math.unit(6 + 2/12, "feet"),
  62554. weight: math.unit(203, "lb"),
  62555. name: "Front",
  62556. image: {
  62557. source: "./media/characters/maki-kawa/front.svg",
  62558. extra: 950/890,
  62559. bottom: 62/1012
  62560. }
  62561. },
  62562. back: {
  62563. height: math.unit(6 + 2/12, "feet"),
  62564. weight: math.unit(203, "lb"),
  62565. name: "Back",
  62566. image: {
  62567. source: "./media/characters/maki-kawa/back.svg",
  62568. extra: 953/878,
  62569. bottom: 49/1002
  62570. }
  62571. },
  62572. frontBarista: {
  62573. height: math.unit(6 + 2/12, "feet"),
  62574. weight: math.unit(203, "lb"),
  62575. name: "Front (Barista)",
  62576. image: {
  62577. source: "./media/characters/maki-kawa/front-barista.svg",
  62578. extra: 943/883,
  62579. bottom: 69/1012
  62580. }
  62581. },
  62582. backBarista: {
  62583. height: math.unit(6 + 2/12, "feet"),
  62584. weight: math.unit(203, "lb"),
  62585. name: "Back (Barista)",
  62586. image: {
  62587. source: "./media/characters/maki-kawa/back-barista.svg",
  62588. extra: 953/878,
  62589. bottom: 49/1002
  62590. }
  62591. },
  62592. frontWrestler: {
  62593. height: math.unit(6 + 2/12, "feet"),
  62594. weight: math.unit(203, "lb"),
  62595. name: "Front (Wrestler)",
  62596. image: {
  62597. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62598. extra: 950/890,
  62599. bottom: 62/1012
  62600. }
  62601. },
  62602. backWrestler: {
  62603. height: math.unit(6 + 2/12, "feet"),
  62604. weight: math.unit(203, "lb"),
  62605. name: "Back (Wrestler)",
  62606. image: {
  62607. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62608. extra: 953/878,
  62609. bottom: 49/1002
  62610. }
  62611. },
  62612. headFront: {
  62613. height: math.unit(1.64, "feet"),
  62614. name: "Head (Front)",
  62615. image: {
  62616. source: "./media/characters/maki-kawa/head-front.svg"
  62617. }
  62618. },
  62619. headSide: {
  62620. height: math.unit(1.59, "feet"),
  62621. name: "Head (Side)",
  62622. image: {
  62623. source: "./media/characters/maki-kawa/head-side.svg"
  62624. }
  62625. },
  62626. paw: {
  62627. height: math.unit(0.9, "feet"),
  62628. name: "Paw",
  62629. image: {
  62630. source: "./media/characters/maki-kawa/paw.svg"
  62631. }
  62632. },
  62633. },
  62634. [
  62635. {
  62636. name: "Normal",
  62637. height: math.unit(6 + 2/12, "feet"),
  62638. default: true
  62639. },
  62640. {
  62641. name: "Macro",
  62642. height: math.unit(617, "feet")
  62643. },
  62644. ]
  62645. ))
  62646. characterMakers.push(() => makeCharacter(
  62647. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62648. {
  62649. front: {
  62650. height: math.unit(10, "feet"),
  62651. weight: math.unit(1500, "lb"),
  62652. name: "Front",
  62653. image: {
  62654. source: "./media/characters/lennox/front.svg",
  62655. extra: 1623/1496,
  62656. bottom: 18/1641
  62657. }
  62658. },
  62659. back: {
  62660. height: math.unit(10, "feet"),
  62661. weight: math.unit(1500, "lb"),
  62662. name: "Back",
  62663. image: {
  62664. source: "./media/characters/lennox/back.svg",
  62665. extra: 1641/1481,
  62666. bottom: 13/1654
  62667. }
  62668. },
  62669. maw: {
  62670. height: math.unit(2.94, "feet"),
  62671. name: "Maw",
  62672. image: {
  62673. source: "./media/characters/lennox/maw.svg"
  62674. }
  62675. },
  62676. },
  62677. [
  62678. {
  62679. name: "Micro",
  62680. height: math.unit(1, "inch")
  62681. },
  62682. {
  62683. name: "Normal",
  62684. height: math.unit(10, "feet"),
  62685. default: true
  62686. },
  62687. {
  62688. name: "Macro",
  62689. height: math.unit(200, "feet")
  62690. },
  62691. ]
  62692. ))
  62693. characterMakers.push(() => makeCharacter(
  62694. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62695. {
  62696. frontDressed: {
  62697. height: math.unit(15 + 7/12, "feet"),
  62698. weight: math.unit(5000, "lb"),
  62699. name: "Front (Dressed)",
  62700. image: {
  62701. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62702. extra: 1136/1023,
  62703. bottom: 51/1187
  62704. }
  62705. },
  62706. backDressed: {
  62707. height: math.unit(15 + 7/12, "feet"),
  62708. weight: math.unit(5000, "lb"),
  62709. name: "Back (Dressed)",
  62710. image: {
  62711. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62712. extra: 2359/2143,
  62713. bottom: 103/2462
  62714. }
  62715. },
  62716. front: {
  62717. height: math.unit(15 + 7/12, "feet"),
  62718. weight: math.unit(5000, "lb"),
  62719. name: "Front",
  62720. image: {
  62721. source: "./media/characters/vyse-iron-thunder/front.svg",
  62722. extra: 1136/1023,
  62723. bottom: 51/1187
  62724. }
  62725. },
  62726. hand: {
  62727. height: math.unit(2.36, "feet"),
  62728. name: "Hand",
  62729. image: {
  62730. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62731. }
  62732. },
  62733. foot: {
  62734. height: math.unit(1.72, "feet"),
  62735. name: "Foot",
  62736. image: {
  62737. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62738. }
  62739. },
  62740. mouth: {
  62741. height: math.unit(2, "feet"),
  62742. name: "Mouth",
  62743. image: {
  62744. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62745. }
  62746. },
  62747. eye: {
  62748. height: math.unit(0.58, "feet"),
  62749. name: "Eye",
  62750. image: {
  62751. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62752. }
  62753. },
  62754. },
  62755. [
  62756. {
  62757. name: "Normal",
  62758. height: math.unit(15 + 7/12, "feet"),
  62759. default: true
  62760. },
  62761. {
  62762. name: "Macro",
  62763. height: math.unit(157, "feet")
  62764. },
  62765. {
  62766. name: "Macro+",
  62767. height: math.unit(1570, "feet")
  62768. },
  62769. {
  62770. name: "Macro++",
  62771. height: math.unit(15700, "feet")
  62772. },
  62773. {
  62774. name: "Macro+++",
  62775. height: math.unit(157000, "feet")
  62776. },
  62777. {
  62778. name: "Macro++++",
  62779. height: math.unit(1570000, "feet")
  62780. },
  62781. ]
  62782. ))
  62783. characterMakers.push(() => makeCharacter(
  62784. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62785. {
  62786. side: {
  62787. height: math.unit(6, "feet"),
  62788. weight: math.unit(115, "lb"),
  62789. name: "Side",
  62790. image: {
  62791. source: "./media/characters/moonbeam/side.svg",
  62792. extra: 839/485,
  62793. bottom: 60/899
  62794. }
  62795. },
  62796. },
  62797. [
  62798. {
  62799. name: "Normal",
  62800. height: math.unit(6, "feet"),
  62801. default: true
  62802. },
  62803. ]
  62804. ))
  62805. characterMakers.push(() => makeCharacter(
  62806. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62807. {
  62808. front: {
  62809. height: math.unit(3500, "miles"),
  62810. weight: math.unit(1659, "petatonnes"),
  62811. name: "Front",
  62812. image: {
  62813. source: "./media/characters/baltica/front.svg",
  62814. extra: 429/428,
  62815. bottom: 41/470
  62816. }
  62817. },
  62818. back: {
  62819. height: math.unit(3500, "miles"),
  62820. weight: math.unit(1659, "petatonnes"),
  62821. name: "Back",
  62822. image: {
  62823. source: "./media/characters/baltica/back.svg",
  62824. extra: 452/451,
  62825. bottom: 8/460
  62826. }
  62827. },
  62828. },
  62829. [
  62830. {
  62831. name: "Gigamacro",
  62832. height: math.unit(3500, "miles"),
  62833. default: true
  62834. },
  62835. ]
  62836. ))
  62837. characterMakers.push(() => makeCharacter(
  62838. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62839. {
  62840. front: {
  62841. height: math.unit(6 + 10/12, "feet"),
  62842. weight: math.unit(200, "lb"),
  62843. name: "Front",
  62844. image: {
  62845. source: "./media/characters/shadow-wolf/front.svg",
  62846. extra: 1931/1760,
  62847. bottom: 88/2019
  62848. }
  62849. },
  62850. },
  62851. [
  62852. {
  62853. name: "Normal",
  62854. height: math.unit(6 + 10/12, "feet"),
  62855. default: true
  62856. },
  62857. ]
  62858. ))
  62859. characterMakers.push(() => makeCharacter(
  62860. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62861. {
  62862. front: {
  62863. height: math.unit(5 + 10/12, "feet"),
  62864. name: "Front",
  62865. image: {
  62866. source: "./media/characters/quincy-praying-mantis/front.svg",
  62867. extra: 1055/891,
  62868. bottom: 92/1147
  62869. }
  62870. },
  62871. soles: {
  62872. height: math.unit(0.85, "feet"),
  62873. name: "Soles",
  62874. image: {
  62875. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62876. extra: 429/324,
  62877. bottom: 89/518
  62878. },
  62879. extraAttributes: {
  62880. "shoeSize": {
  62881. name: "Shoe Size",
  62882. power: 1,
  62883. type: "length",
  62884. base: math.unit(23, "ShoeSizeMensUS"),
  62885. defaultUnit: "ShoeSizeMensUS"
  62886. },
  62887. }
  62888. },
  62889. foot: {
  62890. height: math.unit(0.72, "feet"),
  62891. name: "Foot",
  62892. image: {
  62893. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62894. extra: 349/349,
  62895. bottom: 76/425
  62896. }
  62897. },
  62898. },
  62899. [
  62900. {
  62901. name: "Normal",
  62902. height: math.unit(5 + 10/12, "feet"),
  62903. default: true
  62904. },
  62905. ]
  62906. ))
  62907. characterMakers.push(() => makeCharacter(
  62908. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62909. {
  62910. front: {
  62911. height: math.unit(6, "feet"),
  62912. name: "Front",
  62913. image: {
  62914. source: "./media/characters/christopher-redwood/front.svg",
  62915. extra: 1402/1341,
  62916. bottom: 23/1425
  62917. }
  62918. },
  62919. back: {
  62920. height: math.unit(6, "feet"),
  62921. name: "Back",
  62922. image: {
  62923. source: "./media/characters/christopher-redwood/back.svg",
  62924. extra: 1406/1345,
  62925. bottom: 36/1442
  62926. }
  62927. },
  62928. head: {
  62929. height: math.unit(1.685, "feet"),
  62930. name: "Head",
  62931. image: {
  62932. source: "./media/characters/christopher-redwood/head.svg"
  62933. }
  62934. },
  62935. },
  62936. [
  62937. {
  62938. name: "Normal",
  62939. height: math.unit(6, "feet"),
  62940. default: true
  62941. },
  62942. ]
  62943. ))
  62944. characterMakers.push(() => makeCharacter(
  62945. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  62946. {
  62947. front: {
  62948. height: math.unit(1.9, "meters"),
  62949. weight: math.unit(140, "lb"),
  62950. name: "Front",
  62951. image: {
  62952. source: "./media/characters/kara-fox/front.svg",
  62953. extra: 766/711,
  62954. bottom: 41/807
  62955. }
  62956. },
  62957. back: {
  62958. height: math.unit(1.9, "meters"),
  62959. weight: math.unit(140, "lb"),
  62960. name: "Back",
  62961. image: {
  62962. source: "./media/characters/kara-fox/back.svg",
  62963. extra: 766/596,
  62964. bottom: 29/795
  62965. }
  62966. },
  62967. maw: {
  62968. height: math.unit(0.78, "feet"),
  62969. name: "Maw",
  62970. image: {
  62971. source: "./media/characters/kara-fox/maw.svg"
  62972. }
  62973. },
  62974. pawpads: {
  62975. height: math.unit(0.96, "feet"),
  62976. name: "Pawpads",
  62977. image: {
  62978. source: "./media/characters/kara-fox/pawpads.svg"
  62979. }
  62980. },
  62981. },
  62982. [
  62983. {
  62984. name: "Normal",
  62985. height: math.unit(1.9, "meters"),
  62986. default: true
  62987. },
  62988. {
  62989. name: "Giantess",
  62990. height: math.unit(80, "meters")
  62991. },
  62992. ]
  62993. ))
  62994. characterMakers.push(() => makeCharacter(
  62995. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  62996. {
  62997. front: {
  62998. height: math.unit(12, "feet"),
  62999. name: "Front",
  63000. image: {
  63001. source: "./media/characters/naomi-espeon/front.svg",
  63002. extra: 892/797,
  63003. bottom: 5/897
  63004. }
  63005. },
  63006. back: {
  63007. height: math.unit(12, "feet"),
  63008. name: "Back",
  63009. image: {
  63010. source: "./media/characters/naomi-espeon/back.svg",
  63011. extra: 890/785,
  63012. bottom: 12/902
  63013. }
  63014. },
  63015. },
  63016. [
  63017. {
  63018. name: "Normal",
  63019. height: math.unit(12, "feet"),
  63020. default: true
  63021. },
  63022. ]
  63023. ))
  63024. characterMakers.push(() => makeCharacter(
  63025. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  63026. {
  63027. anthro_front: {
  63028. height: math.unit(8, "feet"),
  63029. weight: math.unit(625, "lb"),
  63030. name: "Front",
  63031. image: {
  63032. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  63033. extra: 638/574,
  63034. bottom: 73/711
  63035. },
  63036. form: "anthro",
  63037. default: true
  63038. },
  63039. anthro_back: {
  63040. height: math.unit(8, "feet"),
  63041. weight: math.unit(625, "lb"),
  63042. name: "Back",
  63043. image: {
  63044. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  63045. extra: 674/614,
  63046. bottom: 7/681
  63047. },
  63048. form: "anthro",
  63049. },
  63050. taur_side: {
  63051. height: math.unit(16, "feet"),
  63052. weight: math.unit(4.5, "tons"),
  63053. name: "Side",
  63054. image: {
  63055. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  63056. extra: 704/646,
  63057. bottom: 132/836
  63058. },
  63059. form: "taur",
  63060. default: true
  63061. },
  63062. },
  63063. [
  63064. {
  63065. name: "Normal",
  63066. height: math.unit(8, "feet"),
  63067. default: true,
  63068. form: "anthro"
  63069. },
  63070. {
  63071. name: "Normal",
  63072. height: math.unit(16, "feet"),
  63073. default: true,
  63074. form: "taur"
  63075. },
  63076. ],
  63077. {
  63078. "anthro": {
  63079. name: "Anthro",
  63080. default: true
  63081. },
  63082. "taur": {
  63083. name: "Taur",
  63084. },
  63085. }
  63086. ))
  63087. characterMakers.push(() => makeCharacter(
  63088. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  63089. {
  63090. front: {
  63091. height: math.unit(190, "cm"),
  63092. weight: math.unit(110, "kg"),
  63093. name: "Front",
  63094. image: {
  63095. source: "./media/characters/amelie/front.svg",
  63096. extra: 530/442,
  63097. bottom: 35/565
  63098. }
  63099. },
  63100. },
  63101. [
  63102. {
  63103. name: "Normal",
  63104. height: math.unit(190, "cm"),
  63105. default: true
  63106. },
  63107. ]
  63108. ))
  63109. characterMakers.push(() => makeCharacter(
  63110. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  63111. {
  63112. front: {
  63113. height: math.unit(21, "feet"),
  63114. weight: math.unit(30000, "lb"),
  63115. name: "Front",
  63116. image: {
  63117. source: "./media/characters/valence/front.svg",
  63118. extra: 1430/1306,
  63119. bottom: 51/1481
  63120. }
  63121. },
  63122. },
  63123. [
  63124. {
  63125. name: "Normal",
  63126. height: math.unit(21, "feet"),
  63127. default: true
  63128. },
  63129. ]
  63130. ))
  63131. characterMakers.push(() => makeCharacter(
  63132. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  63133. {
  63134. front: {
  63135. height: math.unit(5 + 9/12, "feet"),
  63136. weight: math.unit(170, "lb"),
  63137. name: "Front",
  63138. image: {
  63139. source: "./media/characters/aurora-adkins/front.svg",
  63140. extra: 1141/1089,
  63141. bottom: 41/1182
  63142. }
  63143. },
  63144. },
  63145. [
  63146. {
  63147. name: "Tiny",
  63148. height: math.unit(7, "mm")
  63149. },
  63150. {
  63151. name: "Small",
  63152. height: math.unit(3.4, "inches")
  63153. },
  63154. {
  63155. name: "Normal",
  63156. height: math.unit(5 + 9/12, "feet"),
  63157. default: true
  63158. },
  63159. {
  63160. name: "Big",
  63161. height: math.unit(31, "feet")
  63162. },
  63163. {
  63164. name: "Giant",
  63165. height: math.unit(300, "feet")
  63166. },
  63167. ]
  63168. ))
  63169. characterMakers.push(() => makeCharacter(
  63170. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  63171. {
  63172. front: {
  63173. height: math.unit(5 + 6/12, "feet"),
  63174. weight: math.unit(210, "lb"),
  63175. name: "Front",
  63176. image: {
  63177. source: "./media/characters/cyber/front.svg",
  63178. extra: 1968/1798,
  63179. bottom: 10/1978
  63180. },
  63181. extraAttributes: {
  63182. "shoeSize": {
  63183. name: "Shoe Size",
  63184. power: 1,
  63185. type: "length",
  63186. base: math.unit(30, "ShoeSizeMensUS")
  63187. },
  63188. }
  63189. },
  63190. },
  63191. [
  63192. {
  63193. name: "Normal",
  63194. height: math.unit(5 + 6/12, "feet"),
  63195. default: true
  63196. },
  63197. ]
  63198. ))
  63199. characterMakers.push(() => makeCharacter(
  63200. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  63201. {
  63202. front: {
  63203. height: math.unit(6 + 6/12, "feet"),
  63204. weight: math.unit(140, "lb"),
  63205. name: "Front",
  63206. image: {
  63207. source: "./media/characters/sapphire-wairimea/front.svg",
  63208. extra: 475/458,
  63209. bottom: 14/489
  63210. }
  63211. },
  63212. },
  63213. [
  63214. {
  63215. name: "Normal",
  63216. height: math.unit(6 + 6/12, "feet")
  63217. },
  63218. {
  63219. name: "Macro",
  63220. height: math.unit(132, "feet"),
  63221. default: true
  63222. },
  63223. ]
  63224. ))
  63225. characterMakers.push(() => makeCharacter(
  63226. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63227. {
  63228. front: {
  63229. height: math.unit(1.6, "meters"),
  63230. weight: math.unit(100, "lb"),
  63231. name: "Front",
  63232. image: {
  63233. source: "./media/characters/cirkazi/front.svg",
  63234. extra: 489/477,
  63235. bottom: 0/489
  63236. }
  63237. },
  63238. },
  63239. [
  63240. {
  63241. name: "Normal",
  63242. height: math.unit(1.6, "meters")
  63243. },
  63244. {
  63245. name: "Macro",
  63246. height: math.unit(800, "feet"),
  63247. default: true
  63248. },
  63249. ]
  63250. ))
  63251. characterMakers.push(() => makeCharacter(
  63252. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63253. {
  63254. front: {
  63255. height: math.unit(5 + 10/12, "feet"),
  63256. weight: math.unit(145, "lb"),
  63257. name: "Front",
  63258. image: {
  63259. source: "./media/characters/corrin-cavelli/front.svg",
  63260. extra: 483/464,
  63261. bottom: 6/489
  63262. }
  63263. },
  63264. },
  63265. [
  63266. {
  63267. name: "Human",
  63268. height: math.unit(5 + 10/12, "feet")
  63269. },
  63270. {
  63271. name: "Giant",
  63272. height: math.unit(210, "feet"),
  63273. default: true
  63274. },
  63275. ]
  63276. ))
  63277. characterMakers.push(() => makeCharacter(
  63278. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63279. {
  63280. back: {
  63281. height: math.unit(5 + 6/12, "feet"),
  63282. weight: math.unit(115, "lb"),
  63283. name: "Back",
  63284. image: {
  63285. source: "./media/characters/lori-lopez/back.svg",
  63286. extra: 483/474,
  63287. bottom: 6/489
  63288. }
  63289. },
  63290. },
  63291. [
  63292. {
  63293. name: "Human",
  63294. height: math.unit(5 + 6/12, "feet")
  63295. },
  63296. {
  63297. name: "Macro",
  63298. height: math.unit(198, "feet"),
  63299. default: true
  63300. },
  63301. ]
  63302. ))
  63303. characterMakers.push(() => makeCharacter(
  63304. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63305. {
  63306. front: {
  63307. height: math.unit(6, "feet"),
  63308. weight: math.unit(220, "lb"),
  63309. name: "Front",
  63310. image: {
  63311. source: "./media/characters/sylvia-beauregard/front.svg",
  63312. extra: 483/479,
  63313. bottom: 6/489
  63314. }
  63315. },
  63316. },
  63317. [
  63318. {
  63319. name: "Macro",
  63320. height: math.unit(2071, "feet"),
  63321. default: true
  63322. },
  63323. ]
  63324. ))
  63325. characterMakers.push(() => makeCharacter(
  63326. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63327. {
  63328. back: {
  63329. height: math.unit(5 + 6/12, "feet"),
  63330. weight: math.unit(160, "lb"),
  63331. name: "Back",
  63332. image: {
  63333. source: "./media/characters/akiko-takahashi/back.svg",
  63334. extra: 459/454,
  63335. bottom: 27/486
  63336. }
  63337. },
  63338. },
  63339. [
  63340. {
  63341. name: "Human",
  63342. height: math.unit(5 + 6/12, "feet")
  63343. },
  63344. {
  63345. name: "Macro",
  63346. height: math.unit(198, "feet"),
  63347. default: true
  63348. },
  63349. {
  63350. name: "Megamacro",
  63351. height: math.unit(7128, "feet")
  63352. },
  63353. ]
  63354. ))
  63355. characterMakers.push(() => makeCharacter(
  63356. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63357. {
  63358. front: {
  63359. height: math.unit(6, "feet"),
  63360. weight: math.unit(140, "lb"),
  63361. name: "Front",
  63362. image: {
  63363. source: "./media/characters/velvet-garza/front.svg",
  63364. extra: 480/462,
  63365. bottom: 7/487
  63366. }
  63367. },
  63368. },
  63369. [
  63370. {
  63371. name: "Macro",
  63372. height: math.unit(37, "feet"),
  63373. default: true
  63374. },
  63375. ]
  63376. ))
  63377. characterMakers.push(() => makeCharacter(
  63378. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63379. {
  63380. front: {
  63381. height: math.unit(7 + 6/12, "feet"),
  63382. weight: math.unit(400, "lb"),
  63383. name: "Front",
  63384. image: {
  63385. source: "./media/characters/gaia/front.svg",
  63386. extra: 474/463,
  63387. bottom: 13/487
  63388. }
  63389. },
  63390. },
  63391. [
  63392. {
  63393. name: "MiniMacro",
  63394. height: math.unit(7 + 6/12, "feet")
  63395. },
  63396. {
  63397. name: "GigaMacro",
  63398. height: math.unit(14500, "feet"),
  63399. default: true
  63400. },
  63401. ]
  63402. ))
  63403. characterMakers.push(() => makeCharacter(
  63404. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63405. {
  63406. front: {
  63407. height: math.unit(6, "feet"),
  63408. weight: math.unit(150, "lb"),
  63409. name: "Front",
  63410. image: {
  63411. source: "./media/characters/tim/front.svg",
  63412. extra: 1878/1743,
  63413. bottom: 9/1887
  63414. }
  63415. },
  63416. frontDressed: {
  63417. height: math.unit(6, "feet"),
  63418. weight: math.unit(150, "lb"),
  63419. name: "Front (Dressed)",
  63420. image: {
  63421. source: "./media/characters/tim/front-dressed.svg",
  63422. extra: 1765/1485,
  63423. bottom: 48/1813
  63424. }
  63425. },
  63426. backDressed: {
  63427. height: math.unit(6, "feet"),
  63428. weight: math.unit(150, "lb"),
  63429. name: "Back (Dressed)",
  63430. image: {
  63431. source: "./media/characters/tim/back-dressed.svg",
  63432. extra: 1750/1465,
  63433. bottom: 25/1775
  63434. }
  63435. },
  63436. dick: {
  63437. height: math.unit(1.5, "feet"),
  63438. weight: math.unit(6, "lb"),
  63439. name: "Dick",
  63440. image: {
  63441. source: "./media/characters/tim/dick.svg"
  63442. }
  63443. },
  63444. hand: {
  63445. height: math.unit(0.522, "feet"),
  63446. name: "Hand",
  63447. image: {
  63448. source: "./media/characters/tim/hand.svg"
  63449. }
  63450. },
  63451. palm: {
  63452. height: math.unit(0.48, "feet"),
  63453. name: "Palm",
  63454. image: {
  63455. source: "./media/characters/tim/palm.svg"
  63456. }
  63457. },
  63458. paw: {
  63459. height: math.unit(0.9, "feet"),
  63460. name: "Paw",
  63461. image: {
  63462. source: "./media/characters/tim/paw.svg"
  63463. }
  63464. },
  63465. sole: {
  63466. height: math.unit(0.88, "feet"),
  63467. name: "Sole",
  63468. image: {
  63469. source: "./media/characters/tim/sole.svg"
  63470. }
  63471. },
  63472. },
  63473. [
  63474. {
  63475. name: "Macro",
  63476. height: math.unit(1000, "feet")
  63477. },
  63478. {
  63479. name: "Megamacro",
  63480. height: math.unit(10000, "feet"),
  63481. default: true
  63482. },
  63483. {
  63484. name: "Megamacro+",
  63485. height: math.unit(50000, "feet")
  63486. },
  63487. {
  63488. name: "Gigamacro",
  63489. height: math.unit(150000, "km")
  63490. },
  63491. ]
  63492. ))
  63493. characterMakers.push(() => makeCharacter(
  63494. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63495. {
  63496. front: {
  63497. height: math.unit(5 + 8/12, "feet"),
  63498. weight: math.unit(170, "lb"),
  63499. name: "Front",
  63500. image: {
  63501. source: "./media/characters/abel-delreoux/front.svg",
  63502. extra: 1615/1500,
  63503. bottom: 82/1697
  63504. }
  63505. },
  63506. back: {
  63507. height: math.unit(5 + 8/12, "feet"),
  63508. weight: math.unit(170, "lb"),
  63509. name: "Back",
  63510. image: {
  63511. source: "./media/characters/abel-delreoux/back.svg",
  63512. extra: 1644/1534,
  63513. bottom: 24/1668
  63514. }
  63515. },
  63516. casual: {
  63517. height: math.unit(5 + 8/12, "feet"),
  63518. weight: math.unit(170, "lb"),
  63519. name: "Casual",
  63520. image: {
  63521. source: "./media/characters/abel-delreoux/casual.svg",
  63522. extra: 1716/1598,
  63523. bottom: 29/1745
  63524. }
  63525. },
  63526. sleepy: {
  63527. height: math.unit(5 + 8/12, "feet"),
  63528. weight: math.unit(170, "lb"),
  63529. name: "Sleepy",
  63530. image: {
  63531. source: "./media/characters/abel-delreoux/sleepy.svg",
  63532. extra: 1649/1573,
  63533. bottom: 22/1671
  63534. }
  63535. },
  63536. fem: {
  63537. height: math.unit(5 + 8/12, "feet"),
  63538. weight: math.unit(170, "lb"),
  63539. name: "Fem",
  63540. image: {
  63541. source: "./media/characters/abel-delreoux/fem.svg",
  63542. extra: 1680/1564,
  63543. bottom: 17/1697
  63544. }
  63545. },
  63546. hand: {
  63547. height: math.unit(0.78, "feet"),
  63548. name: "Hand",
  63549. image: {
  63550. source: "./media/characters/abel-delreoux/hand.svg"
  63551. }
  63552. },
  63553. paw: {
  63554. height: math.unit(0.78, "feet"),
  63555. name: "Paw",
  63556. image: {
  63557. source: "./media/characters/abel-delreoux/paw.svg"
  63558. }
  63559. },
  63560. },
  63561. [
  63562. {
  63563. name: "Normal",
  63564. height: math.unit(5 + 8/12, "feet"),
  63565. default: true
  63566. },
  63567. ]
  63568. ))
  63569. characterMakers.push(() => makeCharacter(
  63570. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63571. {
  63572. front: {
  63573. height: math.unit(6, "feet"),
  63574. weight: math.unit(159, "lb"),
  63575. name: "Front",
  63576. image: {
  63577. source: "./media/characters/meus/front.svg",
  63578. extra: 938/843,
  63579. bottom: 37/975
  63580. }
  63581. },
  63582. back: {
  63583. height: math.unit(6, "feet"),
  63584. weight: math.unit(159, "lb"),
  63585. name: "Back",
  63586. image: {
  63587. source: "./media/characters/meus/back.svg",
  63588. extra: 967/873,
  63589. bottom: 12/979
  63590. }
  63591. },
  63592. },
  63593. [
  63594. {
  63595. name: "Micro",
  63596. height: math.unit(2, "inches")
  63597. },
  63598. {
  63599. name: "Mini",
  63600. height: math.unit(6, "inches")
  63601. },
  63602. {
  63603. name: "Normal",
  63604. height: math.unit(6, "feet"),
  63605. default: true
  63606. },
  63607. {
  63608. name: "Macro",
  63609. height: math.unit(84, "feet")
  63610. },
  63611. ]
  63612. ))
  63613. characterMakers.push(() => makeCharacter(
  63614. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63615. {
  63616. front: {
  63617. height: math.unit(60, "cm"),
  63618. weight: math.unit(18, "kg"),
  63619. name: "Front",
  63620. image: {
  63621. source: "./media/characters/yamato/front.svg",
  63622. extra: 733/688,
  63623. bottom: 29/762
  63624. }
  63625. },
  63626. },
  63627. [
  63628. {
  63629. name: "Micro",
  63630. height: math.unit(6, "cm")
  63631. },
  63632. {
  63633. name: "Normal",
  63634. height: math.unit(60, "cm"),
  63635. default: true
  63636. },
  63637. ]
  63638. ))
  63639. characterMakers.push(() => makeCharacter(
  63640. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63641. {
  63642. front: {
  63643. height: math.unit(9, "feet"),
  63644. weight: math.unit(518, "lb"),
  63645. name: "Front",
  63646. image: {
  63647. source: "./media/characters/barus/front.svg",
  63648. extra: 1877/1795,
  63649. bottom: 55/1932
  63650. }
  63651. },
  63652. },
  63653. [
  63654. {
  63655. name: "Base Height",
  63656. height: math.unit(9, "feet"),
  63657. default: true
  63658. },
  63659. {
  63660. name: "Large",
  63661. height: math.unit(18, "feet")
  63662. },
  63663. {
  63664. name: "Giant",
  63665. height: math.unit(100, "feet")
  63666. },
  63667. {
  63668. name: "Huge",
  63669. height: math.unit(500, "feet")
  63670. },
  63671. {
  63672. name: "Enormous",
  63673. height: math.unit(300, "meters")
  63674. },
  63675. {
  63676. name: "Deity Among Man",
  63677. height: math.unit(3000, "meters")
  63678. },
  63679. ]
  63680. ))
  63681. characterMakers.push(() => makeCharacter(
  63682. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63683. {
  63684. front: {
  63685. height: math.unit(1.7, "meters"),
  63686. name: "Front",
  63687. image: {
  63688. source: "./media/characters/yari/front.svg",
  63689. extra: 1210/1125,
  63690. bottom: 283/1493
  63691. }
  63692. },
  63693. back: {
  63694. height: math.unit(1.7, "meters"),
  63695. name: "Back",
  63696. image: {
  63697. source: "./media/characters/yari/back.svg",
  63698. extra: 1240/1195,
  63699. bottom: 180/1420
  63700. }
  63701. },
  63702. head: {
  63703. height: math.unit(1.26, "feet"),
  63704. name: "Head",
  63705. image: {
  63706. source: "./media/characters/yari/head.svg"
  63707. }
  63708. },
  63709. },
  63710. [
  63711. {
  63712. name: "Nano",
  63713. height: math.unit(0.5, "mm")
  63714. },
  63715. {
  63716. name: "Micro",
  63717. height: math.unit(3, "inches")
  63718. },
  63719. {
  63720. name: "Short",
  63721. height: math.unit(1.5, "meters")
  63722. },
  63723. {
  63724. name: "Norm",
  63725. height: math.unit(1.7, "meters"),
  63726. default: true
  63727. },
  63728. ]
  63729. ))
  63730. characterMakers.push(() => makeCharacter(
  63731. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63732. {
  63733. front: {
  63734. height: math.unit(5 + 2/12, "feet"),
  63735. weight: math.unit(110, "lb"),
  63736. name: "Front",
  63737. image: {
  63738. source: "./media/characters/salem/front.svg",
  63739. extra: 1895/1800,
  63740. bottom: 23/1918
  63741. }
  63742. },
  63743. back: {
  63744. height: math.unit(5 + 2/12, "feet"),
  63745. weight: math.unit(110, "lb"),
  63746. name: "Back",
  63747. image: {
  63748. source: "./media/characters/salem/back.svg",
  63749. extra: 1875/1802,
  63750. bottom: 20/1895
  63751. }
  63752. },
  63753. head: {
  63754. height: math.unit(1, "feet"),
  63755. name: "Head",
  63756. image: {
  63757. source: "./media/characters/salem/head.svg"
  63758. }
  63759. },
  63760. paw: {
  63761. height: math.unit(0.59, "feet"),
  63762. name: "Paw",
  63763. image: {
  63764. source: "./media/characters/salem/paw.svg"
  63765. }
  63766. },
  63767. beans: {
  63768. height: math.unit(0.66, "feet"),
  63769. name: "Beans",
  63770. image: {
  63771. source: "./media/characters/salem/beans.svg"
  63772. }
  63773. },
  63774. eye: {
  63775. height: math.unit(0.224, "feet"),
  63776. name: "Eye",
  63777. image: {
  63778. source: "./media/characters/salem/eye.svg"
  63779. }
  63780. },
  63781. semiferal: {
  63782. height: math.unit(2.3, "feet"),
  63783. name: "Semiferal",
  63784. image: {
  63785. source: "./media/characters/salem/semiferal.svg",
  63786. extra: 914/839,
  63787. bottom: 32/946
  63788. }
  63789. },
  63790. },
  63791. [
  63792. {
  63793. name: "Micro",
  63794. height: math.unit(4, "inches")
  63795. },
  63796. {
  63797. name: "Normal",
  63798. height: math.unit(5 + 2/12, "feet"),
  63799. default: true
  63800. },
  63801. {
  63802. name: "Macro",
  63803. height: math.unit(108, "feet")
  63804. },
  63805. {
  63806. name: "Macro+",
  63807. height: math.unit(1500, "feet")
  63808. },
  63809. ]
  63810. ))
  63811. characterMakers.push(() => makeCharacter(
  63812. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  63813. {
  63814. front: {
  63815. height: math.unit(7 + 6/12, "feet"),
  63816. weight: math.unit(600, "kg"),
  63817. preyCapacity: math.unit(10, "people"),
  63818. name: "Front",
  63819. image: {
  63820. source: "./media/characters/kii/front.svg",
  63821. extra: 3296/3087,
  63822. bottom: 130/3426
  63823. }
  63824. },
  63825. },
  63826. [
  63827. {
  63828. name: "Normal",
  63829. height: math.unit(7 + 6/12, "feet"),
  63830. default: true
  63831. },
  63832. ]
  63833. ))
  63834. characterMakers.push(() => makeCharacter(
  63835. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  63836. {
  63837. front: {
  63838. height: math.unit(2, "meters"),
  63839. weight: math.unit(200, "lb"),
  63840. name: "Front",
  63841. image: {
  63842. source: "./media/characters/taffy/front.svg",
  63843. extra: 1666/1618,
  63844. bottom: 157/1823
  63845. }
  63846. },
  63847. back: {
  63848. height: math.unit(2, "meters"),
  63849. weight: math.unit(200, "lb"),
  63850. name: "Back",
  63851. image: {
  63852. source: "./media/characters/taffy/back.svg",
  63853. extra: 1635/1583,
  63854. bottom: 153/1788
  63855. }
  63856. },
  63857. },
  63858. [
  63859. {
  63860. name: "Normal",
  63861. height: math.unit(2, "meters"),
  63862. default: true
  63863. },
  63864. ]
  63865. ))
  63866. characterMakers.push(() => makeCharacter(
  63867. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  63868. {
  63869. front: {
  63870. height: math.unit(1.55, "meters"),
  63871. weight: math.unit(60, "kg"),
  63872. name: "Front",
  63873. image: {
  63874. source: "./media/characters/barley/front.svg",
  63875. extra: 1520/1340,
  63876. bottom: 47/1567
  63877. }
  63878. },
  63879. back: {
  63880. height: math.unit(1.55, "meters"),
  63881. weight: math.unit(60, "kg"),
  63882. name: "Back",
  63883. image: {
  63884. source: "./media/characters/barley/back.svg",
  63885. extra: 1543/1341,
  63886. bottom: 12/1555
  63887. }
  63888. },
  63889. feet: {
  63890. height: math.unit(2.18, "feet"),
  63891. name: "Feet",
  63892. image: {
  63893. source: "./media/characters/barley/feet.svg"
  63894. }
  63895. },
  63896. },
  63897. [
  63898. {
  63899. name: "Normal",
  63900. height: math.unit(1.55, "meters"),
  63901. default: true
  63902. },
  63903. ]
  63904. ))
  63905. characterMakers.push(() => makeCharacter(
  63906. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  63907. {
  63908. dressed: {
  63909. height: math.unit(6, "feet"),
  63910. name: "Dressed",
  63911. image: {
  63912. source: "./media/characters/lydia-lopez/dressed.svg",
  63913. extra: 1319/1277,
  63914. bottom: 90/1409
  63915. }
  63916. },
  63917. nude: {
  63918. height: math.unit(6, "feet"),
  63919. name: "Nude",
  63920. image: {
  63921. source: "./media/characters/lydia-lopez/nude.svg",
  63922. extra: 1319/1277,
  63923. bottom: 90/1409
  63924. }
  63925. },
  63926. },
  63927. [
  63928. {
  63929. name: "Normal",
  63930. height: math.unit(6, "feet"),
  63931. default: true
  63932. },
  63933. {
  63934. name: "Maximum",
  63935. height: math.unit(2101, "feet")
  63936. },
  63937. ]
  63938. ))
  63939. characterMakers.push(() => makeCharacter(
  63940. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  63941. {
  63942. front: {
  63943. height: math.unit(5 + 4/12, "feet"),
  63944. weight: math.unit(250, "lb"),
  63945. volume: math.unit(20, "gallons"),
  63946. name: "Front",
  63947. image: {
  63948. source: "./media/characters/kira-slime/front.svg",
  63949. extra: 442/403,
  63950. bottom: 18/460
  63951. }
  63952. },
  63953. frontNsfw: {
  63954. height: math.unit(5 + 4/12, "feet"),
  63955. weight: math.unit(250, "lb"),
  63956. volume: math.unit(20, "gallons"),
  63957. name: "Front (NSFW)",
  63958. image: {
  63959. source: "./media/characters/kira-slime/front-nsfw.svg",
  63960. extra: 442/403,
  63961. bottom: 18/460
  63962. }
  63963. },
  63964. },
  63965. [
  63966. {
  63967. name: "Droplet",
  63968. height: math.unit(0.0464452, "feet")
  63969. },
  63970. {
  63971. name: "Pint",
  63972. height: math.unit(0.9824, "feet")
  63973. },
  63974. {
  63975. name: "Bucket",
  63976. height: math.unit(2.83, "feet")
  63977. },
  63978. {
  63979. name: "Normal",
  63980. height: math.unit(5 + 4/12, "feet"),
  63981. default: true
  63982. },
  63983. {
  63984. name: "Tub",
  63985. height: math.unit(8.46614, "feet")
  63986. },
  63987. {
  63988. name: "Pool",
  63989. height: math.unit(31.1895, "feet")
  63990. },
  63991. {
  63992. name: "Pond",
  63993. height: math.unit(170.349, "feet")
  63994. },
  63995. {
  63996. name: "Lake",
  63997. height: math.unit(289334, "feet")
  63998. },
  63999. {
  64000. name: "Ocean",
  64001. height: math.unit(1.11940e+7, "feet")
  64002. },
  64003. ]
  64004. ))
  64005. characterMakers.push(() => makeCharacter(
  64006. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  64007. {
  64008. front: {
  64009. height: math.unit(5 + 6/12, "feet"),
  64010. weight: math.unit(120, "lb"),
  64011. name: "Front",
  64012. image: {
  64013. source: "./media/characters/holiday/front.svg",
  64014. extra: 456/403,
  64015. bottom: 4/460
  64016. }
  64017. },
  64018. back: {
  64019. height: math.unit(5 + 6/12, "feet"),
  64020. weight: math.unit(120, "lb"),
  64021. name: "Back",
  64022. image: {
  64023. source: "./media/characters/holiday/back.svg",
  64024. extra: 450/404,
  64025. bottom: 12/462
  64026. }
  64027. },
  64028. head: {
  64029. height: math.unit(2.3, "feet"),
  64030. name: "Head",
  64031. image: {
  64032. source: "./media/characters/holiday/head.svg"
  64033. }
  64034. },
  64035. },
  64036. [
  64037. {
  64038. name: "Normal",
  64039. height: math.unit(5 + 6/12, "feet"),
  64040. default: true
  64041. },
  64042. {
  64043. name: "Macro",
  64044. height: math.unit(6574.25, "feet")
  64045. },
  64046. ]
  64047. ))
  64048. characterMakers.push(() => makeCharacter(
  64049. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  64050. {
  64051. front: {
  64052. height: math.unit(6 + 2/12, "feet"),
  64053. weight: math.unit(200, "lb"),
  64054. name: "Front",
  64055. image: {
  64056. source: "./media/characters/camina/front.svg",
  64057. extra: 1048/985,
  64058. bottom: 30/1078
  64059. }
  64060. },
  64061. },
  64062. [
  64063. {
  64064. name: "Normal",
  64065. height: math.unit(6 + 2/12, "feet"),
  64066. default: true
  64067. },
  64068. ]
  64069. ))
  64070. characterMakers.push(() => makeCharacter(
  64071. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  64072. {
  64073. front: {
  64074. height: math.unit(30, "cm"),
  64075. weight: math.unit(420, "grams"),
  64076. name: "Front",
  64077. image: {
  64078. source: "./media/characters/smuck/front.svg",
  64079. extra: 379/345,
  64080. bottom: 36/415
  64081. }
  64082. },
  64083. },
  64084. [
  64085. {
  64086. name: "Smuck-Sized",
  64087. height: math.unit(30, "cm"),
  64088. default: true
  64089. },
  64090. ]
  64091. ))
  64092. characterMakers.push(() => makeCharacter(
  64093. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  64094. {
  64095. frontSfw: {
  64096. height: math.unit(10, "feet"),
  64097. weight: math.unit(1000, "kg"),
  64098. preyCapacity: math.unit(2, "people"),
  64099. name: "Front (SFW)",
  64100. image: {
  64101. source: "./media/characters/bylur/front-sfw.svg",
  64102. extra: 419/343,
  64103. bottom: 3/422
  64104. },
  64105. default: true
  64106. },
  64107. frontSheath: {
  64108. height: math.unit(10, "feet"),
  64109. weight: math.unit(1000, "kg"),
  64110. preyCapacity: math.unit(2, "people"),
  64111. name: "Front (Sheath)",
  64112. image: {
  64113. source: "./media/characters/bylur/front-sheath.svg",
  64114. extra: 419/343,
  64115. bottom: 3/422
  64116. }
  64117. },
  64118. frontErect: {
  64119. height: math.unit(10, "feet"),
  64120. weight: math.unit(1000, "kg"),
  64121. preyCapacity: math.unit(2, "people"),
  64122. name: "Front (Erect)",
  64123. image: {
  64124. source: "./media/characters/bylur/front-erect.svg",
  64125. extra: 419/343,
  64126. bottom: 3/422
  64127. }
  64128. },
  64129. back: {
  64130. height: math.unit(10, "feet"),
  64131. weight: math.unit(1000, "kg"),
  64132. preyCapacity: math.unit(2, "people"),
  64133. name: "Back",
  64134. image: {
  64135. source: "./media/characters/bylur/back.svg",
  64136. extra: 392/315,
  64137. bottom: 3/395
  64138. }
  64139. },
  64140. maw: {
  64141. height: math.unit(3.65, "feet"),
  64142. name: "Maw",
  64143. image: {
  64144. source: "./media/characters/bylur/maw.svg"
  64145. }
  64146. },
  64147. },
  64148. [
  64149. {
  64150. name: "Slightly Human Sized",
  64151. height: math.unit(10, "feet")
  64152. },
  64153. {
  64154. name: "Normal",
  64155. height: math.unit(35, "feet"),
  64156. default: true
  64157. },
  64158. {
  64159. name: "Macro",
  64160. height: math.unit(130, "feet")
  64161. },
  64162. ]
  64163. ))
  64164. characterMakers.push(() => makeCharacter(
  64165. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  64166. {
  64167. frontNsfw: {
  64168. height: math.unit(6, "feet"),
  64169. weight: math.unit(250, "lb"),
  64170. preyCapacity: math.unit(0.05, "people"),
  64171. name: "Front (NSFW)",
  64172. image: {
  64173. source: "./media/characters/oarven/front-nsfw.svg",
  64174. extra: 1795/1783,
  64175. bottom: 142/1937
  64176. }
  64177. },
  64178. frontSfw: {
  64179. height: math.unit(6, "feet"),
  64180. weight: math.unit(250, "lb"),
  64181. preyCapacity: math.unit(0.05, "people"),
  64182. name: "Front (SFW)",
  64183. image: {
  64184. source: "./media/characters/oarven/front-sfw.svg",
  64185. extra: 1795/1783,
  64186. bottom: 142/1937
  64187. }
  64188. },
  64189. },
  64190. [
  64191. {
  64192. name: "Megamacro",
  64193. height: math.unit(5, "miles"),
  64194. default: true
  64195. },
  64196. {
  64197. name: "Maximum Height",
  64198. height: math.unit(5, "AUs")
  64199. },
  64200. ]
  64201. ))
  64202. characterMakers.push(() => makeCharacter(
  64203. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  64204. {
  64205. side: {
  64206. height: math.unit(1065, "meters"),
  64207. weight: math.unit(1e12, "kg"),
  64208. volume: math.unit(3265000000, "m^3"),
  64209. name: "Side",
  64210. image: {
  64211. source: "./media/characters/solidarity/side.svg"
  64212. }
  64213. },
  64214. front: {
  64215. height: math.unit(1065, "meters"),
  64216. weight: math.unit(3265000000000, "kg"),
  64217. volume: math.unit(3265000000, "m^3"),
  64218. name: "Front",
  64219. image: {
  64220. source: "./media/characters/solidarity/front.svg"
  64221. }
  64222. },
  64223. top: {
  64224. height: math.unit(5823, "meters"),
  64225. weight: math.unit(3265000000000, "kg"),
  64226. volume: math.unit(3265000000, "m^3"),
  64227. name: "Top",
  64228. image: {
  64229. source: "./media/characters/solidarity/top.svg"
  64230. }
  64231. },
  64232. },
  64233. [
  64234. {
  64235. name: "Normal",
  64236. height: math.unit(1065, "meters"),
  64237. default: true
  64238. },
  64239. ]
  64240. ))
  64241. characterMakers.push(() => makeCharacter(
  64242. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64243. {
  64244. side: {
  64245. height: math.unit(18 + 4/12, "feet"),
  64246. weight: math.unit(13000, "kg"),
  64247. name: "Side",
  64248. image: {
  64249. source: "./media/characters/ani'szi/side.svg",
  64250. extra: 468/459,
  64251. bottom: 60/528
  64252. }
  64253. },
  64254. head: {
  64255. height: math.unit(4.8, "feet"),
  64256. name: "Head",
  64257. image: {
  64258. source: "./media/characters/ani'szi/head.svg"
  64259. }
  64260. },
  64261. jaws: {
  64262. height: math.unit(2.25, "feet"),
  64263. name: "Jaws",
  64264. image: {
  64265. source: "./media/characters/ani'szi/jaws.svg"
  64266. }
  64267. },
  64268. bust: {
  64269. height: math.unit(8.9, "feet"),
  64270. name: "Bust",
  64271. image: {
  64272. source: "./media/characters/ani'szi/bust.svg"
  64273. }
  64274. },
  64275. back: {
  64276. height: math.unit(13.53, "feet"),
  64277. name: "Back",
  64278. image: {
  64279. source: "./media/characters/ani'szi/back.svg"
  64280. }
  64281. },
  64282. eye: {
  64283. height: math.unit(0.44, "feet"),
  64284. name: "Eye",
  64285. image: {
  64286. source: "./media/characters/ani'szi/eye.svg"
  64287. }
  64288. },
  64289. },
  64290. [
  64291. {
  64292. name: "Normal",
  64293. height: math.unit(18 + 4/12, "feet"),
  64294. default: true
  64295. },
  64296. ]
  64297. ))
  64298. characterMakers.push(() => makeCharacter(
  64299. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64300. {
  64301. front: {
  64302. height: math.unit(7 + 6/12, "feet"),
  64303. weight: math.unit(300, "lb"),
  64304. name: "Front",
  64305. image: {
  64306. source: "./media/characters/rain/front.svg",
  64307. extra: 2955/2698,
  64308. bottom: 235/3190
  64309. }
  64310. },
  64311. dressed: {
  64312. height: math.unit(7 + 6/12, "feet"),
  64313. weight: math.unit(300, "lb"),
  64314. name: "Dressed",
  64315. image: {
  64316. source: "./media/characters/rain/dressed.svg",
  64317. extra: 2783/2572,
  64318. bottom: 430/3213
  64319. }
  64320. },
  64321. },
  64322. [
  64323. {
  64324. name: "Normal",
  64325. height: math.unit(7 + 6/12, "feet"),
  64326. default: true
  64327. },
  64328. {
  64329. name: "Macro",
  64330. height: math.unit(200, "feet")
  64331. },
  64332. {
  64333. name: "Macro+",
  64334. height: math.unit(500, "feet")
  64335. },
  64336. {
  64337. name: "Megamacro",
  64338. height: math.unit(5, "miles")
  64339. },
  64340. ]
  64341. ))
  64342. characterMakers.push(() => makeCharacter(
  64343. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64344. {
  64345. taur_side: {
  64346. height: math.unit(3, "meters"),
  64347. name: "Side",
  64348. image: {
  64349. source: "./media/characters/anise/taur-side.svg",
  64350. extra: 1833/926,
  64351. bottom: 134/1967
  64352. },
  64353. form: "taur",
  64354. default: true
  64355. },
  64356. feral_side: {
  64357. height: math.unit(3, "meters"),
  64358. name: "Side",
  64359. image: {
  64360. source: "./media/characters/anise/feral-side.svg",
  64361. extra: 681/349,
  64362. bottom: 26/707
  64363. },
  64364. form: "feral"
  64365. },
  64366. },
  64367. [
  64368. {
  64369. name: "Normal",
  64370. height: math.unit(3, "meters"),
  64371. default: true,
  64372. allForms: true
  64373. },
  64374. ],
  64375. {
  64376. "taur": {
  64377. name: "Taur",
  64378. default: true
  64379. },
  64380. "feral": {
  64381. name: "Feral",
  64382. },
  64383. }
  64384. ))
  64385. characterMakers.push(() => makeCharacter(
  64386. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64387. {
  64388. front: {
  64389. height: math.unit(1.9, "meters"),
  64390. weight: math.unit(75, "kg"),
  64391. name: "Front",
  64392. image: {
  64393. source: "./media/characters/sarina/front.svg",
  64394. extra: 1275/1200,
  64395. bottom: 49/1324
  64396. }
  64397. },
  64398. back: {
  64399. height: math.unit(1.9, "meters"),
  64400. weight: math.unit(75, "kg"),
  64401. name: "Back",
  64402. image: {
  64403. source: "./media/characters/sarina/back.svg",
  64404. extra: 1279/1209,
  64405. bottom: 14/1293
  64406. }
  64407. },
  64408. dressed: {
  64409. height: math.unit(1.9, "meters"),
  64410. weight: math.unit(75, "kg"),
  64411. name: "Dressed",
  64412. image: {
  64413. source: "./media/characters/sarina/dressed.svg",
  64414. extra: 1256/1187,
  64415. bottom: 56/1312
  64416. }
  64417. },
  64418. paw: {
  64419. height: math.unit(0.57, "feet"),
  64420. name: "Paw",
  64421. image: {
  64422. source: "./media/characters/sarina/paw.svg"
  64423. }
  64424. },
  64425. toering: {
  64426. height: math.unit(0.27, "feet"),
  64427. name: "Toering",
  64428. image: {
  64429. source: "./media/characters/sarina/toering.svg"
  64430. }
  64431. },
  64432. },
  64433. [
  64434. {
  64435. name: "Incognito",
  64436. height: math.unit(1.9, "meters")
  64437. },
  64438. {
  64439. name: "Home Size",
  64440. height: math.unit(160, "meters"),
  64441. default: true
  64442. },
  64443. {
  64444. name: "Mega",
  64445. height: math.unit(50, "km")
  64446. },
  64447. {
  64448. name: "Small Giga",
  64449. height: math.unit(250, "km")
  64450. },
  64451. {
  64452. name: "Giga (Preferred Size)",
  64453. height: math.unit(3000, "km")
  64454. },
  64455. {
  64456. name: "Terra",
  64457. height: math.unit(40000, "km")
  64458. },
  64459. {
  64460. name: "Terra+",
  64461. height: math.unit(400000, "km")
  64462. },
  64463. {
  64464. name: "Solar",
  64465. height: math.unit(35e6, "km")
  64466. },
  64467. {
  64468. name: "Galactic",
  64469. height: math.unit(648106, "parsecs")
  64470. },
  64471. {
  64472. name: "Universal",
  64473. height: math.unit(7, "universes")
  64474. },
  64475. {
  64476. name: "Universal+",
  64477. height: math.unit(30, "universes")
  64478. },
  64479. ]
  64480. ))
  64481. characterMakers.push(() => makeCharacter(
  64482. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  64483. {
  64484. front: {
  64485. height: math.unit(5 + 6/12, "feet"),
  64486. name: "Front",
  64487. image: {
  64488. source: "./media/characters/sifray/front.svg",
  64489. extra: 722/691,
  64490. bottom: 64/786
  64491. }
  64492. },
  64493. },
  64494. [
  64495. {
  64496. name: "Normal",
  64497. height: math.unit(5 + 6/12, "feet"),
  64498. default: true
  64499. },
  64500. ]
  64501. ))
  64502. characterMakers.push(() => makeCharacter(
  64503. { name: "Spots", species: ["dog"], tags: ["feral"] },
  64504. {
  64505. side: {
  64506. height: math.unit(2.64, "feet"),
  64507. weight: math.unit(100, "lb"),
  64508. preyCapacity: math.unit(3, "people"),
  64509. name: "Side",
  64510. image: {
  64511. source: "./media/characters/spots/side.svg",
  64512. extra: 1859/977,
  64513. bottom: 19/1878
  64514. },
  64515. extraAttributes: {
  64516. "preyPerMinute": {
  64517. name: "Prey Per Minute",
  64518. power: 3,
  64519. type: "volume",
  64520. base: math.unit(6, "people"),
  64521. defaultUnit: "people"
  64522. },
  64523. "preyPerDay": {
  64524. name: "Prey Per Day",
  64525. power: 3,
  64526. type: "volume",
  64527. base: math.unit(6 * 60 * 24, "people"),
  64528. defaultUnit: "people"
  64529. },
  64530. }
  64531. },
  64532. },
  64533. [
  64534. {
  64535. name: "Normal",
  64536. height: math.unit(2.64, "feet"),
  64537. default: true
  64538. },
  64539. ]
  64540. ))
  64541. characterMakers.push(() => makeCharacter(
  64542. { name: "Mona", species: ["caudin"], tags: ["anthro"] },
  64543. {
  64544. front: {
  64545. height: math.unit(29 + 11/12, "feet"),
  64546. weight: math.unit(40, "tons"),
  64547. name: "Front",
  64548. image: {
  64549. source: "./media/characters/mona/front.svg",
  64550. extra: 1257/1116,
  64551. bottom: 34/1291
  64552. }
  64553. },
  64554. },
  64555. [
  64556. {
  64557. name: "Normal",
  64558. height: math.unit(29 + 11/12, "feet"),
  64559. default: true
  64560. },
  64561. ]
  64562. ))
  64563. characterMakers.push(() => makeCharacter(
  64564. { name: "FrostFire", species: ["dragon"], tags: ["anthro"] },
  64565. {
  64566. front: {
  64567. height: math.unit(15, "feet"),
  64568. weight: math.unit(3000, "kg"),
  64569. preyCapacity: math.unit(5, "people"),
  64570. name: "Front",
  64571. image: {
  64572. source: "./media/characters/frostfire/front.svg",
  64573. extra: 675/558,
  64574. bottom: 73/748
  64575. }
  64576. },
  64577. side: {
  64578. height: math.unit(15, "feet"),
  64579. weight: math.unit(3000, "kg"),
  64580. preyCapacity: math.unit(5, "people"),
  64581. name: "Side",
  64582. image: {
  64583. source: "./media/characters/frostfire/side.svg",
  64584. extra: 687/585,
  64585. bottom: 50/737
  64586. }
  64587. },
  64588. back: {
  64589. height: math.unit(15, "feet"),
  64590. weight: math.unit(3000, "kg"),
  64591. preyCapacity: math.unit(5, "people"),
  64592. name: "Back",
  64593. image: {
  64594. source: "./media/characters/frostfire/back.svg",
  64595. extra: 707/607,
  64596. bottom: 16/723
  64597. }
  64598. },
  64599. head: {
  64600. height: math.unit(9.35, "feet"),
  64601. name: "Head",
  64602. image: {
  64603. source: "./media/characters/frostfire/head.svg"
  64604. }
  64605. },
  64606. maw: {
  64607. height: math.unit(3.32, "feet"),
  64608. name: "Maw",
  64609. image: {
  64610. source: "./media/characters/frostfire/maw.svg"
  64611. }
  64612. },
  64613. hand: {
  64614. height: math.unit(3.7, "feet"),
  64615. name: "Hand",
  64616. image: {
  64617. source: "./media/characters/frostfire/hand.svg"
  64618. }
  64619. },
  64620. paw: {
  64621. height: math.unit(5.8, "feet"),
  64622. name: "Paw",
  64623. image: {
  64624. source: "./media/characters/frostfire/paw.svg"
  64625. }
  64626. },
  64627. },
  64628. [
  64629. {
  64630. name: "Normal",
  64631. height: math.unit(15, "feet"),
  64632. default: true
  64633. },
  64634. ]
  64635. ))
  64636. characterMakers.push(() => makeCharacter(
  64637. { name: "Valeroo", species: ["kangaroo"], tags: ["anthro"] },
  64638. {
  64639. front: {
  64640. height: math.unit(5 + 2/12, "feet"),
  64641. weight: math.unit(122, "lb"),
  64642. name: "Front",
  64643. image: {
  64644. source: "./media/characters/valeroo/front.svg",
  64645. extra: 1789/1534,
  64646. bottom: 66/1855
  64647. }
  64648. },
  64649. back: {
  64650. height: math.unit(5 + 2/12, "feet"),
  64651. weight: math.unit(122, "lb"),
  64652. name: "Back",
  64653. image: {
  64654. source: "./media/characters/valeroo/back.svg",
  64655. extra: 1848/1588,
  64656. bottom: 68/1916
  64657. }
  64658. },
  64659. head: {
  64660. height: math.unit(1.87, "feet"),
  64661. name: "Head",
  64662. image: {
  64663. source: "./media/characters/valeroo/head.svg"
  64664. }
  64665. },
  64666. hand: {
  64667. height: math.unit(0.82, "feet"),
  64668. name: "Hand",
  64669. image: {
  64670. source: "./media/characters/valeroo/hand.svg"
  64671. }
  64672. },
  64673. foot: {
  64674. height: math.unit(2.42, "feet"),
  64675. name: "Foot",
  64676. image: {
  64677. source: "./media/characters/valeroo/foot.svg"
  64678. }
  64679. },
  64680. },
  64681. [
  64682. {
  64683. name: "Normal",
  64684. height: math.unit(5 + 2/12, "feet"),
  64685. default: true
  64686. },
  64687. ]
  64688. ))
  64689. characterMakers.push(() => makeCharacter(
  64690. { name: "Corrin", species: ["secretary-bird"], tags: ["anthro"] },
  64691. {
  64692. front: {
  64693. height: math.unit(11 + 3/12, "feet"),
  64694. name: "Front",
  64695. image: {
  64696. source: "./media/characters/corrin/front.svg",
  64697. extra: 665/597,
  64698. bottom: 74/739
  64699. }
  64700. },
  64701. },
  64702. [
  64703. {
  64704. name: "Standard",
  64705. height: math.unit(11 + 3/12, "feet"),
  64706. default: true
  64707. },
  64708. {
  64709. name: "The Boss",
  64710. height: math.unit(110, "feet")
  64711. },
  64712. {
  64713. name: "Shipbreaker",
  64714. height: math.unit(38, "km")
  64715. },
  64716. ]
  64717. ))
  64718. characterMakers.push(() => makeCharacter(
  64719. { name: "Kiba Ulrich", species: ["dire-wolf"], tags: ["anthro"] },
  64720. {
  64721. front: {
  64722. height: math.unit(10, "feet"),
  64723. weight: math.unit(1750, "lb"),
  64724. name: "Front",
  64725. image: {
  64726. source: "./media/characters/kiba-ulrich/front.svg",
  64727. extra: 1037/973,
  64728. bottom: 36/1073
  64729. }
  64730. },
  64731. },
  64732. [
  64733. {
  64734. name: "Normal",
  64735. height: math.unit(10, "feet"),
  64736. default: true
  64737. },
  64738. {
  64739. name: "Minimacro",
  64740. height: math.unit(20, "feet")
  64741. },
  64742. {
  64743. name: "Macro",
  64744. height: math.unit(200, "feet")
  64745. },
  64746. {
  64747. name: "Megamacro",
  64748. height: math.unit(22500, "feet")
  64749. },
  64750. {
  64751. name: "Gigamacro",
  64752. height: math.unit(2700, "miles")
  64753. },
  64754. {
  64755. name: "Teramacro",
  64756. height: math.unit(10000, "miles")
  64757. },
  64758. ]
  64759. ))
  64760. characterMakers.push(() => makeCharacter(
  64761. { name: "Ceanoth", species: ["gryphon"], tags: ["anthro"] },
  64762. {
  64763. gryphon_front: {
  64764. height: math.unit(220, "cm"),
  64765. weight: math.unit(160, "kg"),
  64766. name: "Front",
  64767. image: {
  64768. source: "./media/characters/ceanoth/gryphon-front.svg",
  64769. extra: 616/552,
  64770. bottom: 33/649
  64771. },
  64772. form: "gryphon",
  64773. default: true
  64774. },
  64775. },
  64776. [
  64777. {
  64778. name: "Normal",
  64779. height: math.unit(220, "cm"),
  64780. form: "gryphon",
  64781. default: true
  64782. },
  64783. ],
  64784. {
  64785. "gryphon": {
  64786. name: "Grpyhon",
  64787. default: true
  64788. },
  64789. }
  64790. ))
  64791. characterMakers.push(() => makeCharacter(
  64792. { name: "Vanadiya Athelya", species: ["dragon"], tags: ["taur"] },
  64793. {
  64794. dressed: {
  64795. height: math.unit(2.2 * 0.79, "meters"),
  64796. weight: math.unit(0.5, "tonnes"),
  64797. name: "Dressed",
  64798. image: {
  64799. source: "./media/characters/vanadiya-athelya/dressed.svg",
  64800. extra: 665/315,
  64801. bottom: 106/771
  64802. },
  64803. extraAttributes: {
  64804. "bodyLength": {
  64805. name: "Body Length",
  64806. power: 1,
  64807. type: "length",
  64808. base: math.unit(2.5, "meters")
  64809. },
  64810. "tailLength": {
  64811. name: "Tail Length",
  64812. power: 1,
  64813. type: "length",
  64814. base: math.unit(4.5, "meters")
  64815. },
  64816. "wingspan": {
  64817. name: "Wingspan",
  64818. power: 1,
  64819. type: "length",
  64820. base: math.unit(6, "meters")
  64821. },
  64822. "taurStomachCapacity": {
  64823. name: "Taur Stomach Capacity",
  64824. power: 3,
  64825. type: "volume",
  64826. base: math.unit(4, "people"),
  64827. defaultUnit: "people"
  64828. },
  64829. "anthroStomachCapacity": {
  64830. name: "Anthro Stomach Capacity",
  64831. power: 3,
  64832. type: "volume",
  64833. base: math.unit(1, "people"),
  64834. defaultUnit: "people"
  64835. },
  64836. }
  64837. },
  64838. nude: {
  64839. height: math.unit(2.2 * 0.79, "meters"),
  64840. weight: math.unit(0.5, "tonnes"),
  64841. name: "Nude",
  64842. image: {
  64843. source: "./media/characters/vanadiya-athelya/nude.svg",
  64844. extra: 665/315,
  64845. bottom: 106/771
  64846. },
  64847. extraAttributes: {
  64848. "bodyLength": {
  64849. name: "Body Length",
  64850. power: 1,
  64851. type: "length",
  64852. base: math.unit(2.5, "meters")
  64853. },
  64854. "tailLength": {
  64855. name: "Tail Length",
  64856. power: 1,
  64857. type: "length",
  64858. base: math.unit(4.5, "meters")
  64859. },
  64860. "wingspan": {
  64861. name: "Wingspan",
  64862. power: 1,
  64863. type: "length",
  64864. base: math.unit(6, "meters")
  64865. },
  64866. "taurStomachCapacity": {
  64867. name: "Taur Stomach Capacity",
  64868. power: 3,
  64869. type: "volume",
  64870. base: math.unit(4, "people"),
  64871. defaultUnit: "people"
  64872. },
  64873. "anthroStomachCapacity": {
  64874. name: "Anthro Stomach Capacity",
  64875. power: 3,
  64876. type: "volume",
  64877. base: math.unit(1, "people"),
  64878. defaultUnit: "people"
  64879. },
  64880. }
  64881. },
  64882. },
  64883. [
  64884. {
  64885. name: "Handheld",
  64886. height: math.unit(0.79 * 0.06, "meters")
  64887. },
  64888. {
  64889. name: "Mini",
  64890. height: math.unit(0.79 * 0.7, "meters")
  64891. },
  64892. {
  64893. name: "Short",
  64894. height: math.unit(0.79 * 1.4, "meters")
  64895. },
  64896. {
  64897. name: "Imposing",
  64898. height: math.unit(0.79 * 2.2, "meters"),
  64899. default: true
  64900. },
  64901. {
  64902. name: "Big",
  64903. height: math.unit(0.79 * 3.8, "meters")
  64904. },
  64905. {
  64906. name: "Giant",
  64907. height: math.unit(0.79 * 6.7, "meters")
  64908. },
  64909. {
  64910. name: "Airliner",
  64911. height: math.unit(0.79 * 64, "meters")
  64912. },
  64913. {
  64914. name: "Skyscraper",
  64915. height: math.unit(0.79 * 220, "meters")
  64916. },
  64917. {
  64918. name: "Mountain",
  64919. height: math.unit(0.79 * 3.6, "km")
  64920. },
  64921. {
  64922. name: "Spacescraper",
  64923. height: math.unit(0.79 * 70, "km")
  64924. },
  64925. {
  64926. name: "Continental",
  64927. height: math.unit(0.79 * 1290, "km")
  64928. },
  64929. {
  64930. name: "Moon",
  64931. height: math.unit(0.79 * 32200, "km")
  64932. },
  64933. {
  64934. name: "Planetary",
  64935. height: math.unit(0.79 * 145000, "km")
  64936. },
  64937. {
  64938. name: "Stellar",
  64939. height: math.unit(0.79 * 19e6, "km")
  64940. },
  64941. {
  64942. name: "Solar",
  64943. height: math.unit(0.79 * 40, "AU")
  64944. },
  64945. {
  64946. name: "Intersteller",
  64947. height: math.unit(0.79 * 3, "lightyears")
  64948. },
  64949. {
  64950. name: "Star Cluster",
  64951. height: math.unit(0.79 * 80, "lightyears")
  64952. },
  64953. {
  64954. name: "Ecumenical",
  64955. height: math.unit(0.79 * 2e3, "lightyears")
  64956. },
  64957. {
  64958. name: "Galactic",
  64959. height: math.unit(0.79 * 175000, "lightyears")
  64960. },
  64961. {
  64962. name: "Galaxy Cluster",
  64963. height: math.unit(0.79 * 25e6, "lightyears")
  64964. },
  64965. ]
  64966. ))
  64967. characterMakers.push(() => makeCharacter(
  64968. { name: "Yana Amelin", species: ["russian-blue"], tags: ["anthro"] },
  64969. {
  64970. front: {
  64971. height: math.unit(6 + 2/12, "feet"),
  64972. weight: math.unit(160, "lb"),
  64973. name: "Front",
  64974. image: {
  64975. source: "./media/characters/yana-amelin/front.svg",
  64976. extra: 1413/1295,
  64977. bottom: 42/1455
  64978. }
  64979. },
  64980. back: {
  64981. height: math.unit(6 + 2/12, "feet"),
  64982. weight: math.unit(160, "lb"),
  64983. name: "Back",
  64984. image: {
  64985. source: "./media/characters/yana-amelin/back.svg",
  64986. extra: 1424/1310,
  64987. bottom: 24/1448
  64988. }
  64989. },
  64990. paws: {
  64991. height: math.unit(1.48, "feet"),
  64992. name: "Paws",
  64993. image: {
  64994. source: "./media/characters/yana-amelin/paws.svg",
  64995. extra: 304/304,
  64996. bottom: 49/353
  64997. }
  64998. },
  64999. },
  65000. [
  65001. {
  65002. name: "Micro",
  65003. height: math.unit(4, "inches")
  65004. },
  65005. {
  65006. name: "Normal",
  65007. height: math.unit(6 + 2/12, "feet"),
  65008. default: true
  65009. },
  65010. {
  65011. name: "Minimacro",
  65012. height: math.unit(20, "feet")
  65013. },
  65014. {
  65015. name: "Macro",
  65016. height: math.unit(70, "feet")
  65017. },
  65018. ]
  65019. ))
  65020. characterMakers.push(() => makeCharacter(
  65021. { name: "Titania", species: ["horse"], tags: ["anthro"] },
  65022. {
  65023. frontNsfw: {
  65024. height: math.unit(2.48, "meters"),
  65025. weight: math.unit(112, "kg"),
  65026. name: "Front (NSFW)",
  65027. image: {
  65028. source: "./media/characters/titania/front-nsfw.svg",
  65029. extra: 1302/1232,
  65030. bottom: 90/1392
  65031. }
  65032. },
  65033. backNsfw: {
  65034. height: math.unit(2.48, "meters"),
  65035. weight: math.unit(112, "kg"),
  65036. name: "Back (NSFW)",
  65037. image: {
  65038. source: "./media/characters/titania/back-nsfw.svg",
  65039. extra: 1355/1288,
  65040. bottom: 18/1373
  65041. }
  65042. },
  65043. frontSfw: {
  65044. height: math.unit(2.48, "meters"),
  65045. weight: math.unit(112, "kg"),
  65046. name: "Front (SFW)",
  65047. image: {
  65048. source: "./media/characters/titania/front-sfw.svg",
  65049. extra: 1302/1232,
  65050. bottom: 90/1392
  65051. }
  65052. },
  65053. backSfw: {
  65054. height: math.unit(2.48, "meters"),
  65055. weight: math.unit(112, "kg"),
  65056. name: "Back (SFW)",
  65057. image: {
  65058. source: "./media/characters/titania/back-sfw.svg",
  65059. extra: 1355/1288,
  65060. bottom: 18/1373
  65061. }
  65062. },
  65063. head: {
  65064. height: math.unit(2.06, "feet"),
  65065. name: "Head",
  65066. image: {
  65067. source: "./media/characters/titania/head.svg"
  65068. }
  65069. },
  65070. maw: {
  65071. height: math.unit(0.8, "feet"),
  65072. name: "Maw",
  65073. image: {
  65074. source: "./media/characters/titania/maw.svg"
  65075. }
  65076. },
  65077. foot: {
  65078. height: math.unit(1.65, "feet"),
  65079. name: "Foot",
  65080. image: {
  65081. source: "./media/characters/titania/foot.svg"
  65082. }
  65083. },
  65084. nethers: {
  65085. height: math.unit(1.7, "feet"),
  65086. name: "Nethers",
  65087. image: {
  65088. source: "./media/characters/titania/nethers.svg"
  65089. }
  65090. },
  65091. },
  65092. [
  65093. {
  65094. name: "Normal",
  65095. height: math.unit(2.48, "meters"),
  65096. default: true
  65097. },
  65098. {
  65099. name: "Mini Macro",
  65100. height: math.unit(248, "meters")
  65101. },
  65102. {
  65103. name: "Macro",
  65104. height: math.unit(620, "meters")
  65105. },
  65106. {
  65107. name: "Mega Macro",
  65108. height: math.unit(1860, "meters")
  65109. },
  65110. ]
  65111. ))
  65112. characterMakers.push(() => makeCharacter(
  65113. { name: "Tony Gray", species: ["wholphin"], tags: ["anthro"] },
  65114. {
  65115. front: {
  65116. height: math.unit(5 + 9/12, "feet"),
  65117. weight: math.unit(1500, "lb"),
  65118. name: "Front",
  65119. image: {
  65120. source: "./media/characters/tony-gray/front.svg",
  65121. extra: 700/575,
  65122. bottom: 71/771
  65123. }
  65124. },
  65125. },
  65126. [
  65127. {
  65128. name: "Normal",
  65129. height: math.unit(5 + 9/12, "feet"),
  65130. default: true
  65131. },
  65132. ]
  65133. ))
  65134. //characters
  65135. function makeCharacters() {
  65136. const results = [];
  65137. characterMakers.forEach(character => {
  65138. results.push(character());
  65139. });
  65140. return results;
  65141. }