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.
 
 
 

64544 lines
1.6 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. }
  2367. //species
  2368. function getSpeciesInfo(speciesList) {
  2369. let result = new Set();
  2370. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2371. result.add(entry)
  2372. });
  2373. return Array.from(result);
  2374. };
  2375. function getSpeciesInfoHelper(species) {
  2376. if (!speciesData[species]) {
  2377. console.warn(species + " doesn't exist");
  2378. return [];
  2379. }
  2380. if (speciesData[species].parents) {
  2381. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2382. } else {
  2383. return [species];
  2384. }
  2385. }
  2386. characterMakers.push(() => makeCharacter(
  2387. {
  2388. name: "Fen",
  2389. species: ["crux"],
  2390. description: {
  2391. title: "Bio",
  2392. text: "Very furry. Sheds on everything."
  2393. },
  2394. tags: [
  2395. "anthro",
  2396. "goo"
  2397. ]
  2398. },
  2399. {
  2400. front: {
  2401. height: math.unit(12, "feet"),
  2402. weight: math.unit(2400, "lb"),
  2403. preyCapacity: math.unit(1, "people"),
  2404. name: "Front",
  2405. image: {
  2406. source: "./media/characters/fen/front.svg",
  2407. extra: 1804/1562,
  2408. bottom: 205/2009
  2409. },
  2410. extraAttributes: {
  2411. pawSize: {
  2412. name: "Paw Size",
  2413. power: 2,
  2414. type: "area",
  2415. base: math.unit(0.35, "m^2")
  2416. }
  2417. }
  2418. },
  2419. diving: {
  2420. height: math.unit(4.9, "meters"),
  2421. weight: math.unit(2400, "lb"),
  2422. name: "Diving",
  2423. image: {
  2424. source: "./media/characters/fen/diving.svg"
  2425. }
  2426. },
  2427. sleeby: {
  2428. height: math.unit(3.45, "meters"),
  2429. weight: math.unit(2400, "lb"),
  2430. name: "Sleeby",
  2431. image: {
  2432. source: "./media/characters/fen/sleeby.svg"
  2433. }
  2434. },
  2435. goo: {
  2436. height: math.unit(12, "feet"),
  2437. weight: math.unit(3600, "lb"),
  2438. volume: math.unit(1000, "liters"),
  2439. preyCapacity: math.unit(6, "people"),
  2440. name: "Goo",
  2441. image: {
  2442. source: "./media/characters/fen/goo.svg",
  2443. extra: 1307/1071,
  2444. bottom: 134/1441
  2445. }
  2446. },
  2447. horror: {
  2448. height: math.unit(13.6, "feet"),
  2449. weight: math.unit(2400, "lb"),
  2450. preyCapacity: math.unit(1, "people"),
  2451. name: "Horror",
  2452. image: {
  2453. source: "./media/characters/fen/horror.svg",
  2454. extra: 893/797,
  2455. bottom: 0/893
  2456. }
  2457. },
  2458. gooNsfw: {
  2459. height: math.unit(12, "feet"),
  2460. weight: math.unit(3750, "lb"),
  2461. volume: math.unit(1000, "liters"),
  2462. preyCapacity: math.unit(6, "people"),
  2463. name: "Goo (NSFW)",
  2464. image: {
  2465. source: "./media/characters/fen/goo-nsfw.svg",
  2466. extra: 1875/1734,
  2467. bottom: 122/1997
  2468. }
  2469. },
  2470. maw: {
  2471. height: math.unit(5.03, "feet"),
  2472. name: "Maw",
  2473. image: {
  2474. source: "./media/characters/fen/maw.svg"
  2475. }
  2476. },
  2477. gooCeiling: {
  2478. height: math.unit(6.6, "feet"),
  2479. weight: math.unit(3000, "lb"),
  2480. volume: math.unit(1000, "liters"),
  2481. preyCapacity: math.unit(6, "people"),
  2482. name: "Maw (Goo)",
  2483. image: {
  2484. source: "./media/characters/fen/goo-maw.svg"
  2485. }
  2486. },
  2487. paw: {
  2488. height: math.unit(3.77, "feet"),
  2489. name: "Paw",
  2490. image: {
  2491. source: "./media/characters/fen/paw.svg"
  2492. },
  2493. extraAttributes: {
  2494. "toeSize": {
  2495. name: "Toe Size",
  2496. power: 2,
  2497. type: "area",
  2498. base: math.unit(0.02875, "m^2")
  2499. },
  2500. "pawSize": {
  2501. name: "Paw Size",
  2502. power: 2,
  2503. type: "area",
  2504. base: math.unit(0.378, "m^2")
  2505. },
  2506. }
  2507. },
  2508. tail: {
  2509. height: math.unit(12.1, "feet"),
  2510. name: "Tail",
  2511. image: {
  2512. source: "./media/characters/fen/tail.svg"
  2513. }
  2514. },
  2515. tailFull: {
  2516. height: math.unit(12.1, "feet"),
  2517. name: "Full Tail",
  2518. image: {
  2519. source: "./media/characters/fen/tail-full.svg"
  2520. }
  2521. },
  2522. back: {
  2523. height: math.unit(12, "feet"),
  2524. weight: math.unit(2400, "lb"),
  2525. name: "Back",
  2526. image: {
  2527. source: "./media/characters/fen/back.svg",
  2528. },
  2529. info: {
  2530. description: {
  2531. mode: "append",
  2532. text: "\n\nHe is not currently looking at you."
  2533. }
  2534. }
  2535. },
  2536. full: {
  2537. height: math.unit(1.85, "meter"),
  2538. weight: math.unit(3200, "lb"),
  2539. preyCapacity: math.unit(3, "people"),
  2540. name: "Full",
  2541. image: {
  2542. source: "./media/characters/fen/full.svg",
  2543. extra: 1133/859,
  2544. bottom: 145/1278
  2545. },
  2546. info: {
  2547. description: {
  2548. mode: "append",
  2549. text: "\n\nMunch."
  2550. }
  2551. }
  2552. },
  2553. gooLounging: {
  2554. height: math.unit(4.53, "feet"),
  2555. weight: math.unit(3000, "lb"),
  2556. preyCapacity: math.unit(6, "people"),
  2557. name: "Goo (Lounging)",
  2558. image: {
  2559. source: "./media/characters/fen/goo-lounging.svg",
  2560. bottom: 116 / 613
  2561. }
  2562. },
  2563. lounging: {
  2564. height: math.unit(10.52, "feet"),
  2565. weight: math.unit(2400, "lb"),
  2566. name: "Lounging",
  2567. image: {
  2568. source: "./media/characters/fen/lounging.svg"
  2569. }
  2570. },
  2571. },
  2572. [
  2573. {
  2574. name: "Small",
  2575. height: math.unit(2.2428, "meter")
  2576. },
  2577. {
  2578. name: "Normal",
  2579. height: math.unit(12, "feet"),
  2580. default: true,
  2581. },
  2582. {
  2583. name: "Big",
  2584. height: math.unit(20, "feet")
  2585. },
  2586. {
  2587. name: "Minimacro",
  2588. height: math.unit(40, "feet"),
  2589. info: {
  2590. description: {
  2591. mode: "append",
  2592. text: "\n\nTOO DAMN BIG"
  2593. }
  2594. }
  2595. },
  2596. {
  2597. name: "Macro",
  2598. height: math.unit(100, "feet"),
  2599. info: {
  2600. description: {
  2601. mode: "append",
  2602. text: "\n\nTOO DAMN BIG"
  2603. }
  2604. }
  2605. },
  2606. {
  2607. name: "Megamacro",
  2608. height: math.unit(2, "miles")
  2609. },
  2610. {
  2611. name: "Gigamacro",
  2612. height: math.unit(10, "earths")
  2613. },
  2614. ]
  2615. ))
  2616. characterMakers.push(() => makeCharacter(
  2617. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2618. {
  2619. front: {
  2620. height: math.unit(183, "cm"),
  2621. weight: math.unit(80, "kg"),
  2622. name: "Front",
  2623. image: {
  2624. source: "./media/characters/sofia-fluttertail/front.svg",
  2625. bottom: 0.01,
  2626. extra: 2154 / 2081
  2627. }
  2628. },
  2629. frontAlt: {
  2630. height: math.unit(183, "cm"),
  2631. weight: math.unit(80, "kg"),
  2632. name: "Front (alt)",
  2633. image: {
  2634. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2635. }
  2636. },
  2637. back: {
  2638. height: math.unit(183, "cm"),
  2639. weight: math.unit(80, "kg"),
  2640. name: "Back",
  2641. image: {
  2642. source: "./media/characters/sofia-fluttertail/back.svg"
  2643. }
  2644. },
  2645. kneeling: {
  2646. height: math.unit(125, "cm"),
  2647. weight: math.unit(80, "kg"),
  2648. name: "Kneeling",
  2649. image: {
  2650. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2651. extra: 1033 / 977,
  2652. bottom: 23.7 / 1057
  2653. }
  2654. },
  2655. maw: {
  2656. height: math.unit(183 / 5, "cm"),
  2657. name: "Maw",
  2658. image: {
  2659. source: "./media/characters/sofia-fluttertail/maw.svg"
  2660. }
  2661. },
  2662. mawcloseup: {
  2663. height: math.unit(183 / 5 * 0.41, "cm"),
  2664. name: "Maw (Closeup)",
  2665. image: {
  2666. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2667. }
  2668. },
  2669. paws: {
  2670. height: math.unit(1.17, "feet"),
  2671. name: "Paws",
  2672. image: {
  2673. source: "./media/characters/sofia-fluttertail/paws.svg",
  2674. extra: 851 / 851,
  2675. bottom: 17 / 868
  2676. }
  2677. },
  2678. },
  2679. [
  2680. {
  2681. name: "Normal",
  2682. height: math.unit(1.83, "meter")
  2683. },
  2684. {
  2685. name: "Size Thief",
  2686. height: math.unit(18, "feet")
  2687. },
  2688. {
  2689. name: "50 Foot Collie",
  2690. height: math.unit(50, "feet")
  2691. },
  2692. {
  2693. name: "Macro",
  2694. height: math.unit(96, "feet"),
  2695. default: true
  2696. },
  2697. {
  2698. name: "Megamerger",
  2699. height: math.unit(650, "feet")
  2700. },
  2701. ]
  2702. ))
  2703. characterMakers.push(() => makeCharacter(
  2704. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2705. {
  2706. front: {
  2707. height: math.unit(7, "feet"),
  2708. weight: math.unit(100, "kg"),
  2709. name: "Front",
  2710. image: {
  2711. source: "./media/characters/march/front.svg",
  2712. extra: 1992/1851,
  2713. bottom: 39/2031
  2714. }
  2715. },
  2716. foot: {
  2717. height: math.unit(0.9, "feet"),
  2718. name: "Foot",
  2719. image: {
  2720. source: "./media/characters/march/foot.svg"
  2721. }
  2722. },
  2723. },
  2724. [
  2725. {
  2726. name: "Normal",
  2727. height: math.unit(7.9, "feet")
  2728. },
  2729. {
  2730. name: "Macro",
  2731. height: math.unit(220, "meters")
  2732. },
  2733. {
  2734. name: "Megamacro",
  2735. height: math.unit(2.98, "km"),
  2736. default: true
  2737. },
  2738. {
  2739. name: "Gigamacro",
  2740. height: math.unit(15963, "km")
  2741. },
  2742. {
  2743. name: "Teramacro",
  2744. height: math.unit(2980000000, "km")
  2745. },
  2746. {
  2747. name: "Examacro",
  2748. height: math.unit(250, "parsecs")
  2749. },
  2750. ]
  2751. ))
  2752. characterMakers.push(() => makeCharacter(
  2753. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2754. {
  2755. front: {
  2756. height: math.unit(6, "feet"),
  2757. weight: math.unit(60, "kg"),
  2758. name: "Front",
  2759. image: {
  2760. source: "./media/characters/noir/front.svg",
  2761. extra: 1,
  2762. bottom: 0.032
  2763. }
  2764. },
  2765. },
  2766. [
  2767. {
  2768. name: "Normal",
  2769. height: math.unit(6.6, "feet")
  2770. },
  2771. {
  2772. name: "Macro",
  2773. height: math.unit(500, "feet")
  2774. },
  2775. {
  2776. name: "Megamacro",
  2777. height: math.unit(2.5, "km"),
  2778. default: true
  2779. },
  2780. {
  2781. name: "Gigamacro",
  2782. height: math.unit(22500, "km")
  2783. },
  2784. {
  2785. name: "Teramacro",
  2786. height: math.unit(2500000000, "km")
  2787. },
  2788. {
  2789. name: "Examacro",
  2790. height: math.unit(200, "parsecs")
  2791. },
  2792. ]
  2793. ))
  2794. characterMakers.push(() => makeCharacter(
  2795. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2796. {
  2797. front: {
  2798. height: math.unit(7, "feet"),
  2799. weight: math.unit(100, "kg"),
  2800. name: "Front",
  2801. image: {
  2802. source: "./media/characters/okuri/front.svg",
  2803. extra: 739/665,
  2804. bottom: 39/778
  2805. }
  2806. },
  2807. back: {
  2808. height: math.unit(7, "feet"),
  2809. weight: math.unit(100, "kg"),
  2810. name: "Back",
  2811. image: {
  2812. source: "./media/characters/okuri/back.svg",
  2813. extra: 734/653,
  2814. bottom: 13/747
  2815. }
  2816. },
  2817. sitting: {
  2818. height: math.unit(2.95, "feet"),
  2819. weight: math.unit(100, "kg"),
  2820. name: "Sitting",
  2821. image: {
  2822. source: "./media/characters/okuri/sitting.svg",
  2823. extra: 370/318,
  2824. bottom: 99/469
  2825. }
  2826. },
  2827. },
  2828. [
  2829. {
  2830. name: "Smallest",
  2831. height: math.unit(5 + 2/12, "feet")
  2832. },
  2833. {
  2834. name: "Smaller",
  2835. height: math.unit(300, "feet")
  2836. },
  2837. {
  2838. name: "Small",
  2839. height: math.unit(1000, "feet")
  2840. },
  2841. {
  2842. name: "Macro",
  2843. height: math.unit(1, "mile")
  2844. },
  2845. {
  2846. name: "Mega Macro (Small)",
  2847. height: math.unit(20, "km")
  2848. },
  2849. {
  2850. name: "Mega Macro (Large)",
  2851. height: math.unit(600, "km")
  2852. },
  2853. {
  2854. name: "Giga Macro",
  2855. height: math.unit(10000, "km")
  2856. },
  2857. {
  2858. name: "Normal",
  2859. height: math.unit(577560, "km"),
  2860. default: true
  2861. },
  2862. {
  2863. name: "Large",
  2864. height: math.unit(4, "galaxies")
  2865. },
  2866. {
  2867. name: "Largest",
  2868. height: math.unit(15, "multiverses")
  2869. },
  2870. ]
  2871. ))
  2872. characterMakers.push(() => makeCharacter(
  2873. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2874. {
  2875. front: {
  2876. height: math.unit(7, "feet"),
  2877. weight: math.unit(100, "kg"),
  2878. name: "Front",
  2879. image: {
  2880. source: "./media/characters/manny/front.svg",
  2881. extra: 1,
  2882. bottom: 0.06
  2883. }
  2884. },
  2885. back: {
  2886. height: math.unit(7, "feet"),
  2887. weight: math.unit(100, "kg"),
  2888. name: "Back",
  2889. image: {
  2890. source: "./media/characters/manny/back.svg",
  2891. extra: 1,
  2892. bottom: 0.014
  2893. }
  2894. },
  2895. },
  2896. [
  2897. {
  2898. name: "Normal",
  2899. height: math.unit(7, "feet"),
  2900. },
  2901. {
  2902. name: "Macro",
  2903. height: math.unit(78, "feet"),
  2904. default: true
  2905. },
  2906. {
  2907. name: "Macro+",
  2908. height: math.unit(300, "meters")
  2909. },
  2910. {
  2911. name: "Macro++",
  2912. height: math.unit(2400, "meters")
  2913. },
  2914. {
  2915. name: "Megamacro",
  2916. height: math.unit(5167, "meters")
  2917. },
  2918. {
  2919. name: "Gigamacro",
  2920. height: math.unit(41769, "miles")
  2921. },
  2922. ]
  2923. ))
  2924. characterMakers.push(() => makeCharacter(
  2925. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2926. {
  2927. front: {
  2928. height: math.unit(7, "feet"),
  2929. weight: math.unit(100, "kg"),
  2930. name: "Front",
  2931. image: {
  2932. source: "./media/characters/adake/front-1.svg"
  2933. }
  2934. },
  2935. frontAlt: {
  2936. height: math.unit(7, "feet"),
  2937. weight: math.unit(100, "kg"),
  2938. name: "Front (Alt)",
  2939. image: {
  2940. source: "./media/characters/adake/front-2.svg",
  2941. extra: 1,
  2942. bottom: 0.01
  2943. }
  2944. },
  2945. back: {
  2946. height: math.unit(7, "feet"),
  2947. weight: math.unit(100, "kg"),
  2948. name: "Back",
  2949. image: {
  2950. source: "./media/characters/adake/back.svg",
  2951. }
  2952. },
  2953. kneel: {
  2954. height: math.unit(5.385, "feet"),
  2955. weight: math.unit(100, "kg"),
  2956. name: "Kneeling",
  2957. image: {
  2958. source: "./media/characters/adake/kneel.svg",
  2959. bottom: 0.052
  2960. }
  2961. },
  2962. },
  2963. [
  2964. {
  2965. name: "Normal",
  2966. height: math.unit(7, "feet"),
  2967. },
  2968. {
  2969. name: "Macro",
  2970. height: math.unit(78, "feet"),
  2971. default: true
  2972. },
  2973. {
  2974. name: "Macro+",
  2975. height: math.unit(300, "meters")
  2976. },
  2977. {
  2978. name: "Macro++",
  2979. height: math.unit(2400, "meters")
  2980. },
  2981. {
  2982. name: "Megamacro",
  2983. height: math.unit(5167, "meters")
  2984. },
  2985. {
  2986. name: "Gigamacro",
  2987. height: math.unit(41769, "miles")
  2988. },
  2989. ]
  2990. ))
  2991. characterMakers.push(() => makeCharacter(
  2992. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2993. {
  2994. front: {
  2995. height: math.unit(1.65, "meters"),
  2996. weight: math.unit(50, "kg"),
  2997. name: "Front",
  2998. image: {
  2999. source: "./media/characters/elijah/front.svg",
  3000. extra: 858 / 830,
  3001. bottom: 95.5 / 953.8559
  3002. }
  3003. },
  3004. back: {
  3005. height: math.unit(1.65, "meters"),
  3006. weight: math.unit(50, "kg"),
  3007. name: "Back",
  3008. image: {
  3009. source: "./media/characters/elijah/back.svg",
  3010. extra: 895 / 850,
  3011. bottom: 5.3 / 897.956
  3012. }
  3013. },
  3014. frontNsfw: {
  3015. height: math.unit(1.65, "meters"),
  3016. weight: math.unit(50, "kg"),
  3017. name: "Front (NSFW)",
  3018. image: {
  3019. source: "./media/characters/elijah/front-nsfw.svg",
  3020. extra: 858 / 830,
  3021. bottom: 95.5 / 953.8559
  3022. }
  3023. },
  3024. backNsfw: {
  3025. height: math.unit(1.65, "meters"),
  3026. weight: math.unit(50, "kg"),
  3027. name: "Back (NSFW)",
  3028. image: {
  3029. source: "./media/characters/elijah/back-nsfw.svg",
  3030. extra: 895 / 850,
  3031. bottom: 5.3 / 897.956
  3032. }
  3033. },
  3034. dick: {
  3035. height: math.unit(1, "feet"),
  3036. name: "Dick",
  3037. image: {
  3038. source: "./media/characters/elijah/dick.svg"
  3039. }
  3040. },
  3041. beakOpen: {
  3042. height: math.unit(1.25, "feet"),
  3043. name: "Beak (Open)",
  3044. image: {
  3045. source: "./media/characters/elijah/beak-open.svg"
  3046. }
  3047. },
  3048. beakShut: {
  3049. height: math.unit(1.25, "feet"),
  3050. name: "Beak (Shut)",
  3051. image: {
  3052. source: "./media/characters/elijah/beak-shut.svg"
  3053. }
  3054. },
  3055. footFlexing: {
  3056. height: math.unit(1.61, "feet"),
  3057. name: "Foot (Flexing)",
  3058. image: {
  3059. source: "./media/characters/elijah/foot-flexing.svg"
  3060. }
  3061. },
  3062. footStepping: {
  3063. height: math.unit(1.44, "feet"),
  3064. name: "Foot (Stepping)",
  3065. image: {
  3066. source: "./media/characters/elijah/foot-stepping.svg"
  3067. }
  3068. },
  3069. plantigradeLeg: {
  3070. height: math.unit(2.34, "feet"),
  3071. name: "Plantigrade Leg",
  3072. image: {
  3073. source: "./media/characters/elijah/plantigrade-leg.svg"
  3074. }
  3075. },
  3076. plantigradeFootLeft: {
  3077. height: math.unit(0.9, "feet"),
  3078. name: "Plantigrade Foot (Left)",
  3079. image: {
  3080. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3081. }
  3082. },
  3083. plantigradeFootRight: {
  3084. height: math.unit(0.9, "feet"),
  3085. name: "Plantigrade Foot (Right)",
  3086. image: {
  3087. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3088. }
  3089. },
  3090. },
  3091. [
  3092. {
  3093. name: "Normal",
  3094. height: math.unit(1.65, "meters")
  3095. },
  3096. {
  3097. name: "Macro",
  3098. height: math.unit(55, "meters"),
  3099. default: true
  3100. },
  3101. {
  3102. name: "Macro+",
  3103. height: math.unit(105, "meters")
  3104. },
  3105. ]
  3106. ))
  3107. characterMakers.push(() => makeCharacter(
  3108. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3109. {
  3110. front: {
  3111. height: math.unit(7 + 2/12, "feet"),
  3112. weight: math.unit(320, "kg"),
  3113. preyCapacity: math.unit(0.276549935, "people"),
  3114. name: "Front",
  3115. image: {
  3116. source: "./media/characters/rai/front.svg",
  3117. extra: 1802/1696,
  3118. bottom: 68/1870
  3119. },
  3120. form: "anthro",
  3121. default: true
  3122. },
  3123. frontDressed: {
  3124. height: math.unit(7 + 2/12, "feet"),
  3125. weight: math.unit(320, "kg"),
  3126. preyCapacity: math.unit(0.276549935, "people"),
  3127. name: "Front (Dressed)",
  3128. image: {
  3129. source: "./media/characters/rai/front-dressed.svg",
  3130. extra: 1802/1696,
  3131. bottom: 68/1870
  3132. },
  3133. form: "anthro"
  3134. },
  3135. side: {
  3136. height: math.unit(7 + 2/12, "feet"),
  3137. weight: math.unit(320, "kg"),
  3138. preyCapacity: math.unit(0.276549935, "people"),
  3139. name: "Side",
  3140. image: {
  3141. source: "./media/characters/rai/side.svg",
  3142. extra: 1789/1710,
  3143. bottom: 115/1904
  3144. },
  3145. form: "anthro"
  3146. },
  3147. back: {
  3148. height: math.unit(7 + 2/12, "feet"),
  3149. weight: math.unit(320, "kg"),
  3150. preyCapacity: math.unit(0.276549935, "people"),
  3151. name: "Back",
  3152. image: {
  3153. source: "./media/characters/rai/back.svg",
  3154. extra: 1770/1707,
  3155. bottom: 28/1798
  3156. },
  3157. form: "anthro"
  3158. },
  3159. feral: {
  3160. height: math.unit(9.5, "feet"),
  3161. weight: math.unit(640, "kg"),
  3162. preyCapacity: math.unit(4, "people"),
  3163. name: "Feral",
  3164. image: {
  3165. source: "./media/characters/rai/feral.svg",
  3166. extra: 945/553,
  3167. bottom: 176/1121
  3168. },
  3169. form: "feral",
  3170. default: true
  3171. },
  3172. dragon: {
  3173. height: math.unit(23, "feet"),
  3174. weight: math.unit(50000, "lb"),
  3175. name: "Dragon",
  3176. image: {
  3177. source: "./media/characters/rai/dragon.svg",
  3178. extra: 2498 / 2030,
  3179. bottom: 85.2 / 2584
  3180. },
  3181. form: "dragon",
  3182. default: true
  3183. },
  3184. maw: {
  3185. height: math.unit(1.69, "feet"),
  3186. name: "Maw",
  3187. image: {
  3188. source: "./media/characters/rai/maw.svg"
  3189. },
  3190. form: "anthro"
  3191. },
  3192. },
  3193. [
  3194. {
  3195. name: "Normal",
  3196. height: math.unit(7 + 2/12, "feet"),
  3197. form: "anthro"
  3198. },
  3199. {
  3200. name: "Big",
  3201. height: math.unit(11, "feet"),
  3202. form: "anthro"
  3203. },
  3204. {
  3205. name: "Minimacro",
  3206. height: math.unit(77, "feet"),
  3207. form: "anthro"
  3208. },
  3209. {
  3210. name: "Macro",
  3211. height: math.unit(302, "feet"),
  3212. default: true,
  3213. form: "anthro"
  3214. },
  3215. {
  3216. name: "Normal",
  3217. height: math.unit(9.5, "feet"),
  3218. form: "feral",
  3219. default: true
  3220. },
  3221. {
  3222. name: "Normal",
  3223. height: math.unit(23, "feet"),
  3224. form: "dragon",
  3225. default: true
  3226. }
  3227. ],
  3228. {
  3229. "anthro": {
  3230. name: "Anthro",
  3231. default: true
  3232. },
  3233. "feral": {
  3234. name: "Feral",
  3235. },
  3236. "dragon": {
  3237. name: "Dragon",
  3238. },
  3239. }
  3240. ))
  3241. characterMakers.push(() => makeCharacter(
  3242. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3243. {
  3244. frontDressed: {
  3245. height: math.unit(216, "feet"),
  3246. weight: math.unit(7000000, "lb"),
  3247. preyCapacity: math.unit(1321, "people"),
  3248. name: "Front (Dressed)",
  3249. image: {
  3250. source: "./media/characters/jazzy/front-dressed.svg",
  3251. extra: 2738 / 2651,
  3252. bottom: 41.8 / 2786
  3253. }
  3254. },
  3255. backDressed: {
  3256. height: math.unit(216, "feet"),
  3257. weight: math.unit(7000000, "lb"),
  3258. preyCapacity: math.unit(1321, "people"),
  3259. name: "Back (Dressed)",
  3260. image: {
  3261. source: "./media/characters/jazzy/back-dressed.svg",
  3262. extra: 2775 / 2673,
  3263. bottom: 36.8 / 2817
  3264. }
  3265. },
  3266. front: {
  3267. height: math.unit(216, "feet"),
  3268. weight: math.unit(7000000, "lb"),
  3269. preyCapacity: math.unit(1321, "people"),
  3270. name: "Front",
  3271. image: {
  3272. source: "./media/characters/jazzy/front.svg",
  3273. extra: 2738 / 2651,
  3274. bottom: 41.8 / 2786
  3275. }
  3276. },
  3277. back: {
  3278. height: math.unit(216, "feet"),
  3279. weight: math.unit(7000000, "lb"),
  3280. preyCapacity: math.unit(1321, "people"),
  3281. name: "Back",
  3282. image: {
  3283. source: "./media/characters/jazzy/back.svg",
  3284. extra: 2775 / 2673,
  3285. bottom: 36.8 / 2817
  3286. }
  3287. },
  3288. maw: {
  3289. height: math.unit(20, "feet"),
  3290. name: "Maw",
  3291. image: {
  3292. source: "./media/characters/jazzy/maw.svg"
  3293. }
  3294. },
  3295. paws: {
  3296. height: math.unit(27.5, "feet"),
  3297. name: "Paws",
  3298. image: {
  3299. source: "./media/characters/jazzy/paws.svg"
  3300. }
  3301. },
  3302. eye: {
  3303. height: math.unit(4.4, "feet"),
  3304. name: "Eye",
  3305. image: {
  3306. source: "./media/characters/jazzy/eye.svg"
  3307. }
  3308. },
  3309. droneOffense: {
  3310. height: math.unit(9.5, "inches"),
  3311. name: "Drone (Offense)",
  3312. image: {
  3313. source: "./media/characters/jazzy/drone-offense.svg"
  3314. }
  3315. },
  3316. droneRecon: {
  3317. height: math.unit(9.5, "inches"),
  3318. name: "Drone (Recon)",
  3319. image: {
  3320. source: "./media/characters/jazzy/drone-recon.svg"
  3321. }
  3322. },
  3323. droneDefense: {
  3324. height: math.unit(9.5, "inches"),
  3325. name: "Drone (Defense)",
  3326. image: {
  3327. source: "./media/characters/jazzy/drone-defense.svg"
  3328. }
  3329. },
  3330. },
  3331. [
  3332. {
  3333. name: "Macro",
  3334. height: math.unit(216, "feet"),
  3335. default: true
  3336. },
  3337. ]
  3338. ))
  3339. characterMakers.push(() => makeCharacter(
  3340. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3341. {
  3342. front: {
  3343. height: math.unit(9 + 6/12, "feet"),
  3344. weight: math.unit(700, "lb"),
  3345. name: "Front",
  3346. image: {
  3347. source: "./media/characters/flamm/front.svg",
  3348. extra: 1736/1596,
  3349. bottom: 93/1829
  3350. }
  3351. },
  3352. buff: {
  3353. height: math.unit(9 + 6/12, "feet"),
  3354. weight: math.unit(950, "lb"),
  3355. name: "Buff",
  3356. image: {
  3357. source: "./media/characters/flamm/buff.svg",
  3358. extra: 3018/2874,
  3359. bottom: 221/3239
  3360. }
  3361. },
  3362. },
  3363. [
  3364. {
  3365. name: "Normal",
  3366. height: math.unit(9.5, "feet")
  3367. },
  3368. {
  3369. name: "Macro",
  3370. height: math.unit(200, "feet"),
  3371. default: true
  3372. },
  3373. ]
  3374. ))
  3375. characterMakers.push(() => makeCharacter(
  3376. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3377. {
  3378. front: {
  3379. height: math.unit(5 + 3/12, "feet"),
  3380. weight: math.unit(60, "kg"),
  3381. name: "Front",
  3382. image: {
  3383. source: "./media/characters/zephiro/front.svg",
  3384. extra: 1873/1761,
  3385. bottom: 147/2020
  3386. }
  3387. },
  3388. side: {
  3389. height: math.unit(5 + 3/12, "feet"),
  3390. weight: math.unit(60, "kg"),
  3391. name: "Side",
  3392. image: {
  3393. source: "./media/characters/zephiro/side.svg",
  3394. extra: 1929/1827,
  3395. bottom: 65/1994
  3396. }
  3397. },
  3398. back: {
  3399. height: math.unit(5 + 3/12, "feet"),
  3400. weight: math.unit(60, "kg"),
  3401. name: "Back",
  3402. image: {
  3403. source: "./media/characters/zephiro/back.svg",
  3404. extra: 1926/1816,
  3405. bottom: 41/1967
  3406. }
  3407. },
  3408. hand: {
  3409. height: math.unit(0.68, "feet"),
  3410. name: "Hand",
  3411. image: {
  3412. source: "./media/characters/zephiro/hand.svg"
  3413. }
  3414. },
  3415. paw: {
  3416. height: math.unit(1, "feet"),
  3417. name: "Paw",
  3418. image: {
  3419. source: "./media/characters/zephiro/paw.svg"
  3420. }
  3421. },
  3422. beans: {
  3423. height: math.unit(0.93, "feet"),
  3424. name: "Beans",
  3425. image: {
  3426. source: "./media/characters/zephiro/beans.svg"
  3427. }
  3428. },
  3429. },
  3430. [
  3431. {
  3432. name: "Micro",
  3433. height: math.unit(3, "inches")
  3434. },
  3435. {
  3436. name: "Normal",
  3437. height: math.unit(5 + 3 / 12, "feet"),
  3438. default: true
  3439. },
  3440. {
  3441. name: "Macro",
  3442. height: math.unit(118, "feet")
  3443. },
  3444. ]
  3445. ))
  3446. characterMakers.push(() => makeCharacter(
  3447. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3448. {
  3449. front: {
  3450. height: math.unit(5, "feet"),
  3451. weight: math.unit(90, "kg"),
  3452. preyCapacity: math.unit(14, "people"),
  3453. name: "Front",
  3454. image: {
  3455. source: "./media/characters/fory/front.svg",
  3456. extra: 2862 / 2674,
  3457. bottom: 180 / 3043.8
  3458. },
  3459. form: "weaselbun",
  3460. default: true,
  3461. extraAttributes: {
  3462. "pawSize": {
  3463. name: "Paw Size",
  3464. power: 2,
  3465. type: "area",
  3466. base: math.unit(0.1596, "m^2")
  3467. },
  3468. "pawLength": {
  3469. name: "Paw Length",
  3470. power: 1,
  3471. type: "length",
  3472. base: math.unit(0.7, "m")
  3473. }
  3474. }
  3475. },
  3476. back: {
  3477. height: math.unit(5, "feet"),
  3478. weight: math.unit(90, "kg"),
  3479. preyCapacity: math.unit(14, "people"),
  3480. name: "Back",
  3481. image: {
  3482. source: "./media/characters/fory/back.svg",
  3483. extra: 1790/1672,
  3484. bottom: 84/1874
  3485. },
  3486. form: "weaselbun",
  3487. extraAttributes: {
  3488. "pawSize": {
  3489. name: "Paw Size",
  3490. power: 2,
  3491. type: "area",
  3492. base: math.unit(0.1596, "m^2")
  3493. },
  3494. "pawLength": {
  3495. name: "Paw Length",
  3496. power: 1,
  3497. type: "length",
  3498. base: math.unit(0.7, "m")
  3499. }
  3500. }
  3501. },
  3502. paw: {
  3503. height: math.unit(2.14, "feet"),
  3504. name: "Paw",
  3505. image: {
  3506. source: "./media/characters/fory/paw.svg"
  3507. },
  3508. form: "weaselbun",
  3509. extraAttributes: {
  3510. "pawSize": {
  3511. name: "Paw Size",
  3512. power: 2,
  3513. type: "area",
  3514. base: math.unit(0.1596, "m^2")
  3515. },
  3516. "pawLength": {
  3517. name: "Paw Length",
  3518. power: 1,
  3519. type: "length",
  3520. base: math.unit(0.48, "m")
  3521. }
  3522. }
  3523. },
  3524. bunBack: {
  3525. height: math.unit(3, "feet"),
  3526. weight: math.unit(20, "kg"),
  3527. preyCapacity: math.unit(3, "people"),
  3528. name: "Back",
  3529. image: {
  3530. source: "./media/characters/fory/bun-back.svg",
  3531. extra: 1749/1564,
  3532. bottom: 246/1995
  3533. },
  3534. form: "bun",
  3535. default: true,
  3536. extraAttributes: {
  3537. "pawSize": {
  3538. name: "Paw Size",
  3539. power: 2,
  3540. type: "area",
  3541. base: math.unit(0.072, "m^2")
  3542. },
  3543. "pawLength": {
  3544. name: "Paw Length",
  3545. power: 1,
  3546. type: "length",
  3547. base: math.unit(0.45, "m")
  3548. }
  3549. }
  3550. },
  3551. },
  3552. [
  3553. {
  3554. name: "Normal",
  3555. height: math.unit(5, "feet"),
  3556. form: "weaselbun"
  3557. },
  3558. {
  3559. name: "Macro",
  3560. height: math.unit(50, "feet"),
  3561. default: true,
  3562. form: "weaselbun"
  3563. },
  3564. {
  3565. name: "Megamacro",
  3566. height: math.unit(10, "miles"),
  3567. form: "weaselbun"
  3568. },
  3569. {
  3570. name: "Gigamacro",
  3571. height: math.unit(5, "earths"),
  3572. form: "weaselbun"
  3573. },
  3574. {
  3575. name: "Normal",
  3576. height: math.unit(3, "feet"),
  3577. default: true,
  3578. form: "bun"
  3579. },
  3580. {
  3581. name: "Fun-Size",
  3582. height: math.unit(12, "feet"),
  3583. form: "bun"
  3584. },
  3585. {
  3586. name: "Macro",
  3587. height: math.unit(100, "feet"),
  3588. form: "bun"
  3589. },
  3590. {
  3591. name: "Planetary",
  3592. height: math.unit(3, "earths"),
  3593. form: "bun"
  3594. },
  3595. ],
  3596. {
  3597. "weaselbun": {
  3598. name: "Weaselbun",
  3599. default: true
  3600. },
  3601. "bun": {
  3602. name: "Bun",
  3603. },
  3604. }
  3605. ))
  3606. characterMakers.push(() => makeCharacter(
  3607. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3608. {
  3609. front: {
  3610. height: math.unit(7, "feet"),
  3611. weight: math.unit(90, "kg"),
  3612. name: "Front",
  3613. image: {
  3614. source: "./media/characters/kurrikage/front.svg",
  3615. extra: 1845/1733,
  3616. bottom: 119/1964
  3617. }
  3618. },
  3619. back: {
  3620. height: math.unit(7, "feet"),
  3621. weight: math.unit(90, "kg"),
  3622. name: "Back",
  3623. image: {
  3624. source: "./media/characters/kurrikage/back.svg",
  3625. extra: 1790/1677,
  3626. bottom: 61/1851
  3627. }
  3628. },
  3629. dressed: {
  3630. height: math.unit(7, "feet"),
  3631. weight: math.unit(90, "kg"),
  3632. name: "Dressed",
  3633. image: {
  3634. source: "./media/characters/kurrikage/dressed.svg",
  3635. extra: 1845/1733,
  3636. bottom: 119/1964
  3637. }
  3638. },
  3639. foot: {
  3640. height: math.unit(1.5, "feet"),
  3641. name: "Foot",
  3642. image: {
  3643. source: "./media/characters/kurrikage/foot.svg"
  3644. }
  3645. },
  3646. staff: {
  3647. height: math.unit(6.7, "feet"),
  3648. name: "Staff",
  3649. image: {
  3650. source: "./media/characters/kurrikage/staff.svg"
  3651. }
  3652. },
  3653. peek: {
  3654. height: math.unit(1.05, "feet"),
  3655. name: "Peeking",
  3656. image: {
  3657. source: "./media/characters/kurrikage/peek.svg",
  3658. bottom: 0.08
  3659. }
  3660. },
  3661. },
  3662. [
  3663. {
  3664. name: "Normal",
  3665. height: math.unit(12, "feet"),
  3666. default: true
  3667. },
  3668. {
  3669. name: "Big",
  3670. height: math.unit(20, "feet")
  3671. },
  3672. {
  3673. name: "Macro",
  3674. height: math.unit(500, "feet")
  3675. },
  3676. {
  3677. name: "Megamacro",
  3678. height: math.unit(20, "miles")
  3679. },
  3680. ]
  3681. ))
  3682. characterMakers.push(() => makeCharacter(
  3683. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3684. {
  3685. front: {
  3686. height: math.unit(6, "feet"),
  3687. weight: math.unit(75, "kg"),
  3688. name: "Front",
  3689. image: {
  3690. source: "./media/characters/shingo/front.svg",
  3691. extra: 1900/1825,
  3692. bottom: 82/1982
  3693. }
  3694. },
  3695. side: {
  3696. height: math.unit(6, "feet"),
  3697. weight: math.unit(75, "kg"),
  3698. name: "Side",
  3699. image: {
  3700. source: "./media/characters/shingo/side.svg",
  3701. extra: 1930/1865,
  3702. bottom: 16/1946
  3703. }
  3704. },
  3705. back: {
  3706. height: math.unit(6, "feet"),
  3707. weight: math.unit(75, "kg"),
  3708. name: "Back",
  3709. image: {
  3710. source: "./media/characters/shingo/back.svg",
  3711. extra: 1922/1852,
  3712. bottom: 16/1938
  3713. }
  3714. },
  3715. frontDressed: {
  3716. height: math.unit(6, "feet"),
  3717. weight: math.unit(150, "lb"),
  3718. name: "Front-dressed",
  3719. image: {
  3720. source: "./media/characters/shingo/front-dressed.svg",
  3721. extra: 1900/1825,
  3722. bottom: 82/1982
  3723. }
  3724. },
  3725. paw: {
  3726. height: math.unit(1.29, "feet"),
  3727. name: "Paw",
  3728. image: {
  3729. source: "./media/characters/shingo/paw.svg"
  3730. }
  3731. },
  3732. hand: {
  3733. height: math.unit(1.07, "feet"),
  3734. name: "Hand",
  3735. image: {
  3736. source: "./media/characters/shingo/hand.svg"
  3737. }
  3738. },
  3739. frontAlt: {
  3740. height: math.unit(6, "feet"),
  3741. weight: math.unit(75, "kg"),
  3742. name: "Front (Alt)",
  3743. image: {
  3744. source: "./media/characters/shingo/front-alt.svg",
  3745. extra: 3511 / 3338,
  3746. bottom: 0.005
  3747. }
  3748. },
  3749. frontAlt2: {
  3750. height: math.unit(6, "feet"),
  3751. weight: math.unit(75, "kg"),
  3752. name: "Front (Alt 2)",
  3753. image: {
  3754. source: "./media/characters/shingo/front-alt-2.svg",
  3755. extra: 706/681,
  3756. bottom: 11/717
  3757. }
  3758. },
  3759. pawAlt: {
  3760. height: math.unit(1, "feet"),
  3761. name: "Paw (Alt)",
  3762. image: {
  3763. source: "./media/characters/shingo/paw-alt.svg"
  3764. }
  3765. },
  3766. },
  3767. [
  3768. {
  3769. name: "Micro",
  3770. height: math.unit(4, "inches")
  3771. },
  3772. {
  3773. name: "Normal",
  3774. height: math.unit(6, "feet"),
  3775. default: true
  3776. },
  3777. {
  3778. name: "Macro",
  3779. height: math.unit(108, "feet")
  3780. },
  3781. {
  3782. name: "Macro+",
  3783. height: math.unit(1500, "feet")
  3784. },
  3785. ]
  3786. ))
  3787. characterMakers.push(() => makeCharacter(
  3788. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3789. {
  3790. side: {
  3791. height: math.unit(6, "feet"),
  3792. weight: math.unit(75, "kg"),
  3793. name: "Side",
  3794. image: {
  3795. source: "./media/characters/aigey/side.svg"
  3796. }
  3797. },
  3798. },
  3799. [
  3800. {
  3801. name: "Macro",
  3802. height: math.unit(200, "feet"),
  3803. default: true
  3804. },
  3805. {
  3806. name: "Megamacro",
  3807. height: math.unit(100, "miles")
  3808. },
  3809. ]
  3810. )
  3811. )
  3812. characterMakers.push(() => makeCharacter(
  3813. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3814. {
  3815. front: {
  3816. height: math.unit(5 + 5 / 12, "feet"),
  3817. weight: math.unit(75, "kg"),
  3818. name: "Front",
  3819. image: {
  3820. source: "./media/characters/natasha/front.svg",
  3821. extra: 859 / 824,
  3822. bottom: 23 / 879.6
  3823. }
  3824. },
  3825. frontNsfw: {
  3826. height: math.unit(5 + 5 / 12, "feet"),
  3827. weight: math.unit(75, "kg"),
  3828. name: "Front (NSFW)",
  3829. image: {
  3830. source: "./media/characters/natasha/front-nsfw.svg",
  3831. extra: 859 / 824,
  3832. bottom: 23 / 879.6
  3833. }
  3834. },
  3835. frontErect: {
  3836. height: math.unit(5 + 5 / 12, "feet"),
  3837. weight: math.unit(75, "kg"),
  3838. name: "Front (Erect)",
  3839. image: {
  3840. source: "./media/characters/natasha/front-erect.svg",
  3841. extra: 859 / 824,
  3842. bottom: 23 / 879.6
  3843. }
  3844. },
  3845. back: {
  3846. height: math.unit(5 + 5 / 12, "feet"),
  3847. weight: math.unit(75, "kg"),
  3848. name: "Back",
  3849. image: {
  3850. source: "./media/characters/natasha/back.svg",
  3851. extra: 887.9 / 852.6,
  3852. bottom: 9.7 / 896.4
  3853. }
  3854. },
  3855. backAlt: {
  3856. height: math.unit(5 + 5 / 12, "feet"),
  3857. weight: math.unit(75, "kg"),
  3858. name: "Back (Alt)",
  3859. image: {
  3860. source: "./media/characters/natasha/back-alt.svg",
  3861. extra: 1236.7 / 1192,
  3862. bottom: 22.3 / 1258.2
  3863. }
  3864. },
  3865. dick: {
  3866. height: math.unit(1.772, "feet"),
  3867. name: "Dick",
  3868. image: {
  3869. source: "./media/characters/natasha/dick.svg"
  3870. }
  3871. },
  3872. paw: {
  3873. height: math.unit(0.250, "meters"),
  3874. name: "Paw",
  3875. image: {
  3876. source: "./media/characters/natasha/paw.svg"
  3877. },
  3878. extraAttributes: {
  3879. "toeSize": {
  3880. name: "Toe Size",
  3881. power: 2,
  3882. type: "area",
  3883. base: math.unit(0.0024, "m^2")
  3884. },
  3885. "padSize": {
  3886. name: "Pad Size",
  3887. power: 2,
  3888. type: "area",
  3889. base: math.unit(0.00889, "m^2")
  3890. },
  3891. "pawSize": {
  3892. name: "Paw Size",
  3893. power: 2,
  3894. type: "area",
  3895. base: math.unit(0.023667, "m^2")
  3896. },
  3897. }
  3898. },
  3899. },
  3900. [
  3901. {
  3902. name: "Shortstack",
  3903. height: math.unit(3, "feet"),
  3904. default: true
  3905. },
  3906. {
  3907. name: "Normal",
  3908. height: math.unit(5 + 5 / 12, "feet")
  3909. },
  3910. {
  3911. name: "Large",
  3912. height: math.unit(12, "feet")
  3913. },
  3914. {
  3915. name: "Macro",
  3916. height: math.unit(100, "feet")
  3917. },
  3918. {
  3919. name: "Macro+",
  3920. height: math.unit(260, "feet")
  3921. },
  3922. {
  3923. name: "Macro++",
  3924. height: math.unit(1, "mile")
  3925. },
  3926. ]
  3927. ))
  3928. characterMakers.push(() => makeCharacter(
  3929. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3930. {
  3931. front: {
  3932. height: math.unit(6, "feet"),
  3933. weight: math.unit(75, "kg"),
  3934. name: "Front",
  3935. image: {
  3936. source: "./media/characters/malik/front.svg",
  3937. extra: 1750/1561,
  3938. bottom: 80/1830
  3939. },
  3940. extraAttributes: {
  3941. "toeSize": {
  3942. name: "Toe Size",
  3943. power: 2,
  3944. type: "area",
  3945. base: math.unit(0.0159, "m^2")
  3946. },
  3947. "pawSize": {
  3948. name: "Paw Size",
  3949. power: 2,
  3950. type: "area",
  3951. base: math.unit(0.09834, "m^2")
  3952. },
  3953. }
  3954. },
  3955. side: {
  3956. height: math.unit(6, "feet"),
  3957. weight: math.unit(75, "kg"),
  3958. name: "Side",
  3959. image: {
  3960. source: "./media/characters/malik/side.svg",
  3961. extra: 1802/1685,
  3962. bottom: 42/1844
  3963. },
  3964. extraAttributes: {
  3965. "toeSize": {
  3966. name: "Toe Size",
  3967. power: 2,
  3968. type: "area",
  3969. base: math.unit(0.0159, "m^2")
  3970. },
  3971. "pawSize": {
  3972. name: "Paw Size",
  3973. power: 2,
  3974. type: "area",
  3975. base: math.unit(0.09834, "m^2")
  3976. },
  3977. }
  3978. },
  3979. back: {
  3980. height: math.unit(6, "feet"),
  3981. weight: math.unit(75, "kg"),
  3982. name: "Back",
  3983. image: {
  3984. source: "./media/characters/malik/back.svg",
  3985. extra: 1803/1607,
  3986. bottom: 33/1836
  3987. },
  3988. extraAttributes: {
  3989. "toeSize": {
  3990. name: "Toe Size",
  3991. power: 2,
  3992. type: "area",
  3993. base: math.unit(0.0159, "m^2")
  3994. },
  3995. "pawSize": {
  3996. name: "Paw Size",
  3997. power: 2,
  3998. type: "area",
  3999. base: math.unit(0.09834, "m^2")
  4000. },
  4001. }
  4002. },
  4003. },
  4004. [
  4005. {
  4006. name: "Macro",
  4007. height: math.unit(156, "feet"),
  4008. default: true
  4009. },
  4010. {
  4011. name: "Macro+",
  4012. height: math.unit(1188, "feet")
  4013. },
  4014. ]
  4015. ))
  4016. characterMakers.push(() => makeCharacter(
  4017. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4018. {
  4019. front: {
  4020. height: math.unit(6, "feet"),
  4021. weight: math.unit(75, "kg"),
  4022. name: "Front",
  4023. image: {
  4024. source: "./media/characters/sefer/front.svg",
  4025. extra: 848 / 659,
  4026. bottom: 28.3 / 876.442
  4027. }
  4028. },
  4029. back: {
  4030. height: math.unit(6, "feet"),
  4031. weight: math.unit(75, "kg"),
  4032. name: "Back",
  4033. image: {
  4034. source: "./media/characters/sefer/back.svg",
  4035. extra: 864 / 695,
  4036. bottom: 10 / 871
  4037. }
  4038. },
  4039. frontDressed: {
  4040. height: math.unit(6, "feet"),
  4041. weight: math.unit(75, "kg"),
  4042. name: "Dressed",
  4043. image: {
  4044. source: "./media/characters/sefer/dressed.svg",
  4045. extra: 839 / 653,
  4046. bottom: 37.6 / 878
  4047. }
  4048. },
  4049. },
  4050. [
  4051. {
  4052. name: "Normal",
  4053. height: math.unit(6, "feet"),
  4054. default: true
  4055. },
  4056. {
  4057. name: "Big",
  4058. height: math.unit(8, "meters")
  4059. },
  4060. ]
  4061. ))
  4062. characterMakers.push(() => makeCharacter(
  4063. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4064. {
  4065. body: {
  4066. height: math.unit(2.2428, "meter"),
  4067. weight: math.unit(124.738, "kg"),
  4068. name: "Body",
  4069. image: {
  4070. extra: 1225 / 1050,
  4071. source: "./media/characters/north/front.svg"
  4072. }
  4073. }
  4074. },
  4075. [
  4076. {
  4077. name: "Micro",
  4078. height: math.unit(4, "inches")
  4079. },
  4080. {
  4081. name: "Macro",
  4082. height: math.unit(63, "meters")
  4083. },
  4084. {
  4085. name: "Megamacro",
  4086. height: math.unit(101, "miles"),
  4087. default: true
  4088. }
  4089. ]
  4090. ))
  4091. characterMakers.push(() => makeCharacter(
  4092. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4093. {
  4094. angled: {
  4095. height: math.unit(4, "meter"),
  4096. weight: math.unit(150, "kg"),
  4097. name: "Angled",
  4098. image: {
  4099. source: "./media/characters/talan/angled-sfw.svg",
  4100. bottom: 29 / 3734
  4101. }
  4102. },
  4103. angledNsfw: {
  4104. height: math.unit(4, "meter"),
  4105. weight: math.unit(150, "kg"),
  4106. name: "Angled (NSFW)",
  4107. image: {
  4108. source: "./media/characters/talan/angled-nsfw.svg",
  4109. bottom: 29 / 3734
  4110. }
  4111. },
  4112. frontNsfw: {
  4113. height: math.unit(4, "meter"),
  4114. weight: math.unit(150, "kg"),
  4115. name: "Front (NSFW)",
  4116. image: {
  4117. source: "./media/characters/talan/front-nsfw.svg",
  4118. bottom: 29 / 3734
  4119. }
  4120. },
  4121. sideNsfw: {
  4122. height: math.unit(4, "meter"),
  4123. weight: math.unit(150, "kg"),
  4124. name: "Side (NSFW)",
  4125. image: {
  4126. source: "./media/characters/talan/side-nsfw.svg",
  4127. bottom: 29 / 3734
  4128. }
  4129. },
  4130. back: {
  4131. height: math.unit(4, "meter"),
  4132. weight: math.unit(150, "kg"),
  4133. name: "Back",
  4134. image: {
  4135. source: "./media/characters/talan/back.svg"
  4136. }
  4137. },
  4138. dickBottom: {
  4139. height: math.unit(0.621, "meter"),
  4140. name: "Dick (Bottom)",
  4141. image: {
  4142. source: "./media/characters/talan/dick-bottom.svg"
  4143. }
  4144. },
  4145. dickTop: {
  4146. height: math.unit(0.621, "meter"),
  4147. name: "Dick (Top)",
  4148. image: {
  4149. source: "./media/characters/talan/dick-top.svg"
  4150. }
  4151. },
  4152. dickSide: {
  4153. height: math.unit(0.305, "meter"),
  4154. name: "Dick (Side)",
  4155. image: {
  4156. source: "./media/characters/talan/dick-side.svg"
  4157. }
  4158. },
  4159. dickFront: {
  4160. height: math.unit(0.305, "meter"),
  4161. name: "Dick (Front)",
  4162. image: {
  4163. source: "./media/characters/talan/dick-front.svg"
  4164. }
  4165. },
  4166. },
  4167. [
  4168. {
  4169. name: "Normal",
  4170. height: math.unit(4, "meters")
  4171. },
  4172. {
  4173. name: "Macro",
  4174. height: math.unit(100, "meters")
  4175. },
  4176. {
  4177. name: "Megamacro",
  4178. height: math.unit(2, "miles"),
  4179. default: true
  4180. },
  4181. {
  4182. name: "Gigamacro",
  4183. height: math.unit(5000, "miles")
  4184. },
  4185. {
  4186. name: "Teramacro",
  4187. height: math.unit(100, "parsecs")
  4188. }
  4189. ]
  4190. ))
  4191. characterMakers.push(() => makeCharacter(
  4192. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4193. {
  4194. front: {
  4195. height: math.unit(2, "meter"),
  4196. weight: math.unit(90, "kg"),
  4197. name: "Front",
  4198. image: {
  4199. source: "./media/characters/gael'rathus/front.svg"
  4200. }
  4201. },
  4202. frontAlt: {
  4203. height: math.unit(2, "meter"),
  4204. weight: math.unit(90, "kg"),
  4205. name: "Front (alt)",
  4206. image: {
  4207. source: "./media/characters/gael'rathus/front-alt.svg"
  4208. }
  4209. },
  4210. frontAlt2: {
  4211. height: math.unit(2, "meter"),
  4212. weight: math.unit(90, "kg"),
  4213. name: "Front (alt 2)",
  4214. image: {
  4215. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4216. }
  4217. }
  4218. },
  4219. [
  4220. {
  4221. name: "Normal",
  4222. height: math.unit(9, "feet"),
  4223. default: true
  4224. },
  4225. {
  4226. name: "Large",
  4227. height: math.unit(25, "feet")
  4228. },
  4229. {
  4230. name: "Macro",
  4231. height: math.unit(0.25, "miles")
  4232. },
  4233. {
  4234. name: "Megamacro",
  4235. height: math.unit(10, "miles")
  4236. }
  4237. ]
  4238. ))
  4239. characterMakers.push(() => makeCharacter(
  4240. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4241. {
  4242. side: {
  4243. height: math.unit(2, "meter"),
  4244. weight: math.unit(140, "kg"),
  4245. name: "Side",
  4246. image: {
  4247. source: "./media/characters/sosha/side.svg",
  4248. extra: 1170/1006,
  4249. bottom: 94/1264
  4250. }
  4251. },
  4252. maw: {
  4253. height: math.unit(2.87, "feet"),
  4254. name: "Maw",
  4255. image: {
  4256. source: "./media/characters/sosha/maw.svg",
  4257. extra: 966/865,
  4258. bottom: 0/966
  4259. }
  4260. },
  4261. cooch: {
  4262. height: math.unit(5.6, "feet"),
  4263. name: "Cooch",
  4264. image: {
  4265. source: "./media/characters/sosha/cooch.svg"
  4266. }
  4267. },
  4268. },
  4269. [
  4270. {
  4271. name: "Normal",
  4272. height: math.unit(12, "feet"),
  4273. default: true
  4274. }
  4275. ]
  4276. ))
  4277. characterMakers.push(() => makeCharacter(
  4278. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4279. {
  4280. side: {
  4281. height: math.unit(5 + 5 / 12, "feet"),
  4282. weight: math.unit(170, "kg"),
  4283. name: "Side",
  4284. image: {
  4285. source: "./media/characters/runnola/side.svg",
  4286. extra: 741 / 448,
  4287. bottom: 0.05
  4288. }
  4289. },
  4290. },
  4291. [
  4292. {
  4293. name: "Small",
  4294. height: math.unit(3, "feet")
  4295. },
  4296. {
  4297. name: "Normal",
  4298. height: math.unit(5 + 5 / 12, "feet"),
  4299. default: true
  4300. },
  4301. {
  4302. name: "Big",
  4303. height: math.unit(10, "feet")
  4304. },
  4305. ]
  4306. ))
  4307. characterMakers.push(() => makeCharacter(
  4308. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4309. {
  4310. front: {
  4311. height: math.unit(2, "meter"),
  4312. weight: math.unit(50, "kg"),
  4313. name: "Front",
  4314. image: {
  4315. source: "./media/characters/kurribird/front.svg",
  4316. bottom: 0.015
  4317. }
  4318. },
  4319. frontAlt: {
  4320. height: math.unit(1.5, "meter"),
  4321. weight: math.unit(50, "kg"),
  4322. name: "Front (Alt)",
  4323. image: {
  4324. source: "./media/characters/kurribird/front-alt.svg",
  4325. extra: 1.45
  4326. }
  4327. },
  4328. },
  4329. [
  4330. {
  4331. name: "Normal",
  4332. height: math.unit(7, "feet")
  4333. },
  4334. {
  4335. name: "Big",
  4336. height: math.unit(12, "feet"),
  4337. default: true
  4338. },
  4339. {
  4340. name: "Macro",
  4341. height: math.unit(1500, "feet")
  4342. },
  4343. {
  4344. name: "Megamacro",
  4345. height: math.unit(2, "miles")
  4346. }
  4347. ]
  4348. ))
  4349. characterMakers.push(() => makeCharacter(
  4350. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4351. {
  4352. front: {
  4353. height: math.unit(2, "meter"),
  4354. weight: math.unit(80, "kg"),
  4355. name: "Front",
  4356. image: {
  4357. source: "./media/characters/elbial/front.svg",
  4358. extra: 1643 / 1556,
  4359. bottom: 60.2 / 1696
  4360. }
  4361. },
  4362. side: {
  4363. height: math.unit(2, "meter"),
  4364. weight: math.unit(80, "kg"),
  4365. name: "Side",
  4366. image: {
  4367. source: "./media/characters/elbial/side.svg",
  4368. extra: 1601/1528,
  4369. bottom: 97/1698
  4370. }
  4371. },
  4372. back: {
  4373. height: math.unit(2, "meter"),
  4374. weight: math.unit(80, "kg"),
  4375. name: "Back",
  4376. image: {
  4377. source: "./media/characters/elbial/back.svg",
  4378. extra: 1653/1569,
  4379. bottom: 20/1673
  4380. }
  4381. },
  4382. frontDressed: {
  4383. height: math.unit(2, "meter"),
  4384. weight: math.unit(80, "kg"),
  4385. name: "Front (Dressed)",
  4386. image: {
  4387. source: "./media/characters/elbial/front-dressed.svg",
  4388. extra: 1638/1569,
  4389. bottom: 70/1708
  4390. }
  4391. },
  4392. genitals: {
  4393. height: math.unit(2 / 3.367, "meter"),
  4394. name: "Genitals",
  4395. image: {
  4396. source: "./media/characters/elbial/genitals.svg"
  4397. }
  4398. },
  4399. },
  4400. [
  4401. {
  4402. name: "Large",
  4403. height: math.unit(100, "feet")
  4404. },
  4405. {
  4406. name: "Macro",
  4407. height: math.unit(500, "feet"),
  4408. default: true
  4409. },
  4410. {
  4411. name: "Megamacro",
  4412. height: math.unit(10, "miles")
  4413. },
  4414. {
  4415. name: "Gigamacro",
  4416. height: math.unit(25000, "miles")
  4417. },
  4418. {
  4419. name: "Full-Size",
  4420. height: math.unit(8000000, "gigaparsecs")
  4421. }
  4422. ]
  4423. ))
  4424. characterMakers.push(() => makeCharacter(
  4425. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4426. {
  4427. front: {
  4428. height: math.unit(2, "meter"),
  4429. weight: math.unit(60, "kg"),
  4430. name: "Front",
  4431. image: {
  4432. source: "./media/characters/noah/front.svg",
  4433. extra: 1383/1313,
  4434. bottom: 104/1487
  4435. }
  4436. },
  4437. hand: {
  4438. height: math.unit(0.6, "feet"),
  4439. name: "Hand",
  4440. image: {
  4441. source: "./media/characters/noah/hand.svg"
  4442. }
  4443. },
  4444. talons: {
  4445. height: math.unit(1.385, "feet"),
  4446. name: "Talons",
  4447. image: {
  4448. source: "./media/characters/noah/talons.svg"
  4449. }
  4450. },
  4451. beak: {
  4452. height: math.unit(0.43, "feet"),
  4453. name: "Beak",
  4454. image: {
  4455. source: "./media/characters/noah/beak.svg"
  4456. }
  4457. },
  4458. collar: {
  4459. height: math.unit(0.88, "feet"),
  4460. name: "Collar",
  4461. image: {
  4462. source: "./media/characters/noah/collar.svg"
  4463. }
  4464. },
  4465. eyeNarrow: {
  4466. height: math.unit(0.18, "feet"),
  4467. name: "Eye (Narrow)",
  4468. image: {
  4469. source: "./media/characters/noah/eye-narrow.svg"
  4470. }
  4471. },
  4472. eyeNormal: {
  4473. height: math.unit(0.18, "feet"),
  4474. name: "Eye (Normal)",
  4475. image: {
  4476. source: "./media/characters/noah/eye-normal.svg"
  4477. }
  4478. },
  4479. eyeWide: {
  4480. height: math.unit(0.18, "feet"),
  4481. name: "Eye (Wide)",
  4482. image: {
  4483. source: "./media/characters/noah/eye-wide.svg"
  4484. }
  4485. },
  4486. ear: {
  4487. height: math.unit(0.64, "feet"),
  4488. name: "Ear",
  4489. image: {
  4490. source: "./media/characters/noah/ear.svg"
  4491. }
  4492. },
  4493. },
  4494. [
  4495. {
  4496. name: "Large",
  4497. height: math.unit(50, "feet")
  4498. },
  4499. {
  4500. name: "Macro",
  4501. height: math.unit(750, "feet"),
  4502. default: true
  4503. },
  4504. {
  4505. name: "Megamacro",
  4506. height: math.unit(50, "miles")
  4507. },
  4508. {
  4509. name: "Gigamacro",
  4510. height: math.unit(100000, "miles")
  4511. },
  4512. {
  4513. name: "Full-Size",
  4514. height: math.unit(3000000000, "miles")
  4515. }
  4516. ]
  4517. ))
  4518. characterMakers.push(() => makeCharacter(
  4519. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4520. {
  4521. front: {
  4522. height: math.unit(2, "meter"),
  4523. weight: math.unit(80, "kg"),
  4524. name: "Front",
  4525. image: {
  4526. source: "./media/characters/natalya/front.svg"
  4527. }
  4528. },
  4529. back: {
  4530. height: math.unit(2, "meter"),
  4531. weight: math.unit(80, "kg"),
  4532. name: "Back",
  4533. image: {
  4534. source: "./media/characters/natalya/back.svg"
  4535. }
  4536. }
  4537. },
  4538. [
  4539. {
  4540. name: "Normal",
  4541. height: math.unit(150, "feet"),
  4542. default: true
  4543. },
  4544. {
  4545. name: "Megamacro",
  4546. height: math.unit(5, "miles")
  4547. },
  4548. {
  4549. name: "Full-Size",
  4550. height: math.unit(600, "kiloparsecs")
  4551. }
  4552. ]
  4553. ))
  4554. characterMakers.push(() => makeCharacter(
  4555. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4556. {
  4557. front: {
  4558. height: math.unit(2, "meter"),
  4559. weight: math.unit(50, "kg"),
  4560. name: "Front",
  4561. image: {
  4562. source: "./media/characters/erestrebah/front.svg",
  4563. extra: 1262/1162,
  4564. bottom: 96/1358
  4565. }
  4566. },
  4567. back: {
  4568. height: math.unit(2, "meter"),
  4569. weight: math.unit(50, "kg"),
  4570. name: "Back",
  4571. image: {
  4572. source: "./media/characters/erestrebah/back.svg",
  4573. extra: 1257/1139,
  4574. bottom: 13/1270
  4575. }
  4576. },
  4577. wing: {
  4578. height: math.unit(2, "meter"),
  4579. weight: math.unit(50, "kg"),
  4580. name: "Wing",
  4581. image: {
  4582. source: "./media/characters/erestrebah/wing.svg",
  4583. extra: 1262/1162,
  4584. bottom: 96/1358
  4585. }
  4586. },
  4587. mouth: {
  4588. height: math.unit(0.39, "feet"),
  4589. name: "Mouth",
  4590. image: {
  4591. source: "./media/characters/erestrebah/mouth.svg"
  4592. }
  4593. }
  4594. },
  4595. [
  4596. {
  4597. name: "Normal",
  4598. height: math.unit(10, "feet")
  4599. },
  4600. {
  4601. name: "Large",
  4602. height: math.unit(50, "feet"),
  4603. default: true
  4604. },
  4605. {
  4606. name: "Macro",
  4607. height: math.unit(300, "feet")
  4608. },
  4609. {
  4610. name: "Macro+",
  4611. height: math.unit(750, "feet")
  4612. },
  4613. {
  4614. name: "Megamacro",
  4615. height: math.unit(3, "miles")
  4616. }
  4617. ]
  4618. ))
  4619. characterMakers.push(() => makeCharacter(
  4620. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4621. {
  4622. front: {
  4623. height: math.unit(2, "meter"),
  4624. weight: math.unit(80, "kg"),
  4625. name: "Front",
  4626. image: {
  4627. source: "./media/characters/jennifer/front.svg",
  4628. bottom: 0.11,
  4629. extra: 1.16
  4630. }
  4631. },
  4632. frontAlt: {
  4633. height: math.unit(2, "meter"),
  4634. weight: math.unit(80, "kg"),
  4635. name: "Front (Alt)",
  4636. image: {
  4637. source: "./media/characters/jennifer/front-alt.svg"
  4638. }
  4639. }
  4640. },
  4641. [
  4642. {
  4643. name: "Canon Height",
  4644. height: math.unit(120, "feet"),
  4645. default: true
  4646. },
  4647. {
  4648. name: "Macro+",
  4649. height: math.unit(300, "feet")
  4650. },
  4651. {
  4652. name: "Megamacro",
  4653. height: math.unit(20000, "feet")
  4654. }
  4655. ]
  4656. ))
  4657. characterMakers.push(() => makeCharacter(
  4658. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4659. {
  4660. front: {
  4661. height: math.unit(2, "meter"),
  4662. weight: math.unit(50, "kg"),
  4663. name: "Front",
  4664. image: {
  4665. source: "./media/characters/kalista/front.svg",
  4666. extra: 1314/1145,
  4667. bottom: 101/1415
  4668. }
  4669. },
  4670. back: {
  4671. height: math.unit(2, "meter"),
  4672. weight: math.unit(50, "kg"),
  4673. name: "Back",
  4674. image: {
  4675. source: "./media/characters/kalista/back.svg",
  4676. extra: 1366 / 1156,
  4677. bottom: 33.9 / 1362.78
  4678. }
  4679. }
  4680. },
  4681. [
  4682. {
  4683. name: "Uncomfortably Small",
  4684. height: math.unit(10, "feet")
  4685. },
  4686. {
  4687. name: "Small",
  4688. height: math.unit(30, "feet")
  4689. },
  4690. {
  4691. name: "Macro",
  4692. height: math.unit(100, "feet"),
  4693. default: true
  4694. },
  4695. {
  4696. name: "Macro+",
  4697. height: math.unit(2000, "feet")
  4698. },
  4699. {
  4700. name: "True Form",
  4701. height: math.unit(8924, "miles")
  4702. }
  4703. ]
  4704. ))
  4705. characterMakers.push(() => makeCharacter(
  4706. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4707. {
  4708. front: {
  4709. height: math.unit(2, "meter"),
  4710. weight: math.unit(120, "kg"),
  4711. name: "Front",
  4712. image: {
  4713. source: "./media/characters/ggv/front.svg"
  4714. }
  4715. },
  4716. side: {
  4717. height: math.unit(2, "meter"),
  4718. weight: math.unit(120, "kg"),
  4719. name: "Side",
  4720. image: {
  4721. source: "./media/characters/ggv/side.svg"
  4722. }
  4723. }
  4724. },
  4725. [
  4726. {
  4727. name: "Extremely Puny",
  4728. height: math.unit(9 + 5 / 12, "feet")
  4729. },
  4730. {
  4731. name: "Horribly Small",
  4732. height: math.unit(47.7, "miles"),
  4733. default: true
  4734. },
  4735. {
  4736. name: "Reasonably Sized",
  4737. height: math.unit(25000, "parsecs")
  4738. },
  4739. {
  4740. name: "Slightly Uncompressed",
  4741. height: math.unit(7.77e31, "parsecs")
  4742. },
  4743. {
  4744. name: "Omniversal",
  4745. height: math.unit(1e300, "meters")
  4746. },
  4747. ]
  4748. ))
  4749. characterMakers.push(() => makeCharacter(
  4750. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4751. {
  4752. front: {
  4753. height: math.unit(2, "meter"),
  4754. weight: math.unit(75, "lb"),
  4755. name: "Front",
  4756. image: {
  4757. source: "./media/characters/napalm/front.svg"
  4758. }
  4759. },
  4760. back: {
  4761. height: math.unit(2, "meter"),
  4762. weight: math.unit(75, "lb"),
  4763. name: "Back",
  4764. image: {
  4765. source: "./media/characters/napalm/back.svg"
  4766. }
  4767. }
  4768. },
  4769. [
  4770. {
  4771. name: "Standard",
  4772. height: math.unit(55, "feet"),
  4773. default: true
  4774. }
  4775. ]
  4776. ))
  4777. characterMakers.push(() => makeCharacter(
  4778. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4779. {
  4780. front: {
  4781. height: math.unit(7 + 5 / 6, "feet"),
  4782. weight: math.unit(325, "lb"),
  4783. name: "Front",
  4784. image: {
  4785. source: "./media/characters/asana/front.svg",
  4786. extra: 1133 / 1060,
  4787. bottom: 15.2 / 1148.6
  4788. }
  4789. },
  4790. back: {
  4791. height: math.unit(7 + 5 / 6, "feet"),
  4792. weight: math.unit(325, "lb"),
  4793. name: "Back",
  4794. image: {
  4795. source: "./media/characters/asana/back.svg",
  4796. extra: 1114 / 1043,
  4797. bottom: 5 / 1120
  4798. }
  4799. },
  4800. dressedDark: {
  4801. height: math.unit(7 + 5 / 6, "feet"),
  4802. weight: math.unit(325, "lb"),
  4803. name: "Dressed (Dark)",
  4804. image: {
  4805. source: "./media/characters/asana/dressed-dark.svg",
  4806. extra: 1133 / 1060,
  4807. bottom: 15.2 / 1148.6
  4808. }
  4809. },
  4810. dressedLight: {
  4811. height: math.unit(7 + 5 / 6, "feet"),
  4812. weight: math.unit(325, "lb"),
  4813. name: "Dressed (Light)",
  4814. image: {
  4815. source: "./media/characters/asana/dressed-light.svg",
  4816. extra: 1133 / 1060,
  4817. bottom: 15.2 / 1148.6
  4818. }
  4819. },
  4820. },
  4821. [
  4822. {
  4823. name: "Standard",
  4824. height: math.unit(7 + 5 / 6, "feet"),
  4825. default: true
  4826. },
  4827. {
  4828. name: "Large",
  4829. height: math.unit(10, "meters")
  4830. },
  4831. {
  4832. name: "Macro",
  4833. height: math.unit(2500, "meters")
  4834. },
  4835. {
  4836. name: "Megamacro",
  4837. height: math.unit(5e6, "meters")
  4838. },
  4839. {
  4840. name: "Examacro",
  4841. height: math.unit(5e12, "lightyears")
  4842. },
  4843. {
  4844. name: "Max Size",
  4845. height: math.unit(1e31, "lightyears")
  4846. }
  4847. ]
  4848. ))
  4849. characterMakers.push(() => makeCharacter(
  4850. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4851. {
  4852. front: {
  4853. height: math.unit(2, "meter"),
  4854. weight: math.unit(60, "kg"),
  4855. name: "Front",
  4856. image: {
  4857. source: "./media/characters/ebony/front.svg",
  4858. bottom: 0.03,
  4859. extra: 1045 / 810 + 0.03
  4860. }
  4861. },
  4862. side: {
  4863. height: math.unit(2, "meter"),
  4864. weight: math.unit(60, "kg"),
  4865. name: "Side",
  4866. image: {
  4867. source: "./media/characters/ebony/side.svg",
  4868. bottom: 0.03,
  4869. extra: 1045 / 810 + 0.03
  4870. }
  4871. },
  4872. back: {
  4873. height: math.unit(2, "meter"),
  4874. weight: math.unit(60, "kg"),
  4875. name: "Back",
  4876. image: {
  4877. source: "./media/characters/ebony/back.svg",
  4878. bottom: 0.01,
  4879. extra: 1045 / 810 + 0.01
  4880. }
  4881. },
  4882. },
  4883. [
  4884. // TODO check why I did this lol
  4885. {
  4886. name: "Standard",
  4887. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4888. default: true
  4889. },
  4890. {
  4891. name: "Macro",
  4892. height: math.unit(200, "feet")
  4893. },
  4894. {
  4895. name: "Gigamacro",
  4896. height: math.unit(13000, "km")
  4897. }
  4898. ]
  4899. ))
  4900. characterMakers.push(() => makeCharacter(
  4901. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4902. {
  4903. front: {
  4904. height: math.unit(6, "feet"),
  4905. weight: math.unit(175, "lb"),
  4906. name: "Front",
  4907. image: {
  4908. source: "./media/characters/mountain/front.svg",
  4909. extra: 972 / 955,
  4910. bottom: 64 / 1036.6
  4911. }
  4912. },
  4913. back: {
  4914. height: math.unit(6, "feet"),
  4915. weight: math.unit(175, "lb"),
  4916. name: "Back",
  4917. image: {
  4918. source: "./media/characters/mountain/back.svg",
  4919. extra: 970 / 950,
  4920. bottom: 28.25 / 999
  4921. }
  4922. },
  4923. },
  4924. [
  4925. {
  4926. name: "Large",
  4927. height: math.unit(20, "meters")
  4928. },
  4929. {
  4930. name: "Macro",
  4931. height: math.unit(300, "meters")
  4932. },
  4933. {
  4934. name: "Gigamacro",
  4935. height: math.unit(10000, "km"),
  4936. default: true
  4937. },
  4938. {
  4939. name: "Examacro",
  4940. height: math.unit(10e9, "lightyears")
  4941. }
  4942. ]
  4943. ))
  4944. characterMakers.push(() => makeCharacter(
  4945. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4946. {
  4947. front: {
  4948. height: math.unit(8, "feet"),
  4949. weight: math.unit(500, "lb"),
  4950. name: "Front",
  4951. image: {
  4952. source: "./media/characters/rick/front.svg"
  4953. }
  4954. }
  4955. },
  4956. [
  4957. {
  4958. name: "Normal",
  4959. height: math.unit(8, "feet"),
  4960. default: true
  4961. },
  4962. {
  4963. name: "Macro",
  4964. height: math.unit(5, "km")
  4965. }
  4966. ]
  4967. ))
  4968. characterMakers.push(() => makeCharacter(
  4969. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4970. {
  4971. front: {
  4972. height: math.unit(8, "feet"),
  4973. weight: math.unit(120, "lb"),
  4974. name: "Front",
  4975. image: {
  4976. source: "./media/characters/ona/front.svg"
  4977. }
  4978. },
  4979. frontAlt: {
  4980. height: math.unit(8, "feet"),
  4981. weight: math.unit(120, "lb"),
  4982. name: "Front (Alt)",
  4983. image: {
  4984. source: "./media/characters/ona/front-alt.svg"
  4985. }
  4986. },
  4987. back: {
  4988. height: math.unit(8, "feet"),
  4989. weight: math.unit(120, "lb"),
  4990. name: "Back",
  4991. image: {
  4992. source: "./media/characters/ona/back.svg"
  4993. }
  4994. },
  4995. foot: {
  4996. height: math.unit(1.1, "feet"),
  4997. name: "Foot",
  4998. image: {
  4999. source: "./media/characters/ona/foot.svg"
  5000. }
  5001. }
  5002. },
  5003. [
  5004. {
  5005. name: "Megamacro",
  5006. height: math.unit(70, "km"),
  5007. default: true
  5008. },
  5009. {
  5010. name: "Gigamacro",
  5011. height: math.unit(681818, "miles")
  5012. },
  5013. {
  5014. name: "Examacro",
  5015. height: math.unit(3800000, "lightyears")
  5016. },
  5017. ]
  5018. ))
  5019. characterMakers.push(() => makeCharacter(
  5020. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5021. {
  5022. front: {
  5023. height: math.unit(12, "feet"),
  5024. weight: math.unit(3000, "lb"),
  5025. name: "Front",
  5026. image: {
  5027. source: "./media/characters/mech/front.svg",
  5028. extra: 2900 / 2770,
  5029. bottom: 110 / 3010
  5030. }
  5031. },
  5032. back: {
  5033. height: math.unit(12, "feet"),
  5034. weight: math.unit(3000, "lb"),
  5035. name: "Back",
  5036. image: {
  5037. source: "./media/characters/mech/back.svg",
  5038. extra: 3011 / 2890,
  5039. bottom: 94 / 3105
  5040. }
  5041. },
  5042. maw: {
  5043. height: math.unit(3.07, "feet"),
  5044. name: "Maw",
  5045. image: {
  5046. source: "./media/characters/mech/maw.svg"
  5047. }
  5048. },
  5049. head: {
  5050. height: math.unit(3.07, "feet"),
  5051. name: "Head",
  5052. image: {
  5053. source: "./media/characters/mech/head.svg"
  5054. }
  5055. },
  5056. dick: {
  5057. height: math.unit(1.43, "feet"),
  5058. name: "Dick",
  5059. image: {
  5060. source: "./media/characters/mech/dick.svg"
  5061. }
  5062. },
  5063. },
  5064. [
  5065. {
  5066. name: "Normal",
  5067. height: math.unit(12, "feet")
  5068. },
  5069. {
  5070. name: "Macro",
  5071. height: math.unit(300, "feet"),
  5072. default: true
  5073. },
  5074. {
  5075. name: "Macro+",
  5076. height: math.unit(1500, "feet")
  5077. },
  5078. ]
  5079. ))
  5080. characterMakers.push(() => makeCharacter(
  5081. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5082. {
  5083. front: {
  5084. height: math.unit(1.3, "meter"),
  5085. weight: math.unit(30, "kg"),
  5086. name: "Front",
  5087. image: {
  5088. source: "./media/characters/gregory/front.svg",
  5089. }
  5090. }
  5091. },
  5092. [
  5093. {
  5094. name: "Normal",
  5095. height: math.unit(1.3, "meter"),
  5096. default: true
  5097. },
  5098. {
  5099. name: "Macro",
  5100. height: math.unit(20, "meter")
  5101. }
  5102. ]
  5103. ))
  5104. characterMakers.push(() => makeCharacter(
  5105. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5106. {
  5107. front: {
  5108. height: math.unit(2.8, "meter"),
  5109. weight: math.unit(200, "kg"),
  5110. name: "Front",
  5111. image: {
  5112. source: "./media/characters/elory/front.svg",
  5113. }
  5114. }
  5115. },
  5116. [
  5117. {
  5118. name: "Normal",
  5119. height: math.unit(2.8, "meter"),
  5120. default: true
  5121. },
  5122. {
  5123. name: "Macro",
  5124. height: math.unit(38, "meter")
  5125. }
  5126. ]
  5127. ))
  5128. characterMakers.push(() => makeCharacter(
  5129. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5130. {
  5131. front: {
  5132. height: math.unit(470, "feet"),
  5133. weight: math.unit(924, "tons"),
  5134. name: "Front",
  5135. image: {
  5136. source: "./media/characters/angelpatamon/front.svg",
  5137. }
  5138. }
  5139. },
  5140. [
  5141. {
  5142. name: "Normal",
  5143. height: math.unit(470, "feet"),
  5144. default: true
  5145. },
  5146. {
  5147. name: "Deity Size I",
  5148. height: math.unit(28651.2, "km")
  5149. },
  5150. {
  5151. name: "Deity Size II",
  5152. height: math.unit(171907.2, "km")
  5153. }
  5154. ]
  5155. ))
  5156. characterMakers.push(() => makeCharacter(
  5157. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5158. {
  5159. side: {
  5160. height: math.unit(7.2, "meter"),
  5161. weight: math.unit(8.2, "tons"),
  5162. name: "Side",
  5163. image: {
  5164. source: "./media/characters/cryae/side.svg",
  5165. extra: 3500 / 1500
  5166. }
  5167. }
  5168. },
  5169. [
  5170. {
  5171. name: "Normal",
  5172. height: math.unit(7.2, "meter"),
  5173. default: true
  5174. }
  5175. ]
  5176. ))
  5177. characterMakers.push(() => makeCharacter(
  5178. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5179. {
  5180. front: {
  5181. height: math.unit(6, "feet"),
  5182. weight: math.unit(175, "lb"),
  5183. name: "Front",
  5184. image: {
  5185. source: "./media/characters/xera/front.svg",
  5186. extra: 2377 / 1972,
  5187. bottom: 75.5 / 2452
  5188. }
  5189. },
  5190. side: {
  5191. height: math.unit(6, "feet"),
  5192. weight: math.unit(175, "lb"),
  5193. name: "Side",
  5194. image: {
  5195. source: "./media/characters/xera/side.svg",
  5196. extra: 2345 / 2019,
  5197. bottom: 39.7 / 2384
  5198. }
  5199. },
  5200. back: {
  5201. height: math.unit(6, "feet"),
  5202. weight: math.unit(175, "lb"),
  5203. name: "Back",
  5204. image: {
  5205. source: "./media/characters/xera/back.svg",
  5206. extra: 2095 / 1984,
  5207. bottom: 67 / 2166
  5208. }
  5209. },
  5210. },
  5211. [
  5212. {
  5213. name: "Small",
  5214. height: math.unit(10, "feet")
  5215. },
  5216. {
  5217. name: "Macro",
  5218. height: math.unit(500, "meters"),
  5219. default: true
  5220. },
  5221. {
  5222. name: "Macro+",
  5223. height: math.unit(10, "km")
  5224. },
  5225. {
  5226. name: "Gigamacro",
  5227. height: math.unit(25000, "km")
  5228. },
  5229. {
  5230. name: "Teramacro",
  5231. height: math.unit(3e6, "km")
  5232. }
  5233. ]
  5234. ))
  5235. characterMakers.push(() => makeCharacter(
  5236. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5237. {
  5238. front: {
  5239. height: math.unit(6, "feet"),
  5240. weight: math.unit(175, "lb"),
  5241. name: "Front",
  5242. image: {
  5243. source: "./media/characters/nebula/front.svg",
  5244. extra: 2566 / 2362,
  5245. bottom: 81 / 2644
  5246. }
  5247. }
  5248. },
  5249. [
  5250. {
  5251. name: "Small",
  5252. height: math.unit(4.5, "meters")
  5253. },
  5254. {
  5255. name: "Macro",
  5256. height: math.unit(1500, "meters"),
  5257. default: true
  5258. },
  5259. {
  5260. name: "Megamacro",
  5261. height: math.unit(150, "km")
  5262. },
  5263. {
  5264. name: "Gigamacro",
  5265. height: math.unit(27000, "km")
  5266. }
  5267. ]
  5268. ))
  5269. characterMakers.push(() => makeCharacter(
  5270. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5271. {
  5272. front: {
  5273. height: math.unit(6, "feet"),
  5274. weight: math.unit(225, "lb"),
  5275. name: "Front",
  5276. image: {
  5277. source: "./media/characters/abysgar/front.svg",
  5278. extra: 1739/1614,
  5279. bottom: 71/1810
  5280. }
  5281. },
  5282. frontNsfw: {
  5283. height: math.unit(6, "feet"),
  5284. weight: math.unit(225, "lb"),
  5285. name: "Front (NSFW)",
  5286. image: {
  5287. source: "./media/characters/abysgar/front-nsfw.svg",
  5288. extra: 1739/1614,
  5289. bottom: 71/1810
  5290. }
  5291. },
  5292. back: {
  5293. height: math.unit(4.6, "feet"),
  5294. weight: math.unit(225, "lb"),
  5295. name: "Back",
  5296. image: {
  5297. source: "./media/characters/abysgar/back.svg",
  5298. extra: 1384/1327,
  5299. bottom: 0/1384
  5300. }
  5301. },
  5302. head: {
  5303. height: math.unit(1.25, "feet"),
  5304. name: "Head",
  5305. image: {
  5306. source: "./media/characters/abysgar/head.svg",
  5307. extra: 669/569,
  5308. bottom: 0/669
  5309. }
  5310. },
  5311. },
  5312. [
  5313. {
  5314. name: "Small",
  5315. height: math.unit(4.5, "meters")
  5316. },
  5317. {
  5318. name: "Macro",
  5319. height: math.unit(1250, "meters"),
  5320. default: true
  5321. },
  5322. {
  5323. name: "Megamacro",
  5324. height: math.unit(125, "km")
  5325. },
  5326. {
  5327. name: "Gigamacro",
  5328. height: math.unit(26000, "km")
  5329. }
  5330. ]
  5331. ))
  5332. characterMakers.push(() => makeCharacter(
  5333. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5334. {
  5335. front: {
  5336. height: math.unit(6, "feet"),
  5337. weight: math.unit(180, "lb"),
  5338. name: "Front",
  5339. image: {
  5340. source: "./media/characters/yakuz/front.svg"
  5341. }
  5342. }
  5343. },
  5344. [
  5345. {
  5346. name: "Small",
  5347. height: math.unit(5, "meters")
  5348. },
  5349. {
  5350. name: "Macro",
  5351. height: math.unit(1500, "meters"),
  5352. default: true
  5353. },
  5354. {
  5355. name: "Megamacro",
  5356. height: math.unit(200, "km")
  5357. },
  5358. {
  5359. name: "Gigamacro",
  5360. height: math.unit(100000, "km")
  5361. }
  5362. ]
  5363. ))
  5364. characterMakers.push(() => makeCharacter(
  5365. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5366. {
  5367. front: {
  5368. height: math.unit(6, "feet"),
  5369. weight: math.unit(175, "lb"),
  5370. name: "Front",
  5371. image: {
  5372. source: "./media/characters/mirova/front.svg",
  5373. extra: 3334 / 3071,
  5374. bottom: 42 / 3375.6
  5375. }
  5376. }
  5377. },
  5378. [
  5379. {
  5380. name: "Small",
  5381. height: math.unit(5, "meters")
  5382. },
  5383. {
  5384. name: "Macro",
  5385. height: math.unit(900, "meters"),
  5386. default: true
  5387. },
  5388. {
  5389. name: "Megamacro",
  5390. height: math.unit(135, "km")
  5391. },
  5392. {
  5393. name: "Gigamacro",
  5394. height: math.unit(20000, "km")
  5395. }
  5396. ]
  5397. ))
  5398. characterMakers.push(() => makeCharacter(
  5399. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5400. {
  5401. side: {
  5402. height: math.unit(28.35, "feet"),
  5403. weight: math.unit(99.75, "tons"),
  5404. name: "Side",
  5405. image: {
  5406. source: "./media/characters/asana-mech/side.svg",
  5407. extra: 923 / 699,
  5408. bottom: 50 / 975
  5409. }
  5410. },
  5411. chaingun: {
  5412. height: math.unit(7, "feet"),
  5413. weight: math.unit(2400, "lb"),
  5414. name: "Chaingun",
  5415. image: {
  5416. source: "./media/characters/asana-mech/chaingun.svg"
  5417. }
  5418. },
  5419. laser: {
  5420. height: math.unit(7.12, "feet"),
  5421. weight: math.unit(2000, "lb"),
  5422. name: "Laser",
  5423. image: {
  5424. source: "./media/characters/asana-mech/laser.svg"
  5425. }
  5426. },
  5427. },
  5428. [
  5429. {
  5430. name: "Normal",
  5431. height: math.unit(28.35, "feet"),
  5432. default: true
  5433. },
  5434. {
  5435. name: "Macro",
  5436. height: math.unit(2500, "feet")
  5437. },
  5438. {
  5439. name: "Megamacro",
  5440. height: math.unit(25, "miles")
  5441. },
  5442. {
  5443. name: "Examacro",
  5444. height: math.unit(6e8, "lightyears")
  5445. },
  5446. ]
  5447. ))
  5448. characterMakers.push(() => makeCharacter(
  5449. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5450. {
  5451. front: {
  5452. height: math.unit(5, "meters"),
  5453. weight: math.unit(1000, "kg"),
  5454. name: "Front",
  5455. image: {
  5456. source: "./media/characters/asche/front.svg",
  5457. extra: 1258 / 1190,
  5458. bottom: 47 / 1305
  5459. }
  5460. },
  5461. frontUnderwear: {
  5462. height: math.unit(5, "meters"),
  5463. weight: math.unit(1000, "kg"),
  5464. name: "Front (Underwear)",
  5465. image: {
  5466. source: "./media/characters/asche/front-underwear.svg",
  5467. extra: 1258 / 1190,
  5468. bottom: 47 / 1305
  5469. }
  5470. },
  5471. frontDressed: {
  5472. height: math.unit(5, "meters"),
  5473. weight: math.unit(1000, "kg"),
  5474. name: "Front (Dressed)",
  5475. image: {
  5476. source: "./media/characters/asche/front-dressed.svg",
  5477. extra: 1258 / 1190,
  5478. bottom: 47 / 1305
  5479. }
  5480. },
  5481. frontArmor: {
  5482. height: math.unit(5, "meters"),
  5483. weight: math.unit(1000, "kg"),
  5484. name: "Front (Armored)",
  5485. image: {
  5486. source: "./media/characters/asche/front-armored.svg",
  5487. extra: 1374 / 1308,
  5488. bottom: 23 / 1397
  5489. }
  5490. },
  5491. mp724: {
  5492. height: math.unit(0.96, "meters"),
  5493. weight: math.unit(38, "kg"),
  5494. name: "H&K MP724",
  5495. image: {
  5496. source: "./media/characters/asche/h&k-mp724.svg"
  5497. }
  5498. },
  5499. side: {
  5500. height: math.unit(5, "meters"),
  5501. weight: math.unit(1000, "kg"),
  5502. name: "Side",
  5503. image: {
  5504. source: "./media/characters/asche/side.svg",
  5505. extra: 1717 / 1609,
  5506. bottom: 0.005
  5507. }
  5508. },
  5509. back: {
  5510. height: math.unit(5, "meters"),
  5511. weight: math.unit(1000, "kg"),
  5512. name: "Back",
  5513. image: {
  5514. source: "./media/characters/asche/back.svg",
  5515. extra: 1570 / 1501
  5516. }
  5517. },
  5518. },
  5519. [
  5520. {
  5521. name: "DEFCON 5",
  5522. height: math.unit(5, "meters")
  5523. },
  5524. {
  5525. name: "DEFCON 4",
  5526. height: math.unit(500, "meters"),
  5527. default: true
  5528. },
  5529. {
  5530. name: "DEFCON 3",
  5531. height: math.unit(5, "km")
  5532. },
  5533. {
  5534. name: "DEFCON 2",
  5535. height: math.unit(500, "km")
  5536. },
  5537. {
  5538. name: "DEFCON 1",
  5539. height: math.unit(500000, "km")
  5540. },
  5541. {
  5542. name: "DEFCON 0",
  5543. height: math.unit(3, "gigaparsecs")
  5544. },
  5545. ]
  5546. ))
  5547. characterMakers.push(() => makeCharacter(
  5548. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5549. {
  5550. front: {
  5551. height: math.unit(7, "feet"),
  5552. weight: math.unit(92.7, "kg"),
  5553. name: "Front",
  5554. image: {
  5555. source: "./media/characters/gale/front.svg",
  5556. extra: 977/919,
  5557. bottom: 105/1082
  5558. }
  5559. },
  5560. side: {
  5561. height: math.unit(6.7, "feet"),
  5562. weight: math.unit(92.7, "kg"),
  5563. name: "Side",
  5564. image: {
  5565. source: "./media/characters/gale/side.svg",
  5566. extra: 978/922,
  5567. bottom: 140/1118
  5568. }
  5569. },
  5570. back: {
  5571. height: math.unit(7, "feet"),
  5572. weight: math.unit(92.7, "kg"),
  5573. name: "Back",
  5574. image: {
  5575. source: "./media/characters/gale/back.svg",
  5576. extra: 966/920,
  5577. bottom: 61/1027
  5578. }
  5579. },
  5580. maw: {
  5581. height: math.unit(2.23, "feet"),
  5582. name: "Maw",
  5583. image: {
  5584. source: "./media/characters/gale/maw.svg"
  5585. }
  5586. },
  5587. foot: {
  5588. height: math.unit(2.1, "feet"),
  5589. name: "Foot",
  5590. image: {
  5591. source: "./media/characters/gale/foot.svg"
  5592. }
  5593. },
  5594. },
  5595. [
  5596. {
  5597. name: "Normal",
  5598. height: math.unit(7, "feet")
  5599. },
  5600. {
  5601. name: "Macro",
  5602. height: math.unit(150, "feet"),
  5603. default: true
  5604. },
  5605. {
  5606. name: "Macro+",
  5607. height: math.unit(300, "feet")
  5608. },
  5609. ]
  5610. ))
  5611. characterMakers.push(() => makeCharacter(
  5612. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5613. {
  5614. front: {
  5615. height: math.unit(5 + 10/12, "feet"),
  5616. weight: math.unit(67, "kg"),
  5617. name: "Front",
  5618. image: {
  5619. source: "./media/characters/draylen/front.svg",
  5620. extra: 832/777,
  5621. bottom: 85/917
  5622. }
  5623. }
  5624. },
  5625. [
  5626. {
  5627. name: "Normal",
  5628. height: math.unit(5 + 10/12, "feet")
  5629. },
  5630. {
  5631. name: "Macro",
  5632. height: math.unit(150, "feet"),
  5633. default: true
  5634. }
  5635. ]
  5636. ))
  5637. characterMakers.push(() => makeCharacter(
  5638. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5639. {
  5640. front: {
  5641. height: math.unit(7 + 9 / 12, "feet"),
  5642. weight: math.unit(379, "lbs"),
  5643. name: "Front",
  5644. image: {
  5645. source: "./media/characters/chez/front.svg"
  5646. }
  5647. },
  5648. side: {
  5649. height: math.unit(7 + 9 / 12, "feet"),
  5650. weight: math.unit(379, "lbs"),
  5651. name: "Side",
  5652. image: {
  5653. source: "./media/characters/chez/side.svg"
  5654. }
  5655. }
  5656. },
  5657. [
  5658. {
  5659. name: "Normal",
  5660. height: math.unit(7 + 9 / 12, "feet"),
  5661. default: true
  5662. },
  5663. {
  5664. name: "God King",
  5665. height: math.unit(9750000, "meters")
  5666. }
  5667. ]
  5668. ))
  5669. characterMakers.push(() => makeCharacter(
  5670. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5671. {
  5672. front: {
  5673. height: math.unit(6, "feet"),
  5674. weight: math.unit(275, "lbs"),
  5675. name: "Front",
  5676. image: {
  5677. source: "./media/characters/kaylum/front.svg",
  5678. bottom: 0.01,
  5679. extra: 1166 / 1031
  5680. }
  5681. },
  5682. frontWingless: {
  5683. height: math.unit(6, "feet"),
  5684. weight: math.unit(275, "lbs"),
  5685. name: "Front (Wingless)",
  5686. image: {
  5687. source: "./media/characters/kaylum/front-wingless.svg",
  5688. bottom: 0.01,
  5689. extra: 1117 / 1031
  5690. }
  5691. }
  5692. },
  5693. [
  5694. {
  5695. name: "Normal",
  5696. height: math.unit(3.05, "meters")
  5697. },
  5698. {
  5699. name: "Master",
  5700. height: math.unit(5.5, "meters")
  5701. },
  5702. {
  5703. name: "Rampage",
  5704. height: math.unit(19, "meters")
  5705. },
  5706. {
  5707. name: "Macro Lite",
  5708. height: math.unit(37, "meters")
  5709. },
  5710. {
  5711. name: "Hyper Predator",
  5712. height: math.unit(61, "meters")
  5713. },
  5714. {
  5715. name: "Macro",
  5716. height: math.unit(138, "meters"),
  5717. default: true
  5718. }
  5719. ]
  5720. ))
  5721. characterMakers.push(() => makeCharacter(
  5722. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5723. {
  5724. front: {
  5725. height: math.unit(5 + 5 / 12, "feet"),
  5726. weight: math.unit(120, "lbs"),
  5727. name: "Front",
  5728. image: {
  5729. source: "./media/characters/geta/front.svg",
  5730. extra: 1003/933,
  5731. bottom: 21/1024
  5732. }
  5733. },
  5734. paw: {
  5735. height: math.unit(0.35, "feet"),
  5736. name: "Paw",
  5737. image: {
  5738. source: "./media/characters/geta/paw.svg"
  5739. }
  5740. },
  5741. },
  5742. [
  5743. {
  5744. name: "Micro",
  5745. height: math.unit(3, "inches"),
  5746. default: true
  5747. },
  5748. {
  5749. name: "Normal",
  5750. height: math.unit(5 + 5 / 12, "feet")
  5751. }
  5752. ]
  5753. ))
  5754. characterMakers.push(() => makeCharacter(
  5755. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5756. {
  5757. front: {
  5758. height: math.unit(6, "feet"),
  5759. weight: math.unit(300, "lbs"),
  5760. name: "Front",
  5761. image: {
  5762. source: "./media/characters/tyrnn/front.svg"
  5763. }
  5764. }
  5765. },
  5766. [
  5767. {
  5768. name: "Main Height",
  5769. height: math.unit(355, "feet"),
  5770. default: true
  5771. },
  5772. {
  5773. name: "Fave. Height",
  5774. height: math.unit(2400, "feet")
  5775. }
  5776. ]
  5777. ))
  5778. characterMakers.push(() => makeCharacter(
  5779. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5780. {
  5781. front: {
  5782. height: math.unit(6, "feet"),
  5783. weight: math.unit(300, "lbs"),
  5784. name: "Front",
  5785. image: {
  5786. source: "./media/characters/appledectomy/front.svg"
  5787. }
  5788. }
  5789. },
  5790. [
  5791. {
  5792. name: "Macro",
  5793. height: math.unit(2500, "feet")
  5794. },
  5795. {
  5796. name: "Megamacro",
  5797. height: math.unit(50, "miles"),
  5798. default: true
  5799. },
  5800. {
  5801. name: "Gigamacro",
  5802. height: math.unit(5000, "miles")
  5803. },
  5804. {
  5805. name: "Teramacro",
  5806. height: math.unit(250000, "miles")
  5807. },
  5808. ]
  5809. ))
  5810. characterMakers.push(() => makeCharacter(
  5811. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5812. {
  5813. front: {
  5814. height: math.unit(6, "feet"),
  5815. weight: math.unit(200, "lbs"),
  5816. name: "Front",
  5817. image: {
  5818. source: "./media/characters/vulpes/front.svg",
  5819. extra: 573 / 543,
  5820. bottom: 0.033
  5821. }
  5822. },
  5823. side: {
  5824. height: math.unit(6, "feet"),
  5825. weight: math.unit(200, "lbs"),
  5826. name: "Side",
  5827. image: {
  5828. source: "./media/characters/vulpes/side.svg",
  5829. extra: 577 / 549,
  5830. bottom: 11 / 588
  5831. }
  5832. },
  5833. back: {
  5834. height: math.unit(6, "feet"),
  5835. weight: math.unit(200, "lbs"),
  5836. name: "Back",
  5837. image: {
  5838. source: "./media/characters/vulpes/back.svg",
  5839. extra: 573 / 549,
  5840. bottom: 20 / 593
  5841. }
  5842. },
  5843. feet: {
  5844. height: math.unit(1.276, "feet"),
  5845. name: "Feet",
  5846. image: {
  5847. source: "./media/characters/vulpes/feet.svg"
  5848. }
  5849. },
  5850. maw: {
  5851. height: math.unit(1.18, "feet"),
  5852. name: "Maw",
  5853. image: {
  5854. source: "./media/characters/vulpes/maw.svg"
  5855. }
  5856. },
  5857. },
  5858. [
  5859. {
  5860. name: "Micro",
  5861. height: math.unit(2, "inches")
  5862. },
  5863. {
  5864. name: "Normal",
  5865. height: math.unit(6.3, "feet")
  5866. },
  5867. {
  5868. name: "Macro",
  5869. height: math.unit(850, "feet")
  5870. },
  5871. {
  5872. name: "Megamacro",
  5873. height: math.unit(7500, "feet"),
  5874. default: true
  5875. },
  5876. {
  5877. name: "Gigamacro",
  5878. height: math.unit(570000, "miles")
  5879. }
  5880. ]
  5881. ))
  5882. characterMakers.push(() => makeCharacter(
  5883. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5884. {
  5885. front: {
  5886. height: math.unit(6, "feet"),
  5887. weight: math.unit(210, "lbs"),
  5888. name: "Front",
  5889. image: {
  5890. source: "./media/characters/rain-fallen/front.svg"
  5891. }
  5892. },
  5893. side: {
  5894. height: math.unit(6, "feet"),
  5895. weight: math.unit(210, "lbs"),
  5896. name: "Side",
  5897. image: {
  5898. source: "./media/characters/rain-fallen/side.svg"
  5899. }
  5900. },
  5901. back: {
  5902. height: math.unit(6, "feet"),
  5903. weight: math.unit(210, "lbs"),
  5904. name: "Back",
  5905. image: {
  5906. source: "./media/characters/rain-fallen/back.svg"
  5907. }
  5908. },
  5909. feral: {
  5910. height: math.unit(9, "feet"),
  5911. weight: math.unit(700, "lbs"),
  5912. name: "Feral",
  5913. image: {
  5914. source: "./media/characters/rain-fallen/feral.svg"
  5915. }
  5916. },
  5917. },
  5918. [
  5919. {
  5920. name: "Meddling with Mortals",
  5921. height: math.unit(8 + 8/12, "feet")
  5922. },
  5923. {
  5924. name: "Normal",
  5925. height: math.unit(5, "meter")
  5926. },
  5927. {
  5928. name: "Macro",
  5929. height: math.unit(150, "meter"),
  5930. default: true
  5931. },
  5932. {
  5933. name: "Megamacro",
  5934. height: math.unit(278e6, "meter")
  5935. },
  5936. {
  5937. name: "Gigamacro",
  5938. height: math.unit(2e9, "meter")
  5939. },
  5940. {
  5941. name: "Teramacro",
  5942. height: math.unit(8e12, "meter")
  5943. },
  5944. {
  5945. name: "Devourer",
  5946. height: math.unit(14, "zettameters")
  5947. },
  5948. {
  5949. name: "Scarlet King",
  5950. height: math.unit(18, "yottameters")
  5951. },
  5952. {
  5953. name: "Void",
  5954. height: math.unit(1e88, "yottameters")
  5955. }
  5956. ]
  5957. ))
  5958. characterMakers.push(() => makeCharacter(
  5959. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5960. {
  5961. standing: {
  5962. height: math.unit(6, "feet"),
  5963. weight: math.unit(180, "lbs"),
  5964. name: "Standing",
  5965. image: {
  5966. source: "./media/characters/zaakira/standing.svg",
  5967. extra: 1599/1504,
  5968. bottom: 39/1638
  5969. }
  5970. },
  5971. laying: {
  5972. height: math.unit(3.3, "feet"),
  5973. weight: math.unit(180, "lbs"),
  5974. name: "Laying",
  5975. image: {
  5976. source: "./media/characters/zaakira/laying.svg"
  5977. }
  5978. },
  5979. },
  5980. [
  5981. {
  5982. name: "Normal",
  5983. height: math.unit(12, "feet")
  5984. },
  5985. {
  5986. name: "Macro",
  5987. height: math.unit(279, "feet"),
  5988. default: true
  5989. }
  5990. ]
  5991. ))
  5992. characterMakers.push(() => makeCharacter(
  5993. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5994. {
  5995. femSfw: {
  5996. height: math.unit(8, "feet"),
  5997. weight: math.unit(350, "lb"),
  5998. name: "Fem",
  5999. image: {
  6000. source: "./media/characters/sigvald/fem-sfw.svg",
  6001. extra: 182 / 164,
  6002. bottom: 8.7 / 190.5
  6003. }
  6004. },
  6005. femNsfw: {
  6006. height: math.unit(8, "feet"),
  6007. weight: math.unit(350, "lb"),
  6008. name: "Fem (NSFW)",
  6009. image: {
  6010. source: "./media/characters/sigvald/fem-nsfw.svg",
  6011. extra: 182 / 164,
  6012. bottom: 8.7 / 190.5
  6013. }
  6014. },
  6015. maleNsfw: {
  6016. height: math.unit(8, "feet"),
  6017. weight: math.unit(350, "lb"),
  6018. name: "Male (NSFW)",
  6019. image: {
  6020. source: "./media/characters/sigvald/male-nsfw.svg",
  6021. extra: 182 / 164,
  6022. bottom: 8.7 / 190.5
  6023. }
  6024. },
  6025. hermNsfw: {
  6026. height: math.unit(8, "feet"),
  6027. weight: math.unit(350, "lb"),
  6028. name: "Herm (NSFW)",
  6029. image: {
  6030. source: "./media/characters/sigvald/herm-nsfw.svg",
  6031. extra: 182 / 164,
  6032. bottom: 8.7 / 190.5
  6033. }
  6034. },
  6035. dick: {
  6036. height: math.unit(2.36, "feet"),
  6037. name: "Dick",
  6038. image: {
  6039. source: "./media/characters/sigvald/dick.svg"
  6040. }
  6041. },
  6042. eye: {
  6043. height: math.unit(0.31, "feet"),
  6044. name: "Eye",
  6045. image: {
  6046. source: "./media/characters/sigvald/eye.svg"
  6047. }
  6048. },
  6049. mouth: {
  6050. height: math.unit(0.92, "feet"),
  6051. name: "Mouth",
  6052. image: {
  6053. source: "./media/characters/sigvald/mouth.svg"
  6054. }
  6055. },
  6056. paws: {
  6057. height: math.unit(2.2, "feet"),
  6058. name: "Paws",
  6059. image: {
  6060. source: "./media/characters/sigvald/paws.svg"
  6061. }
  6062. }
  6063. },
  6064. [
  6065. {
  6066. name: "Normal",
  6067. height: math.unit(8, "feet")
  6068. },
  6069. {
  6070. name: "Large",
  6071. height: math.unit(12, "feet")
  6072. },
  6073. {
  6074. name: "Larger",
  6075. height: math.unit(20, "feet")
  6076. },
  6077. {
  6078. name: "Macro",
  6079. height: math.unit(150, "feet")
  6080. },
  6081. {
  6082. name: "Macro+",
  6083. height: math.unit(200, "feet"),
  6084. default: true
  6085. },
  6086. ]
  6087. ))
  6088. characterMakers.push(() => makeCharacter(
  6089. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6090. {
  6091. side: {
  6092. height: math.unit(12, "feet"),
  6093. weight: math.unit(2000, "kg"),
  6094. name: "Side",
  6095. image: {
  6096. source: "./media/characters/scott/side.svg",
  6097. extra: 754 / 724,
  6098. bottom: 0.069
  6099. }
  6100. },
  6101. upright: {
  6102. height: math.unit(12, "feet"),
  6103. weight: math.unit(2000, "kg"),
  6104. name: "Upright",
  6105. image: {
  6106. source: "./media/characters/scott/upright.svg",
  6107. extra: 3881 / 3722,
  6108. bottom: 0.05
  6109. }
  6110. },
  6111. },
  6112. [
  6113. {
  6114. name: "Normal",
  6115. height: math.unit(12, "feet"),
  6116. default: true
  6117. },
  6118. ]
  6119. ))
  6120. characterMakers.push(() => makeCharacter(
  6121. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6122. {
  6123. side: {
  6124. height: math.unit(8, "meters"),
  6125. weight: math.unit(84755, "lbs"),
  6126. name: "Side",
  6127. image: {
  6128. source: "./media/characters/tobias/side.svg",
  6129. extra: 1474 / 1096,
  6130. bottom: 38.9 / 1513.1235
  6131. }
  6132. },
  6133. maw: {
  6134. height: math.unit(2.3, "meters"),
  6135. name: "Maw",
  6136. image: {
  6137. source: "./media/characters/tobias/maw.svg"
  6138. }
  6139. },
  6140. burp: {
  6141. height: math.unit(2.85, "meters"),
  6142. name: "Burp",
  6143. image: {
  6144. source: "./media/characters/tobias/burp.svg"
  6145. }
  6146. },
  6147. },
  6148. [
  6149. {
  6150. name: "Normal",
  6151. height: math.unit(8, "meters"),
  6152. default: true
  6153. },
  6154. ]
  6155. ))
  6156. characterMakers.push(() => makeCharacter(
  6157. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6158. {
  6159. front: {
  6160. height: math.unit(5.5, "feet"),
  6161. weight: math.unit(400, "lbs"),
  6162. name: "Front",
  6163. image: {
  6164. source: "./media/characters/kieran/front.svg",
  6165. extra: 2694 / 2364,
  6166. bottom: 217 / 2908
  6167. }
  6168. },
  6169. side: {
  6170. height: math.unit(5.5, "feet"),
  6171. weight: math.unit(400, "lbs"),
  6172. name: "Side",
  6173. image: {
  6174. source: "./media/characters/kieran/side.svg",
  6175. extra: 875 / 777,
  6176. bottom: 84.6 / 959
  6177. }
  6178. },
  6179. },
  6180. [
  6181. {
  6182. name: "Normal",
  6183. height: math.unit(5.5, "feet"),
  6184. default: true
  6185. },
  6186. ]
  6187. ))
  6188. characterMakers.push(() => makeCharacter(
  6189. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6190. {
  6191. side: {
  6192. height: math.unit(2, "meters"),
  6193. weight: math.unit(70, "kg"),
  6194. name: "Side",
  6195. image: {
  6196. source: "./media/characters/sanya/side.svg",
  6197. bottom: 0.02,
  6198. extra: 1.02
  6199. }
  6200. },
  6201. },
  6202. [
  6203. {
  6204. name: "Small",
  6205. height: math.unit(2, "meters")
  6206. },
  6207. {
  6208. name: "Normal",
  6209. height: math.unit(3, "meters")
  6210. },
  6211. {
  6212. name: "Macro",
  6213. height: math.unit(16, "meters"),
  6214. default: true
  6215. },
  6216. ]
  6217. ))
  6218. characterMakers.push(() => makeCharacter(
  6219. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6220. {
  6221. front: {
  6222. height: math.unit(2, "meters"),
  6223. weight: math.unit(120, "kg"),
  6224. name: "Front",
  6225. image: {
  6226. source: "./media/characters/miranda/front.svg",
  6227. extra: 195 / 185,
  6228. bottom: 10.9 / 206.5
  6229. }
  6230. },
  6231. back: {
  6232. height: math.unit(2, "meters"),
  6233. weight: math.unit(120, "kg"),
  6234. name: "Back",
  6235. image: {
  6236. source: "./media/characters/miranda/back.svg",
  6237. extra: 201 / 193,
  6238. bottom: 2.3 / 203.7
  6239. }
  6240. },
  6241. },
  6242. [
  6243. {
  6244. name: "Normal",
  6245. height: math.unit(10, "feet"),
  6246. default: true
  6247. }
  6248. ]
  6249. ))
  6250. characterMakers.push(() => makeCharacter(
  6251. { name: "James", species: ["deer"], tags: ["anthro"] },
  6252. {
  6253. side: {
  6254. height: math.unit(2, "meters"),
  6255. weight: math.unit(100, "kg"),
  6256. name: "Front",
  6257. image: {
  6258. source: "./media/characters/james/front.svg",
  6259. extra: 10 / 8.5
  6260. }
  6261. },
  6262. },
  6263. [
  6264. {
  6265. name: "Normal",
  6266. height: math.unit(8.5, "feet"),
  6267. default: true
  6268. }
  6269. ]
  6270. ))
  6271. characterMakers.push(() => makeCharacter(
  6272. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6273. {
  6274. side: {
  6275. height: math.unit(9.5, "feet"),
  6276. weight: math.unit(2500, "lbs"),
  6277. name: "Side",
  6278. image: {
  6279. source: "./media/characters/heather/side.svg"
  6280. }
  6281. },
  6282. },
  6283. [
  6284. {
  6285. name: "Normal",
  6286. height: math.unit(9.5, "feet"),
  6287. default: true
  6288. }
  6289. ]
  6290. ))
  6291. characterMakers.push(() => makeCharacter(
  6292. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6293. {
  6294. side: {
  6295. height: math.unit(6.5, "feet"),
  6296. weight: math.unit(400, "lbs"),
  6297. name: "Side",
  6298. image: {
  6299. source: "./media/characters/lukas/side.svg",
  6300. extra: 7.25 / 6.5
  6301. }
  6302. },
  6303. },
  6304. [
  6305. {
  6306. name: "Normal",
  6307. height: math.unit(6.5, "feet"),
  6308. default: true
  6309. }
  6310. ]
  6311. ))
  6312. characterMakers.push(() => makeCharacter(
  6313. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6314. {
  6315. side: {
  6316. height: math.unit(5, "feet"),
  6317. weight: math.unit(3000, "lbs"),
  6318. name: "Side",
  6319. image: {
  6320. source: "./media/characters/louise/side.svg"
  6321. }
  6322. },
  6323. },
  6324. [
  6325. {
  6326. name: "Normal",
  6327. height: math.unit(5, "feet"),
  6328. default: true
  6329. }
  6330. ]
  6331. ))
  6332. characterMakers.push(() => makeCharacter(
  6333. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6334. {
  6335. side: {
  6336. height: math.unit(6, "feet"),
  6337. weight: math.unit(150, "lbs"),
  6338. name: "Side",
  6339. image: {
  6340. source: "./media/characters/ramona/side.svg",
  6341. extra: 871/854,
  6342. bottom: 41/912
  6343. }
  6344. },
  6345. },
  6346. [
  6347. {
  6348. name: "Normal",
  6349. height: math.unit(6 + 4/12, "feet")
  6350. },
  6351. {
  6352. name: "Minimacro",
  6353. height: math.unit(5.3, "meters"),
  6354. default: true
  6355. },
  6356. {
  6357. name: "Macro",
  6358. height: math.unit(20, "stories")
  6359. },
  6360. {
  6361. name: "Macro+",
  6362. height: math.unit(50, "stories")
  6363. },
  6364. ]
  6365. ))
  6366. characterMakers.push(() => makeCharacter(
  6367. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6368. {
  6369. standing: {
  6370. height: math.unit(5.75, "feet"),
  6371. weight: math.unit(160, "lbs"),
  6372. name: "Standing",
  6373. image: {
  6374. source: "./media/characters/deerpuff/standing.svg",
  6375. extra: 682 / 624
  6376. }
  6377. },
  6378. sitting: {
  6379. height: math.unit(5.75 / 1.79, "feet"),
  6380. weight: math.unit(160, "lbs"),
  6381. name: "Sitting",
  6382. image: {
  6383. source: "./media/characters/deerpuff/sitting.svg",
  6384. bottom: 44 / 400,
  6385. extra: 1
  6386. }
  6387. },
  6388. taurLaying: {
  6389. height: math.unit(6, "feet"),
  6390. weight: math.unit(400, "lbs"),
  6391. name: "Taur (Laying)",
  6392. image: {
  6393. source: "./media/characters/deerpuff/taur-laying.svg"
  6394. }
  6395. },
  6396. },
  6397. [
  6398. {
  6399. name: "Puffball",
  6400. height: math.unit(6, "inches")
  6401. },
  6402. {
  6403. name: "Normalpuff",
  6404. height: math.unit(5.75, "feet")
  6405. },
  6406. {
  6407. name: "Macropuff",
  6408. height: math.unit(1500, "feet"),
  6409. default: true
  6410. },
  6411. {
  6412. name: "Megapuff",
  6413. height: math.unit(500, "miles")
  6414. },
  6415. {
  6416. name: "Gigapuff",
  6417. height: math.unit(250000, "miles")
  6418. },
  6419. {
  6420. name: "Omegapuff",
  6421. height: math.unit(1000, "lightyears")
  6422. },
  6423. ]
  6424. ))
  6425. characterMakers.push(() => makeCharacter(
  6426. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6427. {
  6428. stomping: {
  6429. height: math.unit(6, "feet"),
  6430. weight: math.unit(170, "lbs"),
  6431. name: "Stomping",
  6432. image: {
  6433. source: "./media/characters/vivian/stomping.svg"
  6434. }
  6435. },
  6436. sitting: {
  6437. height: math.unit(6 / 1.75, "feet"),
  6438. weight: math.unit(170, "lbs"),
  6439. name: "Sitting",
  6440. image: {
  6441. source: "./media/characters/vivian/sitting.svg",
  6442. bottom: 1 / 6.4,
  6443. extra: 1,
  6444. }
  6445. },
  6446. },
  6447. [
  6448. {
  6449. name: "Normal",
  6450. height: math.unit(7, "feet"),
  6451. default: true
  6452. },
  6453. {
  6454. name: "Macro",
  6455. height: math.unit(10, "stories")
  6456. },
  6457. {
  6458. name: "Macro+",
  6459. height: math.unit(30, "stories")
  6460. },
  6461. {
  6462. name: "Megamacro",
  6463. height: math.unit(10, "miles")
  6464. },
  6465. {
  6466. name: "Megamacro+",
  6467. height: math.unit(2750000, "meters")
  6468. },
  6469. ]
  6470. ))
  6471. characterMakers.push(() => makeCharacter(
  6472. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6473. {
  6474. front: {
  6475. height: math.unit(6, "feet"),
  6476. weight: math.unit(160, "lbs"),
  6477. name: "Front",
  6478. image: {
  6479. source: "./media/characters/prince/front.svg",
  6480. extra: 1938/1682,
  6481. bottom: 45/1983
  6482. }
  6483. },
  6484. back: {
  6485. height: math.unit(6, "feet"),
  6486. weight: math.unit(160, "lbs"),
  6487. name: "Back",
  6488. image: {
  6489. source: "./media/characters/prince/back.svg",
  6490. extra: 1955/1726,
  6491. bottom: 6/1961
  6492. }
  6493. },
  6494. },
  6495. [
  6496. {
  6497. name: "Normal",
  6498. height: math.unit(7.75, "feet"),
  6499. default: true
  6500. },
  6501. {
  6502. name: "Not cute",
  6503. height: math.unit(17, "feet")
  6504. },
  6505. {
  6506. name: "I said NOT",
  6507. height: math.unit(91, "feet")
  6508. },
  6509. {
  6510. name: "Please stop",
  6511. height: math.unit(560, "feet")
  6512. },
  6513. {
  6514. name: "What have you done",
  6515. height: math.unit(2200, "feet")
  6516. },
  6517. {
  6518. name: "Deer God",
  6519. height: math.unit(3.6, "miles")
  6520. },
  6521. ]
  6522. ))
  6523. characterMakers.push(() => makeCharacter(
  6524. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6525. {
  6526. standing: {
  6527. height: math.unit(6, "feet"),
  6528. weight: math.unit(300, "lbs"),
  6529. name: "Standing",
  6530. image: {
  6531. source: "./media/characters/psymon/standing.svg",
  6532. extra: 1888 / 1810,
  6533. bottom: 0.05
  6534. }
  6535. },
  6536. slithering: {
  6537. height: math.unit(6, "feet"),
  6538. weight: math.unit(300, "lbs"),
  6539. name: "Slithering",
  6540. image: {
  6541. source: "./media/characters/psymon/slithering.svg",
  6542. extra: 1330 / 1224
  6543. }
  6544. },
  6545. slitheringAlt: {
  6546. height: math.unit(6, "feet"),
  6547. weight: math.unit(300, "lbs"),
  6548. name: "Slithering (Alt)",
  6549. image: {
  6550. source: "./media/characters/psymon/slithering-alt.svg",
  6551. extra: 1330 / 1224
  6552. }
  6553. },
  6554. },
  6555. [
  6556. {
  6557. name: "Normal",
  6558. height: math.unit(11.25, "feet"),
  6559. default: true
  6560. },
  6561. {
  6562. name: "Large",
  6563. height: math.unit(27, "feet")
  6564. },
  6565. {
  6566. name: "Giant",
  6567. height: math.unit(87, "feet")
  6568. },
  6569. {
  6570. name: "Macro",
  6571. height: math.unit(365, "feet")
  6572. },
  6573. {
  6574. name: "Megamacro",
  6575. height: math.unit(3, "miles")
  6576. },
  6577. {
  6578. name: "World Serpent",
  6579. height: math.unit(8000, "miles")
  6580. },
  6581. ]
  6582. ))
  6583. characterMakers.push(() => makeCharacter(
  6584. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6585. {
  6586. front: {
  6587. height: math.unit(6, "feet"),
  6588. weight: math.unit(180, "lbs"),
  6589. name: "Front",
  6590. image: {
  6591. source: "./media/characters/daimos/front.svg",
  6592. extra: 4160 / 3897,
  6593. bottom: 0.021
  6594. }
  6595. }
  6596. },
  6597. [
  6598. {
  6599. name: "Normal",
  6600. height: math.unit(8, "feet"),
  6601. default: true
  6602. },
  6603. {
  6604. name: "Big Dog",
  6605. height: math.unit(22, "feet")
  6606. },
  6607. {
  6608. name: "Macro",
  6609. height: math.unit(127, "feet")
  6610. },
  6611. {
  6612. name: "Megamacro",
  6613. height: math.unit(3600, "feet")
  6614. },
  6615. ]
  6616. ))
  6617. characterMakers.push(() => makeCharacter(
  6618. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6619. {
  6620. side: {
  6621. height: math.unit(6, "feet"),
  6622. weight: math.unit(180, "lbs"),
  6623. name: "Side",
  6624. image: {
  6625. source: "./media/characters/blake/side.svg",
  6626. extra: 1212 / 1120,
  6627. bottom: 0.05
  6628. }
  6629. },
  6630. crouched: {
  6631. height: math.unit(6 * 0.57, "feet"),
  6632. weight: math.unit(180, "lbs"),
  6633. name: "Crouched",
  6634. image: {
  6635. source: "./media/characters/blake/crouched.svg",
  6636. extra: 840 / 587,
  6637. bottom: 0.04
  6638. }
  6639. },
  6640. bent: {
  6641. height: math.unit(6 * 0.75, "feet"),
  6642. weight: math.unit(180, "lbs"),
  6643. name: "Bent",
  6644. image: {
  6645. source: "./media/characters/blake/bent.svg",
  6646. extra: 592 / 544,
  6647. bottom: 0.035
  6648. }
  6649. },
  6650. },
  6651. [
  6652. {
  6653. name: "Normal",
  6654. height: math.unit(8 + 1 / 6, "feet"),
  6655. default: true
  6656. },
  6657. {
  6658. name: "Big Backside",
  6659. height: math.unit(37, "feet")
  6660. },
  6661. {
  6662. name: "Subway Shredder",
  6663. height: math.unit(72, "feet")
  6664. },
  6665. {
  6666. name: "City Carver",
  6667. height: math.unit(1675, "feet")
  6668. },
  6669. {
  6670. name: "Tectonic Tweaker",
  6671. height: math.unit(2300, "miles")
  6672. },
  6673. ]
  6674. ))
  6675. characterMakers.push(() => makeCharacter(
  6676. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6677. {
  6678. front: {
  6679. height: math.unit(6, "feet"),
  6680. weight: math.unit(180, "lbs"),
  6681. name: "Front",
  6682. image: {
  6683. source: "./media/characters/guisetto/front.svg",
  6684. extra: 856 / 817,
  6685. bottom: 0.06
  6686. }
  6687. },
  6688. airborne: {
  6689. height: math.unit(6, "feet"),
  6690. weight: math.unit(180, "lbs"),
  6691. name: "Airborne",
  6692. image: {
  6693. source: "./media/characters/guisetto/airborne.svg",
  6694. extra: 584 / 525
  6695. }
  6696. },
  6697. },
  6698. [
  6699. {
  6700. name: "Normal",
  6701. height: math.unit(10 + 11 / 12, "feet"),
  6702. default: true
  6703. },
  6704. {
  6705. name: "Large",
  6706. height: math.unit(35, "feet")
  6707. },
  6708. {
  6709. name: "Macro",
  6710. height: math.unit(475, "feet")
  6711. },
  6712. ]
  6713. ))
  6714. characterMakers.push(() => makeCharacter(
  6715. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6716. {
  6717. front: {
  6718. height: math.unit(6, "feet"),
  6719. weight: math.unit(180, "lbs"),
  6720. name: "Front",
  6721. image: {
  6722. source: "./media/characters/luxor/front.svg",
  6723. extra: 2940 / 2152
  6724. }
  6725. },
  6726. back: {
  6727. height: math.unit(6, "feet"),
  6728. weight: math.unit(180, "lbs"),
  6729. name: "Back",
  6730. image: {
  6731. source: "./media/characters/luxor/back.svg",
  6732. extra: 1083 / 960
  6733. }
  6734. },
  6735. },
  6736. [
  6737. {
  6738. name: "Normal",
  6739. height: math.unit(5 + 5 / 6, "feet"),
  6740. default: true
  6741. },
  6742. {
  6743. name: "Lamp",
  6744. height: math.unit(50, "feet")
  6745. },
  6746. {
  6747. name: "Lämp",
  6748. height: math.unit(300, "feet")
  6749. },
  6750. {
  6751. name: "The sun is a lamp",
  6752. height: math.unit(250000, "miles")
  6753. },
  6754. ]
  6755. ))
  6756. characterMakers.push(() => makeCharacter(
  6757. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6758. {
  6759. front: {
  6760. height: math.unit(6, "feet"),
  6761. weight: math.unit(50, "lbs"),
  6762. name: "Front",
  6763. image: {
  6764. source: "./media/characters/huoyan/front.svg"
  6765. }
  6766. },
  6767. side: {
  6768. height: math.unit(6, "feet"),
  6769. weight: math.unit(180, "lbs"),
  6770. name: "Side",
  6771. image: {
  6772. source: "./media/characters/huoyan/side.svg"
  6773. }
  6774. },
  6775. },
  6776. [
  6777. {
  6778. name: "Chef",
  6779. height: math.unit(9, "feet")
  6780. },
  6781. {
  6782. name: "Normal",
  6783. height: math.unit(65, "feet"),
  6784. default: true
  6785. },
  6786. {
  6787. name: "Macro",
  6788. height: math.unit(780, "feet")
  6789. },
  6790. {
  6791. name: "Flaming Mountain",
  6792. height: math.unit(4.8, "miles")
  6793. },
  6794. {
  6795. name: "Celestial",
  6796. height: math.unit(765000, "miles")
  6797. },
  6798. ]
  6799. ))
  6800. characterMakers.push(() => makeCharacter(
  6801. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6802. {
  6803. front: {
  6804. height: math.unit(5 + 3 / 4, "feet"),
  6805. weight: math.unit(120, "lbs"),
  6806. name: "Front",
  6807. image: {
  6808. source: "./media/characters/tails/front.svg"
  6809. }
  6810. }
  6811. },
  6812. [
  6813. {
  6814. name: "Normal",
  6815. height: math.unit(5 + 3 / 4, "feet"),
  6816. default: true
  6817. }
  6818. ]
  6819. ))
  6820. characterMakers.push(() => makeCharacter(
  6821. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6822. {
  6823. front: {
  6824. height: math.unit(4, "feet"),
  6825. weight: math.unit(50, "lbs"),
  6826. name: "Front",
  6827. image: {
  6828. source: "./media/characters/rainy/front.svg"
  6829. }
  6830. }
  6831. },
  6832. [
  6833. {
  6834. name: "Macro",
  6835. height: math.unit(800, "feet"),
  6836. default: true
  6837. }
  6838. ]
  6839. ))
  6840. characterMakers.push(() => makeCharacter(
  6841. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6842. {
  6843. front: {
  6844. height: math.unit(6, "feet"),
  6845. weight: math.unit(150, "lbs"),
  6846. name: "Front",
  6847. image: {
  6848. source: "./media/characters/rainier/front.svg"
  6849. }
  6850. }
  6851. },
  6852. [
  6853. {
  6854. name: "Micro",
  6855. height: math.unit(2, "mm"),
  6856. default: true
  6857. }
  6858. ]
  6859. ))
  6860. characterMakers.push(() => makeCharacter(
  6861. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6862. {
  6863. front: {
  6864. height: math.unit(8 + 4/12, "feet"),
  6865. weight: math.unit(450, "kilograms"),
  6866. volume: math.unit(5, "cups"),
  6867. name: "Front",
  6868. image: {
  6869. source: "./media/characters/andy-renard/front.svg",
  6870. extra: 1839/1726,
  6871. bottom: 134/1973
  6872. }
  6873. },
  6874. back: {
  6875. height: math.unit(8 + 4/12, "feet"),
  6876. weight: math.unit(450, "kilograms"),
  6877. volume: math.unit(5, "cups"),
  6878. name: "Back",
  6879. image: {
  6880. source: "./media/characters/andy-renard/back.svg",
  6881. extra: 1838/1710,
  6882. bottom: 105/1943
  6883. }
  6884. },
  6885. },
  6886. [
  6887. {
  6888. name: "Tall",
  6889. height: math.unit(8 + 4/12, "feet")
  6890. },
  6891. {
  6892. name: "Mini Macro",
  6893. height: math.unit(15, "feet"),
  6894. default: true
  6895. },
  6896. {
  6897. name: "Macro",
  6898. height: math.unit(100, "feet")
  6899. },
  6900. {
  6901. name: "Mega Macro",
  6902. height: math.unit(1000, "feet")
  6903. },
  6904. {
  6905. name: "Giga Macro",
  6906. height: math.unit(10, "miles")
  6907. },
  6908. {
  6909. name: "God Macro",
  6910. height: math.unit(1, "multiverse")
  6911. },
  6912. ]
  6913. ))
  6914. characterMakers.push(() => makeCharacter(
  6915. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6916. {
  6917. front: {
  6918. height: math.unit(6, "feet"),
  6919. weight: math.unit(210, "lbs"),
  6920. name: "Front",
  6921. image: {
  6922. source: "./media/characters/cimmaron/front-sfw.svg",
  6923. extra: 701 / 676,
  6924. bottom: 0.046
  6925. }
  6926. },
  6927. back: {
  6928. height: math.unit(6, "feet"),
  6929. weight: math.unit(210, "lbs"),
  6930. name: "Back",
  6931. image: {
  6932. source: "./media/characters/cimmaron/back-sfw.svg",
  6933. extra: 701 / 676,
  6934. bottom: 0.046
  6935. }
  6936. },
  6937. frontNsfw: {
  6938. height: math.unit(6, "feet"),
  6939. weight: math.unit(210, "lbs"),
  6940. name: "Front (NSFW)",
  6941. image: {
  6942. source: "./media/characters/cimmaron/front-nsfw.svg",
  6943. extra: 701 / 676,
  6944. bottom: 0.046
  6945. }
  6946. },
  6947. backNsfw: {
  6948. height: math.unit(6, "feet"),
  6949. weight: math.unit(210, "lbs"),
  6950. name: "Back (NSFW)",
  6951. image: {
  6952. source: "./media/characters/cimmaron/back-nsfw.svg",
  6953. extra: 701 / 676,
  6954. bottom: 0.046
  6955. }
  6956. },
  6957. dick: {
  6958. height: math.unit(1.714, "feet"),
  6959. name: "Dick",
  6960. image: {
  6961. source: "./media/characters/cimmaron/dick.svg"
  6962. }
  6963. },
  6964. },
  6965. [
  6966. {
  6967. name: "Normal",
  6968. height: math.unit(6, "feet"),
  6969. default: true
  6970. },
  6971. {
  6972. name: "Macro Mayor",
  6973. height: math.unit(350, "meters")
  6974. },
  6975. ]
  6976. ))
  6977. characterMakers.push(() => makeCharacter(
  6978. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6979. {
  6980. front: {
  6981. height: math.unit(6, "feet"),
  6982. weight: math.unit(200, "lbs"),
  6983. name: "Front",
  6984. image: {
  6985. source: "./media/characters/akari/front.svg",
  6986. extra: 962 / 901,
  6987. bottom: 0.04
  6988. }
  6989. }
  6990. },
  6991. [
  6992. {
  6993. name: "Micro",
  6994. height: math.unit(5, "inches"),
  6995. default: true
  6996. },
  6997. {
  6998. name: "Normal",
  6999. height: math.unit(7, "feet")
  7000. },
  7001. ]
  7002. ))
  7003. characterMakers.push(() => makeCharacter(
  7004. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7005. {
  7006. front: {
  7007. height: math.unit(6, "feet"),
  7008. weight: math.unit(140, "lbs"),
  7009. name: "Front",
  7010. image: {
  7011. source: "./media/characters/cynosura/front.svg",
  7012. extra: 437/410,
  7013. bottom: 9/446
  7014. }
  7015. },
  7016. back: {
  7017. height: math.unit(6, "feet"),
  7018. weight: math.unit(140, "lbs"),
  7019. name: "Back",
  7020. image: {
  7021. source: "./media/characters/cynosura/back.svg",
  7022. extra: 1304/1160,
  7023. bottom: 71/1375
  7024. }
  7025. },
  7026. },
  7027. [
  7028. {
  7029. name: "Micro",
  7030. height: math.unit(4, "inches")
  7031. },
  7032. {
  7033. name: "Normal",
  7034. height: math.unit(5.75, "feet"),
  7035. default: true
  7036. },
  7037. {
  7038. name: "Tall",
  7039. height: math.unit(10, "feet")
  7040. },
  7041. {
  7042. name: "Big",
  7043. height: math.unit(20, "feet")
  7044. },
  7045. {
  7046. name: "Macro",
  7047. height: math.unit(50, "feet")
  7048. },
  7049. ]
  7050. ))
  7051. characterMakers.push(() => makeCharacter(
  7052. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7053. {
  7054. front: {
  7055. height: math.unit(13 + 2/12, "feet"),
  7056. weight: math.unit(800, "kg"),
  7057. name: "Front",
  7058. image: {
  7059. source: "./media/characters/gin/front.svg",
  7060. extra: 1312/1191,
  7061. bottom: 45/1357
  7062. }
  7063. },
  7064. mouth: {
  7065. height: math.unit(2.39 * 1.8, "feet"),
  7066. name: "Mouth",
  7067. image: {
  7068. source: "./media/characters/gin/mouth.svg"
  7069. }
  7070. },
  7071. hand: {
  7072. height: math.unit(1.57 * 2.19, "feet"),
  7073. name: "Hand",
  7074. image: {
  7075. source: "./media/characters/gin/hand.svg"
  7076. }
  7077. },
  7078. foot: {
  7079. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7080. name: "Foot",
  7081. image: {
  7082. source: "./media/characters/gin/foot.svg"
  7083. }
  7084. },
  7085. sole: {
  7086. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7087. name: "Sole",
  7088. image: {
  7089. source: "./media/characters/gin/sole.svg"
  7090. }
  7091. },
  7092. },
  7093. [
  7094. {
  7095. name: "Very Small",
  7096. height: math.unit(13 + 2 / 12, "feet")
  7097. },
  7098. {
  7099. name: "Micro",
  7100. height: math.unit(600, "miles")
  7101. },
  7102. {
  7103. name: "Regular",
  7104. height: math.unit(20, "earths"),
  7105. default: true
  7106. },
  7107. {
  7108. name: "Macro",
  7109. height: math.unit(2.2, "solarradii")
  7110. },
  7111. {
  7112. name: "Teramacro",
  7113. height: math.unit(1.2, "galaxies")
  7114. },
  7115. {
  7116. name: "Omegamacro",
  7117. height: math.unit(200, "universes")
  7118. },
  7119. ]
  7120. ))
  7121. characterMakers.push(() => makeCharacter(
  7122. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7123. {
  7124. front: {
  7125. height: math.unit(6 + 1 / 6, "feet"),
  7126. weight: math.unit(178, "lbs"),
  7127. name: "Front",
  7128. image: {
  7129. source: "./media/characters/guy/front.svg"
  7130. }
  7131. }
  7132. },
  7133. [
  7134. {
  7135. name: "Normal",
  7136. height: math.unit(6 + 1 / 6, "feet"),
  7137. default: true
  7138. },
  7139. {
  7140. name: "Large",
  7141. height: math.unit(25 + 7 / 12, "feet")
  7142. },
  7143. {
  7144. name: "Macro",
  7145. height: math.unit(60 + 9 / 12, "feet")
  7146. },
  7147. {
  7148. name: "Macro+",
  7149. height: math.unit(246, "feet")
  7150. },
  7151. {
  7152. name: "Macro++",
  7153. height: math.unit(878, "feet")
  7154. }
  7155. ]
  7156. ))
  7157. characterMakers.push(() => makeCharacter(
  7158. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7159. {
  7160. front: {
  7161. height: math.unit(9, "feet"),
  7162. weight: math.unit(800, "lbs"),
  7163. name: "Front",
  7164. image: {
  7165. source: "./media/characters/tiberius/front.svg",
  7166. extra: 2295 / 2071
  7167. }
  7168. },
  7169. back: {
  7170. height: math.unit(9, "feet"),
  7171. weight: math.unit(800, "lbs"),
  7172. name: "Back",
  7173. image: {
  7174. source: "./media/characters/tiberius/back.svg",
  7175. extra: 2373 / 2160
  7176. }
  7177. },
  7178. },
  7179. [
  7180. {
  7181. name: "Normal",
  7182. height: math.unit(9, "feet"),
  7183. default: true
  7184. }
  7185. ]
  7186. ))
  7187. characterMakers.push(() => makeCharacter(
  7188. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7189. {
  7190. front: {
  7191. height: math.unit(6, "feet"),
  7192. weight: math.unit(600, "lbs"),
  7193. name: "Front",
  7194. image: {
  7195. source: "./media/characters/surgo/front.svg",
  7196. extra: 3591 / 2227
  7197. }
  7198. },
  7199. back: {
  7200. height: math.unit(6, "feet"),
  7201. weight: math.unit(600, "lbs"),
  7202. name: "Back",
  7203. image: {
  7204. source: "./media/characters/surgo/back.svg",
  7205. extra: 3557 / 2228
  7206. }
  7207. },
  7208. laying: {
  7209. height: math.unit(6 * 0.85, "feet"),
  7210. weight: math.unit(600, "lbs"),
  7211. name: "Laying",
  7212. image: {
  7213. source: "./media/characters/surgo/laying.svg"
  7214. }
  7215. },
  7216. },
  7217. [
  7218. {
  7219. name: "Normal",
  7220. height: math.unit(6, "feet"),
  7221. default: true
  7222. }
  7223. ]
  7224. ))
  7225. characterMakers.push(() => makeCharacter(
  7226. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7227. {
  7228. side: {
  7229. height: math.unit(6, "feet"),
  7230. weight: math.unit(150, "lbs"),
  7231. name: "Side",
  7232. image: {
  7233. source: "./media/characters/cibus/side.svg",
  7234. extra: 800 / 400
  7235. }
  7236. },
  7237. },
  7238. [
  7239. {
  7240. name: "Normal",
  7241. height: math.unit(6, "feet"),
  7242. default: true
  7243. }
  7244. ]
  7245. ))
  7246. characterMakers.push(() => makeCharacter(
  7247. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7248. {
  7249. front: {
  7250. height: math.unit(6, "feet"),
  7251. weight: math.unit(240, "lbs"),
  7252. name: "Front",
  7253. image: {
  7254. source: "./media/characters/nibbles/front.svg"
  7255. }
  7256. },
  7257. side: {
  7258. height: math.unit(6, "feet"),
  7259. weight: math.unit(240, "lbs"),
  7260. name: "Side",
  7261. image: {
  7262. source: "./media/characters/nibbles/side.svg"
  7263. }
  7264. },
  7265. },
  7266. [
  7267. {
  7268. name: "Normal",
  7269. height: math.unit(9, "feet"),
  7270. default: true
  7271. }
  7272. ]
  7273. ))
  7274. characterMakers.push(() => makeCharacter(
  7275. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7276. {
  7277. side: {
  7278. height: math.unit(5 + 1 / 6, "feet"),
  7279. weight: math.unit(130, "lbs"),
  7280. name: "Side",
  7281. image: {
  7282. source: "./media/characters/rikky/side.svg",
  7283. extra: 851 / 801
  7284. }
  7285. },
  7286. },
  7287. [
  7288. {
  7289. name: "Normal",
  7290. height: math.unit(5 + 1 / 6, "feet")
  7291. },
  7292. {
  7293. name: "Macro",
  7294. height: math.unit(152, "feet"),
  7295. default: true
  7296. },
  7297. {
  7298. name: "Megamacro",
  7299. height: math.unit(7, "miles")
  7300. }
  7301. ]
  7302. ))
  7303. characterMakers.push(() => makeCharacter(
  7304. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7305. {
  7306. side: {
  7307. height: math.unit(370, "cm"),
  7308. weight: math.unit(350, "lbs"),
  7309. name: "Side",
  7310. image: {
  7311. source: "./media/characters/malfressa/side.svg"
  7312. }
  7313. },
  7314. walking: {
  7315. height: math.unit(370, "cm"),
  7316. weight: math.unit(350, "lbs"),
  7317. name: "Walking",
  7318. image: {
  7319. source: "./media/characters/malfressa/walking.svg"
  7320. }
  7321. },
  7322. feral: {
  7323. height: math.unit(2500, "cm"),
  7324. weight: math.unit(100000, "lbs"),
  7325. name: "Feral",
  7326. image: {
  7327. source: "./media/characters/malfressa/feral.svg",
  7328. extra: 2108 / 837,
  7329. bottom: 0.02
  7330. }
  7331. },
  7332. },
  7333. [
  7334. {
  7335. name: "Normal",
  7336. height: math.unit(370, "cm")
  7337. },
  7338. {
  7339. name: "Macro",
  7340. height: math.unit(300, "meters"),
  7341. default: true
  7342. }
  7343. ]
  7344. ))
  7345. characterMakers.push(() => makeCharacter(
  7346. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7347. {
  7348. front: {
  7349. height: math.unit(6, "feet"),
  7350. weight: math.unit(60, "kg"),
  7351. name: "Front",
  7352. image: {
  7353. source: "./media/characters/jaro/front.svg",
  7354. extra: 845/817,
  7355. bottom: 45/890
  7356. }
  7357. },
  7358. back: {
  7359. height: math.unit(6, "feet"),
  7360. weight: math.unit(60, "kg"),
  7361. name: "Back",
  7362. image: {
  7363. source: "./media/characters/jaro/back.svg",
  7364. extra: 847/817,
  7365. bottom: 34/881
  7366. }
  7367. },
  7368. },
  7369. [
  7370. {
  7371. name: "Micro",
  7372. height: math.unit(7, "inches")
  7373. },
  7374. {
  7375. name: "Normal",
  7376. height: math.unit(5.5, "feet"),
  7377. default: true
  7378. },
  7379. {
  7380. name: "Minimacro",
  7381. height: math.unit(20, "feet")
  7382. },
  7383. {
  7384. name: "Macro",
  7385. height: math.unit(200, "meters")
  7386. }
  7387. ]
  7388. ))
  7389. characterMakers.push(() => makeCharacter(
  7390. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7391. {
  7392. front: {
  7393. height: math.unit(6, "feet"),
  7394. weight: math.unit(195, "lb"),
  7395. name: "Front",
  7396. image: {
  7397. source: "./media/characters/rogue/front.svg"
  7398. }
  7399. },
  7400. },
  7401. [
  7402. {
  7403. name: "Macro",
  7404. height: math.unit(90, "feet"),
  7405. default: true
  7406. },
  7407. ]
  7408. ))
  7409. characterMakers.push(() => makeCharacter(
  7410. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7411. {
  7412. standing: {
  7413. height: math.unit(5 + 8 / 12, "feet"),
  7414. weight: math.unit(140, "lb"),
  7415. name: "Standing",
  7416. image: {
  7417. source: "./media/characters/piper/standing.svg",
  7418. extra: 1440/1284,
  7419. bottom: 66/1506
  7420. }
  7421. },
  7422. running: {
  7423. height: math.unit(5 + 8 / 12, "feet"),
  7424. weight: math.unit(140, "lb"),
  7425. name: "Running",
  7426. image: {
  7427. source: "./media/characters/piper/running.svg",
  7428. extra: 3948/3655,
  7429. bottom: 0/3948
  7430. }
  7431. },
  7432. sole: {
  7433. height: math.unit(0.81, "feet"),
  7434. weight: math.unit(2, "kg"),
  7435. name: "Sole",
  7436. image: {
  7437. source: "./media/characters/piper/sole.svg"
  7438. }
  7439. },
  7440. nipple: {
  7441. height: math.unit(0.25, "feet"),
  7442. weight: math.unit(1.5, "lb"),
  7443. name: "Nipple",
  7444. image: {
  7445. source: "./media/characters/piper/nipple.svg"
  7446. }
  7447. },
  7448. head: {
  7449. height: math.unit(1.1, "feet"),
  7450. name: "Head",
  7451. image: {
  7452. source: "./media/characters/piper/head.svg"
  7453. }
  7454. },
  7455. },
  7456. [
  7457. {
  7458. name: "Micro",
  7459. height: math.unit(2, "inches")
  7460. },
  7461. {
  7462. name: "Normal",
  7463. height: math.unit(5 + 8 / 12, "feet")
  7464. },
  7465. {
  7466. name: "Macro",
  7467. height: math.unit(250, "feet"),
  7468. default: true
  7469. },
  7470. {
  7471. name: "Megamacro",
  7472. height: math.unit(7, "miles")
  7473. },
  7474. ]
  7475. ))
  7476. characterMakers.push(() => makeCharacter(
  7477. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7478. {
  7479. front: {
  7480. height: math.unit(6, "feet"),
  7481. weight: math.unit(220, "lb"),
  7482. name: "Front",
  7483. image: {
  7484. source: "./media/characters/gemini/front.svg"
  7485. }
  7486. },
  7487. back: {
  7488. height: math.unit(6, "feet"),
  7489. weight: math.unit(220, "lb"),
  7490. name: "Back",
  7491. image: {
  7492. source: "./media/characters/gemini/back.svg"
  7493. }
  7494. },
  7495. kneeling: {
  7496. height: math.unit(6 / 1.5, "feet"),
  7497. weight: math.unit(220, "lb"),
  7498. name: "Kneeling",
  7499. image: {
  7500. source: "./media/characters/gemini/kneeling.svg",
  7501. bottom: 0.02
  7502. }
  7503. },
  7504. },
  7505. [
  7506. {
  7507. name: "Macro",
  7508. height: math.unit(300, "meters"),
  7509. default: true
  7510. },
  7511. {
  7512. name: "Megamacro",
  7513. height: math.unit(6900, "meters")
  7514. },
  7515. ]
  7516. ))
  7517. characterMakers.push(() => makeCharacter(
  7518. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7519. {
  7520. anthro: {
  7521. height: math.unit(2.35, "meters"),
  7522. weight: math.unit(73, "kg"),
  7523. name: "Anthro",
  7524. image: {
  7525. source: "./media/characters/alicia/anthro.svg",
  7526. extra: 2571 / 2385,
  7527. bottom: 75 / 2648
  7528. }
  7529. },
  7530. paw: {
  7531. height: math.unit(1.32, "feet"),
  7532. name: "Paw",
  7533. image: {
  7534. source: "./media/characters/alicia/paw.svg"
  7535. }
  7536. },
  7537. feral: {
  7538. height: math.unit(1.69, "meters"),
  7539. weight: math.unit(73, "kg"),
  7540. name: "Feral",
  7541. image: {
  7542. source: "./media/characters/alicia/feral.svg",
  7543. extra: 2123 / 1715,
  7544. bottom: 222 / 2349
  7545. }
  7546. },
  7547. },
  7548. [
  7549. {
  7550. name: "Normal",
  7551. height: math.unit(2.35, "meters")
  7552. },
  7553. {
  7554. name: "Macro",
  7555. height: math.unit(60, "meters"),
  7556. default: true
  7557. },
  7558. {
  7559. name: "Megamacro",
  7560. height: math.unit(10000, "kilometers")
  7561. },
  7562. ]
  7563. ))
  7564. characterMakers.push(() => makeCharacter(
  7565. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7566. {
  7567. front: {
  7568. height: math.unit(7, "feet"),
  7569. weight: math.unit(250, "lbs"),
  7570. name: "Front",
  7571. image: {
  7572. source: "./media/characters/archy/front.svg"
  7573. }
  7574. }
  7575. },
  7576. [
  7577. {
  7578. name: "Micro",
  7579. height: math.unit(1, "inch")
  7580. },
  7581. {
  7582. name: "Shorty",
  7583. height: math.unit(5, "feet")
  7584. },
  7585. {
  7586. name: "Normal",
  7587. height: math.unit(7, "feet")
  7588. },
  7589. {
  7590. name: "Macro",
  7591. height: math.unit(600, "meters"),
  7592. default: true
  7593. },
  7594. {
  7595. name: "Megamacro",
  7596. height: math.unit(1, "mile")
  7597. },
  7598. ]
  7599. ))
  7600. characterMakers.push(() => makeCharacter(
  7601. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7602. {
  7603. front: {
  7604. height: math.unit(1.65, "meters"),
  7605. weight: math.unit(74, "kg"),
  7606. name: "Front",
  7607. image: {
  7608. source: "./media/characters/berri/front.svg",
  7609. extra: 857 / 837,
  7610. bottom: 18 / 877
  7611. }
  7612. },
  7613. bum: {
  7614. height: math.unit(1.46, "feet"),
  7615. name: "Bum",
  7616. image: {
  7617. source: "./media/characters/berri/bum.svg"
  7618. }
  7619. },
  7620. mouth: {
  7621. height: math.unit(0.44, "feet"),
  7622. name: "Mouth",
  7623. image: {
  7624. source: "./media/characters/berri/mouth.svg"
  7625. }
  7626. },
  7627. paw: {
  7628. height: math.unit(0.826, "feet"),
  7629. name: "Paw",
  7630. image: {
  7631. source: "./media/characters/berri/paw.svg"
  7632. }
  7633. },
  7634. },
  7635. [
  7636. {
  7637. name: "Normal",
  7638. height: math.unit(1.65, "meters")
  7639. },
  7640. {
  7641. name: "Macro",
  7642. height: math.unit(60, "m"),
  7643. default: true
  7644. },
  7645. {
  7646. name: "Megamacro",
  7647. height: math.unit(9.213, "km")
  7648. },
  7649. {
  7650. name: "Planet Eater",
  7651. height: math.unit(489, "megameters")
  7652. },
  7653. {
  7654. name: "Teramacro",
  7655. height: math.unit(2471635000000, "meters")
  7656. },
  7657. {
  7658. name: "Examacro",
  7659. height: math.unit(8.0624e+26, "meters")
  7660. }
  7661. ]
  7662. ))
  7663. characterMakers.push(() => makeCharacter(
  7664. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7665. {
  7666. front: {
  7667. height: math.unit(1.72, "meters"),
  7668. weight: math.unit(68, "kg"),
  7669. name: "Front",
  7670. image: {
  7671. source: "./media/characters/lexi/front.svg"
  7672. }
  7673. }
  7674. },
  7675. [
  7676. {
  7677. name: "Very Smol",
  7678. height: math.unit(10, "mm")
  7679. },
  7680. {
  7681. name: "Micro",
  7682. height: math.unit(6.8, "cm"),
  7683. default: true
  7684. },
  7685. {
  7686. name: "Normal",
  7687. height: math.unit(1.72, "m")
  7688. }
  7689. ]
  7690. ))
  7691. characterMakers.push(() => makeCharacter(
  7692. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7693. {
  7694. front: {
  7695. height: math.unit(1.69, "meters"),
  7696. weight: math.unit(68, "kg"),
  7697. name: "Front",
  7698. image: {
  7699. source: "./media/characters/martin/front.svg",
  7700. extra: 596 / 581
  7701. }
  7702. }
  7703. },
  7704. [
  7705. {
  7706. name: "Micro",
  7707. height: math.unit(6.85, "cm"),
  7708. default: true
  7709. },
  7710. {
  7711. name: "Normal",
  7712. height: math.unit(1.69, "m")
  7713. }
  7714. ]
  7715. ))
  7716. characterMakers.push(() => makeCharacter(
  7717. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7718. {
  7719. front: {
  7720. height: math.unit(1.69, "meters"),
  7721. weight: math.unit(68, "kg"),
  7722. name: "Front",
  7723. image: {
  7724. source: "./media/characters/juno/front.svg"
  7725. }
  7726. }
  7727. },
  7728. [
  7729. {
  7730. name: "Micro",
  7731. height: math.unit(7, "cm")
  7732. },
  7733. {
  7734. name: "Normal",
  7735. height: math.unit(1.89, "m")
  7736. },
  7737. {
  7738. name: "Macro",
  7739. height: math.unit(353, "meters"),
  7740. default: true
  7741. }
  7742. ]
  7743. ))
  7744. characterMakers.push(() => makeCharacter(
  7745. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7746. {
  7747. front: {
  7748. height: math.unit(1.93, "meters"),
  7749. weight: math.unit(83, "kg"),
  7750. name: "Front",
  7751. image: {
  7752. source: "./media/characters/samantha/front.svg"
  7753. }
  7754. },
  7755. frontClothed: {
  7756. height: math.unit(1.93, "meters"),
  7757. weight: math.unit(83, "kg"),
  7758. name: "Front (Clothed)",
  7759. image: {
  7760. source: "./media/characters/samantha/front-clothed.svg"
  7761. }
  7762. },
  7763. back: {
  7764. height: math.unit(1.93, "meters"),
  7765. weight: math.unit(83, "kg"),
  7766. name: "Back",
  7767. image: {
  7768. source: "./media/characters/samantha/back.svg"
  7769. }
  7770. },
  7771. },
  7772. [
  7773. {
  7774. name: "Normal",
  7775. height: math.unit(1.93, "m")
  7776. },
  7777. {
  7778. name: "Macro",
  7779. height: math.unit(74, "meters"),
  7780. default: true
  7781. },
  7782. {
  7783. name: "Macro+",
  7784. height: math.unit(223, "meters"),
  7785. },
  7786. {
  7787. name: "Megamacro",
  7788. height: math.unit(8381, "meters"),
  7789. },
  7790. {
  7791. name: "Megamacro+",
  7792. height: math.unit(12000, "kilometers")
  7793. },
  7794. ]
  7795. ))
  7796. characterMakers.push(() => makeCharacter(
  7797. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7798. {
  7799. front: {
  7800. height: math.unit(1.92, "meters"),
  7801. weight: math.unit(80, "kg"),
  7802. name: "Front",
  7803. image: {
  7804. source: "./media/characters/dr-clay/front.svg"
  7805. }
  7806. },
  7807. frontClothed: {
  7808. height: math.unit(1.92, "meters"),
  7809. weight: math.unit(80, "kg"),
  7810. name: "Front (Clothed)",
  7811. image: {
  7812. source: "./media/characters/dr-clay/front-clothed.svg"
  7813. }
  7814. }
  7815. },
  7816. [
  7817. {
  7818. name: "Normal",
  7819. height: math.unit(1.92, "m")
  7820. },
  7821. {
  7822. name: "Macro",
  7823. height: math.unit(214, "meters"),
  7824. default: true
  7825. },
  7826. {
  7827. name: "Macro+",
  7828. height: math.unit(12.237, "meters"),
  7829. },
  7830. {
  7831. name: "Megamacro",
  7832. height: math.unit(557, "megameters"),
  7833. },
  7834. {
  7835. name: "Unimaginable",
  7836. height: math.unit(120e9, "lightyears")
  7837. },
  7838. ]
  7839. ))
  7840. characterMakers.push(() => makeCharacter(
  7841. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7842. {
  7843. front: {
  7844. height: math.unit(2, "meters"),
  7845. weight: math.unit(80, "kg"),
  7846. name: "Front",
  7847. image: {
  7848. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7849. }
  7850. }
  7851. },
  7852. [
  7853. {
  7854. name: "Teramacro",
  7855. height: math.unit(500000, "lightyears"),
  7856. default: true
  7857. },
  7858. ]
  7859. ))
  7860. characterMakers.push(() => makeCharacter(
  7861. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7862. {
  7863. crux: {
  7864. height: math.unit(2, "meters"),
  7865. weight: math.unit(150, "kg"),
  7866. name: "Crux",
  7867. image: {
  7868. source: "./media/characters/vemus/crux.svg",
  7869. extra: 1074/936,
  7870. bottom: 23/1097
  7871. }
  7872. },
  7873. skunkTanuki: {
  7874. height: math.unit(2, "meters"),
  7875. weight: math.unit(150, "kg"),
  7876. name: "Skunk-Tanuki",
  7877. image: {
  7878. source: "./media/characters/vemus/skunk-tanuki.svg",
  7879. extra: 926/893,
  7880. bottom: 20/946
  7881. }
  7882. },
  7883. },
  7884. [
  7885. {
  7886. name: "Normal",
  7887. height: math.unit(4, "meters"),
  7888. default: true
  7889. },
  7890. {
  7891. name: "Big",
  7892. height: math.unit(8, "meters")
  7893. },
  7894. {
  7895. name: "Macro",
  7896. height: math.unit(100, "meters")
  7897. },
  7898. {
  7899. name: "Macro+",
  7900. height: math.unit(1500, "meters")
  7901. },
  7902. {
  7903. name: "Stellar",
  7904. height: math.unit(14e8, "meters")
  7905. },
  7906. ]
  7907. ))
  7908. characterMakers.push(() => makeCharacter(
  7909. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7910. {
  7911. front: {
  7912. height: math.unit(2, "meters"),
  7913. weight: math.unit(70, "kg"),
  7914. name: "Front",
  7915. image: {
  7916. source: "./media/characters/beherit/front.svg",
  7917. extra: 1234/1109,
  7918. bottom: 55/1289
  7919. }
  7920. }
  7921. },
  7922. [
  7923. {
  7924. name: "Normal",
  7925. height: math.unit(6, "feet")
  7926. },
  7927. {
  7928. name: "Lorg",
  7929. height: math.unit(25, "feet"),
  7930. default: true
  7931. },
  7932. {
  7933. name: "Lorger",
  7934. height: math.unit(75, "feet")
  7935. },
  7936. {
  7937. name: "Macro",
  7938. height: math.unit(200, "meters")
  7939. },
  7940. ]
  7941. ))
  7942. characterMakers.push(() => makeCharacter(
  7943. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7944. {
  7945. front: {
  7946. height: math.unit(2, "meters"),
  7947. weight: math.unit(150, "kg"),
  7948. name: "Front",
  7949. image: {
  7950. source: "./media/characters/everett/front.svg",
  7951. extra: 1017/866,
  7952. bottom: 86/1103
  7953. }
  7954. },
  7955. paw: {
  7956. height: math.unit(2 / 3.6, "meters"),
  7957. name: "Paw",
  7958. image: {
  7959. source: "./media/characters/everett/paw.svg"
  7960. }
  7961. },
  7962. },
  7963. [
  7964. {
  7965. name: "Normal",
  7966. height: math.unit(15, "feet"),
  7967. default: true
  7968. },
  7969. {
  7970. name: "Lorg",
  7971. height: math.unit(70, "feet"),
  7972. default: true
  7973. },
  7974. {
  7975. name: "Lorger",
  7976. height: math.unit(250, "feet")
  7977. },
  7978. {
  7979. name: "Macro",
  7980. height: math.unit(500, "meters")
  7981. },
  7982. ]
  7983. ))
  7984. characterMakers.push(() => makeCharacter(
  7985. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7986. {
  7987. front: {
  7988. height: math.unit(2, "meters"),
  7989. weight: math.unit(86, "kg"),
  7990. name: "Front",
  7991. image: {
  7992. source: "./media/characters/rose/front.svg",
  7993. extra: 1785/1636,
  7994. bottom: 30/1815
  7995. },
  7996. form: "liom",
  7997. default: true
  7998. },
  7999. frontSporty: {
  8000. height: math.unit(2, "meters"),
  8001. weight: math.unit(86, "kg"),
  8002. name: "Front (Sporty)",
  8003. image: {
  8004. source: "./media/characters/rose/front-sporty.svg",
  8005. extra: 350/335,
  8006. bottom: 10/360
  8007. },
  8008. form: "liom"
  8009. },
  8010. frontAlt: {
  8011. height: math.unit(1.6, "meters"),
  8012. weight: math.unit(86, "kg"),
  8013. name: "Front (Alt)",
  8014. image: {
  8015. source: "./media/characters/rose/front-alt.svg",
  8016. extra: 299/283,
  8017. bottom: 3/302
  8018. },
  8019. form: "liom"
  8020. },
  8021. plush: {
  8022. height: math.unit(2, "meters"),
  8023. weight: math.unit(86/3, "kg"),
  8024. name: "Plush",
  8025. image: {
  8026. source: "./media/characters/rose/plush.svg",
  8027. extra: 361/337,
  8028. bottom: 11/372
  8029. },
  8030. form: "plush",
  8031. default: true
  8032. },
  8033. faeStanding: {
  8034. height: math.unit(10, "cm"),
  8035. weight: math.unit(10, "grams"),
  8036. name: "Standing",
  8037. image: {
  8038. source: "./media/characters/rose/fae-standing.svg",
  8039. extra: 1189/1060,
  8040. bottom: 27/1216
  8041. },
  8042. form: "fae",
  8043. default: true
  8044. },
  8045. faeSitting: {
  8046. height: math.unit(5, "cm"),
  8047. weight: math.unit(10, "grams"),
  8048. name: "Sitting",
  8049. image: {
  8050. source: "./media/characters/rose/fae-sitting.svg",
  8051. extra: 737/577,
  8052. bottom: 356/1093
  8053. },
  8054. form: "fae"
  8055. },
  8056. faePaw: {
  8057. height: math.unit(1.35, "cm"),
  8058. name: "Paw",
  8059. image: {
  8060. source: "./media/characters/rose/fae-paw.svg"
  8061. },
  8062. form: "fae"
  8063. },
  8064. },
  8065. [
  8066. {
  8067. name: "True Micro",
  8068. height: math.unit(9, "cm"),
  8069. form: "liom"
  8070. },
  8071. {
  8072. name: "Micro",
  8073. height: math.unit(16, "cm"),
  8074. form: "liom"
  8075. },
  8076. {
  8077. name: "Normal",
  8078. height: math.unit(1.85, "meters"),
  8079. default: true,
  8080. form: "liom"
  8081. },
  8082. {
  8083. name: "Mini-Macro",
  8084. height: math.unit(5, "meters"),
  8085. form: "liom"
  8086. },
  8087. {
  8088. name: "Macro",
  8089. height: math.unit(15, "meters"),
  8090. form: "liom"
  8091. },
  8092. {
  8093. name: "True Macro",
  8094. height: math.unit(40, "meters"),
  8095. form: "liom"
  8096. },
  8097. {
  8098. name: "City Scale",
  8099. height: math.unit(1, "km"),
  8100. form: "liom"
  8101. },
  8102. {
  8103. name: "Plushie",
  8104. height: math.unit(9, "cm"),
  8105. form: "plush",
  8106. default: true
  8107. },
  8108. {
  8109. name: "Fae",
  8110. height: math.unit(10, "cm"),
  8111. form: "fae",
  8112. default: true
  8113. },
  8114. ],
  8115. {
  8116. "liom": {
  8117. name: "Liom"
  8118. },
  8119. "plush": {
  8120. name: "Plush"
  8121. },
  8122. "fae": {
  8123. name: "Fae Fox",
  8124. default: true
  8125. }
  8126. }
  8127. ))
  8128. characterMakers.push(() => makeCharacter(
  8129. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8130. {
  8131. front: {
  8132. height: math.unit(2, "meters"),
  8133. weight: math.unit(350, "lbs"),
  8134. name: "Front",
  8135. image: {
  8136. source: "./media/characters/regal/front.svg"
  8137. }
  8138. },
  8139. back: {
  8140. height: math.unit(2, "meters"),
  8141. weight: math.unit(350, "lbs"),
  8142. name: "Back",
  8143. image: {
  8144. source: "./media/characters/regal/back.svg"
  8145. }
  8146. },
  8147. },
  8148. [
  8149. {
  8150. name: "Macro",
  8151. height: math.unit(350, "feet"),
  8152. default: true
  8153. }
  8154. ]
  8155. ))
  8156. characterMakers.push(() => makeCharacter(
  8157. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8158. {
  8159. standing: {
  8160. height: math.unit(4 + 11/12, "feet"),
  8161. weight: math.unit(100, "lb"),
  8162. name: "Standing",
  8163. image: {
  8164. source: "./media/characters/opal/standing.svg",
  8165. extra: 1588/1513,
  8166. bottom: 23/1611
  8167. }
  8168. },
  8169. sitting: {
  8170. height: math.unit(2.3, "feet"),
  8171. weight: math.unit(100, "lb"),
  8172. name: "Sitting",
  8173. image: {
  8174. source: "./media/characters/opal/sitting.svg",
  8175. extra: 1031/892,
  8176. bottom: 142/1173
  8177. }
  8178. },
  8179. hand: {
  8180. height: math.unit(0.59, "feet"),
  8181. name: "Hand",
  8182. image: {
  8183. source: "./media/characters/opal/hand.svg"
  8184. }
  8185. },
  8186. foot: {
  8187. height: math.unit(0.61, "feet"),
  8188. name: "Foot",
  8189. image: {
  8190. source: "./media/characters/opal/foot.svg"
  8191. }
  8192. },
  8193. },
  8194. [
  8195. {
  8196. name: "Small",
  8197. height: math.unit(4 + 11 / 12, "feet")
  8198. },
  8199. {
  8200. name: "Normal",
  8201. height: math.unit(20, "feet"),
  8202. default: true
  8203. },
  8204. {
  8205. name: "Macro",
  8206. height: math.unit(120, "feet")
  8207. },
  8208. {
  8209. name: "Megamacro",
  8210. height: math.unit(80, "miles")
  8211. },
  8212. {
  8213. name: "True Size",
  8214. height: math.unit(100000, "lightyears")
  8215. },
  8216. ]
  8217. ))
  8218. characterMakers.push(() => makeCharacter(
  8219. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8220. {
  8221. front: {
  8222. height: math.unit(6, "feet"),
  8223. weight: math.unit(200, "lbs"),
  8224. name: "Front",
  8225. image: {
  8226. source: "./media/characters/vector-wuff/front.svg"
  8227. }
  8228. }
  8229. },
  8230. [
  8231. {
  8232. name: "Normal",
  8233. height: math.unit(2.8, "meters")
  8234. },
  8235. {
  8236. name: "Macro",
  8237. height: math.unit(450, "meters"),
  8238. default: true
  8239. },
  8240. {
  8241. name: "Megamacro",
  8242. height: math.unit(15, "kilometers")
  8243. }
  8244. ]
  8245. ))
  8246. characterMakers.push(() => makeCharacter(
  8247. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8248. {
  8249. front: {
  8250. height: math.unit(6, "feet"),
  8251. weight: math.unit(256, "lbs"),
  8252. name: "Front",
  8253. image: {
  8254. source: "./media/characters/dannik/front.svg"
  8255. }
  8256. }
  8257. },
  8258. [
  8259. {
  8260. name: "Macro",
  8261. height: math.unit(69.57, "meters"),
  8262. default: true
  8263. },
  8264. ]
  8265. ))
  8266. characterMakers.push(() => makeCharacter(
  8267. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8268. {
  8269. front: {
  8270. height: math.unit(6, "feet"),
  8271. weight: math.unit(120, "lbs"),
  8272. name: "Front",
  8273. image: {
  8274. source: "./media/characters/azura-saharah/front.svg"
  8275. }
  8276. },
  8277. back: {
  8278. height: math.unit(6, "feet"),
  8279. weight: math.unit(120, "lbs"),
  8280. name: "Back",
  8281. image: {
  8282. source: "./media/characters/azura-saharah/back.svg"
  8283. }
  8284. },
  8285. },
  8286. [
  8287. {
  8288. name: "Macro",
  8289. height: math.unit(100, "feet"),
  8290. default: true
  8291. },
  8292. ]
  8293. ))
  8294. characterMakers.push(() => makeCharacter(
  8295. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8296. {
  8297. side: {
  8298. height: math.unit(5 + 4 / 12, "feet"),
  8299. weight: math.unit(163, "lbs"),
  8300. name: "Side",
  8301. image: {
  8302. source: "./media/characters/kennedy/side.svg"
  8303. }
  8304. }
  8305. },
  8306. [
  8307. {
  8308. name: "Standard Doggo",
  8309. height: math.unit(5 + 4 / 12, "feet")
  8310. },
  8311. {
  8312. name: "Big Doggo",
  8313. height: math.unit(25 + 3 / 12, "feet"),
  8314. default: true
  8315. },
  8316. ]
  8317. ))
  8318. characterMakers.push(() => makeCharacter(
  8319. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8320. {
  8321. front: {
  8322. height: math.unit(5 + 5/12, "feet"),
  8323. weight: math.unit(100, "lbs"),
  8324. name: "Front",
  8325. image: {
  8326. source: "./media/characters/odios-de-lunar/front.svg",
  8327. extra: 1468/1323,
  8328. bottom: 22/1490
  8329. }
  8330. }
  8331. },
  8332. [
  8333. {
  8334. name: "Micro",
  8335. height: math.unit(3, "inches")
  8336. },
  8337. {
  8338. name: "Normal",
  8339. height: math.unit(5.5, "feet"),
  8340. default: true
  8341. },
  8342. {
  8343. name: "Macro",
  8344. height: math.unit(100, "feet")
  8345. },
  8346. ]
  8347. ))
  8348. characterMakers.push(() => makeCharacter(
  8349. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8350. {
  8351. back: {
  8352. height: math.unit(6, "feet"),
  8353. weight: math.unit(220, "lbs"),
  8354. name: "Back",
  8355. image: {
  8356. source: "./media/characters/mandake/back.svg"
  8357. }
  8358. }
  8359. },
  8360. [
  8361. {
  8362. name: "Normal",
  8363. height: math.unit(7, "feet"),
  8364. default: true
  8365. },
  8366. {
  8367. name: "Macro",
  8368. height: math.unit(78, "feet")
  8369. },
  8370. {
  8371. name: "Macro+",
  8372. height: math.unit(300, "meters")
  8373. },
  8374. {
  8375. name: "Macro++",
  8376. height: math.unit(2400, "feet")
  8377. },
  8378. {
  8379. name: "Megamacro",
  8380. height: math.unit(5167, "meters")
  8381. },
  8382. {
  8383. name: "Gigamacro",
  8384. height: math.unit(41769, "miles")
  8385. },
  8386. ]
  8387. ))
  8388. characterMakers.push(() => makeCharacter(
  8389. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8390. {
  8391. front: {
  8392. height: math.unit(6, "feet"),
  8393. weight: math.unit(120, "lbs"),
  8394. name: "Front",
  8395. image: {
  8396. source: "./media/characters/yozey/front.svg"
  8397. }
  8398. },
  8399. frontAlt: {
  8400. height: math.unit(6, "feet"),
  8401. weight: math.unit(120, "lbs"),
  8402. name: "Front (Alt)",
  8403. image: {
  8404. source: "./media/characters/yozey/front-alt.svg"
  8405. }
  8406. },
  8407. side: {
  8408. height: math.unit(6, "feet"),
  8409. weight: math.unit(120, "lbs"),
  8410. name: "Side",
  8411. image: {
  8412. source: "./media/characters/yozey/side.svg"
  8413. }
  8414. },
  8415. },
  8416. [
  8417. {
  8418. name: "Micro",
  8419. height: math.unit(3, "inches"),
  8420. default: true
  8421. },
  8422. {
  8423. name: "Normal",
  8424. height: math.unit(6, "feet")
  8425. }
  8426. ]
  8427. ))
  8428. characterMakers.push(() => makeCharacter(
  8429. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8430. {
  8431. front: {
  8432. height: math.unit(6, "feet"),
  8433. weight: math.unit(103, "lbs"),
  8434. name: "Front",
  8435. image: {
  8436. source: "./media/characters/valeska-voss/front.svg"
  8437. }
  8438. }
  8439. },
  8440. [
  8441. {
  8442. name: "Mini-Sized Sub",
  8443. height: math.unit(3.1, "inches")
  8444. },
  8445. {
  8446. name: "Mid-Sized Sub",
  8447. height: math.unit(6.2, "inches")
  8448. },
  8449. {
  8450. name: "Full-Sized Sub",
  8451. height: math.unit(9.3, "inches")
  8452. },
  8453. {
  8454. name: "Normal",
  8455. height: math.unit(5 + 2 / 12, "foot"),
  8456. default: true
  8457. },
  8458. ]
  8459. ))
  8460. characterMakers.push(() => makeCharacter(
  8461. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8462. {
  8463. front: {
  8464. height: math.unit(6, "feet"),
  8465. weight: math.unit(160, "lbs"),
  8466. name: "Front",
  8467. image: {
  8468. source: "./media/characters/gene-zeta/front.svg",
  8469. extra: 3006 / 2826,
  8470. bottom: 182 / 3188
  8471. }
  8472. }
  8473. },
  8474. [
  8475. {
  8476. name: "Micro",
  8477. height: math.unit(6, "inches")
  8478. },
  8479. {
  8480. name: "Normal",
  8481. height: math.unit(5 + 11 / 12, "foot"),
  8482. default: true
  8483. },
  8484. {
  8485. name: "Macro",
  8486. height: math.unit(140, "feet")
  8487. },
  8488. {
  8489. name: "Supercharged",
  8490. height: math.unit(2500, "feet")
  8491. },
  8492. ]
  8493. ))
  8494. characterMakers.push(() => makeCharacter(
  8495. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8496. {
  8497. front: {
  8498. height: math.unit(6, "feet"),
  8499. weight: math.unit(350, "lbs"),
  8500. name: "Front",
  8501. image: {
  8502. source: "./media/characters/razinox/front.svg",
  8503. extra: 1686 / 1548,
  8504. bottom: 28.2 / 1868
  8505. }
  8506. },
  8507. back: {
  8508. height: math.unit(6, "feet"),
  8509. weight: math.unit(350, "lbs"),
  8510. name: "Back",
  8511. image: {
  8512. source: "./media/characters/razinox/back.svg",
  8513. extra: 1660 / 1590,
  8514. bottom: 15 / 1665
  8515. }
  8516. },
  8517. },
  8518. [
  8519. {
  8520. name: "Normal",
  8521. height: math.unit(10 + 8 / 12, "foot")
  8522. },
  8523. {
  8524. name: "Minimacro",
  8525. height: math.unit(15, "foot")
  8526. },
  8527. {
  8528. name: "Macro",
  8529. height: math.unit(60, "foot"),
  8530. default: true
  8531. },
  8532. {
  8533. name: "Megamacro",
  8534. height: math.unit(5, "miles")
  8535. },
  8536. {
  8537. name: "Gigamacro",
  8538. height: math.unit(6000, "miles")
  8539. },
  8540. ]
  8541. ))
  8542. characterMakers.push(() => makeCharacter(
  8543. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8544. {
  8545. front: {
  8546. height: math.unit(6, "feet"),
  8547. weight: math.unit(150, "lbs"),
  8548. name: "Front",
  8549. image: {
  8550. source: "./media/characters/cobalt/front.svg"
  8551. }
  8552. }
  8553. },
  8554. [
  8555. {
  8556. name: "Normal",
  8557. height: math.unit(8 + 1 / 12, "foot")
  8558. },
  8559. {
  8560. name: "Macro",
  8561. height: math.unit(111, "foot"),
  8562. default: true
  8563. },
  8564. {
  8565. name: "Supracosmic",
  8566. height: math.unit(1e42, "feet")
  8567. },
  8568. ]
  8569. ))
  8570. characterMakers.push(() => makeCharacter(
  8571. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8572. {
  8573. front: {
  8574. height: math.unit(5, "inches"),
  8575. name: "Front",
  8576. image: {
  8577. source: "./media/characters/amanda/front.svg",
  8578. extra: 926/791,
  8579. bottom: 38/964
  8580. }
  8581. },
  8582. back: {
  8583. height: math.unit(5, "inches"),
  8584. name: "Back",
  8585. image: {
  8586. source: "./media/characters/amanda/back.svg",
  8587. extra: 909/805,
  8588. bottom: 43/952
  8589. }
  8590. },
  8591. },
  8592. [
  8593. {
  8594. name: "Micro",
  8595. height: math.unit(5, "inches"),
  8596. default: true
  8597. },
  8598. ]
  8599. ))
  8600. characterMakers.push(() => makeCharacter(
  8601. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8602. {
  8603. front: {
  8604. height: math.unit(2.75, "meters"),
  8605. weight: math.unit(1200, "lb"),
  8606. name: "Front",
  8607. image: {
  8608. source: "./media/characters/teal/front.svg",
  8609. extra: 2463 / 2320,
  8610. bottom: 166 / 2629
  8611. }
  8612. },
  8613. back: {
  8614. height: math.unit(2.75, "meters"),
  8615. weight: math.unit(1200, "lb"),
  8616. name: "Back",
  8617. image: {
  8618. source: "./media/characters/teal/back.svg",
  8619. extra: 2580 / 2489,
  8620. bottom: 151 / 2731
  8621. }
  8622. },
  8623. sitting: {
  8624. height: math.unit(1.9, "meters"),
  8625. weight: math.unit(1200, "lb"),
  8626. name: "Sitting",
  8627. image: {
  8628. source: "./media/characters/teal/sitting.svg",
  8629. extra: 623 / 590,
  8630. bottom: 121 / 744
  8631. }
  8632. },
  8633. standing: {
  8634. height: math.unit(2.75, "meters"),
  8635. weight: math.unit(1200, "lb"),
  8636. name: "Standing",
  8637. image: {
  8638. source: "./media/characters/teal/standing.svg",
  8639. extra: 923 / 893,
  8640. bottom: 60 / 983
  8641. }
  8642. },
  8643. stretching: {
  8644. height: math.unit(3.65, "meters"),
  8645. weight: math.unit(1200, "lb"),
  8646. name: "Stretching",
  8647. image: {
  8648. source: "./media/characters/teal/stretching.svg",
  8649. extra: 1276 / 1244,
  8650. bottom: 0 / 1276
  8651. }
  8652. },
  8653. legged: {
  8654. height: math.unit(1.3, "meters"),
  8655. weight: math.unit(100, "lb"),
  8656. name: "Legged",
  8657. image: {
  8658. source: "./media/characters/teal/legged.svg",
  8659. extra: 462 / 437,
  8660. bottom: 24 / 486
  8661. }
  8662. },
  8663. naga: {
  8664. height: math.unit(5.4, "meters"),
  8665. weight: math.unit(4000, "lb"),
  8666. name: "Naga",
  8667. image: {
  8668. source: "./media/characters/teal/naga.svg",
  8669. extra: 1902 / 1858,
  8670. bottom: 0 / 1902
  8671. }
  8672. },
  8673. hand: {
  8674. height: math.unit(0.52, "meters"),
  8675. name: "Hand",
  8676. image: {
  8677. source: "./media/characters/teal/hand.svg"
  8678. }
  8679. },
  8680. maw: {
  8681. height: math.unit(0.43, "meters"),
  8682. name: "Maw",
  8683. image: {
  8684. source: "./media/characters/teal/maw.svg"
  8685. }
  8686. },
  8687. slit: {
  8688. height: math.unit(0.25, "meters"),
  8689. name: "Slit",
  8690. image: {
  8691. source: "./media/characters/teal/slit.svg"
  8692. }
  8693. },
  8694. },
  8695. [
  8696. {
  8697. name: "Normal",
  8698. height: math.unit(2.75, "meters"),
  8699. default: true
  8700. },
  8701. {
  8702. name: "Macro",
  8703. height: math.unit(300, "feet")
  8704. },
  8705. {
  8706. name: "Macro+",
  8707. height: math.unit(2000, "feet")
  8708. },
  8709. ]
  8710. ))
  8711. characterMakers.push(() => makeCharacter(
  8712. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8713. {
  8714. frontCat: {
  8715. height: math.unit(6, "feet"),
  8716. weight: math.unit(180, "lbs"),
  8717. name: "Front (Cat)",
  8718. image: {
  8719. source: "./media/characters/ravin-amulet/front-cat.svg"
  8720. }
  8721. },
  8722. frontCatAlt: {
  8723. height: math.unit(6, "feet"),
  8724. weight: math.unit(180, "lbs"),
  8725. name: "Front (Alt, Cat)",
  8726. image: {
  8727. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8728. }
  8729. },
  8730. frontWerewolf: {
  8731. height: math.unit(6 * 1.2, "feet"),
  8732. weight: math.unit(225, "lbs"),
  8733. name: "Front (Werewolf)",
  8734. image: {
  8735. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8736. }
  8737. },
  8738. backWerewolf: {
  8739. height: math.unit(6 * 1.2, "feet"),
  8740. weight: math.unit(225, "lbs"),
  8741. name: "Back (Werewolf)",
  8742. image: {
  8743. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8744. }
  8745. },
  8746. },
  8747. [
  8748. {
  8749. name: "Nano",
  8750. height: math.unit(1, "micrometer")
  8751. },
  8752. {
  8753. name: "Micro",
  8754. height: math.unit(1, "inch")
  8755. },
  8756. {
  8757. name: "Normal",
  8758. height: math.unit(6, "feet"),
  8759. default: true
  8760. },
  8761. {
  8762. name: "Macro",
  8763. height: math.unit(60, "feet")
  8764. }
  8765. ]
  8766. ))
  8767. characterMakers.push(() => makeCharacter(
  8768. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8769. {
  8770. front: {
  8771. height: math.unit(6, "feet"),
  8772. weight: math.unit(165, "lbs"),
  8773. name: "Front",
  8774. image: {
  8775. source: "./media/characters/fluoresce/front.svg"
  8776. }
  8777. }
  8778. },
  8779. [
  8780. {
  8781. name: "Micro",
  8782. height: math.unit(6, "cm")
  8783. },
  8784. {
  8785. name: "Normal",
  8786. height: math.unit(5 + 7 / 12, "feet"),
  8787. default: true
  8788. },
  8789. {
  8790. name: "Macro",
  8791. height: math.unit(56, "feet")
  8792. },
  8793. {
  8794. name: "Megamacro",
  8795. height: math.unit(1.9, "miles")
  8796. },
  8797. ]
  8798. ))
  8799. characterMakers.push(() => makeCharacter(
  8800. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8801. {
  8802. front: {
  8803. height: math.unit(9 + 6 / 12, "feet"),
  8804. weight: math.unit(523, "lbs"),
  8805. name: "Side",
  8806. image: {
  8807. source: "./media/characters/aurora/side.svg",
  8808. extra: 474/393,
  8809. bottom: 5/479
  8810. }
  8811. }
  8812. },
  8813. [
  8814. {
  8815. name: "Normal",
  8816. height: math.unit(9 + 6 / 12, "feet")
  8817. },
  8818. {
  8819. name: "Macro",
  8820. height: math.unit(96, "feet"),
  8821. default: true
  8822. },
  8823. {
  8824. name: "Macro+",
  8825. height: math.unit(243, "feet")
  8826. },
  8827. ]
  8828. ))
  8829. characterMakers.push(() => makeCharacter(
  8830. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8831. {
  8832. front: {
  8833. height: math.unit(194, "cm"),
  8834. weight: math.unit(90, "kg"),
  8835. name: "Front",
  8836. image: {
  8837. source: "./media/characters/ranek/front.svg",
  8838. extra: 1862/1791,
  8839. bottom: 80/1942
  8840. }
  8841. },
  8842. back: {
  8843. height: math.unit(194, "cm"),
  8844. weight: math.unit(90, "kg"),
  8845. name: "Back",
  8846. image: {
  8847. source: "./media/characters/ranek/back.svg",
  8848. extra: 1853/1787,
  8849. bottom: 74/1927
  8850. }
  8851. },
  8852. feral: {
  8853. height: math.unit(30, "cm"),
  8854. weight: math.unit(1.6, "lbs"),
  8855. name: "Feral",
  8856. image: {
  8857. source: "./media/characters/ranek/feral.svg",
  8858. extra: 990/631,
  8859. bottom: 29/1019
  8860. }
  8861. },
  8862. },
  8863. [
  8864. {
  8865. name: "Normal",
  8866. height: math.unit(194, "cm"),
  8867. default: true
  8868. },
  8869. {
  8870. name: "Macro",
  8871. height: math.unit(100, "meters")
  8872. },
  8873. ]
  8874. ))
  8875. characterMakers.push(() => makeCharacter(
  8876. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8877. {
  8878. front: {
  8879. height: math.unit(5 + 6 / 12, "feet"),
  8880. weight: math.unit(153, "lbs"),
  8881. name: "Front",
  8882. image: {
  8883. source: "./media/characters/andrew-cooper/front.svg"
  8884. }
  8885. },
  8886. },
  8887. [
  8888. {
  8889. name: "Nano",
  8890. height: math.unit(1, "mm")
  8891. },
  8892. {
  8893. name: "Micro",
  8894. height: math.unit(2, "inches")
  8895. },
  8896. {
  8897. name: "Normal",
  8898. height: math.unit(5 + 6 / 12, "feet"),
  8899. default: true
  8900. }
  8901. ]
  8902. ))
  8903. characterMakers.push(() => makeCharacter(
  8904. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8905. {
  8906. front: {
  8907. height: math.unit(6, "feet"),
  8908. weight: math.unit(180, "lbs"),
  8909. name: "Front",
  8910. image: {
  8911. source: "./media/characters/akane-sato/front.svg",
  8912. extra: 1219 / 1140
  8913. }
  8914. },
  8915. back: {
  8916. height: math.unit(6, "feet"),
  8917. weight: math.unit(180, "lbs"),
  8918. name: "Back",
  8919. image: {
  8920. source: "./media/characters/akane-sato/back.svg",
  8921. extra: 1219 / 1170
  8922. }
  8923. },
  8924. },
  8925. [
  8926. {
  8927. name: "Normal",
  8928. height: math.unit(2.5, "meters")
  8929. },
  8930. {
  8931. name: "Macro",
  8932. height: math.unit(250, "meters"),
  8933. default: true
  8934. },
  8935. {
  8936. name: "Megamacro",
  8937. height: math.unit(25, "km")
  8938. },
  8939. ]
  8940. ))
  8941. characterMakers.push(() => makeCharacter(
  8942. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8943. {
  8944. front: {
  8945. height: math.unit(6, "feet"),
  8946. weight: math.unit(65, "kg"),
  8947. name: "Front",
  8948. image: {
  8949. source: "./media/characters/rook/front.svg",
  8950. extra: 960 / 950
  8951. }
  8952. }
  8953. },
  8954. [
  8955. {
  8956. name: "Normal",
  8957. height: math.unit(8.8, "feet")
  8958. },
  8959. {
  8960. name: "Macro",
  8961. height: math.unit(88, "feet"),
  8962. default: true
  8963. },
  8964. {
  8965. name: "Megamacro",
  8966. height: math.unit(8, "miles")
  8967. },
  8968. ]
  8969. ))
  8970. characterMakers.push(() => makeCharacter(
  8971. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8972. {
  8973. front: {
  8974. height: math.unit(12 + 2 / 12, "feet"),
  8975. weight: math.unit(808, "lbs"),
  8976. name: "Front",
  8977. image: {
  8978. source: "./media/characters/prodigy/front.svg"
  8979. }
  8980. }
  8981. },
  8982. [
  8983. {
  8984. name: "Normal",
  8985. height: math.unit(12 + 2 / 12, "feet"),
  8986. default: true
  8987. },
  8988. {
  8989. name: "Macro",
  8990. height: math.unit(143, "feet")
  8991. },
  8992. {
  8993. name: "Macro+",
  8994. height: math.unit(400, "feet")
  8995. },
  8996. ]
  8997. ))
  8998. characterMakers.push(() => makeCharacter(
  8999. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9000. {
  9001. front: {
  9002. height: math.unit(6, "feet"),
  9003. weight: math.unit(225, "lbs"),
  9004. name: "Front",
  9005. image: {
  9006. source: "./media/characters/daniel/front.svg"
  9007. }
  9008. },
  9009. leaning: {
  9010. height: math.unit(6, "feet"),
  9011. weight: math.unit(225, "lbs"),
  9012. name: "Leaning",
  9013. image: {
  9014. source: "./media/characters/daniel/leaning.svg"
  9015. }
  9016. },
  9017. },
  9018. [
  9019. {
  9020. name: "Macro",
  9021. height: math.unit(1000, "feet"),
  9022. default: true
  9023. },
  9024. ]
  9025. ))
  9026. characterMakers.push(() => makeCharacter(
  9027. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9028. {
  9029. front: {
  9030. height: math.unit(6, "feet"),
  9031. weight: math.unit(88, "lbs"),
  9032. name: "Front",
  9033. image: {
  9034. source: "./media/characters/chiros/front.svg",
  9035. extra: 306 / 226
  9036. }
  9037. },
  9038. side: {
  9039. height: math.unit(6, "feet"),
  9040. weight: math.unit(88, "lbs"),
  9041. name: "Side",
  9042. image: {
  9043. source: "./media/characters/chiros/side.svg",
  9044. extra: 306 / 226
  9045. }
  9046. },
  9047. },
  9048. [
  9049. {
  9050. name: "Normal",
  9051. height: math.unit(6, "cm"),
  9052. default: true
  9053. },
  9054. ]
  9055. ))
  9056. characterMakers.push(() => makeCharacter(
  9057. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9058. {
  9059. front: {
  9060. height: math.unit(6, "feet"),
  9061. weight: math.unit(100, "lbs"),
  9062. name: "Front",
  9063. image: {
  9064. source: "./media/characters/selka/front.svg",
  9065. extra: 947 / 887
  9066. }
  9067. }
  9068. },
  9069. [
  9070. {
  9071. name: "Normal",
  9072. height: math.unit(5, "cm"),
  9073. default: true
  9074. },
  9075. ]
  9076. ))
  9077. characterMakers.push(() => makeCharacter(
  9078. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9079. {
  9080. front: {
  9081. height: math.unit(8 + 3 / 12, "feet"),
  9082. weight: math.unit(424, "lbs"),
  9083. name: "Front",
  9084. image: {
  9085. source: "./media/characters/verin/front.svg",
  9086. extra: 1845 / 1550
  9087. }
  9088. },
  9089. frontArmored: {
  9090. height: math.unit(8 + 3 / 12, "feet"),
  9091. weight: math.unit(424, "lbs"),
  9092. name: "Front (Armored)",
  9093. image: {
  9094. source: "./media/characters/verin/front-armor.svg",
  9095. extra: 1845 / 1550,
  9096. bottom: 0.01
  9097. }
  9098. },
  9099. back: {
  9100. height: math.unit(8 + 3 / 12, "feet"),
  9101. weight: math.unit(424, "lbs"),
  9102. name: "Back",
  9103. image: {
  9104. source: "./media/characters/verin/back.svg",
  9105. bottom: 0.1,
  9106. extra: 1
  9107. }
  9108. },
  9109. foot: {
  9110. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9111. name: "Foot",
  9112. image: {
  9113. source: "./media/characters/verin/foot.svg"
  9114. }
  9115. },
  9116. },
  9117. [
  9118. {
  9119. name: "Normal",
  9120. height: math.unit(8 + 3 / 12, "feet")
  9121. },
  9122. {
  9123. name: "Minimacro",
  9124. height: math.unit(21, "feet"),
  9125. default: true
  9126. },
  9127. {
  9128. name: "Macro",
  9129. height: math.unit(626, "feet")
  9130. },
  9131. ]
  9132. ))
  9133. characterMakers.push(() => makeCharacter(
  9134. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9135. {
  9136. front: {
  9137. height: math.unit(2.718, "meters"),
  9138. weight: math.unit(150, "lbs"),
  9139. name: "Front",
  9140. image: {
  9141. source: "./media/characters/sovrim-terraquian/front.svg",
  9142. extra: 1752/1689,
  9143. bottom: 36/1788
  9144. }
  9145. },
  9146. back: {
  9147. height: math.unit(2.718, "meters"),
  9148. weight: math.unit(150, "lbs"),
  9149. name: "Back",
  9150. image: {
  9151. source: "./media/characters/sovrim-terraquian/back.svg",
  9152. extra: 1698/1657,
  9153. bottom: 58/1756
  9154. }
  9155. },
  9156. tongue: {
  9157. height: math.unit(2.865, "feet"),
  9158. name: "Tongue",
  9159. image: {
  9160. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9161. }
  9162. },
  9163. hand: {
  9164. height: math.unit(1.61, "feet"),
  9165. name: "Hand",
  9166. image: {
  9167. source: "./media/characters/sovrim-terraquian/hand.svg"
  9168. }
  9169. },
  9170. foot: {
  9171. height: math.unit(1.05, "feet"),
  9172. name: "Foot",
  9173. image: {
  9174. source: "./media/characters/sovrim-terraquian/foot.svg"
  9175. }
  9176. },
  9177. footAlt: {
  9178. height: math.unit(0.88, "feet"),
  9179. name: "Foot (Alt)",
  9180. image: {
  9181. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9182. }
  9183. },
  9184. },
  9185. [
  9186. {
  9187. name: "Micro",
  9188. height: math.unit(2, "inches")
  9189. },
  9190. {
  9191. name: "Small",
  9192. height: math.unit(1, "meter")
  9193. },
  9194. {
  9195. name: "Normal",
  9196. height: math.unit(Math.E, "meters"),
  9197. default: true
  9198. },
  9199. {
  9200. name: "Macro",
  9201. height: math.unit(20, "meters")
  9202. },
  9203. {
  9204. name: "Macro+",
  9205. height: math.unit(400, "meters")
  9206. },
  9207. ]
  9208. ))
  9209. characterMakers.push(() => makeCharacter(
  9210. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9211. {
  9212. front: {
  9213. height: math.unit(7, "feet"),
  9214. weight: math.unit(489, "lbs"),
  9215. name: "Front",
  9216. image: {
  9217. source: "./media/characters/reece-silvermane/front.svg",
  9218. bottom: 0.02,
  9219. extra: 1
  9220. }
  9221. },
  9222. },
  9223. [
  9224. {
  9225. name: "Macro",
  9226. height: math.unit(1.5, "miles"),
  9227. default: true
  9228. },
  9229. ]
  9230. ))
  9231. characterMakers.push(() => makeCharacter(
  9232. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9233. {
  9234. front: {
  9235. height: math.unit(6, "feet"),
  9236. weight: math.unit(78, "kg"),
  9237. name: "Front",
  9238. image: {
  9239. source: "./media/characters/kane/front.svg",
  9240. extra: 978 / 899
  9241. }
  9242. },
  9243. back: {
  9244. height: math.unit(6, "feet"),
  9245. weight: math.unit(78, "kg"),
  9246. name: "Back",
  9247. image: {
  9248. source: "./media/characters/kane/back.svg",
  9249. extra: 1966/1800,
  9250. bottom: 0/1966
  9251. }
  9252. },
  9253. head: {
  9254. height: math.unit(1.4, "feet"),
  9255. name: "Head",
  9256. image: {
  9257. source: "./media/characters/kane/head.svg"
  9258. }
  9259. },
  9260. },
  9261. [
  9262. {
  9263. name: "Normal",
  9264. height: math.unit(2.1, "m"),
  9265. },
  9266. {
  9267. name: "Macro",
  9268. height: math.unit(1, "km"),
  9269. default: true
  9270. },
  9271. ]
  9272. ))
  9273. characterMakers.push(() => makeCharacter(
  9274. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9275. {
  9276. front: {
  9277. height: math.unit(6, "feet"),
  9278. weight: math.unit(200, "kg"),
  9279. name: "Front",
  9280. image: {
  9281. source: "./media/characters/tegon/front.svg",
  9282. bottom: 0.01,
  9283. extra: 1
  9284. }
  9285. },
  9286. },
  9287. [
  9288. {
  9289. name: "Micro",
  9290. height: math.unit(1, "inch")
  9291. },
  9292. {
  9293. name: "Normal",
  9294. height: math.unit(6 + 3 / 12, "feet"),
  9295. default: true
  9296. },
  9297. {
  9298. name: "Macro",
  9299. height: math.unit(300, "feet")
  9300. },
  9301. {
  9302. name: "Megamacro",
  9303. height: math.unit(69, "miles")
  9304. },
  9305. ]
  9306. ))
  9307. characterMakers.push(() => makeCharacter(
  9308. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9309. {
  9310. side: {
  9311. height: math.unit(6, "feet"),
  9312. weight: math.unit(2304, "lbs"),
  9313. name: "Side",
  9314. image: {
  9315. source: "./media/characters/arcturax/side.svg",
  9316. extra: 790 / 376,
  9317. bottom: 0.01
  9318. }
  9319. },
  9320. },
  9321. [
  9322. {
  9323. name: "Micro",
  9324. height: math.unit(2, "inch")
  9325. },
  9326. {
  9327. name: "Normal",
  9328. height: math.unit(6, "feet")
  9329. },
  9330. {
  9331. name: "Macro",
  9332. height: math.unit(39, "feet"),
  9333. default: true
  9334. },
  9335. {
  9336. name: "Megamacro",
  9337. height: math.unit(7, "miles")
  9338. },
  9339. ]
  9340. ))
  9341. characterMakers.push(() => makeCharacter(
  9342. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9343. {
  9344. front: {
  9345. height: math.unit(6, "feet"),
  9346. weight: math.unit(50, "lbs"),
  9347. name: "Front",
  9348. image: {
  9349. source: "./media/characters/sentri/front.svg",
  9350. extra: 1750 / 1570,
  9351. bottom: 0.025
  9352. }
  9353. },
  9354. frontAlt: {
  9355. height: math.unit(6, "feet"),
  9356. weight: math.unit(50, "lbs"),
  9357. name: "Front (Alt)",
  9358. image: {
  9359. source: "./media/characters/sentri/front-alt.svg",
  9360. extra: 1750 / 1570,
  9361. bottom: 0.025
  9362. }
  9363. },
  9364. },
  9365. [
  9366. {
  9367. name: "Normal",
  9368. height: math.unit(15, "feet"),
  9369. default: true
  9370. },
  9371. {
  9372. name: "Macro",
  9373. height: math.unit(2500, "feet")
  9374. }
  9375. ]
  9376. ))
  9377. characterMakers.push(() => makeCharacter(
  9378. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9379. {
  9380. front: {
  9381. height: math.unit(5 + 8 / 12, "feet"),
  9382. weight: math.unit(130, "lbs"),
  9383. name: "Front",
  9384. image: {
  9385. source: "./media/characters/corvin/front.svg",
  9386. extra: 1803 / 1629
  9387. }
  9388. },
  9389. frontShirt: {
  9390. height: math.unit(5 + 8 / 12, "feet"),
  9391. weight: math.unit(130, "lbs"),
  9392. name: "Front (Shirt)",
  9393. image: {
  9394. source: "./media/characters/corvin/front-shirt.svg",
  9395. extra: 1803 / 1629
  9396. }
  9397. },
  9398. frontPoncho: {
  9399. height: math.unit(5 + 8 / 12, "feet"),
  9400. weight: math.unit(130, "lbs"),
  9401. name: "Front (Poncho)",
  9402. image: {
  9403. source: "./media/characters/corvin/front-poncho.svg",
  9404. extra: 1803 / 1629
  9405. }
  9406. },
  9407. side: {
  9408. height: math.unit(5 + 8 / 12, "feet"),
  9409. weight: math.unit(130, "lbs"),
  9410. name: "Side",
  9411. image: {
  9412. source: "./media/characters/corvin/side.svg",
  9413. extra: 1012 / 945
  9414. }
  9415. },
  9416. back: {
  9417. height: math.unit(5 + 8 / 12, "feet"),
  9418. weight: math.unit(130, "lbs"),
  9419. name: "Back",
  9420. image: {
  9421. source: "./media/characters/corvin/back.svg",
  9422. extra: 1803 / 1629
  9423. }
  9424. },
  9425. },
  9426. [
  9427. {
  9428. name: "Micro",
  9429. height: math.unit(3, "inches")
  9430. },
  9431. {
  9432. name: "Normal",
  9433. height: math.unit(5 + 8 / 12, "feet")
  9434. },
  9435. {
  9436. name: "Macro",
  9437. height: math.unit(300, "feet"),
  9438. default: true
  9439. },
  9440. {
  9441. name: "Megamacro",
  9442. height: math.unit(500, "miles")
  9443. }
  9444. ]
  9445. ))
  9446. characterMakers.push(() => makeCharacter(
  9447. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9448. {
  9449. front: {
  9450. height: math.unit(6, "feet"),
  9451. weight: math.unit(135, "lbs"),
  9452. name: "Front",
  9453. image: {
  9454. source: "./media/characters/q/front.svg",
  9455. extra: 854 / 752,
  9456. bottom: 0.005
  9457. }
  9458. },
  9459. back: {
  9460. height: math.unit(6, "feet"),
  9461. weight: math.unit(130, "lbs"),
  9462. name: "Back",
  9463. image: {
  9464. source: "./media/characters/q/back.svg",
  9465. extra: 854 / 752
  9466. }
  9467. },
  9468. },
  9469. [
  9470. {
  9471. name: "Macro",
  9472. height: math.unit(90, "feet"),
  9473. default: true
  9474. },
  9475. {
  9476. name: "Extra Macro",
  9477. height: math.unit(300, "feet"),
  9478. },
  9479. {
  9480. name: "BIG WALF",
  9481. height: math.unit(750, "feet"),
  9482. },
  9483. ]
  9484. ))
  9485. characterMakers.push(() => makeCharacter(
  9486. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9487. {
  9488. front: {
  9489. height: math.unit(3, "feet"),
  9490. weight: math.unit(28, "lbs"),
  9491. name: "Front",
  9492. image: {
  9493. source: "./media/characters/citrine/front.svg"
  9494. }
  9495. }
  9496. },
  9497. [
  9498. {
  9499. name: "Normal",
  9500. height: math.unit(3, "feet"),
  9501. default: true
  9502. }
  9503. ]
  9504. ))
  9505. characterMakers.push(() => makeCharacter(
  9506. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9507. {
  9508. front: {
  9509. height: math.unit(14, "feet"),
  9510. weight: math.unit(1450, "kg"),
  9511. preyCapacity: math.unit(15, "people"),
  9512. name: "Front",
  9513. image: {
  9514. source: "./media/characters/aura-starwind/front.svg",
  9515. extra: 1440/1327,
  9516. bottom: 11/1451
  9517. }
  9518. },
  9519. side: {
  9520. height: math.unit(14, "feet"),
  9521. weight: math.unit(1450, "kg"),
  9522. preyCapacity: math.unit(15, "people"),
  9523. name: "Side",
  9524. image: {
  9525. source: "./media/characters/aura-starwind/side.svg",
  9526. extra: 1654 / 1497
  9527. }
  9528. },
  9529. taur: {
  9530. height: math.unit(18, "feet"),
  9531. weight: math.unit(5500, "kg"),
  9532. preyCapacity: math.unit(50, "people"),
  9533. name: "Taur",
  9534. image: {
  9535. source: "./media/characters/aura-starwind/taur.svg",
  9536. extra: 1760 / 1650
  9537. }
  9538. },
  9539. feral: {
  9540. height: math.unit(46, "feet"),
  9541. weight: math.unit(25000, "kg"),
  9542. preyCapacity: math.unit(120, "people"),
  9543. name: "Feral",
  9544. image: {
  9545. source: "./media/characters/aura-starwind/feral.svg"
  9546. }
  9547. },
  9548. },
  9549. [
  9550. {
  9551. name: "Normal",
  9552. height: math.unit(14, "feet"),
  9553. default: true
  9554. },
  9555. {
  9556. name: "Macro",
  9557. height: math.unit(50, "meters")
  9558. },
  9559. {
  9560. name: "Megamacro",
  9561. height: math.unit(5000, "meters")
  9562. },
  9563. {
  9564. name: "Gigamacro",
  9565. height: math.unit(100000, "kilometers")
  9566. },
  9567. ]
  9568. ))
  9569. characterMakers.push(() => makeCharacter(
  9570. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9571. {
  9572. front: {
  9573. height: math.unit(2 + 7 / 12, "feet"),
  9574. weight: math.unit(32, "lbs"),
  9575. name: "Front",
  9576. image: {
  9577. source: "./media/characters/rivet/front.svg",
  9578. extra: 1716 / 1658,
  9579. bottom: 0.03
  9580. }
  9581. },
  9582. foot: {
  9583. height: math.unit(0.551, "feet"),
  9584. name: "Rivet's Foot",
  9585. image: {
  9586. source: "./media/characters/rivet/foot.svg"
  9587. },
  9588. rename: true
  9589. }
  9590. },
  9591. [
  9592. {
  9593. name: "Micro",
  9594. height: math.unit(1.5, "inches"),
  9595. },
  9596. {
  9597. name: "Normal",
  9598. height: math.unit(2 + 7 / 12, "feet"),
  9599. default: true
  9600. },
  9601. {
  9602. name: "Macro",
  9603. height: math.unit(85, "feet")
  9604. },
  9605. {
  9606. name: "Megamacro",
  9607. height: math.unit(2.2, "km")
  9608. }
  9609. ]
  9610. ))
  9611. characterMakers.push(() => makeCharacter(
  9612. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9613. {
  9614. front: {
  9615. height: math.unit(5 + 9 / 12, "feet"),
  9616. weight: math.unit(150, "lbs"),
  9617. name: "Front",
  9618. image: {
  9619. source: "./media/characters/coffee/front.svg",
  9620. extra: 946/880,
  9621. bottom: 66/1012
  9622. }
  9623. },
  9624. foot: {
  9625. height: math.unit(1.29, "feet"),
  9626. name: "Foot",
  9627. image: {
  9628. source: "./media/characters/coffee/foot.svg"
  9629. }
  9630. },
  9631. },
  9632. [
  9633. {
  9634. name: "Micro",
  9635. height: math.unit(2, "inches"),
  9636. },
  9637. {
  9638. name: "Normal",
  9639. height: math.unit(5 + 9 / 12, "feet"),
  9640. default: true
  9641. },
  9642. {
  9643. name: "Macro",
  9644. height: math.unit(800, "feet")
  9645. },
  9646. {
  9647. name: "Megamacro",
  9648. height: math.unit(25, "miles")
  9649. }
  9650. ]
  9651. ))
  9652. characterMakers.push(() => makeCharacter(
  9653. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9654. {
  9655. front: {
  9656. height: math.unit(6, "feet"),
  9657. weight: math.unit(200, "lbs"),
  9658. name: "Front",
  9659. image: {
  9660. source: "./media/characters/chari-gal/front.svg",
  9661. extra: 735/649,
  9662. bottom: 55/790
  9663. },
  9664. form: "normal",
  9665. default: true
  9666. },
  9667. back: {
  9668. height: math.unit(6, "feet"),
  9669. weight: math.unit(200, "lb"),
  9670. name: "Back",
  9671. image: {
  9672. source: "./media/characters/chari-gal/back.svg",
  9673. extra: 762/666,
  9674. bottom: 31/793
  9675. },
  9676. form: "normal"
  9677. },
  9678. mouth: {
  9679. height: math.unit(1.35, "feet"),
  9680. name: "Mouth",
  9681. image: {
  9682. source: "./media/characters/chari-gal/mouth.svg"
  9683. },
  9684. form: "normal"
  9685. },
  9686. gigantamax: {
  9687. height: math.unit(6 * 16, "feet"),
  9688. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9689. name: "Gigantamax",
  9690. image: {
  9691. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9692. extra: 1507/1149,
  9693. bottom: 254/1761
  9694. },
  9695. form: "gigantamax",
  9696. default: true
  9697. },
  9698. },
  9699. [
  9700. {
  9701. name: "Normal",
  9702. height: math.unit(5 + 7 / 12, "feet"),
  9703. form: "normal",
  9704. },
  9705. {
  9706. name: "Macro",
  9707. height: math.unit(200, "feet"),
  9708. default: true,
  9709. form: "normal"
  9710. },
  9711. {
  9712. name: "Normal",
  9713. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9714. form: "gigantamax",
  9715. },
  9716. {
  9717. name: "Macro",
  9718. height: math.unit(16 * 200, "feet"),
  9719. default: true,
  9720. form: "gigantamax"
  9721. },
  9722. ],
  9723. {
  9724. "normal": {
  9725. name: "Normal",
  9726. default: true
  9727. },
  9728. "gigantamax": {
  9729. name: "Gigantamax",
  9730. },
  9731. }
  9732. ))
  9733. characterMakers.push(() => makeCharacter(
  9734. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9735. {
  9736. front: {
  9737. height: math.unit(6, "feet"),
  9738. weight: math.unit(150, "lbs"),
  9739. name: "Front",
  9740. image: {
  9741. source: "./media/characters/nova/front.svg",
  9742. extra: 5000 / 4722,
  9743. bottom: 0.02
  9744. }
  9745. }
  9746. },
  9747. [
  9748. {
  9749. name: "Micro-",
  9750. height: math.unit(0.8, "inches")
  9751. },
  9752. {
  9753. name: "Micro",
  9754. height: math.unit(2, "inches"),
  9755. default: true
  9756. },
  9757. ]
  9758. ))
  9759. characterMakers.push(() => makeCharacter(
  9760. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9761. {
  9762. koboldFront: {
  9763. height: math.unit(3 + 1 / 12, "feet"),
  9764. weight: math.unit(21.7, "lbs"),
  9765. name: "Front",
  9766. image: {
  9767. source: "./media/characters/argent/kobold-front.svg",
  9768. extra: 1471 / 1331,
  9769. bottom: 100.8 / 1575.5
  9770. },
  9771. form: "kobold",
  9772. default: true
  9773. },
  9774. dragonFront: {
  9775. height: math.unit(75, "inches"),
  9776. name: "Front",
  9777. image: {
  9778. source: "./media/characters/argent/dragon-front.svg",
  9779. extra: 1389/1248,
  9780. bottom: 54/1443
  9781. },
  9782. form: "dragon",
  9783. },
  9784. dragonBack: {
  9785. height: math.unit(75, "inches"),
  9786. name: "Back",
  9787. image: {
  9788. source: "./media/characters/argent/dragon-back.svg",
  9789. extra: 1399/1271,
  9790. bottom: 23/1422
  9791. },
  9792. form: "dragon",
  9793. },
  9794. dragonDressed: {
  9795. height: math.unit(75, "inches"),
  9796. name: "Dressed",
  9797. image: {
  9798. source: "./media/characters/argent/dragon-dressed.svg",
  9799. extra: 1350/1215,
  9800. bottom: 26/1376
  9801. },
  9802. form: "dragon"
  9803. },
  9804. dragonHead: {
  9805. height: math.unit(23.5, "inches"),
  9806. name: "Head",
  9807. image: {
  9808. source: "./media/characters/argent/dragon-head.svg"
  9809. },
  9810. form: "dragon",
  9811. },
  9812. },
  9813. [
  9814. {
  9815. name: "Micro",
  9816. height: math.unit(2, "inches"),
  9817. form: "kobold",
  9818. },
  9819. {
  9820. name: "Normal",
  9821. height: math.unit(3 + 1 / 12, "feet"),
  9822. form: "kobold",
  9823. default: true
  9824. },
  9825. {
  9826. name: "Macro",
  9827. height: math.unit(120, "feet"),
  9828. form: "kobold",
  9829. },
  9830. {
  9831. name: "Speck",
  9832. height: math.unit(1, "mm"),
  9833. form: "dragon",
  9834. },
  9835. {
  9836. name: "Tiny",
  9837. height: math.unit(1, "cm"),
  9838. form: "dragon",
  9839. },
  9840. {
  9841. name: "Micro",
  9842. height: math.unit(5, "cm"),
  9843. form: "dragon",
  9844. },
  9845. {
  9846. name: "Normal",
  9847. height: math.unit(75, "inches"),
  9848. form: "dragon",
  9849. default: true
  9850. },
  9851. {
  9852. name: "Extra Tall",
  9853. height: math.unit(9, "feet"),
  9854. form: "dragon",
  9855. },
  9856. {
  9857. name: "Inconvenient",
  9858. height: math.unit(5, "meters"),
  9859. form: "dragon",
  9860. },
  9861. {
  9862. name: "Macro",
  9863. height: math.unit(70, "meters"),
  9864. form: "dragon",
  9865. },
  9866. {
  9867. name: "Macro+",
  9868. height: math.unit(250, "meters"),
  9869. form: "dragon",
  9870. },
  9871. {
  9872. name: "Megamacro",
  9873. height: math.unit(20, "km"),
  9874. form: "dragon",
  9875. },
  9876. {
  9877. name: "Mountainous",
  9878. height: math.unit(100, "km"),
  9879. form: "dragon",
  9880. },
  9881. {
  9882. name: "Continental",
  9883. height: math.unit(2, "megameters"),
  9884. form: "dragon",
  9885. },
  9886. {
  9887. name: "Too Big",
  9888. height: math.unit(900, "megameters"),
  9889. form: "dragon",
  9890. },
  9891. ],
  9892. {
  9893. "kobold": {
  9894. name: "Kobold",
  9895. default: true
  9896. },
  9897. "dragon": {
  9898. name: "Dragon",
  9899. },
  9900. }
  9901. ))
  9902. characterMakers.push(() => makeCharacter(
  9903. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9904. {
  9905. lamp: {
  9906. height: math.unit(7 * 1559 / 989, "feet"),
  9907. name: "Magic Lamp",
  9908. image: {
  9909. source: "./media/characters/mira-al-cul/lamp.svg",
  9910. extra: 1617 / 1559
  9911. }
  9912. },
  9913. front: {
  9914. height: math.unit(7, "feet"),
  9915. name: "Front",
  9916. image: {
  9917. source: "./media/characters/mira-al-cul/front.svg",
  9918. extra: 1044 / 990
  9919. }
  9920. },
  9921. },
  9922. [
  9923. {
  9924. name: "Heavily Restricted",
  9925. height: math.unit(7 * 1559 / 989, "feet")
  9926. },
  9927. {
  9928. name: "Freshly Freed",
  9929. height: math.unit(50 * 1559 / 989, "feet")
  9930. },
  9931. {
  9932. name: "World Encompassing",
  9933. height: math.unit(10000 * 1559 / 989, "miles")
  9934. },
  9935. {
  9936. name: "Galactic",
  9937. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9938. },
  9939. {
  9940. name: "Palmed Universe",
  9941. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9942. default: true
  9943. },
  9944. {
  9945. name: "Multiversal Matriarch",
  9946. height: math.unit(8.87e10, "yottameters")
  9947. },
  9948. {
  9949. name: "Void Mother",
  9950. height: math.unit(3.14e110, "yottaparsecs")
  9951. },
  9952. {
  9953. name: "Toying with Transcendence",
  9954. height: math.unit(1e307, "meters")
  9955. },
  9956. ]
  9957. ))
  9958. characterMakers.push(() => makeCharacter(
  9959. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9960. {
  9961. front: {
  9962. height: math.unit(17 + 1 / 12, "feet"),
  9963. weight: math.unit(476.2 * 5, "lbs"),
  9964. name: "Front",
  9965. image: {
  9966. source: "./media/characters/kuro-shi-uchū/front.svg",
  9967. extra: 2329 / 1835,
  9968. bottom: 0.02
  9969. }
  9970. },
  9971. },
  9972. [
  9973. {
  9974. name: "Micro",
  9975. height: math.unit(2, "inches")
  9976. },
  9977. {
  9978. name: "Normal",
  9979. height: math.unit(12, "meters")
  9980. },
  9981. {
  9982. name: "Planetary",
  9983. height: math.unit(0.00929, "AU"),
  9984. default: true
  9985. },
  9986. {
  9987. name: "Universal",
  9988. height: math.unit(20, "gigaparsecs")
  9989. },
  9990. ]
  9991. ))
  9992. characterMakers.push(() => makeCharacter(
  9993. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9994. {
  9995. front: {
  9996. height: math.unit(5 + 2 / 12, "feet"),
  9997. weight: math.unit(120, "lbs"),
  9998. name: "Front",
  9999. image: {
  10000. source: "./media/characters/katherine/front.svg",
  10001. extra: 2075 / 1969
  10002. }
  10003. },
  10004. dress: {
  10005. height: math.unit(5 + 2 / 12, "feet"),
  10006. weight: math.unit(120, "lbs"),
  10007. name: "Dress",
  10008. image: {
  10009. source: "./media/characters/katherine/dress.svg",
  10010. extra: 2258 / 2064
  10011. }
  10012. },
  10013. },
  10014. [
  10015. {
  10016. name: "Micro",
  10017. height: math.unit(1, "inches"),
  10018. default: true
  10019. },
  10020. {
  10021. name: "Normal",
  10022. height: math.unit(5 + 2 / 12, "feet")
  10023. },
  10024. {
  10025. name: "Macro",
  10026. height: math.unit(100, "meters")
  10027. },
  10028. {
  10029. name: "Megamacro",
  10030. height: math.unit(80, "miles")
  10031. },
  10032. ]
  10033. ))
  10034. characterMakers.push(() => makeCharacter(
  10035. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10036. {
  10037. front: {
  10038. height: math.unit(7 + 8 / 12, "feet"),
  10039. weight: math.unit(250, "lbs"),
  10040. name: "Front",
  10041. image: {
  10042. source: "./media/characters/yevis/front.svg",
  10043. extra: 1938 / 1755
  10044. }
  10045. }
  10046. },
  10047. [
  10048. {
  10049. name: "Mortal",
  10050. height: math.unit(7 + 8 / 12, "feet")
  10051. },
  10052. {
  10053. name: "Battle",
  10054. height: math.unit(25 + 11 / 12, "feet")
  10055. },
  10056. {
  10057. name: "Wrath",
  10058. height: math.unit(1654 + 11 / 12, "feet")
  10059. },
  10060. {
  10061. name: "Planet Destroyer",
  10062. height: math.unit(12000, "miles")
  10063. },
  10064. {
  10065. name: "Galaxy Conqueror",
  10066. height: math.unit(1.45, "zettameters"),
  10067. default: true
  10068. },
  10069. {
  10070. name: "Universal War",
  10071. height: math.unit(184, "gigaparsecs")
  10072. },
  10073. {
  10074. name: "Eternity War",
  10075. height: math.unit(1.98e55, "yottaparsecs")
  10076. },
  10077. ]
  10078. ))
  10079. characterMakers.push(() => makeCharacter(
  10080. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10081. {
  10082. front: {
  10083. height: math.unit(5 + 8 / 12, "feet"),
  10084. weight: math.unit(63, "kg"),
  10085. name: "Front",
  10086. image: {
  10087. source: "./media/characters/xavier/front.svg",
  10088. extra: 944 / 883
  10089. }
  10090. },
  10091. frontStretch: {
  10092. height: math.unit(5 + 8 / 12, "feet"),
  10093. weight: math.unit(63, "kg"),
  10094. name: "Stretching",
  10095. image: {
  10096. source: "./media/characters/xavier/front-stretch.svg",
  10097. extra: 962 / 820
  10098. }
  10099. },
  10100. },
  10101. [
  10102. {
  10103. name: "Normal",
  10104. height: math.unit(5 + 8 / 12, "feet")
  10105. },
  10106. {
  10107. name: "Macro",
  10108. height: math.unit(100, "meters"),
  10109. default: true
  10110. },
  10111. {
  10112. name: "McLargeHuge",
  10113. height: math.unit(10, "miles")
  10114. },
  10115. ]
  10116. ))
  10117. characterMakers.push(() => makeCharacter(
  10118. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10119. {
  10120. front: {
  10121. height: math.unit(5 + 5 / 12, "feet"),
  10122. weight: math.unit(150, "lb"),
  10123. name: "Front",
  10124. image: {
  10125. source: "./media/characters/joshii/front.svg",
  10126. extra: 765 / 653,
  10127. bottom: 51 / 816
  10128. }
  10129. },
  10130. foot: {
  10131. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10132. name: "Foot",
  10133. image: {
  10134. source: "./media/characters/joshii/foot.svg"
  10135. }
  10136. },
  10137. },
  10138. [
  10139. {
  10140. name: "Micro",
  10141. height: math.unit(2, "inches")
  10142. },
  10143. {
  10144. name: "Normal",
  10145. height: math.unit(5 + 5 / 12, "feet")
  10146. },
  10147. {
  10148. name: "Macro",
  10149. height: math.unit(785, "feet"),
  10150. default: true
  10151. },
  10152. {
  10153. name: "Megamacro",
  10154. height: math.unit(24.5, "miles")
  10155. },
  10156. ]
  10157. ))
  10158. characterMakers.push(() => makeCharacter(
  10159. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10160. {
  10161. front: {
  10162. height: math.unit(6, "feet"),
  10163. weight: math.unit(150, "lb"),
  10164. name: "Front",
  10165. image: {
  10166. source: "./media/characters/goddess-elizabeth/front.svg",
  10167. extra: 1800 / 1525,
  10168. bottom: 0.005
  10169. }
  10170. },
  10171. foot: {
  10172. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10173. name: "Foot",
  10174. image: {
  10175. source: "./media/characters/goddess-elizabeth/foot.svg"
  10176. }
  10177. },
  10178. mouth: {
  10179. height: math.unit(6, "feet"),
  10180. name: "Mouth",
  10181. image: {
  10182. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10183. }
  10184. },
  10185. },
  10186. [
  10187. {
  10188. name: "Micro",
  10189. height: math.unit(12, "feet")
  10190. },
  10191. {
  10192. name: "Normal",
  10193. height: math.unit(80, "miles"),
  10194. default: true
  10195. },
  10196. {
  10197. name: "Macro",
  10198. height: math.unit(15000, "parsecs")
  10199. },
  10200. ]
  10201. ))
  10202. characterMakers.push(() => makeCharacter(
  10203. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10204. {
  10205. front: {
  10206. height: math.unit(5 + 9 / 12, "feet"),
  10207. weight: math.unit(144, "lb"),
  10208. name: "Front",
  10209. image: {
  10210. source: "./media/characters/kara/front.svg"
  10211. }
  10212. },
  10213. feet: {
  10214. height: math.unit(6 / 6.765, "feet"),
  10215. name: "Kara's Feet",
  10216. rename: true,
  10217. image: {
  10218. source: "./media/characters/kara/feet.svg"
  10219. }
  10220. },
  10221. },
  10222. [
  10223. {
  10224. name: "Normal",
  10225. height: math.unit(5 + 9 / 12, "feet")
  10226. },
  10227. {
  10228. name: "Macro",
  10229. height: math.unit(174, "feet"),
  10230. default: true
  10231. },
  10232. ]
  10233. ))
  10234. characterMakers.push(() => makeCharacter(
  10235. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10236. {
  10237. front: {
  10238. height: math.unit(18, "feet"),
  10239. weight: math.unit(4050, "lb"),
  10240. name: "Front",
  10241. image: {
  10242. source: "./media/characters/tyrone/front.svg",
  10243. extra: 2405 / 2270,
  10244. bottom: 182 / 2587
  10245. }
  10246. },
  10247. },
  10248. [
  10249. {
  10250. name: "Normal",
  10251. height: math.unit(18, "feet"),
  10252. default: true
  10253. },
  10254. {
  10255. name: "Macro",
  10256. height: math.unit(300, "feet")
  10257. },
  10258. {
  10259. name: "Megamacro",
  10260. height: math.unit(15, "km")
  10261. },
  10262. {
  10263. name: "Gigamacro",
  10264. height: math.unit(500, "km")
  10265. },
  10266. {
  10267. name: "Teramacro",
  10268. height: math.unit(0.5, "gigameters")
  10269. },
  10270. {
  10271. name: "Omnimacro",
  10272. height: math.unit(1e252, "yottauniverse")
  10273. },
  10274. ]
  10275. ))
  10276. characterMakers.push(() => makeCharacter(
  10277. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10278. {
  10279. front: {
  10280. height: math.unit(7 + 8 / 12, "feet"),
  10281. weight: math.unit(120, "lb"),
  10282. name: "Front",
  10283. image: {
  10284. source: "./media/characters/danny/front.svg",
  10285. extra: 1490 / 1350
  10286. }
  10287. },
  10288. back: {
  10289. height: math.unit(7 + 8 / 12, "feet"),
  10290. weight: math.unit(120, "lb"),
  10291. name: "Back",
  10292. image: {
  10293. source: "./media/characters/danny/back.svg",
  10294. extra: 1490 / 1350
  10295. }
  10296. },
  10297. },
  10298. [
  10299. {
  10300. name: "Normal",
  10301. height: math.unit(7 + 8 / 12, "feet"),
  10302. default: true
  10303. },
  10304. ]
  10305. ))
  10306. characterMakers.push(() => makeCharacter(
  10307. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10308. {
  10309. front: {
  10310. height: math.unit(3.5, "inches"),
  10311. weight: math.unit(19, "grams"),
  10312. name: "Front",
  10313. image: {
  10314. source: "./media/characters/mallow/front.svg",
  10315. extra: 471 / 431
  10316. }
  10317. },
  10318. back: {
  10319. height: math.unit(3.5, "inches"),
  10320. weight: math.unit(19, "grams"),
  10321. name: "Back",
  10322. image: {
  10323. source: "./media/characters/mallow/back.svg",
  10324. extra: 471 / 431
  10325. }
  10326. },
  10327. },
  10328. [
  10329. {
  10330. name: "Normal",
  10331. height: math.unit(3.5, "inches"),
  10332. default: true
  10333. },
  10334. ]
  10335. ))
  10336. characterMakers.push(() => makeCharacter(
  10337. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10338. {
  10339. front: {
  10340. height: math.unit(9, "feet"),
  10341. weight: math.unit(230, "kg"),
  10342. name: "Front",
  10343. image: {
  10344. source: "./media/characters/starry-aqua/front.svg"
  10345. }
  10346. },
  10347. back: {
  10348. height: math.unit(9, "feet"),
  10349. weight: math.unit(230, "kg"),
  10350. name: "Back",
  10351. image: {
  10352. source: "./media/characters/starry-aqua/back.svg"
  10353. }
  10354. },
  10355. hand: {
  10356. height: math.unit(9 * 0.1168, "feet"),
  10357. name: "Hand",
  10358. image: {
  10359. source: "./media/characters/starry-aqua/hand.svg"
  10360. }
  10361. },
  10362. foot: {
  10363. height: math.unit(9 * 0.18, "feet"),
  10364. name: "Foot",
  10365. image: {
  10366. source: "./media/characters/starry-aqua/foot.svg"
  10367. }
  10368. }
  10369. },
  10370. [
  10371. {
  10372. name: "Micro",
  10373. height: math.unit(3, "inches")
  10374. },
  10375. {
  10376. name: "Normal",
  10377. height: math.unit(9, "feet")
  10378. },
  10379. {
  10380. name: "Macro",
  10381. height: math.unit(300, "feet"),
  10382. default: true
  10383. },
  10384. {
  10385. name: "Megamacro",
  10386. height: math.unit(3200, "feet")
  10387. }
  10388. ]
  10389. ))
  10390. characterMakers.push(() => makeCharacter(
  10391. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10392. {
  10393. front: {
  10394. height: math.unit(15, "feet"),
  10395. weight: math.unit(5026, "lb"),
  10396. name: "Front",
  10397. image: {
  10398. source: "./media/characters/luka-towers/front.svg",
  10399. extra: 1269/1133,
  10400. bottom: 51/1320
  10401. }
  10402. },
  10403. },
  10404. [
  10405. {
  10406. name: "Normal",
  10407. height: math.unit(15, "feet"),
  10408. default: true
  10409. },
  10410. {
  10411. name: "Minimacro",
  10412. height: math.unit(25, "feet")
  10413. },
  10414. {
  10415. name: "Macro",
  10416. height: math.unit(320, "feet")
  10417. },
  10418. {
  10419. name: "Megamacro",
  10420. height: math.unit(35000, "feet")
  10421. },
  10422. {
  10423. name: "Gigamacro",
  10424. height: math.unit(4000, "miles")
  10425. },
  10426. {
  10427. name: "Teramacro",
  10428. height: math.unit(15000, "miles")
  10429. },
  10430. ]
  10431. ))
  10432. characterMakers.push(() => makeCharacter(
  10433. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10434. {
  10435. front: {
  10436. height: math.unit(6, "feet"),
  10437. weight: math.unit(150, "lb"),
  10438. name: "Front",
  10439. image: {
  10440. source: "./media/characters/natalie-nightring/front.svg",
  10441. extra: 1,
  10442. bottom: 0.06
  10443. }
  10444. },
  10445. },
  10446. [
  10447. {
  10448. name: "Uh Oh",
  10449. height: math.unit(0.1, "mm")
  10450. },
  10451. {
  10452. name: "Small",
  10453. height: math.unit(3, "inches")
  10454. },
  10455. {
  10456. name: "Human Scale",
  10457. height: math.unit(6, "feet")
  10458. },
  10459. {
  10460. name: "Librarian",
  10461. height: math.unit(50, "feet"),
  10462. default: true
  10463. },
  10464. {
  10465. name: "Immense",
  10466. height: math.unit(200, "miles")
  10467. },
  10468. ]
  10469. ))
  10470. characterMakers.push(() => makeCharacter(
  10471. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10472. {
  10473. front: {
  10474. height: math.unit(6, "feet"),
  10475. weight: math.unit(180, "lbs"),
  10476. name: "Front",
  10477. image: {
  10478. source: "./media/characters/danni-rosie/front.svg",
  10479. extra: 1260 / 1128,
  10480. bottom: 0.022
  10481. }
  10482. },
  10483. },
  10484. [
  10485. {
  10486. name: "Micro",
  10487. height: math.unit(2, "inches"),
  10488. default: true
  10489. },
  10490. ]
  10491. ))
  10492. characterMakers.push(() => makeCharacter(
  10493. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10494. {
  10495. front: {
  10496. height: math.unit(5 + 9 / 12, "feet"),
  10497. weight: math.unit(220, "lb"),
  10498. name: "Front",
  10499. image: {
  10500. source: "./media/characters/samantha-kruse/front.svg",
  10501. extra: (985 / 935),
  10502. bottom: 0.03
  10503. }
  10504. },
  10505. frontUndressed: {
  10506. height: math.unit(5 + 9 / 12, "feet"),
  10507. weight: math.unit(220, "lb"),
  10508. name: "Front (Undressed)",
  10509. image: {
  10510. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10511. extra: (973 / 923),
  10512. bottom: 0.025
  10513. }
  10514. },
  10515. fat: {
  10516. height: math.unit(5 + 9 / 12, "feet"),
  10517. weight: math.unit(900, "lb"),
  10518. name: "Front (Fat)",
  10519. image: {
  10520. source: "./media/characters/samantha-kruse/fat.svg",
  10521. extra: 2688 / 2561
  10522. }
  10523. },
  10524. },
  10525. [
  10526. {
  10527. name: "Normal",
  10528. height: math.unit(5 + 9 / 12, "feet"),
  10529. default: true
  10530. }
  10531. ]
  10532. ))
  10533. characterMakers.push(() => makeCharacter(
  10534. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10535. {
  10536. back: {
  10537. height: math.unit(5 + 4 / 12, "feet"),
  10538. weight: math.unit(4963, "lb"),
  10539. name: "Back",
  10540. image: {
  10541. source: "./media/characters/amelia-rosie/back.svg",
  10542. extra: 1113 / 963,
  10543. bottom: 0.01
  10544. }
  10545. },
  10546. },
  10547. [
  10548. {
  10549. name: "Level 0",
  10550. height: math.unit(5 + 4 / 12, "feet")
  10551. },
  10552. {
  10553. name: "Level 1",
  10554. height: math.unit(164597, "feet"),
  10555. default: true
  10556. },
  10557. {
  10558. name: "Level 2",
  10559. height: math.unit(956243, "miles")
  10560. },
  10561. {
  10562. name: "Level 3",
  10563. height: math.unit(29421709423, "miles")
  10564. },
  10565. {
  10566. name: "Level 4",
  10567. height: math.unit(154, "lightyears")
  10568. },
  10569. {
  10570. name: "Level 5",
  10571. height: math.unit(4738272, "lightyears")
  10572. },
  10573. {
  10574. name: "Level 6",
  10575. height: math.unit(145787152896, "lightyears")
  10576. },
  10577. ]
  10578. ))
  10579. characterMakers.push(() => makeCharacter(
  10580. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10581. {
  10582. front: {
  10583. height: math.unit(5 + 11 / 12, "feet"),
  10584. weight: math.unit(65, "kg"),
  10585. name: "Front",
  10586. image: {
  10587. source: "./media/characters/rook-kitara/front.svg",
  10588. extra: 1347 / 1274,
  10589. bottom: 0.005
  10590. }
  10591. },
  10592. },
  10593. [
  10594. {
  10595. name: "Totally Unfair",
  10596. height: math.unit(1.8, "mm")
  10597. },
  10598. {
  10599. name: "Lap Rookie",
  10600. height: math.unit(1.4, "feet")
  10601. },
  10602. {
  10603. name: "Normal",
  10604. height: math.unit(5 + 11 / 12, "feet"),
  10605. default: true
  10606. },
  10607. {
  10608. name: "How Did This Happen",
  10609. height: math.unit(80, "miles")
  10610. }
  10611. ]
  10612. ))
  10613. characterMakers.push(() => makeCharacter(
  10614. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10615. {
  10616. front: {
  10617. height: math.unit(7, "feet"),
  10618. weight: math.unit(300, "lb"),
  10619. name: "Front",
  10620. image: {
  10621. source: "./media/characters/pisces/front.svg",
  10622. extra: 2255 / 2115,
  10623. bottom: 0.03
  10624. }
  10625. },
  10626. back: {
  10627. height: math.unit(7, "feet"),
  10628. weight: math.unit(300, "lb"),
  10629. name: "Back",
  10630. image: {
  10631. source: "./media/characters/pisces/back.svg",
  10632. extra: 2146 / 2055,
  10633. bottom: 0.04
  10634. }
  10635. },
  10636. },
  10637. [
  10638. {
  10639. name: "Normal",
  10640. height: math.unit(7, "feet"),
  10641. default: true
  10642. },
  10643. {
  10644. name: "Swimming Pool",
  10645. height: math.unit(12.2, "meters")
  10646. },
  10647. {
  10648. name: "Olympic Swimming Pool",
  10649. height: math.unit(56.3, "meters")
  10650. },
  10651. {
  10652. name: "Lake Superior",
  10653. height: math.unit(93900, "meters")
  10654. },
  10655. {
  10656. name: "Mediterranean Sea",
  10657. height: math.unit(644457, "meters")
  10658. },
  10659. {
  10660. name: "World's Oceans",
  10661. height: math.unit(4567491, "meters")
  10662. },
  10663. ]
  10664. ))
  10665. characterMakers.push(() => makeCharacter(
  10666. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10667. {
  10668. front: {
  10669. height: math.unit(2.3, "meters"),
  10670. weight: math.unit(120, "kg"),
  10671. name: "Front",
  10672. image: {
  10673. source: "./media/characters/zelas/front.svg"
  10674. }
  10675. },
  10676. side: {
  10677. height: math.unit(2.3, "meters"),
  10678. weight: math.unit(120, "kg"),
  10679. name: "Side",
  10680. image: {
  10681. source: "./media/characters/zelas/side.svg"
  10682. }
  10683. },
  10684. back: {
  10685. height: math.unit(2.3, "meters"),
  10686. weight: math.unit(120, "kg"),
  10687. name: "Back",
  10688. image: {
  10689. source: "./media/characters/zelas/back.svg"
  10690. }
  10691. },
  10692. foot: {
  10693. height: math.unit(1.116, "feet"),
  10694. name: "Foot",
  10695. image: {
  10696. source: "./media/characters/zelas/foot.svg"
  10697. }
  10698. },
  10699. },
  10700. [
  10701. {
  10702. name: "Normal",
  10703. height: math.unit(2.3, "meters")
  10704. },
  10705. {
  10706. name: "Macro",
  10707. height: math.unit(30, "meters"),
  10708. default: true
  10709. },
  10710. ]
  10711. ))
  10712. characterMakers.push(() => makeCharacter(
  10713. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10714. {
  10715. front: {
  10716. height: math.unit(1, "inch"),
  10717. weight: math.unit(0.21, "grams"),
  10718. name: "Front",
  10719. image: {
  10720. source: "./media/characters/talbot/front.svg",
  10721. extra: 594 / 544
  10722. }
  10723. },
  10724. },
  10725. [
  10726. {
  10727. name: "Micro",
  10728. height: math.unit(1, "inch"),
  10729. default: true
  10730. },
  10731. ]
  10732. ))
  10733. characterMakers.push(() => makeCharacter(
  10734. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10735. {
  10736. front: {
  10737. height: math.unit(3 + 3 / 12, "feet"),
  10738. weight: math.unit(51.8, "lb"),
  10739. name: "Front",
  10740. image: {
  10741. source: "./media/characters/fliss/front.svg",
  10742. extra: 840 / 640
  10743. }
  10744. },
  10745. },
  10746. [
  10747. {
  10748. name: "Teeny Tiny",
  10749. height: math.unit(1, "mm")
  10750. },
  10751. {
  10752. name: "Small",
  10753. height: math.unit(1, "inch"),
  10754. default: true
  10755. },
  10756. {
  10757. name: "Standard Sylveon",
  10758. height: math.unit(3 + 3 / 12, "feet")
  10759. },
  10760. {
  10761. name: "Large Nuisance",
  10762. height: math.unit(33, "feet")
  10763. },
  10764. {
  10765. name: "City Filler",
  10766. height: math.unit(3000, "feet")
  10767. },
  10768. {
  10769. name: "New Horizon",
  10770. height: math.unit(6000, "miles")
  10771. },
  10772. ]
  10773. ))
  10774. characterMakers.push(() => makeCharacter(
  10775. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10776. {
  10777. front: {
  10778. height: math.unit(5, "cm"),
  10779. weight: math.unit(1.94, "g"),
  10780. name: "Front",
  10781. image: {
  10782. source: "./media/characters/fleta/front.svg",
  10783. extra: 835 / 803
  10784. }
  10785. },
  10786. back: {
  10787. height: math.unit(5, "cm"),
  10788. weight: math.unit(1.94, "g"),
  10789. name: "Back",
  10790. image: {
  10791. source: "./media/characters/fleta/back.svg",
  10792. extra: 835 / 803
  10793. }
  10794. },
  10795. },
  10796. [
  10797. {
  10798. name: "Micro",
  10799. height: math.unit(5, "cm"),
  10800. default: true
  10801. },
  10802. ]
  10803. ))
  10804. characterMakers.push(() => makeCharacter(
  10805. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10806. {
  10807. front: {
  10808. height: math.unit(6, "feet"),
  10809. weight: math.unit(225, "lb"),
  10810. name: "Front",
  10811. image: {
  10812. source: "./media/characters/dominic/front.svg",
  10813. extra: 1770 / 1620,
  10814. bottom: 0.025
  10815. }
  10816. },
  10817. back: {
  10818. height: math.unit(6, "feet"),
  10819. weight: math.unit(225, "lb"),
  10820. name: "Back",
  10821. image: {
  10822. source: "./media/characters/dominic/back.svg",
  10823. extra: 1745 / 1620,
  10824. bottom: 0.065
  10825. }
  10826. },
  10827. },
  10828. [
  10829. {
  10830. name: "Nano",
  10831. height: math.unit(0.1, "mm")
  10832. },
  10833. {
  10834. name: "Micro-",
  10835. height: math.unit(1, "mm")
  10836. },
  10837. {
  10838. name: "Micro",
  10839. height: math.unit(4, "inches")
  10840. },
  10841. {
  10842. name: "Normal",
  10843. height: math.unit(6 + 4 / 12, "feet"),
  10844. default: true
  10845. },
  10846. {
  10847. name: "Macro",
  10848. height: math.unit(115, "feet")
  10849. },
  10850. {
  10851. name: "Macro+",
  10852. height: math.unit(955, "feet")
  10853. },
  10854. {
  10855. name: "Megamacro",
  10856. height: math.unit(8990, "feet")
  10857. },
  10858. {
  10859. name: "Gigmacro",
  10860. height: math.unit(9310, "miles")
  10861. },
  10862. {
  10863. name: "Teramacro",
  10864. height: math.unit(1567005010, "miles")
  10865. },
  10866. {
  10867. name: "Examacro",
  10868. height: math.unit(1425, "parsecs")
  10869. },
  10870. ]
  10871. ))
  10872. characterMakers.push(() => makeCharacter(
  10873. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10874. {
  10875. front: {
  10876. height: math.unit(400, "feet"),
  10877. weight: math.unit(44444444, "lb"),
  10878. name: "Front",
  10879. image: {
  10880. source: "./media/characters/major-colonel/front.svg"
  10881. }
  10882. },
  10883. back: {
  10884. height: math.unit(400, "feet"),
  10885. weight: math.unit(44444444, "lb"),
  10886. name: "Back",
  10887. image: {
  10888. source: "./media/characters/major-colonel/back.svg"
  10889. }
  10890. },
  10891. },
  10892. [
  10893. {
  10894. name: "Macro",
  10895. height: math.unit(400, "feet"),
  10896. default: true
  10897. },
  10898. ]
  10899. ))
  10900. characterMakers.push(() => makeCharacter(
  10901. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10902. {
  10903. catFront: {
  10904. height: math.unit(6, "feet"),
  10905. weight: math.unit(120, "lb"),
  10906. name: "Front (Cat Side)",
  10907. image: {
  10908. source: "./media/characters/axel-lycan/cat-front.svg",
  10909. extra: 430 / 402,
  10910. bottom: 43 / 472.35
  10911. }
  10912. },
  10913. catBack: {
  10914. height: math.unit(6, "feet"),
  10915. weight: math.unit(120, "lb"),
  10916. name: "Back (Cat Side)",
  10917. image: {
  10918. source: "./media/characters/axel-lycan/cat-back.svg",
  10919. extra: 447 / 419,
  10920. bottom: 23.3 / 469
  10921. }
  10922. },
  10923. wolfFront: {
  10924. height: math.unit(6, "feet"),
  10925. weight: math.unit(120, "lb"),
  10926. name: "Front (Wolf Side)",
  10927. image: {
  10928. source: "./media/characters/axel-lycan/wolf-front.svg",
  10929. extra: 485 / 456,
  10930. bottom: 19 / 504
  10931. }
  10932. },
  10933. wolfBack: {
  10934. height: math.unit(6, "feet"),
  10935. weight: math.unit(120, "lb"),
  10936. name: "Back (Wolf Side)",
  10937. image: {
  10938. source: "./media/characters/axel-lycan/wolf-back.svg",
  10939. extra: 475 / 438,
  10940. bottom: 39.2 / 514
  10941. }
  10942. },
  10943. },
  10944. [
  10945. {
  10946. name: "Macro",
  10947. height: math.unit(1, "km"),
  10948. default: true
  10949. },
  10950. ]
  10951. ))
  10952. characterMakers.push(() => makeCharacter(
  10953. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10954. {
  10955. front: {
  10956. height: math.unit(5 + 9 / 12, "feet"),
  10957. weight: math.unit(175, "lb"),
  10958. name: "Front",
  10959. image: {
  10960. source: "./media/characters/vanrel-hyena/front.svg",
  10961. extra: 1086 / 1010,
  10962. bottom: 0.04
  10963. }
  10964. },
  10965. },
  10966. [
  10967. {
  10968. name: "Normal",
  10969. height: math.unit(5 + 9 / 12, "feet"),
  10970. default: true
  10971. },
  10972. ]
  10973. ))
  10974. characterMakers.push(() => makeCharacter(
  10975. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10976. {
  10977. front: {
  10978. height: math.unit(6, "feet"),
  10979. weight: math.unit(103, "lb"),
  10980. name: "Front",
  10981. image: {
  10982. source: "./media/characters/abbott-absol/front.svg",
  10983. extra: 765/694,
  10984. bottom: 47/812
  10985. }
  10986. },
  10987. },
  10988. [
  10989. {
  10990. name: "Megamicro",
  10991. height: math.unit(0.1, "mm")
  10992. },
  10993. {
  10994. name: "Micro",
  10995. height: math.unit(1, "inch")
  10996. },
  10997. {
  10998. name: "Normal",
  10999. height: math.unit(6, "feet"),
  11000. default: true
  11001. },
  11002. ]
  11003. ))
  11004. characterMakers.push(() => makeCharacter(
  11005. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11006. {
  11007. front: {
  11008. height: math.unit(6, "feet"),
  11009. weight: math.unit(264, "lb"),
  11010. name: "Front",
  11011. image: {
  11012. source: "./media/characters/hector/front.svg",
  11013. extra: 2280 / 2130,
  11014. bottom: 0.07
  11015. }
  11016. },
  11017. },
  11018. [
  11019. {
  11020. name: "Normal",
  11021. height: math.unit(12.25, "foot"),
  11022. default: true
  11023. },
  11024. {
  11025. name: "Macro",
  11026. height: math.unit(160, "feet")
  11027. },
  11028. ]
  11029. ))
  11030. characterMakers.push(() => makeCharacter(
  11031. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11032. {
  11033. front: {
  11034. height: math.unit(6, "feet"),
  11035. weight: math.unit(150, "lb"),
  11036. name: "Front",
  11037. image: {
  11038. source: "./media/characters/sal/front.svg",
  11039. extra: 1846 / 1699,
  11040. bottom: 0.04
  11041. }
  11042. },
  11043. },
  11044. [
  11045. {
  11046. name: "Megamacro",
  11047. height: math.unit(10, "miles"),
  11048. default: true
  11049. },
  11050. ]
  11051. ))
  11052. characterMakers.push(() => makeCharacter(
  11053. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11054. {
  11055. front: {
  11056. height: math.unit(3, "meters"),
  11057. weight: math.unit(450, "kg"),
  11058. name: "front",
  11059. image: {
  11060. source: "./media/characters/ranger/front.svg",
  11061. extra: 2401 / 2243,
  11062. bottom: 0.05
  11063. }
  11064. },
  11065. },
  11066. [
  11067. {
  11068. name: "Normal",
  11069. height: math.unit(3, "meters"),
  11070. default: true
  11071. },
  11072. ]
  11073. ))
  11074. characterMakers.push(() => makeCharacter(
  11075. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11076. {
  11077. front: {
  11078. height: math.unit(14, "feet"),
  11079. weight: math.unit(800, "kg"),
  11080. name: "Front",
  11081. image: {
  11082. source: "./media/characters/theresa/front.svg",
  11083. extra: 3575 / 3346,
  11084. bottom: 0.03
  11085. }
  11086. },
  11087. },
  11088. [
  11089. {
  11090. name: "Normal",
  11091. height: math.unit(14, "feet"),
  11092. default: true
  11093. },
  11094. ]
  11095. ))
  11096. characterMakers.push(() => makeCharacter(
  11097. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11098. {
  11099. front: {
  11100. height: math.unit(6, "feet"),
  11101. weight: math.unit(3, "kg"),
  11102. name: "Front",
  11103. image: {
  11104. source: "./media/characters/ine/front.svg",
  11105. extra: 678 / 539,
  11106. bottom: 0.023
  11107. }
  11108. },
  11109. },
  11110. [
  11111. {
  11112. name: "Normal",
  11113. height: math.unit(2.265, "feet"),
  11114. default: true
  11115. },
  11116. ]
  11117. ))
  11118. characterMakers.push(() => makeCharacter(
  11119. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11120. {
  11121. front: {
  11122. height: math.unit(5, "feet"),
  11123. weight: math.unit(30, "kg"),
  11124. name: "Front",
  11125. image: {
  11126. source: "./media/characters/vial/front.svg",
  11127. extra: 1365 / 1277,
  11128. bottom: 0.04
  11129. }
  11130. },
  11131. },
  11132. [
  11133. {
  11134. name: "Normal",
  11135. height: math.unit(5, "feet"),
  11136. default: true
  11137. },
  11138. ]
  11139. ))
  11140. characterMakers.push(() => makeCharacter(
  11141. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11142. {
  11143. side: {
  11144. height: math.unit(3.4, "meters"),
  11145. weight: math.unit(1000, "lb"),
  11146. name: "Side",
  11147. image: {
  11148. source: "./media/characters/rovoska/side.svg",
  11149. extra: 4403 / 1515
  11150. }
  11151. },
  11152. },
  11153. [
  11154. {
  11155. name: "Normal",
  11156. height: math.unit(3.4, "meters"),
  11157. default: true
  11158. },
  11159. ]
  11160. ))
  11161. characterMakers.push(() => makeCharacter(
  11162. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11163. {
  11164. front: {
  11165. height: math.unit(8, "feet"),
  11166. weight: math.unit(315, "lb"),
  11167. name: "Front",
  11168. image: {
  11169. source: "./media/characters/gunner-rotthbauer/front.svg"
  11170. }
  11171. },
  11172. back: {
  11173. height: math.unit(8, "feet"),
  11174. weight: math.unit(315, "lb"),
  11175. name: "Back",
  11176. image: {
  11177. source: "./media/characters/gunner-rotthbauer/back.svg"
  11178. }
  11179. },
  11180. },
  11181. [
  11182. {
  11183. name: "Micro",
  11184. height: math.unit(3.5, "inches")
  11185. },
  11186. {
  11187. name: "Normal",
  11188. height: math.unit(8, "feet"),
  11189. default: true
  11190. },
  11191. {
  11192. name: "Macro",
  11193. height: math.unit(250, "feet")
  11194. },
  11195. {
  11196. name: "Megamacro",
  11197. height: math.unit(1, "AU")
  11198. },
  11199. ]
  11200. ))
  11201. characterMakers.push(() => makeCharacter(
  11202. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11203. {
  11204. front: {
  11205. height: math.unit(5 + 5 / 12, "feet"),
  11206. weight: math.unit(140, "lb"),
  11207. name: "Front",
  11208. image: {
  11209. source: "./media/characters/allatia/front.svg",
  11210. extra: 1227 / 1180,
  11211. bottom: 0.027
  11212. }
  11213. },
  11214. },
  11215. [
  11216. {
  11217. name: "Normal",
  11218. height: math.unit(5 + 5 / 12, "feet")
  11219. },
  11220. {
  11221. name: "Macro",
  11222. height: math.unit(250, "feet"),
  11223. default: true
  11224. },
  11225. {
  11226. name: "Megamacro",
  11227. height: math.unit(8, "miles")
  11228. }
  11229. ]
  11230. ))
  11231. characterMakers.push(() => makeCharacter(
  11232. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11233. {
  11234. front: {
  11235. height: math.unit(6, "feet"),
  11236. weight: math.unit(120, "lb"),
  11237. name: "Front",
  11238. image: {
  11239. source: "./media/characters/tene/front.svg",
  11240. extra: 814/750,
  11241. bottom: 36/850
  11242. }
  11243. },
  11244. stomping: {
  11245. height: math.unit(2.025, "meters"),
  11246. weight: math.unit(120, "lb"),
  11247. name: "Stomping",
  11248. image: {
  11249. source: "./media/characters/tene/stomping.svg",
  11250. extra: 885/821,
  11251. bottom: 15/900
  11252. }
  11253. },
  11254. sitting: {
  11255. height: math.unit(1, "meter"),
  11256. weight: math.unit(120, "lb"),
  11257. name: "Sitting",
  11258. image: {
  11259. source: "./media/characters/tene/sitting.svg",
  11260. extra: 396/366,
  11261. bottom: 79/475
  11262. }
  11263. },
  11264. smiling: {
  11265. height: math.unit(1.2, "feet"),
  11266. name: "Smiling",
  11267. image: {
  11268. source: "./media/characters/tene/smiling.svg",
  11269. extra: 1364/1071,
  11270. bottom: 0/1364
  11271. }
  11272. },
  11273. smug: {
  11274. height: math.unit(1.3, "feet"),
  11275. name: "Smug",
  11276. image: {
  11277. source: "./media/characters/tene/smug.svg",
  11278. extra: 1323/1082,
  11279. bottom: 0/1323
  11280. }
  11281. },
  11282. feral: {
  11283. height: math.unit(3.9, "feet"),
  11284. weight: math.unit(250, "lb"),
  11285. name: "Feral",
  11286. image: {
  11287. source: "./media/characters/tene/feral.svg",
  11288. extra: 717 / 458,
  11289. bottom: 0.179
  11290. }
  11291. },
  11292. },
  11293. [
  11294. {
  11295. name: "Normal",
  11296. height: math.unit(6, "feet")
  11297. },
  11298. {
  11299. name: "Macro",
  11300. height: math.unit(300, "feet"),
  11301. default: true
  11302. },
  11303. {
  11304. name: "Megamacro",
  11305. height: math.unit(5, "miles")
  11306. },
  11307. ]
  11308. ))
  11309. characterMakers.push(() => makeCharacter(
  11310. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11311. {
  11312. side: {
  11313. height: math.unit(6, "feet"),
  11314. name: "Side",
  11315. image: {
  11316. source: "./media/characters/evander/side.svg",
  11317. extra: 877 / 477
  11318. }
  11319. },
  11320. },
  11321. [
  11322. {
  11323. name: "Normal",
  11324. height: math.unit(0.83, "meters"),
  11325. default: true
  11326. },
  11327. ]
  11328. ))
  11329. characterMakers.push(() => makeCharacter(
  11330. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11331. {
  11332. front: {
  11333. height: math.unit(12, "feet"),
  11334. weight: math.unit(1000, "lb"),
  11335. name: "Front",
  11336. image: {
  11337. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11338. extra: 1762 / 1611
  11339. }
  11340. },
  11341. back: {
  11342. height: math.unit(12, "feet"),
  11343. weight: math.unit(1000, "lb"),
  11344. name: "Back",
  11345. image: {
  11346. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11347. extra: 1762 / 1611
  11348. }
  11349. },
  11350. },
  11351. [
  11352. {
  11353. name: "Normal",
  11354. height: math.unit(12, "feet"),
  11355. default: true
  11356. },
  11357. {
  11358. name: "Kaiju",
  11359. height: math.unit(150, "feet")
  11360. },
  11361. ]
  11362. ))
  11363. characterMakers.push(() => makeCharacter(
  11364. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11365. {
  11366. front: {
  11367. height: math.unit(6, "feet"),
  11368. weight: math.unit(150, "lb"),
  11369. name: "Front",
  11370. image: {
  11371. source: "./media/characters/zero-alurus/front.svg"
  11372. }
  11373. },
  11374. back: {
  11375. height: math.unit(6, "feet"),
  11376. weight: math.unit(150, "lb"),
  11377. name: "Back",
  11378. image: {
  11379. source: "./media/characters/zero-alurus/back.svg"
  11380. }
  11381. },
  11382. },
  11383. [
  11384. {
  11385. name: "Normal",
  11386. height: math.unit(5 + 10 / 12, "feet")
  11387. },
  11388. {
  11389. name: "Macro",
  11390. height: math.unit(60, "feet"),
  11391. default: true
  11392. },
  11393. {
  11394. name: "Macro+",
  11395. height: math.unit(450, "feet")
  11396. },
  11397. ]
  11398. ))
  11399. characterMakers.push(() => makeCharacter(
  11400. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11401. {
  11402. front: {
  11403. height: math.unit(6, "feet"),
  11404. weight: math.unit(200, "lb"),
  11405. name: "Front",
  11406. image: {
  11407. source: "./media/characters/mega-shi/front.svg",
  11408. extra: 1279 / 1250,
  11409. bottom: 0.02
  11410. }
  11411. },
  11412. back: {
  11413. height: math.unit(6, "feet"),
  11414. weight: math.unit(200, "lb"),
  11415. name: "Back",
  11416. image: {
  11417. source: "./media/characters/mega-shi/back.svg",
  11418. extra: 1279 / 1250,
  11419. bottom: 0.02
  11420. }
  11421. },
  11422. },
  11423. [
  11424. {
  11425. name: "Micro",
  11426. height: math.unit(16 + 6 / 12, "feet")
  11427. },
  11428. {
  11429. name: "Third Dimension",
  11430. height: math.unit(40, "meters")
  11431. },
  11432. {
  11433. name: "Normal",
  11434. height: math.unit(660, "feet"),
  11435. default: true
  11436. },
  11437. {
  11438. name: "Megamacro",
  11439. height: math.unit(10, "miles")
  11440. },
  11441. {
  11442. name: "Planetary Launch",
  11443. height: math.unit(500, "miles")
  11444. },
  11445. {
  11446. name: "Interstellar",
  11447. height: math.unit(1e9, "miles")
  11448. },
  11449. {
  11450. name: "Leaving the Universe",
  11451. height: math.unit(1, "gigaparsec")
  11452. },
  11453. {
  11454. name: "Travelling Universes",
  11455. height: math.unit(30e15, "parsecs")
  11456. },
  11457. ]
  11458. ))
  11459. characterMakers.push(() => makeCharacter(
  11460. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11461. {
  11462. front: {
  11463. height: math.unit(5 + 4/12, "feet"),
  11464. weight: math.unit(120, "lb"),
  11465. name: "Front",
  11466. image: {
  11467. source: "./media/characters/odyssey/front.svg",
  11468. extra: 1747/1571,
  11469. bottom: 47/1794
  11470. }
  11471. },
  11472. side: {
  11473. height: math.unit(5.1, "feet"),
  11474. weight: math.unit(120, "lb"),
  11475. name: "Side",
  11476. image: {
  11477. source: "./media/characters/odyssey/side.svg",
  11478. extra: 1847/1619,
  11479. bottom: 47/1894
  11480. }
  11481. },
  11482. lounging: {
  11483. height: math.unit(1.464, "feet"),
  11484. weight: math.unit(120, "lb"),
  11485. name: "Lounging",
  11486. image: {
  11487. source: "./media/characters/odyssey/lounging.svg",
  11488. extra: 1235/837,
  11489. bottom: 551/1786
  11490. }
  11491. },
  11492. },
  11493. [
  11494. {
  11495. name: "Normal",
  11496. height: math.unit(5 + 4 / 12, "feet")
  11497. },
  11498. {
  11499. name: "Macro",
  11500. height: math.unit(1, "km")
  11501. },
  11502. {
  11503. name: "Megamacro",
  11504. height: math.unit(3000, "km")
  11505. },
  11506. {
  11507. name: "Gigamacro",
  11508. height: math.unit(1, "AU"),
  11509. default: true
  11510. },
  11511. {
  11512. name: "Omniversal",
  11513. height: math.unit(100e14, "lightyears")
  11514. },
  11515. ]
  11516. ))
  11517. characterMakers.push(() => makeCharacter(
  11518. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11519. {
  11520. front: {
  11521. height: math.unit(5 + 10/12, "feet"),
  11522. name: "Front",
  11523. image: {
  11524. source: "./media/characters/mekuto/front.svg",
  11525. extra: 875/835,
  11526. bottom: 46/921
  11527. }
  11528. },
  11529. },
  11530. [
  11531. {
  11532. name: "Minimicro",
  11533. height: math.unit(0.2, "inches")
  11534. },
  11535. {
  11536. name: "Micro",
  11537. height: math.unit(1.5, "inches")
  11538. },
  11539. {
  11540. name: "Normal",
  11541. height: math.unit(5 + 10 / 12, "feet"),
  11542. default: true
  11543. },
  11544. {
  11545. name: "Minimacro",
  11546. height: math.unit(17 + 9 / 12, "feet")
  11547. },
  11548. {
  11549. name: "Macro",
  11550. height: math.unit(177.5, "feet")
  11551. },
  11552. {
  11553. name: "Megamacro",
  11554. height: math.unit(152, "miles")
  11555. },
  11556. ]
  11557. ))
  11558. characterMakers.push(() => makeCharacter(
  11559. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11560. {
  11561. front: {
  11562. height: math.unit(6.5, "inches"),
  11563. weight: math.unit(13, "oz"),
  11564. name: "Front",
  11565. image: {
  11566. source: "./media/characters/dafydd-tomos/front.svg",
  11567. extra: 2990 / 2603,
  11568. bottom: 0.03
  11569. }
  11570. },
  11571. },
  11572. [
  11573. {
  11574. name: "Micro",
  11575. height: math.unit(6.5, "inches"),
  11576. default: true
  11577. },
  11578. ]
  11579. ))
  11580. characterMakers.push(() => makeCharacter(
  11581. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11582. {
  11583. front: {
  11584. height: math.unit(6, "feet"),
  11585. weight: math.unit(150, "lb"),
  11586. name: "Front",
  11587. image: {
  11588. source: "./media/characters/splinter/front.svg",
  11589. extra: 2990 / 2882,
  11590. bottom: 0.04
  11591. }
  11592. },
  11593. back: {
  11594. height: math.unit(6, "feet"),
  11595. weight: math.unit(150, "lb"),
  11596. name: "Back",
  11597. image: {
  11598. source: "./media/characters/splinter/back.svg",
  11599. extra: 2990 / 2882,
  11600. bottom: 0.04
  11601. }
  11602. },
  11603. },
  11604. [
  11605. {
  11606. name: "Normal",
  11607. height: math.unit(6, "feet")
  11608. },
  11609. {
  11610. name: "Macro",
  11611. height: math.unit(230, "meters"),
  11612. default: true
  11613. },
  11614. ]
  11615. ))
  11616. characterMakers.push(() => makeCharacter(
  11617. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11618. {
  11619. front: {
  11620. height: math.unit(4 + 10 / 12, "feet"),
  11621. weight: math.unit(480, "lb"),
  11622. name: "Front",
  11623. image: {
  11624. source: "./media/characters/snow-gabumon/front.svg",
  11625. extra: 1140 / 963,
  11626. bottom: 0.058
  11627. }
  11628. },
  11629. back: {
  11630. height: math.unit(4 + 10 / 12, "feet"),
  11631. weight: math.unit(480, "lb"),
  11632. name: "Back",
  11633. image: {
  11634. source: "./media/characters/snow-gabumon/back.svg",
  11635. extra: 1115 / 962,
  11636. bottom: 0.041
  11637. }
  11638. },
  11639. frontUndresed: {
  11640. height: math.unit(4 + 10 / 12, "feet"),
  11641. weight: math.unit(480, "lb"),
  11642. name: "Front (Undressed)",
  11643. image: {
  11644. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11645. extra: 1061 / 960,
  11646. bottom: 0.045
  11647. }
  11648. },
  11649. },
  11650. [
  11651. {
  11652. name: "Micro",
  11653. height: math.unit(1, "inch")
  11654. },
  11655. {
  11656. name: "Normal",
  11657. height: math.unit(4 + 10 / 12, "feet"),
  11658. default: true
  11659. },
  11660. {
  11661. name: "Macro",
  11662. height: math.unit(200, "feet")
  11663. },
  11664. {
  11665. name: "Megamacro",
  11666. height: math.unit(120, "miles")
  11667. },
  11668. {
  11669. name: "Gigamacro",
  11670. height: math.unit(9800, "miles")
  11671. },
  11672. ]
  11673. ))
  11674. characterMakers.push(() => makeCharacter(
  11675. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11676. {
  11677. front: {
  11678. height: math.unit(1.7, "meters"),
  11679. weight: math.unit(140, "lb"),
  11680. name: "Front",
  11681. image: {
  11682. source: "./media/characters/moody/front.svg",
  11683. extra: 3226 / 3007,
  11684. bottom: 0.087
  11685. }
  11686. },
  11687. },
  11688. [
  11689. {
  11690. name: "Micro",
  11691. height: math.unit(1, "mm")
  11692. },
  11693. {
  11694. name: "Normal",
  11695. height: math.unit(1.7, "meters"),
  11696. default: true
  11697. },
  11698. {
  11699. name: "Macro",
  11700. height: math.unit(80, "meters")
  11701. },
  11702. {
  11703. name: "Macro+",
  11704. height: math.unit(500, "meters")
  11705. },
  11706. ]
  11707. ))
  11708. characterMakers.push(() => makeCharacter(
  11709. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11710. {
  11711. front: {
  11712. height: math.unit(6, "feet"),
  11713. weight: math.unit(150, "lb"),
  11714. name: "Front",
  11715. image: {
  11716. source: "./media/characters/zyas/front.svg",
  11717. extra: 1180 / 1120,
  11718. bottom: 0.045
  11719. }
  11720. },
  11721. },
  11722. [
  11723. {
  11724. name: "Normal",
  11725. height: math.unit(10, "feet"),
  11726. default: true
  11727. },
  11728. {
  11729. name: "Macro",
  11730. height: math.unit(500, "feet")
  11731. },
  11732. {
  11733. name: "Megamacro",
  11734. height: math.unit(5, "miles")
  11735. },
  11736. {
  11737. name: "Teramacro",
  11738. height: math.unit(150000, "miles")
  11739. },
  11740. ]
  11741. ))
  11742. characterMakers.push(() => makeCharacter(
  11743. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11744. {
  11745. front: {
  11746. height: math.unit(6, "feet"),
  11747. weight: math.unit(150, "lb"),
  11748. name: "Front",
  11749. image: {
  11750. source: "./media/characters/cuon/front.svg",
  11751. extra: 1390 / 1320,
  11752. bottom: 0.008
  11753. }
  11754. },
  11755. },
  11756. [
  11757. {
  11758. name: "Micro",
  11759. height: math.unit(3, "inches")
  11760. },
  11761. {
  11762. name: "Normal",
  11763. height: math.unit(18 + 9 / 12, "feet"),
  11764. default: true
  11765. },
  11766. {
  11767. name: "Macro",
  11768. height: math.unit(360, "feet")
  11769. },
  11770. {
  11771. name: "Megamacro",
  11772. height: math.unit(360, "miles")
  11773. },
  11774. ]
  11775. ))
  11776. characterMakers.push(() => makeCharacter(
  11777. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11778. {
  11779. front: {
  11780. height: math.unit(2.4, "meters"),
  11781. weight: math.unit(70, "kg"),
  11782. name: "Front",
  11783. image: {
  11784. source: "./media/characters/nyanuxk/front.svg",
  11785. extra: 1172 / 1084,
  11786. bottom: 0.065
  11787. }
  11788. },
  11789. side: {
  11790. height: math.unit(2.4, "meters"),
  11791. weight: math.unit(70, "kg"),
  11792. name: "Side",
  11793. image: {
  11794. source: "./media/characters/nyanuxk/side.svg",
  11795. extra: 1190 / 1132,
  11796. bottom: 0.007
  11797. }
  11798. },
  11799. back: {
  11800. height: math.unit(2.4, "meters"),
  11801. weight: math.unit(70, "kg"),
  11802. name: "Back",
  11803. image: {
  11804. source: "./media/characters/nyanuxk/back.svg",
  11805. extra: 1200 / 1141,
  11806. bottom: 0.015
  11807. }
  11808. },
  11809. foot: {
  11810. height: math.unit(0.52, "meters"),
  11811. name: "Foot",
  11812. image: {
  11813. source: "./media/characters/nyanuxk/foot.svg"
  11814. }
  11815. },
  11816. },
  11817. [
  11818. {
  11819. name: "Micro",
  11820. height: math.unit(2, "cm")
  11821. },
  11822. {
  11823. name: "Normal",
  11824. height: math.unit(2.4, "meters"),
  11825. default: true
  11826. },
  11827. {
  11828. name: "Smaller Macro",
  11829. height: math.unit(120, "meters")
  11830. },
  11831. {
  11832. name: "Bigger Macro",
  11833. height: math.unit(1.2, "km")
  11834. },
  11835. {
  11836. name: "Megamacro",
  11837. height: math.unit(15, "kilometers")
  11838. },
  11839. {
  11840. name: "Gigamacro",
  11841. height: math.unit(2000, "km")
  11842. },
  11843. {
  11844. name: "Teramacro",
  11845. height: math.unit(500000, "km")
  11846. },
  11847. ]
  11848. ))
  11849. characterMakers.push(() => makeCharacter(
  11850. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11851. {
  11852. side: {
  11853. height: math.unit(6, "feet"),
  11854. name: "Side",
  11855. image: {
  11856. source: "./media/characters/ailbhe/side.svg",
  11857. extra: 757 / 464,
  11858. bottom: 0.041
  11859. }
  11860. },
  11861. },
  11862. [
  11863. {
  11864. name: "Normal",
  11865. height: math.unit(1.07, "meters"),
  11866. default: true
  11867. },
  11868. ]
  11869. ))
  11870. characterMakers.push(() => makeCharacter(
  11871. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11872. {
  11873. front: {
  11874. height: math.unit(6, "feet"),
  11875. weight: math.unit(120, "kg"),
  11876. name: "Front",
  11877. image: {
  11878. source: "./media/characters/zevulfius/front.svg",
  11879. extra: 965 / 903
  11880. }
  11881. },
  11882. side: {
  11883. height: math.unit(6, "feet"),
  11884. weight: math.unit(120, "kg"),
  11885. name: "Side",
  11886. image: {
  11887. source: "./media/characters/zevulfius/side.svg",
  11888. extra: 939 / 900
  11889. }
  11890. },
  11891. back: {
  11892. height: math.unit(6, "feet"),
  11893. weight: math.unit(120, "kg"),
  11894. name: "Back",
  11895. image: {
  11896. source: "./media/characters/zevulfius/back.svg",
  11897. extra: 918 / 854,
  11898. bottom: 0.005
  11899. }
  11900. },
  11901. foot: {
  11902. height: math.unit(6 / 3.72, "feet"),
  11903. name: "Foot",
  11904. image: {
  11905. source: "./media/characters/zevulfius/foot.svg"
  11906. }
  11907. },
  11908. },
  11909. [
  11910. {
  11911. name: "Macro",
  11912. height: math.unit(750, "meters")
  11913. },
  11914. {
  11915. name: "Megamacro",
  11916. height: math.unit(20, "km"),
  11917. default: true
  11918. },
  11919. {
  11920. name: "Gigamacro",
  11921. height: math.unit(2000, "km")
  11922. },
  11923. {
  11924. name: "Teramacro",
  11925. height: math.unit(250000, "km")
  11926. },
  11927. ]
  11928. ))
  11929. characterMakers.push(() => makeCharacter(
  11930. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11931. {
  11932. front: {
  11933. height: math.unit(100, "feet"),
  11934. weight: math.unit(350, "kg"),
  11935. name: "Front",
  11936. image: {
  11937. source: "./media/characters/rikes/front.svg",
  11938. extra: 1565 / 1483,
  11939. bottom: 0.017
  11940. }
  11941. },
  11942. },
  11943. [
  11944. {
  11945. name: "Macro",
  11946. height: math.unit(100, "feet"),
  11947. default: true
  11948. },
  11949. ]
  11950. ))
  11951. characterMakers.push(() => makeCharacter(
  11952. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11953. {
  11954. front: {
  11955. height: math.unit(8, "feet"),
  11956. weight: math.unit(356, "lb"),
  11957. name: "Front",
  11958. image: {
  11959. source: "./media/characters/adam-silver-mane/front.svg",
  11960. extra: 1036/937,
  11961. bottom: 63/1099
  11962. }
  11963. },
  11964. side: {
  11965. height: math.unit(8, "feet"),
  11966. weight: math.unit(356, "lb"),
  11967. name: "Side",
  11968. image: {
  11969. source: "./media/characters/adam-silver-mane/side.svg",
  11970. extra: 997/901,
  11971. bottom: 59/1056
  11972. }
  11973. },
  11974. frontNsfw: {
  11975. height: math.unit(8, "feet"),
  11976. weight: math.unit(356, "lb"),
  11977. name: "Front (NSFW)",
  11978. image: {
  11979. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11980. extra: 1036/937,
  11981. bottom: 63/1099
  11982. }
  11983. },
  11984. sideNsfw: {
  11985. height: math.unit(8, "feet"),
  11986. weight: math.unit(356, "lb"),
  11987. name: "Side (NSFW)",
  11988. image: {
  11989. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11990. extra: 997/901,
  11991. bottom: 59/1056
  11992. }
  11993. },
  11994. dick: {
  11995. height: math.unit(2.1, "feet"),
  11996. name: "Dick",
  11997. image: {
  11998. source: "./media/characters/adam-silver-mane/dick.svg"
  11999. }
  12000. },
  12001. taur: {
  12002. height: math.unit(16, "feet"),
  12003. weight: math.unit(1500, "kg"),
  12004. name: "Taur",
  12005. image: {
  12006. source: "./media/characters/adam-silver-mane/taur.svg",
  12007. extra: 1713 / 1571,
  12008. bottom: 0.01
  12009. }
  12010. },
  12011. },
  12012. [
  12013. {
  12014. name: "Normal",
  12015. height: math.unit(8, "feet")
  12016. },
  12017. {
  12018. name: "Minimacro",
  12019. height: math.unit(80, "feet")
  12020. },
  12021. {
  12022. name: "MDA",
  12023. height: math.unit(80, "meters")
  12024. },
  12025. {
  12026. name: "Macro",
  12027. height: math.unit(800, "feet"),
  12028. default: true
  12029. },
  12030. {
  12031. name: "Megamacro",
  12032. height: math.unit(8000, "feet")
  12033. },
  12034. {
  12035. name: "Gigamacro",
  12036. height: math.unit(800, "miles")
  12037. },
  12038. {
  12039. name: "Teramacro",
  12040. height: math.unit(80000, "miles")
  12041. },
  12042. {
  12043. name: "Celestial",
  12044. height: math.unit(8e6, "miles")
  12045. },
  12046. {
  12047. name: "Star Dragon",
  12048. height: math.unit(800000, "parsecs")
  12049. },
  12050. {
  12051. name: "Godly",
  12052. height: math.unit(800, "teraparsecs")
  12053. },
  12054. ]
  12055. ))
  12056. characterMakers.push(() => makeCharacter(
  12057. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12058. {
  12059. front: {
  12060. height: math.unit(6, "feet"),
  12061. weight: math.unit(150, "lb"),
  12062. name: "Front",
  12063. image: {
  12064. source: "./media/characters/ky'owin/front.svg",
  12065. extra: 3862/3053,
  12066. bottom: 74/3936
  12067. }
  12068. },
  12069. },
  12070. [
  12071. {
  12072. name: "Normal",
  12073. height: math.unit(6 + 8 / 12, "feet")
  12074. },
  12075. {
  12076. name: "Large",
  12077. height: math.unit(68, "feet")
  12078. },
  12079. {
  12080. name: "Macro",
  12081. height: math.unit(132, "feet")
  12082. },
  12083. {
  12084. name: "Macro+",
  12085. height: math.unit(340, "feet")
  12086. },
  12087. {
  12088. name: "Macro++",
  12089. height: math.unit(680, "feet"),
  12090. default: true
  12091. },
  12092. {
  12093. name: "Megamacro",
  12094. height: math.unit(1, "mile")
  12095. },
  12096. {
  12097. name: "Megamacro+",
  12098. height: math.unit(10, "miles")
  12099. },
  12100. ]
  12101. ))
  12102. characterMakers.push(() => makeCharacter(
  12103. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12104. {
  12105. front: {
  12106. height: math.unit(4, "feet"),
  12107. weight: math.unit(50, "lb"),
  12108. name: "Front",
  12109. image: {
  12110. source: "./media/characters/mal/front.svg",
  12111. extra: 785 / 724,
  12112. bottom: 0.07
  12113. }
  12114. },
  12115. },
  12116. [
  12117. {
  12118. name: "Micro",
  12119. height: math.unit(4, "inches")
  12120. },
  12121. {
  12122. name: "Normal",
  12123. height: math.unit(4, "feet"),
  12124. default: true
  12125. },
  12126. {
  12127. name: "Macro",
  12128. height: math.unit(200, "feet")
  12129. },
  12130. ]
  12131. ))
  12132. characterMakers.push(() => makeCharacter(
  12133. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12134. {
  12135. front: {
  12136. height: math.unit(6, "feet"),
  12137. weight: math.unit(150, "lb"),
  12138. name: "Front",
  12139. image: {
  12140. source: "./media/characters/jordan-deware/front.svg",
  12141. extra: 1191 / 1012
  12142. }
  12143. },
  12144. },
  12145. [
  12146. {
  12147. name: "Nano",
  12148. height: math.unit(0.01, "mm")
  12149. },
  12150. {
  12151. name: "Minimicro",
  12152. height: math.unit(1, "mm")
  12153. },
  12154. {
  12155. name: "Micro",
  12156. height: math.unit(0.5, "inches")
  12157. },
  12158. {
  12159. name: "Normal",
  12160. height: math.unit(4, "feet"),
  12161. default: true
  12162. },
  12163. {
  12164. name: "Minimacro",
  12165. height: math.unit(40, "meters")
  12166. },
  12167. {
  12168. name: "Small Macro",
  12169. height: math.unit(400, "meters")
  12170. },
  12171. {
  12172. name: "Macro",
  12173. height: math.unit(4, "miles")
  12174. },
  12175. {
  12176. name: "Megamacro",
  12177. height: math.unit(40, "miles")
  12178. },
  12179. {
  12180. name: "Megamacro+",
  12181. height: math.unit(400, "miles")
  12182. },
  12183. {
  12184. name: "Gigamacro",
  12185. height: math.unit(400000, "miles")
  12186. },
  12187. ]
  12188. ))
  12189. characterMakers.push(() => makeCharacter(
  12190. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12191. {
  12192. side: {
  12193. height: math.unit(6, "feet"),
  12194. weight: math.unit(150, "lb"),
  12195. name: "Side",
  12196. image: {
  12197. source: "./media/characters/kimiko/side.svg",
  12198. extra: 600 / 358
  12199. }
  12200. },
  12201. },
  12202. [
  12203. {
  12204. name: "Normal",
  12205. height: math.unit(15, "feet"),
  12206. default: true
  12207. },
  12208. {
  12209. name: "Macro",
  12210. height: math.unit(220, "feet")
  12211. },
  12212. {
  12213. name: "Macro+",
  12214. height: math.unit(1450, "feet")
  12215. },
  12216. {
  12217. name: "Megamacro",
  12218. height: math.unit(11500, "feet")
  12219. },
  12220. {
  12221. name: "Gigamacro",
  12222. height: math.unit(9500, "miles")
  12223. },
  12224. {
  12225. name: "Teramacro",
  12226. height: math.unit(2208005005, "miles")
  12227. },
  12228. {
  12229. name: "Examacro",
  12230. height: math.unit(2750, "parsecs")
  12231. },
  12232. {
  12233. name: "Zettamacro",
  12234. height: math.unit(101500, "parsecs")
  12235. },
  12236. ]
  12237. ))
  12238. characterMakers.push(() => makeCharacter(
  12239. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12240. {
  12241. front: {
  12242. height: math.unit(6, "feet"),
  12243. weight: math.unit(70, "kg"),
  12244. name: "Front",
  12245. image: {
  12246. source: "./media/characters/andrew-sleepy/front.svg"
  12247. }
  12248. },
  12249. side: {
  12250. height: math.unit(6, "feet"),
  12251. weight: math.unit(70, "kg"),
  12252. name: "Side",
  12253. image: {
  12254. source: "./media/characters/andrew-sleepy/side.svg"
  12255. }
  12256. },
  12257. },
  12258. [
  12259. {
  12260. name: "Micro",
  12261. height: math.unit(1, "mm"),
  12262. default: true
  12263. },
  12264. ]
  12265. ))
  12266. characterMakers.push(() => makeCharacter(
  12267. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12268. {
  12269. front: {
  12270. height: math.unit(6, "feet"),
  12271. weight: math.unit(150, "lb"),
  12272. name: "Front",
  12273. image: {
  12274. source: "./media/characters/judio/front.svg",
  12275. extra: 1258 / 1110
  12276. }
  12277. },
  12278. },
  12279. [
  12280. {
  12281. name: "Normal",
  12282. height: math.unit(5 + 6 / 12, "feet")
  12283. },
  12284. {
  12285. name: "Macro",
  12286. height: math.unit(1000, "feet"),
  12287. default: true
  12288. },
  12289. {
  12290. name: "Megamacro",
  12291. height: math.unit(10, "miles")
  12292. },
  12293. ]
  12294. ))
  12295. characterMakers.push(() => makeCharacter(
  12296. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12297. {
  12298. frontDressed: {
  12299. height: math.unit(6, "feet"),
  12300. weight: math.unit(68, "kg"),
  12301. name: "Front (Dressed)",
  12302. image: {
  12303. source: "./media/characters/nomaxice/front-dressed.svg",
  12304. extra: 1137/824,
  12305. bottom: 74/1211
  12306. }
  12307. },
  12308. frontShorts: {
  12309. height: math.unit(6, "feet"),
  12310. weight: math.unit(68, "kg"),
  12311. name: "Front (Shorts)",
  12312. image: {
  12313. source: "./media/characters/nomaxice/front-shorts.svg",
  12314. extra: 1137/824,
  12315. bottom: 74/1211
  12316. }
  12317. },
  12318. back: {
  12319. height: math.unit(6, "feet"),
  12320. weight: math.unit(68, "kg"),
  12321. name: "Back",
  12322. image: {
  12323. source: "./media/characters/nomaxice/back.svg",
  12324. extra: 822/786,
  12325. bottom: 39/861
  12326. }
  12327. },
  12328. hand: {
  12329. height: math.unit(0.565, "feet"),
  12330. name: "Hand",
  12331. image: {
  12332. source: "./media/characters/nomaxice/hand.svg"
  12333. }
  12334. },
  12335. foot: {
  12336. height: math.unit(1, "feet"),
  12337. name: "Foot",
  12338. image: {
  12339. source: "./media/characters/nomaxice/foot.svg"
  12340. }
  12341. },
  12342. },
  12343. [
  12344. {
  12345. name: "Micro",
  12346. height: math.unit(8, "cm")
  12347. },
  12348. {
  12349. name: "Norm",
  12350. height: math.unit(1.82, "m")
  12351. },
  12352. {
  12353. name: "Norm+",
  12354. height: math.unit(8.8, "feet"),
  12355. default: true
  12356. },
  12357. {
  12358. name: "Big",
  12359. height: math.unit(8, "meters")
  12360. },
  12361. {
  12362. name: "Macro",
  12363. height: math.unit(18, "meters")
  12364. },
  12365. {
  12366. name: "Macro+",
  12367. height: math.unit(88, "meters")
  12368. },
  12369. ]
  12370. ))
  12371. characterMakers.push(() => makeCharacter(
  12372. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12373. {
  12374. front: {
  12375. height: math.unit(12, "feet"),
  12376. weight: math.unit(1.5, "tons"),
  12377. name: "Front",
  12378. image: {
  12379. source: "./media/characters/dydros/front.svg",
  12380. extra: 863 / 800,
  12381. bottom: 0.015
  12382. }
  12383. },
  12384. back: {
  12385. height: math.unit(12, "feet"),
  12386. weight: math.unit(1.5, "tons"),
  12387. name: "Back",
  12388. image: {
  12389. source: "./media/characters/dydros/back.svg",
  12390. extra: 900 / 843,
  12391. bottom: 0.005
  12392. }
  12393. },
  12394. },
  12395. [
  12396. {
  12397. name: "Normal",
  12398. height: math.unit(12, "feet"),
  12399. default: true
  12400. },
  12401. ]
  12402. ))
  12403. characterMakers.push(() => makeCharacter(
  12404. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12405. {
  12406. front: {
  12407. height: math.unit(6, "feet"),
  12408. weight: math.unit(100, "kg"),
  12409. name: "Front",
  12410. image: {
  12411. source: "./media/characters/riggi/front.svg",
  12412. extra: 5787 / 5303
  12413. }
  12414. },
  12415. hyper: {
  12416. height: math.unit(6 * 5 / 3, "feet"),
  12417. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12418. name: "Hyper",
  12419. image: {
  12420. source: "./media/characters/riggi/hyper.svg",
  12421. extra: 3595 / 3485
  12422. }
  12423. },
  12424. },
  12425. [
  12426. {
  12427. name: "Small Macro",
  12428. height: math.unit(50, "feet")
  12429. },
  12430. {
  12431. name: "Default",
  12432. height: math.unit(200, "feet"),
  12433. default: true
  12434. },
  12435. {
  12436. name: "Loom",
  12437. height: math.unit(10000, "feet")
  12438. },
  12439. {
  12440. name: "Cruising Altitude",
  12441. height: math.unit(30000, "feet")
  12442. },
  12443. {
  12444. name: "Megamacro",
  12445. height: math.unit(100, "miles")
  12446. },
  12447. {
  12448. name: "Continent Sized",
  12449. height: math.unit(2800, "miles")
  12450. },
  12451. {
  12452. name: "Earth Sized",
  12453. height: math.unit(8000, "miles")
  12454. },
  12455. ]
  12456. ))
  12457. characterMakers.push(() => makeCharacter(
  12458. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12459. {
  12460. front: {
  12461. height: math.unit(6, "feet"),
  12462. weight: math.unit(250, "lb"),
  12463. name: "Front",
  12464. image: {
  12465. source: "./media/characters/alexi/front.svg",
  12466. extra: 3483 / 3291,
  12467. bottom: 0.04
  12468. }
  12469. },
  12470. back: {
  12471. height: math.unit(6, "feet"),
  12472. weight: math.unit(250, "lb"),
  12473. name: "Back",
  12474. image: {
  12475. source: "./media/characters/alexi/back.svg",
  12476. extra: 3533 / 3356,
  12477. bottom: 0.021
  12478. }
  12479. },
  12480. frontTransforming: {
  12481. height: math.unit(8.58, "feet"),
  12482. weight: math.unit(1300, "lb"),
  12483. name: "Transforming",
  12484. image: {
  12485. source: "./media/characters/alexi/front-transforming.svg",
  12486. extra: 437 / 409,
  12487. bottom: 19 / 458.66
  12488. }
  12489. },
  12490. frontTransformed: {
  12491. height: math.unit(12.5, "feet"),
  12492. weight: math.unit(4000, "lb"),
  12493. name: "Transformed",
  12494. image: {
  12495. source: "./media/characters/alexi/front-transformed.svg",
  12496. extra: 639 / 614,
  12497. bottom: 30.55 / 671
  12498. }
  12499. },
  12500. },
  12501. [
  12502. {
  12503. name: "Normal",
  12504. height: math.unit(14, "feet"),
  12505. default: true
  12506. },
  12507. {
  12508. name: "Minimacro",
  12509. height: math.unit(30, "meters")
  12510. },
  12511. {
  12512. name: "Macro",
  12513. height: math.unit(500, "meters")
  12514. },
  12515. {
  12516. name: "Megamacro",
  12517. height: math.unit(9000, "km")
  12518. },
  12519. {
  12520. name: "Teramacro",
  12521. height: math.unit(384000, "km")
  12522. },
  12523. ]
  12524. ))
  12525. characterMakers.push(() => makeCharacter(
  12526. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12527. {
  12528. front: {
  12529. height: math.unit(6, "feet"),
  12530. weight: math.unit(150, "lb"),
  12531. name: "Front",
  12532. image: {
  12533. source: "./media/characters/kayroo/front.svg",
  12534. extra: 1153 / 1038,
  12535. bottom: 0.06
  12536. }
  12537. },
  12538. foot: {
  12539. height: math.unit(6, "feet"),
  12540. weight: math.unit(150, "lb"),
  12541. name: "Foot",
  12542. image: {
  12543. source: "./media/characters/kayroo/foot.svg"
  12544. }
  12545. },
  12546. },
  12547. [
  12548. {
  12549. name: "Normal",
  12550. height: math.unit(8, "feet"),
  12551. default: true
  12552. },
  12553. {
  12554. name: "Minimacro",
  12555. height: math.unit(250, "feet")
  12556. },
  12557. {
  12558. name: "Macro",
  12559. height: math.unit(2800, "feet")
  12560. },
  12561. {
  12562. name: "Megamacro",
  12563. height: math.unit(5200, "feet")
  12564. },
  12565. {
  12566. name: "Gigamacro",
  12567. height: math.unit(27000, "feet")
  12568. },
  12569. {
  12570. name: "Omega",
  12571. height: math.unit(45000, "feet")
  12572. },
  12573. ]
  12574. ))
  12575. characterMakers.push(() => makeCharacter(
  12576. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12577. {
  12578. front: {
  12579. height: math.unit(18, "feet"),
  12580. weight: math.unit(5800, "lb"),
  12581. name: "Front",
  12582. image: {
  12583. source: "./media/characters/rhys/front.svg",
  12584. extra: 3386 / 3090,
  12585. bottom: 0.07
  12586. }
  12587. },
  12588. },
  12589. [
  12590. {
  12591. name: "Normal",
  12592. height: math.unit(18, "feet"),
  12593. default: true
  12594. },
  12595. {
  12596. name: "Working Size",
  12597. height: math.unit(200, "feet")
  12598. },
  12599. {
  12600. name: "Demolition Size",
  12601. height: math.unit(2000, "feet")
  12602. },
  12603. {
  12604. name: "Maximum Licensed Size",
  12605. height: math.unit(5, "miles")
  12606. },
  12607. {
  12608. name: "Maximum Observed Size",
  12609. height: math.unit(10, "yottameters")
  12610. },
  12611. ]
  12612. ))
  12613. characterMakers.push(() => makeCharacter(
  12614. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12615. {
  12616. front: {
  12617. height: math.unit(6, "feet"),
  12618. weight: math.unit(250, "lb"),
  12619. name: "Front",
  12620. image: {
  12621. source: "./media/characters/toto/front.svg",
  12622. extra: 527 / 479,
  12623. bottom: 0.05
  12624. }
  12625. },
  12626. },
  12627. [
  12628. {
  12629. name: "Micro",
  12630. height: math.unit(3, "feet")
  12631. },
  12632. {
  12633. name: "Normal",
  12634. height: math.unit(10, "feet")
  12635. },
  12636. {
  12637. name: "Macro",
  12638. height: math.unit(150, "feet"),
  12639. default: true
  12640. },
  12641. {
  12642. name: "Megamacro",
  12643. height: math.unit(1200, "feet")
  12644. },
  12645. ]
  12646. ))
  12647. characterMakers.push(() => makeCharacter(
  12648. { name: "King", species: ["lion"], tags: ["anthro"] },
  12649. {
  12650. back: {
  12651. height: math.unit(6, "feet"),
  12652. weight: math.unit(150, "lb"),
  12653. name: "Back",
  12654. image: {
  12655. source: "./media/characters/king/back.svg"
  12656. }
  12657. },
  12658. },
  12659. [
  12660. {
  12661. name: "Micro",
  12662. height: math.unit(2, "inches")
  12663. },
  12664. {
  12665. name: "Normal",
  12666. height: math.unit(8, "feet")
  12667. },
  12668. {
  12669. name: "Macro",
  12670. height: math.unit(200, "feet"),
  12671. default: true
  12672. },
  12673. {
  12674. name: "Megamacro",
  12675. height: math.unit(50, "miles")
  12676. },
  12677. ]
  12678. ))
  12679. characterMakers.push(() => makeCharacter(
  12680. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12681. {
  12682. front: {
  12683. height: math.unit(11, "feet"),
  12684. weight: math.unit(1400, "lb"),
  12685. name: "Front",
  12686. image: {
  12687. source: "./media/characters/cordite/front.svg",
  12688. extra: 1919/1827,
  12689. bottom: 40/1959
  12690. }
  12691. },
  12692. side: {
  12693. height: math.unit(11, "feet"),
  12694. weight: math.unit(1400, "lb"),
  12695. name: "Side",
  12696. image: {
  12697. source: "./media/characters/cordite/side.svg",
  12698. extra: 1908/1793,
  12699. bottom: 38/1946
  12700. }
  12701. },
  12702. back: {
  12703. height: math.unit(11, "feet"),
  12704. weight: math.unit(1400, "lb"),
  12705. name: "Back",
  12706. image: {
  12707. source: "./media/characters/cordite/back.svg",
  12708. extra: 1938/1837,
  12709. bottom: 10/1948
  12710. }
  12711. },
  12712. feral: {
  12713. height: math.unit(2, "feet"),
  12714. weight: math.unit(90, "lb"),
  12715. name: "Feral",
  12716. image: {
  12717. source: "./media/characters/cordite/feral.svg",
  12718. extra: 1260 / 755,
  12719. bottom: 0.05
  12720. }
  12721. },
  12722. },
  12723. [
  12724. {
  12725. name: "Normal",
  12726. height: math.unit(11, "feet"),
  12727. default: true
  12728. },
  12729. ]
  12730. ))
  12731. characterMakers.push(() => makeCharacter(
  12732. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12733. {
  12734. front: {
  12735. height: math.unit(6, "feet"),
  12736. weight: math.unit(150, "lb"),
  12737. name: "Front",
  12738. image: {
  12739. source: "./media/characters/pianostrong/front.svg",
  12740. extra: 6577 / 6254,
  12741. bottom: 0.02
  12742. }
  12743. },
  12744. side: {
  12745. height: math.unit(6, "feet"),
  12746. weight: math.unit(150, "lb"),
  12747. name: "Side",
  12748. image: {
  12749. source: "./media/characters/pianostrong/side.svg",
  12750. extra: 6106 / 5730
  12751. }
  12752. },
  12753. back: {
  12754. height: math.unit(6, "feet"),
  12755. weight: math.unit(150, "lb"),
  12756. name: "Back",
  12757. image: {
  12758. source: "./media/characters/pianostrong/back.svg",
  12759. extra: 6085 / 5733,
  12760. bottom: 0.01
  12761. }
  12762. },
  12763. },
  12764. [
  12765. {
  12766. name: "Macro",
  12767. height: math.unit(100, "feet")
  12768. },
  12769. {
  12770. name: "Macro+",
  12771. height: math.unit(300, "feet"),
  12772. default: true
  12773. },
  12774. {
  12775. name: "Macro++",
  12776. height: math.unit(1000, "feet")
  12777. },
  12778. ]
  12779. ))
  12780. characterMakers.push(() => makeCharacter(
  12781. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12782. {
  12783. front: {
  12784. height: math.unit(6, "feet"),
  12785. weight: math.unit(150, "lb"),
  12786. name: "Front",
  12787. image: {
  12788. source: "./media/characters/kona/front.svg",
  12789. extra: 2960 / 2629,
  12790. bottom: 0.005
  12791. }
  12792. },
  12793. },
  12794. [
  12795. {
  12796. name: "Normal",
  12797. height: math.unit(11 + 8 / 12, "feet")
  12798. },
  12799. {
  12800. name: "Macro",
  12801. height: math.unit(850, "feet"),
  12802. default: true
  12803. },
  12804. {
  12805. name: "Macro+",
  12806. height: math.unit(1.5, "km"),
  12807. default: true
  12808. },
  12809. {
  12810. name: "Megamacro",
  12811. height: math.unit(80, "miles")
  12812. },
  12813. {
  12814. name: "Gigamacro",
  12815. height: math.unit(3500, "miles")
  12816. },
  12817. ]
  12818. ))
  12819. characterMakers.push(() => makeCharacter(
  12820. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12821. {
  12822. side: {
  12823. height: math.unit(1.9, "meters"),
  12824. weight: math.unit(326, "kg"),
  12825. name: "Side",
  12826. image: {
  12827. source: "./media/characters/levi/side.svg",
  12828. extra: 1704 / 1334,
  12829. bottom: 0.02
  12830. }
  12831. },
  12832. },
  12833. [
  12834. {
  12835. name: "Normal",
  12836. height: math.unit(1.9, "meters"),
  12837. default: true
  12838. },
  12839. {
  12840. name: "Macro",
  12841. height: math.unit(20, "meters")
  12842. },
  12843. {
  12844. name: "Macro+",
  12845. height: math.unit(200, "meters")
  12846. },
  12847. {
  12848. name: "Megamacro",
  12849. height: math.unit(2, "km")
  12850. },
  12851. {
  12852. name: "Megamacro+",
  12853. height: math.unit(20, "km")
  12854. },
  12855. {
  12856. name: "Gigamacro",
  12857. height: math.unit(2500, "km")
  12858. },
  12859. {
  12860. name: "Gigamacro+",
  12861. height: math.unit(120000, "km")
  12862. },
  12863. {
  12864. name: "Teramacro",
  12865. height: math.unit(7.77e6, "km")
  12866. },
  12867. ]
  12868. ))
  12869. characterMakers.push(() => makeCharacter(
  12870. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12871. {
  12872. front: {
  12873. height: math.unit(6 + 4/12, "feet"),
  12874. weight: math.unit(190, "lb"),
  12875. name: "Front",
  12876. image: {
  12877. source: "./media/characters/bmc/front.svg",
  12878. extra: 1626/1472,
  12879. bottom: 79/1705
  12880. }
  12881. },
  12882. back: {
  12883. height: math.unit(6 + 4/12, "feet"),
  12884. weight: math.unit(190, "lb"),
  12885. name: "Back",
  12886. image: {
  12887. source: "./media/characters/bmc/back.svg",
  12888. extra: 1640/1479,
  12889. bottom: 45/1685
  12890. }
  12891. },
  12892. frontArmor: {
  12893. height: math.unit(6 + 4/12, "feet"),
  12894. weight: math.unit(190, "lb"),
  12895. name: "Front-armor",
  12896. image: {
  12897. source: "./media/characters/bmc/front-armor.svg",
  12898. extra: 1538/1468,
  12899. bottom: 79/1617
  12900. }
  12901. },
  12902. },
  12903. [
  12904. {
  12905. name: "Human-sized",
  12906. height: math.unit(6 + 4 / 12, "feet")
  12907. },
  12908. {
  12909. name: "Interactive Size",
  12910. height: math.unit(25, "feet")
  12911. },
  12912. {
  12913. name: "Small",
  12914. height: math.unit(250, "feet")
  12915. },
  12916. {
  12917. name: "Normal",
  12918. height: math.unit(1250, "feet"),
  12919. default: true
  12920. },
  12921. {
  12922. name: "Good Day",
  12923. height: math.unit(88, "miles")
  12924. },
  12925. {
  12926. name: "Largest Measured Size",
  12927. height: math.unit(105.960, "galaxies")
  12928. },
  12929. ]
  12930. ))
  12931. characterMakers.push(() => makeCharacter(
  12932. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12933. {
  12934. front: {
  12935. height: math.unit(20, "feet"),
  12936. weight: math.unit(2016, "kg"),
  12937. name: "Front",
  12938. image: {
  12939. source: "./media/characters/sven-the-kaiju/front.svg",
  12940. extra: 1277/1250,
  12941. bottom: 35/1312
  12942. }
  12943. },
  12944. mouth: {
  12945. height: math.unit(1.85, "feet"),
  12946. name: "Mouth",
  12947. image: {
  12948. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12949. }
  12950. },
  12951. },
  12952. [
  12953. {
  12954. name: "Fairy",
  12955. height: math.unit(6, "inches")
  12956. },
  12957. {
  12958. name: "Normal",
  12959. height: math.unit(20, "feet"),
  12960. default: true
  12961. },
  12962. {
  12963. name: "Rampage",
  12964. height: math.unit(200, "feet")
  12965. },
  12966. {
  12967. name: "Archfey Forest Guardian",
  12968. height: math.unit(1, "mile")
  12969. },
  12970. ]
  12971. ))
  12972. characterMakers.push(() => makeCharacter(
  12973. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12974. {
  12975. front: {
  12976. height: math.unit(4, "meters"),
  12977. weight: math.unit(2, "tons"),
  12978. name: "Front",
  12979. image: {
  12980. source: "./media/characters/marik/front.svg",
  12981. extra: 1057 / 1003,
  12982. bottom: 0.08
  12983. }
  12984. },
  12985. },
  12986. [
  12987. {
  12988. name: "Normal",
  12989. height: math.unit(4, "meters"),
  12990. default: true
  12991. },
  12992. {
  12993. name: "Macro",
  12994. height: math.unit(20, "meters")
  12995. },
  12996. {
  12997. name: "Megamacro",
  12998. height: math.unit(50, "km")
  12999. },
  13000. {
  13001. name: "Gigamacro",
  13002. height: math.unit(100, "km")
  13003. },
  13004. {
  13005. name: "Alpha Macro",
  13006. height: math.unit(7.88e7, "yottameters")
  13007. },
  13008. ]
  13009. ))
  13010. characterMakers.push(() => makeCharacter(
  13011. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13012. {
  13013. front: {
  13014. height: math.unit(6, "feet"),
  13015. weight: math.unit(110, "lb"),
  13016. name: "Front",
  13017. image: {
  13018. source: "./media/characters/mel/front.svg",
  13019. extra: 736 / 617,
  13020. bottom: 0.017
  13021. }
  13022. },
  13023. },
  13024. [
  13025. {
  13026. name: "Pico",
  13027. height: math.unit(3, "pm")
  13028. },
  13029. {
  13030. name: "Nano",
  13031. height: math.unit(3, "nm")
  13032. },
  13033. {
  13034. name: "Micro",
  13035. height: math.unit(0.3, "mm"),
  13036. default: true
  13037. },
  13038. {
  13039. name: "Micro+",
  13040. height: math.unit(3, "mm")
  13041. },
  13042. {
  13043. name: "Normal",
  13044. height: math.unit(5 + 10.5 / 12, "feet")
  13045. },
  13046. ]
  13047. ))
  13048. characterMakers.push(() => makeCharacter(
  13049. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13050. {
  13051. kaiju: {
  13052. height: math.unit(1.75, "meters"),
  13053. weight: math.unit(55, "kg"),
  13054. name: "Kaiju",
  13055. image: {
  13056. source: "./media/characters/lykonous/kaiju.svg",
  13057. extra: 1055 / 946,
  13058. bottom: 0.135
  13059. }
  13060. },
  13061. },
  13062. [
  13063. {
  13064. name: "Normal",
  13065. height: math.unit(2.5, "meters"),
  13066. default: true
  13067. },
  13068. {
  13069. name: "Kaiju Dragon",
  13070. height: math.unit(60, "meters")
  13071. },
  13072. {
  13073. name: "Mega Kaiju",
  13074. height: math.unit(120, "km")
  13075. },
  13076. {
  13077. name: "Giga Kaiju",
  13078. height: math.unit(200, "megameters")
  13079. },
  13080. {
  13081. name: "Terra Kaiju",
  13082. height: math.unit(400, "gigameters")
  13083. },
  13084. {
  13085. name: "Kaiju Dragon God",
  13086. height: math.unit(13000, "exaparsecs")
  13087. },
  13088. ]
  13089. ))
  13090. characterMakers.push(() => makeCharacter(
  13091. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13092. {
  13093. front: {
  13094. height: math.unit(6, "feet"),
  13095. weight: math.unit(150, "lb"),
  13096. name: "Front",
  13097. image: {
  13098. source: "./media/characters/blü/front.svg",
  13099. extra: 1883 / 1564,
  13100. bottom: 0.031
  13101. }
  13102. },
  13103. },
  13104. [
  13105. {
  13106. name: "Normal",
  13107. height: math.unit(13, "feet"),
  13108. default: true
  13109. },
  13110. {
  13111. name: "Big Boi",
  13112. height: math.unit(150, "meters")
  13113. },
  13114. {
  13115. name: "Mini Stomper",
  13116. height: math.unit(300, "meters")
  13117. },
  13118. {
  13119. name: "Macro",
  13120. height: math.unit(1000, "meters")
  13121. },
  13122. {
  13123. name: "Megamacro",
  13124. height: math.unit(11000, "meters")
  13125. },
  13126. {
  13127. name: "Gigamacro",
  13128. height: math.unit(11000, "km")
  13129. },
  13130. {
  13131. name: "Teramacro",
  13132. height: math.unit(420000, "km")
  13133. },
  13134. {
  13135. name: "Examacro",
  13136. height: math.unit(120, "parsecs")
  13137. },
  13138. {
  13139. name: "God Tho",
  13140. height: math.unit(98000000000, "parsecs")
  13141. },
  13142. ]
  13143. ))
  13144. characterMakers.push(() => makeCharacter(
  13145. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13146. {
  13147. taurFront: {
  13148. height: math.unit(6, "feet"),
  13149. weight: math.unit(200, "lb"),
  13150. name: "Taur (Front)",
  13151. image: {
  13152. source: "./media/characters/scales/taur-front.svg",
  13153. extra: 1,
  13154. bottom: 0.05
  13155. }
  13156. },
  13157. taurBack: {
  13158. height: math.unit(6, "feet"),
  13159. weight: math.unit(200, "lb"),
  13160. name: "Taur (Back)",
  13161. image: {
  13162. source: "./media/characters/scales/taur-back.svg",
  13163. extra: 1,
  13164. bottom: 0.08
  13165. }
  13166. },
  13167. anthro: {
  13168. height: math.unit(6 * 7 / 12, "feet"),
  13169. weight: math.unit(100, "lb"),
  13170. name: "Anthro",
  13171. image: {
  13172. source: "./media/characters/scales/anthro.svg",
  13173. extra: 1,
  13174. bottom: 0.06
  13175. }
  13176. },
  13177. },
  13178. [
  13179. {
  13180. name: "Normal",
  13181. height: math.unit(12, "feet"),
  13182. default: true
  13183. },
  13184. ]
  13185. ))
  13186. characterMakers.push(() => makeCharacter(
  13187. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13188. {
  13189. front: {
  13190. height: math.unit(6, "feet"),
  13191. weight: math.unit(150, "lb"),
  13192. name: "Front",
  13193. image: {
  13194. source: "./media/characters/koragos/front.svg",
  13195. extra: 841 / 794,
  13196. bottom: 0.035
  13197. }
  13198. },
  13199. back: {
  13200. height: math.unit(6, "feet"),
  13201. weight: math.unit(150, "lb"),
  13202. name: "Back",
  13203. image: {
  13204. source: "./media/characters/koragos/back.svg",
  13205. extra: 841 / 810,
  13206. bottom: 0.022
  13207. }
  13208. },
  13209. },
  13210. [
  13211. {
  13212. name: "Normal",
  13213. height: math.unit(6 + 11 / 12, "feet"),
  13214. default: true
  13215. },
  13216. {
  13217. name: "Macro",
  13218. height: math.unit(490, "feet")
  13219. },
  13220. {
  13221. name: "Megamacro",
  13222. height: math.unit(10, "miles")
  13223. },
  13224. {
  13225. name: "Gigamacro",
  13226. height: math.unit(50, "miles")
  13227. },
  13228. ]
  13229. ))
  13230. characterMakers.push(() => makeCharacter(
  13231. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13232. {
  13233. front: {
  13234. height: math.unit(6, "feet"),
  13235. weight: math.unit(250, "lb"),
  13236. name: "Front",
  13237. image: {
  13238. source: "./media/characters/xylrem/front.svg",
  13239. extra: 3323 / 3050,
  13240. bottom: 0.065
  13241. }
  13242. },
  13243. },
  13244. [
  13245. {
  13246. name: "Micro",
  13247. height: math.unit(4, "feet")
  13248. },
  13249. {
  13250. name: "Normal",
  13251. height: math.unit(16, "feet"),
  13252. default: true
  13253. },
  13254. {
  13255. name: "Macro",
  13256. height: math.unit(2720, "feet")
  13257. },
  13258. {
  13259. name: "Megamacro",
  13260. height: math.unit(25000, "miles")
  13261. },
  13262. ]
  13263. ))
  13264. characterMakers.push(() => makeCharacter(
  13265. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13266. {
  13267. front: {
  13268. height: math.unit(8, "feet"),
  13269. weight: math.unit(250, "kg"),
  13270. name: "Front",
  13271. image: {
  13272. source: "./media/characters/ikideru/front.svg",
  13273. extra: 930 / 870,
  13274. bottom: 0.087
  13275. }
  13276. },
  13277. back: {
  13278. height: math.unit(8, "feet"),
  13279. weight: math.unit(250, "kg"),
  13280. name: "Back",
  13281. image: {
  13282. source: "./media/characters/ikideru/back.svg",
  13283. extra: 919 / 852,
  13284. bottom: 0.055
  13285. }
  13286. },
  13287. },
  13288. [
  13289. {
  13290. name: "Rare",
  13291. height: math.unit(8, "feet"),
  13292. default: true
  13293. },
  13294. {
  13295. name: "Playful Loom",
  13296. height: math.unit(80, "feet")
  13297. },
  13298. {
  13299. name: "City Leaner",
  13300. height: math.unit(230, "feet")
  13301. },
  13302. {
  13303. name: "Megamacro",
  13304. height: math.unit(2500, "feet")
  13305. },
  13306. {
  13307. name: "Gigamacro",
  13308. height: math.unit(26400, "feet")
  13309. },
  13310. {
  13311. name: "Tectonic Shifter",
  13312. height: math.unit(1.7, "megameters")
  13313. },
  13314. {
  13315. name: "Planet Carer",
  13316. height: math.unit(21, "megameters")
  13317. },
  13318. {
  13319. name: "God",
  13320. height: math.unit(11157.22, "parsecs")
  13321. },
  13322. ]
  13323. ))
  13324. characterMakers.push(() => makeCharacter(
  13325. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13326. {
  13327. front: {
  13328. height: math.unit(6, "feet"),
  13329. weight: math.unit(120, "lb"),
  13330. name: "Front",
  13331. image: {
  13332. source: "./media/characters/neo/front.svg"
  13333. }
  13334. },
  13335. },
  13336. [
  13337. {
  13338. name: "Micro",
  13339. height: math.unit(2, "inches"),
  13340. default: true
  13341. },
  13342. {
  13343. name: "Human Size",
  13344. height: math.unit(5 + 8 / 12, "feet")
  13345. },
  13346. ]
  13347. ))
  13348. characterMakers.push(() => makeCharacter(
  13349. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13350. {
  13351. front: {
  13352. height: math.unit(13 + 10 / 12, "feet"),
  13353. weight: math.unit(5320, "lb"),
  13354. name: "Front",
  13355. image: {
  13356. source: "./media/characters/chauncey-chantz/front.svg",
  13357. extra: 1587 / 1435,
  13358. bottom: 0.02
  13359. }
  13360. },
  13361. },
  13362. [
  13363. {
  13364. name: "Normal",
  13365. height: math.unit(13 + 10 / 12, "feet"),
  13366. default: true
  13367. },
  13368. {
  13369. name: "Macro",
  13370. height: math.unit(45, "feet")
  13371. },
  13372. {
  13373. name: "Megamacro",
  13374. height: math.unit(250, "miles")
  13375. },
  13376. {
  13377. name: "Planetary",
  13378. height: math.unit(10000, "miles")
  13379. },
  13380. {
  13381. name: "Galactic",
  13382. height: math.unit(40000, "parsecs")
  13383. },
  13384. {
  13385. name: "Universal",
  13386. height: math.unit(1, "yottameter")
  13387. },
  13388. ]
  13389. ))
  13390. characterMakers.push(() => makeCharacter(
  13391. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13392. {
  13393. front: {
  13394. height: math.unit(6, "feet"),
  13395. weight: math.unit(150, "lb"),
  13396. name: "Front",
  13397. image: {
  13398. source: "./media/characters/epifox/front.svg",
  13399. extra: 1,
  13400. bottom: 0.075
  13401. }
  13402. },
  13403. },
  13404. [
  13405. {
  13406. name: "Micro",
  13407. height: math.unit(6, "inches")
  13408. },
  13409. {
  13410. name: "Normal",
  13411. height: math.unit(12, "feet"),
  13412. default: true
  13413. },
  13414. {
  13415. name: "Macro",
  13416. height: math.unit(3810, "feet")
  13417. },
  13418. {
  13419. name: "Megamacro",
  13420. height: math.unit(500, "miles")
  13421. },
  13422. ]
  13423. ))
  13424. characterMakers.push(() => makeCharacter(
  13425. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13426. {
  13427. front: {
  13428. height: math.unit(1.8796, "m"),
  13429. weight: math.unit(230, "lb"),
  13430. name: "Front",
  13431. image: {
  13432. source: "./media/characters/colin-t/front.svg",
  13433. extra: 1272 / 1193,
  13434. bottom: 0.07
  13435. }
  13436. },
  13437. },
  13438. [
  13439. {
  13440. name: "Micro",
  13441. height: math.unit(0.571, "meters")
  13442. },
  13443. {
  13444. name: "Normal",
  13445. height: math.unit(1.8796, "meters"),
  13446. default: true
  13447. },
  13448. {
  13449. name: "Tall",
  13450. height: math.unit(4, "meters")
  13451. },
  13452. {
  13453. name: "Macro",
  13454. height: math.unit(67.241, "meters")
  13455. },
  13456. {
  13457. name: "Megamacro",
  13458. height: math.unit(371.856, "meters")
  13459. },
  13460. {
  13461. name: "Planetary",
  13462. height: math.unit(12631.5689, "km")
  13463. },
  13464. ]
  13465. ))
  13466. characterMakers.push(() => makeCharacter(
  13467. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13468. {
  13469. front: {
  13470. height: math.unit(1.85, "meters"),
  13471. weight: math.unit(80, "kg"),
  13472. name: "Front",
  13473. image: {
  13474. source: "./media/characters/matvei/front.svg",
  13475. extra: 456/447,
  13476. bottom: 8/464
  13477. }
  13478. },
  13479. back: {
  13480. height: math.unit(1.85, "meters"),
  13481. weight: math.unit(80, "kg"),
  13482. name: "Back",
  13483. image: {
  13484. source: "./media/characters/matvei/back.svg",
  13485. extra: 434/427,
  13486. bottom: 11/445
  13487. }
  13488. },
  13489. },
  13490. [
  13491. {
  13492. name: "Normal",
  13493. height: math.unit(1.85, "meters"),
  13494. default: true
  13495. },
  13496. ]
  13497. ))
  13498. characterMakers.push(() => makeCharacter(
  13499. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13500. {
  13501. front: {
  13502. height: math.unit(5 + 9 / 12, "feet"),
  13503. weight: math.unit(70, "lb"),
  13504. name: "Front",
  13505. image: {
  13506. source: "./media/characters/quincy/front.svg",
  13507. extra: 3041 / 2751
  13508. }
  13509. },
  13510. back: {
  13511. height: math.unit(5 + 9 / 12, "feet"),
  13512. weight: math.unit(70, "lb"),
  13513. name: "Back",
  13514. image: {
  13515. source: "./media/characters/quincy/back.svg",
  13516. extra: 3041 / 2751
  13517. }
  13518. },
  13519. flying: {
  13520. height: math.unit(5 + 4 / 12, "feet"),
  13521. weight: math.unit(70, "lb"),
  13522. name: "Flying",
  13523. image: {
  13524. source: "./media/characters/quincy/flying.svg",
  13525. extra: 1044 / 930
  13526. }
  13527. },
  13528. },
  13529. [
  13530. {
  13531. name: "Micro",
  13532. height: math.unit(3, "cm")
  13533. },
  13534. {
  13535. name: "Normal",
  13536. height: math.unit(5 + 9 / 12, "feet")
  13537. },
  13538. {
  13539. name: "Macro",
  13540. height: math.unit(200, "meters"),
  13541. default: true
  13542. },
  13543. {
  13544. name: "Megamacro",
  13545. height: math.unit(1000, "meters")
  13546. },
  13547. ]
  13548. ))
  13549. characterMakers.push(() => makeCharacter(
  13550. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13551. {
  13552. front: {
  13553. height: math.unit(3 + 11/12, "feet"),
  13554. weight: math.unit(50, "lb"),
  13555. name: "Front",
  13556. image: {
  13557. source: "./media/characters/vanrel/front.svg",
  13558. extra: 1104/949,
  13559. bottom: 52/1156
  13560. }
  13561. },
  13562. back: {
  13563. height: math.unit(3 + 11/12, "feet"),
  13564. weight: math.unit(50, "lb"),
  13565. name: "Back",
  13566. image: {
  13567. source: "./media/characters/vanrel/back.svg",
  13568. extra: 1119/976,
  13569. bottom: 37/1156
  13570. }
  13571. },
  13572. tome: {
  13573. height: math.unit(1.35, "feet"),
  13574. weight: math.unit(10, "lb"),
  13575. name: "Vanrel's Tome",
  13576. rename: true,
  13577. image: {
  13578. source: "./media/characters/vanrel/tome.svg"
  13579. }
  13580. },
  13581. beans: {
  13582. height: math.unit(0.89, "feet"),
  13583. name: "Beans",
  13584. image: {
  13585. source: "./media/characters/vanrel/beans.svg"
  13586. }
  13587. },
  13588. },
  13589. [
  13590. {
  13591. name: "Normal",
  13592. height: math.unit(3 + 11/12, "feet"),
  13593. default: true
  13594. },
  13595. ]
  13596. ))
  13597. characterMakers.push(() => makeCharacter(
  13598. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13599. {
  13600. front: {
  13601. height: math.unit(7 + 5 / 12, "feet"),
  13602. name: "Front",
  13603. image: {
  13604. source: "./media/characters/kuiper-vanrel/front.svg",
  13605. extra: 1219/1169,
  13606. bottom: 69/1288
  13607. }
  13608. },
  13609. back: {
  13610. height: math.unit(7 + 5 / 12, "feet"),
  13611. name: "Back",
  13612. image: {
  13613. source: "./media/characters/kuiper-vanrel/back.svg",
  13614. extra: 1236/1193,
  13615. bottom: 27/1263
  13616. }
  13617. },
  13618. foot: {
  13619. height: math.unit(0.55, "meters"),
  13620. name: "Foot",
  13621. image: {
  13622. source: "./media/characters/kuiper-vanrel/foot.svg",
  13623. }
  13624. },
  13625. battle: {
  13626. height: math.unit(6.824, "feet"),
  13627. name: "Battle",
  13628. image: {
  13629. source: "./media/characters/kuiper-vanrel/battle.svg",
  13630. extra: 1466 / 1327,
  13631. bottom: 29 / 1492.5
  13632. }
  13633. },
  13634. meerkui: {
  13635. height: math.unit(18, "inches"),
  13636. name: "Meerkui",
  13637. image: {
  13638. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13639. extra: 1354/1289,
  13640. bottom: 69/1423
  13641. }
  13642. },
  13643. },
  13644. [
  13645. {
  13646. name: "Normal",
  13647. height: math.unit(7 + 5 / 12, "feet"),
  13648. default: true
  13649. },
  13650. ]
  13651. ))
  13652. characterMakers.push(() => makeCharacter(
  13653. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13654. {
  13655. front: {
  13656. height: math.unit(8 + 5 / 12, "feet"),
  13657. name: "Front",
  13658. image: {
  13659. source: "./media/characters/keset-vanrel/front.svg",
  13660. extra: 1231/1148,
  13661. bottom: 82/1313
  13662. }
  13663. },
  13664. back: {
  13665. height: math.unit(8 + 5 / 12, "feet"),
  13666. name: "Back",
  13667. image: {
  13668. source: "./media/characters/keset-vanrel/back.svg",
  13669. extra: 1240/1174,
  13670. bottom: 33/1273
  13671. }
  13672. },
  13673. hand: {
  13674. height: math.unit(0.6, "meters"),
  13675. name: "Hand",
  13676. image: {
  13677. source: "./media/characters/keset-vanrel/hand.svg"
  13678. }
  13679. },
  13680. foot: {
  13681. height: math.unit(0.94978, "meters"),
  13682. name: "Foot",
  13683. image: {
  13684. source: "./media/characters/keset-vanrel/foot.svg"
  13685. }
  13686. },
  13687. battle: {
  13688. height: math.unit(7.408, "feet"),
  13689. name: "Battle",
  13690. image: {
  13691. source: "./media/characters/keset-vanrel/battle.svg",
  13692. extra: 1890 / 1386,
  13693. bottom: 73.28 / 1970
  13694. }
  13695. },
  13696. },
  13697. [
  13698. {
  13699. name: "Normal",
  13700. height: math.unit(8 + 5 / 12, "feet"),
  13701. default: true
  13702. },
  13703. ]
  13704. ))
  13705. characterMakers.push(() => makeCharacter(
  13706. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13707. {
  13708. front: {
  13709. height: math.unit(6, "feet"),
  13710. weight: math.unit(150, "lb"),
  13711. name: "Front",
  13712. image: {
  13713. source: "./media/characters/neos/front.svg",
  13714. extra: 1696 / 992,
  13715. bottom: 0.14
  13716. }
  13717. },
  13718. },
  13719. [
  13720. {
  13721. name: "Normal",
  13722. height: math.unit(54, "cm"),
  13723. default: true
  13724. },
  13725. {
  13726. name: "Macro",
  13727. height: math.unit(100, "m")
  13728. },
  13729. {
  13730. name: "Megamacro",
  13731. height: math.unit(10, "km")
  13732. },
  13733. {
  13734. name: "Megamacro+",
  13735. height: math.unit(100, "km")
  13736. },
  13737. {
  13738. name: "Gigamacro",
  13739. height: math.unit(100, "Mm")
  13740. },
  13741. {
  13742. name: "Teramacro",
  13743. height: math.unit(100, "Gm")
  13744. },
  13745. {
  13746. name: "Examacro",
  13747. height: math.unit(100, "Em")
  13748. },
  13749. {
  13750. name: "Godly",
  13751. height: math.unit(10000, "Ym")
  13752. },
  13753. {
  13754. name: "Beyond Godly",
  13755. height: math.unit(25, "multiverses")
  13756. },
  13757. ]
  13758. ))
  13759. characterMakers.push(() => makeCharacter(
  13760. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13761. {
  13762. feminine: {
  13763. height: math.unit(5, "feet"),
  13764. weight: math.unit(100, "lb"),
  13765. name: "Feminine",
  13766. image: {
  13767. source: "./media/characters/sammy-mouse/feminine.svg",
  13768. extra: 2526 / 2425,
  13769. bottom: 0.123
  13770. }
  13771. },
  13772. masculine: {
  13773. height: math.unit(5, "feet"),
  13774. weight: math.unit(100, "lb"),
  13775. name: "Masculine",
  13776. image: {
  13777. source: "./media/characters/sammy-mouse/masculine.svg",
  13778. extra: 2526 / 2425,
  13779. bottom: 0.123
  13780. }
  13781. },
  13782. },
  13783. [
  13784. {
  13785. name: "Micro",
  13786. height: math.unit(5, "inches")
  13787. },
  13788. {
  13789. name: "Normal",
  13790. height: math.unit(5, "feet"),
  13791. default: true
  13792. },
  13793. {
  13794. name: "Macro",
  13795. height: math.unit(60, "feet")
  13796. },
  13797. ]
  13798. ))
  13799. characterMakers.push(() => makeCharacter(
  13800. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13801. {
  13802. front: {
  13803. height: math.unit(4, "feet"),
  13804. weight: math.unit(50, "lb"),
  13805. name: "Front",
  13806. image: {
  13807. source: "./media/characters/kole/front.svg",
  13808. extra: 1423 / 1303,
  13809. bottom: 0.025
  13810. }
  13811. },
  13812. back: {
  13813. height: math.unit(4, "feet"),
  13814. weight: math.unit(50, "lb"),
  13815. name: "Back",
  13816. image: {
  13817. source: "./media/characters/kole/back.svg",
  13818. extra: 1426 / 1280,
  13819. bottom: 0.02
  13820. }
  13821. },
  13822. },
  13823. [
  13824. {
  13825. name: "Normal",
  13826. height: math.unit(4, "feet"),
  13827. default: true
  13828. },
  13829. ]
  13830. ))
  13831. characterMakers.push(() => makeCharacter(
  13832. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13833. {
  13834. front: {
  13835. height: math.unit(2.5, "feet"),
  13836. weight: math.unit(32, "lb"),
  13837. name: "Front",
  13838. image: {
  13839. source: "./media/characters/rufran/front.svg",
  13840. extra: 1313/885,
  13841. bottom: 94/1407
  13842. }
  13843. },
  13844. side: {
  13845. height: math.unit(2.5, "feet"),
  13846. weight: math.unit(32, "lb"),
  13847. name: "Side",
  13848. image: {
  13849. source: "./media/characters/rufran/side.svg",
  13850. extra: 1109/852,
  13851. bottom: 118/1227
  13852. }
  13853. },
  13854. back: {
  13855. height: math.unit(2.5, "feet"),
  13856. weight: math.unit(32, "lb"),
  13857. name: "Back",
  13858. image: {
  13859. source: "./media/characters/rufran/back.svg",
  13860. extra: 1280/878,
  13861. bottom: 131/1411
  13862. }
  13863. },
  13864. mouth: {
  13865. height: math.unit(1.13, "feet"),
  13866. name: "Mouth",
  13867. image: {
  13868. source: "./media/characters/rufran/mouth.svg"
  13869. }
  13870. },
  13871. foot: {
  13872. height: math.unit(1.33, "feet"),
  13873. name: "Foot",
  13874. image: {
  13875. source: "./media/characters/rufran/foot.svg"
  13876. }
  13877. },
  13878. koboldFront: {
  13879. height: math.unit(2 + 6 / 12, "feet"),
  13880. weight: math.unit(20, "lb"),
  13881. name: "Front (Kobold)",
  13882. image: {
  13883. source: "./media/characters/rufran/kobold-front.svg",
  13884. extra: 2041 / 1839,
  13885. bottom: 0.055
  13886. }
  13887. },
  13888. koboldBack: {
  13889. height: math.unit(2 + 6 / 12, "feet"),
  13890. weight: math.unit(20, "lb"),
  13891. name: "Back (Kobold)",
  13892. image: {
  13893. source: "./media/characters/rufran/kobold-back.svg",
  13894. extra: 2054 / 1839,
  13895. bottom: 0.01
  13896. }
  13897. },
  13898. koboldHand: {
  13899. height: math.unit(0.2166, "meters"),
  13900. name: "Hand (Kobold)",
  13901. image: {
  13902. source: "./media/characters/rufran/kobold-hand.svg"
  13903. }
  13904. },
  13905. koboldFoot: {
  13906. height: math.unit(0.185, "meters"),
  13907. name: "Foot (Kobold)",
  13908. image: {
  13909. source: "./media/characters/rufran/kobold-foot.svg"
  13910. }
  13911. },
  13912. },
  13913. [
  13914. {
  13915. name: "Micro",
  13916. height: math.unit(1, "inch")
  13917. },
  13918. {
  13919. name: "Normal",
  13920. height: math.unit(2 + 6 / 12, "feet"),
  13921. default: true
  13922. },
  13923. {
  13924. name: "Big",
  13925. height: math.unit(60, "feet")
  13926. },
  13927. {
  13928. name: "Macro",
  13929. height: math.unit(325, "feet")
  13930. },
  13931. ]
  13932. ))
  13933. characterMakers.push(() => makeCharacter(
  13934. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13935. {
  13936. front: {
  13937. height: math.unit(0.3, "meters"),
  13938. weight: math.unit(3.5, "kg"),
  13939. name: "Front",
  13940. image: {
  13941. source: "./media/characters/chip/front.svg",
  13942. extra: 748 / 674
  13943. }
  13944. },
  13945. },
  13946. [
  13947. {
  13948. name: "Micro",
  13949. height: math.unit(1, "inch"),
  13950. default: true
  13951. },
  13952. ]
  13953. ))
  13954. characterMakers.push(() => makeCharacter(
  13955. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13956. {
  13957. side: {
  13958. height: math.unit(2.3, "meters"),
  13959. weight: math.unit(3500, "lb"),
  13960. name: "Side",
  13961. image: {
  13962. source: "./media/characters/torvid/side.svg",
  13963. extra: 1972 / 722,
  13964. bottom: 0.035
  13965. }
  13966. },
  13967. },
  13968. [
  13969. {
  13970. name: "Normal",
  13971. height: math.unit(2.3, "meters"),
  13972. default: true
  13973. },
  13974. ]
  13975. ))
  13976. characterMakers.push(() => makeCharacter(
  13977. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13978. {
  13979. front: {
  13980. height: math.unit(2, "meters"),
  13981. weight: math.unit(150.5, "kg"),
  13982. name: "Front",
  13983. image: {
  13984. source: "./media/characters/susan/front.svg",
  13985. extra: 693 / 635,
  13986. bottom: 0.05
  13987. }
  13988. },
  13989. },
  13990. [
  13991. {
  13992. name: "Megamacro",
  13993. height: math.unit(505, "miles"),
  13994. default: true
  13995. },
  13996. ]
  13997. ))
  13998. characterMakers.push(() => makeCharacter(
  13999. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14000. {
  14001. front: {
  14002. height: math.unit(6, "feet"),
  14003. weight: math.unit(150, "lb"),
  14004. name: "Front",
  14005. image: {
  14006. source: "./media/characters/raindrops/front.svg",
  14007. extra: 2655 / 2461,
  14008. bottom: 49 / 2705
  14009. }
  14010. },
  14011. back: {
  14012. height: math.unit(6, "feet"),
  14013. weight: math.unit(150, "lb"),
  14014. name: "Back",
  14015. image: {
  14016. source: "./media/characters/raindrops/back.svg",
  14017. extra: 2574 / 2400,
  14018. bottom: 65 / 2634
  14019. }
  14020. },
  14021. },
  14022. [
  14023. {
  14024. name: "Micro",
  14025. height: math.unit(6, "inches")
  14026. },
  14027. {
  14028. name: "Normal",
  14029. height: math.unit(6 + 2 / 12, "feet")
  14030. },
  14031. {
  14032. name: "Macro",
  14033. height: math.unit(131, "feet"),
  14034. default: true
  14035. },
  14036. {
  14037. name: "Megamacro",
  14038. height: math.unit(15, "miles")
  14039. },
  14040. {
  14041. name: "Gigamacro",
  14042. height: math.unit(4000, "miles")
  14043. },
  14044. {
  14045. name: "Teramacro",
  14046. height: math.unit(315000, "miles")
  14047. },
  14048. ]
  14049. ))
  14050. characterMakers.push(() => makeCharacter(
  14051. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14052. {
  14053. front: {
  14054. height: math.unit(2.794, "meters"),
  14055. weight: math.unit(325, "kg"),
  14056. name: "Front",
  14057. image: {
  14058. source: "./media/characters/tezwa/front.svg",
  14059. extra: 2083 / 1906,
  14060. bottom: 0.031
  14061. }
  14062. },
  14063. foot: {
  14064. height: math.unit(0.687, "meters"),
  14065. name: "Foot",
  14066. image: {
  14067. source: "./media/characters/tezwa/foot.svg"
  14068. }
  14069. },
  14070. },
  14071. [
  14072. {
  14073. name: "Normal",
  14074. height: math.unit(9 + 2 / 12, "feet"),
  14075. default: true
  14076. },
  14077. ]
  14078. ))
  14079. characterMakers.push(() => makeCharacter(
  14080. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14081. {
  14082. front: {
  14083. height: math.unit(58, "feet"),
  14084. weight: math.unit(89000, "lb"),
  14085. name: "Front",
  14086. image: {
  14087. source: "./media/characters/typhus/front.svg",
  14088. extra: 816 / 800,
  14089. bottom: 0.065
  14090. }
  14091. },
  14092. },
  14093. [
  14094. {
  14095. name: "Macro",
  14096. height: math.unit(58, "feet"),
  14097. default: true
  14098. },
  14099. ]
  14100. ))
  14101. characterMakers.push(() => makeCharacter(
  14102. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14103. {
  14104. front: {
  14105. height: math.unit(12, "feet"),
  14106. weight: math.unit(6, "tonnes"),
  14107. name: "Front",
  14108. image: {
  14109. source: "./media/characters/lyra-von-wulf/front.svg",
  14110. extra: 1,
  14111. bottom: 0.10
  14112. }
  14113. },
  14114. frontMecha: {
  14115. height: math.unit(12, "feet"),
  14116. weight: math.unit(12, "tonnes"),
  14117. name: "Front (Mecha)",
  14118. image: {
  14119. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14120. extra: 1,
  14121. bottom: 0.042
  14122. }
  14123. },
  14124. maw: {
  14125. height: math.unit(2.2, "feet"),
  14126. name: "Maw",
  14127. image: {
  14128. source: "./media/characters/lyra-von-wulf/maw.svg"
  14129. }
  14130. },
  14131. },
  14132. [
  14133. {
  14134. name: "Normal",
  14135. height: math.unit(12, "feet"),
  14136. default: true
  14137. },
  14138. {
  14139. name: "Classic",
  14140. height: math.unit(50, "feet")
  14141. },
  14142. {
  14143. name: "Macro",
  14144. height: math.unit(500, "feet")
  14145. },
  14146. {
  14147. name: "Megamacro",
  14148. height: math.unit(1, "mile")
  14149. },
  14150. {
  14151. name: "Gigamacro",
  14152. height: math.unit(400, "miles")
  14153. },
  14154. {
  14155. name: "Teramacro",
  14156. height: math.unit(22000, "miles")
  14157. },
  14158. {
  14159. name: "Solarmacro",
  14160. height: math.unit(8600000, "miles")
  14161. },
  14162. {
  14163. name: "Galactic",
  14164. height: math.unit(1057000, "lightyears")
  14165. },
  14166. ]
  14167. ))
  14168. characterMakers.push(() => makeCharacter(
  14169. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14170. {
  14171. front: {
  14172. height: math.unit(6 + 10 / 12, "feet"),
  14173. weight: math.unit(150, "lb"),
  14174. name: "Front",
  14175. image: {
  14176. source: "./media/characters/dixon/front.svg",
  14177. extra: 3361 / 3209,
  14178. bottom: 0.01
  14179. }
  14180. },
  14181. },
  14182. [
  14183. {
  14184. name: "Normal",
  14185. height: math.unit(6 + 10 / 12, "feet"),
  14186. default: true
  14187. },
  14188. {
  14189. name: "Big",
  14190. height: math.unit(12, "meters")
  14191. },
  14192. {
  14193. name: "Macro",
  14194. height: math.unit(500, "meters")
  14195. },
  14196. {
  14197. name: "Megamacro",
  14198. height: math.unit(2, "km")
  14199. },
  14200. ]
  14201. ))
  14202. characterMakers.push(() => makeCharacter(
  14203. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14204. {
  14205. front: {
  14206. height: math.unit(185, "cm"),
  14207. weight: math.unit(68, "kg"),
  14208. name: "Front",
  14209. image: {
  14210. source: "./media/characters/kauko/front.svg",
  14211. extra: 1455 / 1421,
  14212. bottom: 0.03
  14213. }
  14214. },
  14215. back: {
  14216. height: math.unit(185, "cm"),
  14217. weight: math.unit(68, "kg"),
  14218. name: "Back",
  14219. image: {
  14220. source: "./media/characters/kauko/back.svg",
  14221. extra: 1455 / 1421,
  14222. bottom: 0.004
  14223. }
  14224. },
  14225. },
  14226. [
  14227. {
  14228. name: "Normal",
  14229. height: math.unit(185, "cm"),
  14230. default: true
  14231. },
  14232. ]
  14233. ))
  14234. characterMakers.push(() => makeCharacter(
  14235. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14236. {
  14237. frontSfw: {
  14238. height: math.unit(5, "meters"),
  14239. weight: math.unit(4250, "lb"),
  14240. name: "Front",
  14241. image: {
  14242. source: "./media/characters/varg/front-sfw.svg",
  14243. extra: 1103/1010,
  14244. bottom: 50/1153
  14245. },
  14246. form: "anthro",
  14247. default: true
  14248. },
  14249. backSfw: {
  14250. height: math.unit(5, "meters"),
  14251. weight: math.unit(4250, "lb"),
  14252. name: "Back",
  14253. image: {
  14254. source: "./media/characters/varg/back-sfw.svg",
  14255. extra: 1038/1022,
  14256. bottom: 36/1074
  14257. },
  14258. form: "anthro"
  14259. },
  14260. frontNsfw: {
  14261. height: math.unit(5, "meters"),
  14262. weight: math.unit(4250, "lb"),
  14263. name: "Front (NSFW)",
  14264. image: {
  14265. source: "./media/characters/varg/front-nsfw.svg",
  14266. extra: 1103/1010,
  14267. bottom: 50/1153
  14268. },
  14269. form: "anthro"
  14270. },
  14271. sheath: {
  14272. height: math.unit(3.8, "feet"),
  14273. weight: math.unit(90, "kilograms"),
  14274. name: "Sheath",
  14275. image: {
  14276. source: "./media/characters/varg/sheath.svg"
  14277. },
  14278. form: "anthro"
  14279. },
  14280. dick: {
  14281. height: math.unit(4.6, "feet"),
  14282. weight: math.unit(451, "kilograms"),
  14283. name: "Dick",
  14284. image: {
  14285. source: "./media/characters/varg/dick.svg"
  14286. },
  14287. form: "anthro"
  14288. },
  14289. feralSfw: {
  14290. height: math.unit(5, "meters"),
  14291. weight: math.unit(100000, "lb"),
  14292. name: "Side",
  14293. image: {
  14294. source: "./media/characters/varg/feral-sfw.svg",
  14295. extra: 1065/511,
  14296. bottom: 211/1276
  14297. },
  14298. form: "feral",
  14299. default: true
  14300. },
  14301. feralNsfw: {
  14302. height: math.unit(5, "meters"),
  14303. weight: math.unit(100000, "lb"),
  14304. name: "Side (NSFW)",
  14305. image: {
  14306. source: "./media/characters/varg/feral-nsfw.svg",
  14307. extra: 1065/511,
  14308. bottom: 211/1276
  14309. },
  14310. form: "feral",
  14311. },
  14312. feralSheath: {
  14313. height: math.unit(9.8, "feet"),
  14314. weight: math.unit(2000, "kilograms"),
  14315. name: "Sheath",
  14316. image: {
  14317. source: "./media/characters/varg/sheath.svg"
  14318. },
  14319. form: "feral"
  14320. },
  14321. feralDick: {
  14322. height: math.unit(13.11, "feet"),
  14323. weight: math.unit(10440, "kilograms"),
  14324. name: "Dick",
  14325. image: {
  14326. source: "./media/characters/varg/dick.svg"
  14327. },
  14328. form: "feral"
  14329. },
  14330. },
  14331. [
  14332. {
  14333. name: "Normal",
  14334. height: math.unit(5, "meters"),
  14335. form: "anthro"
  14336. },
  14337. {
  14338. name: "Macro",
  14339. height: math.unit(200, "meters"),
  14340. form: "anthro"
  14341. },
  14342. {
  14343. name: "Megamacro",
  14344. height: math.unit(20, "kilometers"),
  14345. form: "anthro"
  14346. },
  14347. {
  14348. name: "True Size",
  14349. height: math.unit(211, "km"),
  14350. form: "anthro",
  14351. default: true
  14352. },
  14353. {
  14354. name: "Gigamacro",
  14355. height: math.unit(1000, "km"),
  14356. form: "anthro"
  14357. },
  14358. {
  14359. name: "Gigamacro+",
  14360. height: math.unit(8000, "km"),
  14361. form: "anthro"
  14362. },
  14363. {
  14364. name: "Teramacro",
  14365. height: math.unit(1000000, "km"),
  14366. form: "anthro"
  14367. },
  14368. {
  14369. name: "Normal",
  14370. height: math.unit(5, "meters"),
  14371. form: "feral"
  14372. },
  14373. {
  14374. name: "Macro",
  14375. height: math.unit(200, "meters"),
  14376. form: "feral"
  14377. },
  14378. {
  14379. name: "Megamacro",
  14380. height: math.unit(20, "kilometers"),
  14381. form: "feral"
  14382. },
  14383. {
  14384. name: "True Size",
  14385. height: math.unit(211, "km"),
  14386. form: "feral",
  14387. default: true
  14388. },
  14389. {
  14390. name: "Gigamacro",
  14391. height: math.unit(1000, "km"),
  14392. form: "feral"
  14393. },
  14394. {
  14395. name: "Gigamacro+",
  14396. height: math.unit(8000, "km"),
  14397. form: "feral"
  14398. },
  14399. {
  14400. name: "Teramacro",
  14401. height: math.unit(1000000, "km"),
  14402. form: "feral"
  14403. },
  14404. ],
  14405. {
  14406. "anthro": {
  14407. name: "Anthro",
  14408. default: true
  14409. },
  14410. "feral": {
  14411. name: "Feral",
  14412. },
  14413. }
  14414. ))
  14415. characterMakers.push(() => makeCharacter(
  14416. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14417. {
  14418. front: {
  14419. height: math.unit(7 + 7 / 12, "feet"),
  14420. weight: math.unit(267, "lb"),
  14421. name: "Front",
  14422. image: {
  14423. source: "./media/characters/dayza/front.svg",
  14424. extra: 1262 / 1200,
  14425. bottom: 0.035
  14426. }
  14427. },
  14428. side: {
  14429. height: math.unit(7 + 7 / 12, "feet"),
  14430. weight: math.unit(267, "lb"),
  14431. name: "Side",
  14432. image: {
  14433. source: "./media/characters/dayza/side.svg",
  14434. extra: 1295 / 1245,
  14435. bottom: 0.05
  14436. }
  14437. },
  14438. back: {
  14439. height: math.unit(7 + 7 / 12, "feet"),
  14440. weight: math.unit(267, "lb"),
  14441. name: "Back",
  14442. image: {
  14443. source: "./media/characters/dayza/back.svg",
  14444. extra: 1241 / 1170
  14445. }
  14446. },
  14447. },
  14448. [
  14449. {
  14450. name: "Normal",
  14451. height: math.unit(7 + 7 / 12, "feet"),
  14452. default: true
  14453. },
  14454. {
  14455. name: "Macro",
  14456. height: math.unit(155, "feet")
  14457. },
  14458. ]
  14459. ))
  14460. characterMakers.push(() => makeCharacter(
  14461. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14462. {
  14463. front: {
  14464. height: math.unit(6 + 5 / 12, "feet"),
  14465. weight: math.unit(160, "lb"),
  14466. name: "Front",
  14467. image: {
  14468. source: "./media/characters/xanthos/front.svg",
  14469. extra: 1,
  14470. bottom: 0.04
  14471. }
  14472. },
  14473. back: {
  14474. height: math.unit(6 + 5 / 12, "feet"),
  14475. weight: math.unit(160, "lb"),
  14476. name: "Back",
  14477. image: {
  14478. source: "./media/characters/xanthos/back.svg",
  14479. extra: 1,
  14480. bottom: 0.03
  14481. }
  14482. },
  14483. hand: {
  14484. height: math.unit(0.928, "feet"),
  14485. name: "Hand",
  14486. image: {
  14487. source: "./media/characters/xanthos/hand.svg"
  14488. }
  14489. },
  14490. foot: {
  14491. height: math.unit(1.286, "feet"),
  14492. name: "Foot",
  14493. image: {
  14494. source: "./media/characters/xanthos/foot.svg"
  14495. }
  14496. },
  14497. },
  14498. [
  14499. {
  14500. name: "Normal",
  14501. height: math.unit(6 + 5 / 12, "feet"),
  14502. default: true
  14503. },
  14504. {
  14505. name: "Normal+",
  14506. height: math.unit(6, "meters")
  14507. },
  14508. {
  14509. name: "Macro",
  14510. height: math.unit(40, "feet")
  14511. },
  14512. {
  14513. name: "Macro+",
  14514. height: math.unit(200, "meters")
  14515. },
  14516. {
  14517. name: "Megamacro",
  14518. height: math.unit(20, "km")
  14519. },
  14520. {
  14521. name: "Megamacro+",
  14522. height: math.unit(100, "km")
  14523. },
  14524. {
  14525. name: "Gigamacro",
  14526. height: math.unit(200, "megameters")
  14527. },
  14528. {
  14529. name: "Gigamacro+",
  14530. height: math.unit(1.5, "gigameters")
  14531. },
  14532. ]
  14533. ))
  14534. characterMakers.push(() => makeCharacter(
  14535. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14536. {
  14537. front: {
  14538. height: math.unit(6 + 3 / 12, "feet"),
  14539. weight: math.unit(215, "lb"),
  14540. name: "Front",
  14541. image: {
  14542. source: "./media/characters/grynn/front.svg",
  14543. extra: 4627 / 4209,
  14544. bottom: 0.047
  14545. }
  14546. },
  14547. },
  14548. [
  14549. {
  14550. name: "Micro",
  14551. height: math.unit(6, "inches")
  14552. },
  14553. {
  14554. name: "Normal",
  14555. height: math.unit(6 + 3 / 12, "feet"),
  14556. default: true
  14557. },
  14558. {
  14559. name: "Big",
  14560. height: math.unit(104, "feet")
  14561. },
  14562. {
  14563. name: "Macro",
  14564. height: math.unit(944, "feet")
  14565. },
  14566. {
  14567. name: "Macro+",
  14568. height: math.unit(9480, "feet")
  14569. },
  14570. {
  14571. name: "Megamacro",
  14572. height: math.unit(78752, "feet")
  14573. },
  14574. {
  14575. name: "Megamacro+",
  14576. height: math.unit(630128, "feet")
  14577. },
  14578. {
  14579. name: "Megamacro++",
  14580. height: math.unit(3150695, "feet")
  14581. },
  14582. ]
  14583. ))
  14584. characterMakers.push(() => makeCharacter(
  14585. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14586. {
  14587. front: {
  14588. height: math.unit(7 + 5 / 12, "feet"),
  14589. weight: math.unit(450, "lb"),
  14590. name: "Front",
  14591. image: {
  14592. source: "./media/characters/mocha-aura/front.svg",
  14593. extra: 1907 / 1817,
  14594. bottom: 0.04
  14595. }
  14596. },
  14597. back: {
  14598. height: math.unit(7 + 5 / 12, "feet"),
  14599. weight: math.unit(450, "lb"),
  14600. name: "Back",
  14601. image: {
  14602. source: "./media/characters/mocha-aura/back.svg",
  14603. extra: 1900 / 1825,
  14604. bottom: 0.045
  14605. }
  14606. },
  14607. },
  14608. [
  14609. {
  14610. name: "Nano",
  14611. height: math.unit(1, "nm")
  14612. },
  14613. {
  14614. name: "Megamicro",
  14615. height: math.unit(1, "mm")
  14616. },
  14617. {
  14618. name: "Micro",
  14619. height: math.unit(3, "inches")
  14620. },
  14621. {
  14622. name: "Normal",
  14623. height: math.unit(7 + 5 / 12, "feet"),
  14624. default: true
  14625. },
  14626. {
  14627. name: "Macro",
  14628. height: math.unit(30, "feet")
  14629. },
  14630. {
  14631. name: "Megamacro",
  14632. height: math.unit(3500, "feet")
  14633. },
  14634. {
  14635. name: "Teramacro",
  14636. height: math.unit(500000, "miles")
  14637. },
  14638. {
  14639. name: "Petamacro",
  14640. height: math.unit(50000000000000000, "parsecs")
  14641. },
  14642. ]
  14643. ))
  14644. characterMakers.push(() => makeCharacter(
  14645. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14646. {
  14647. front: {
  14648. height: math.unit(6, "feet"),
  14649. weight: math.unit(150, "lb"),
  14650. name: "Front",
  14651. image: {
  14652. source: "./media/characters/ilisha-devya/front.svg",
  14653. extra: 1053/1049,
  14654. bottom: 270/1323
  14655. }
  14656. },
  14657. back: {
  14658. height: math.unit(6, "feet"),
  14659. weight: math.unit(150, "lb"),
  14660. name: "Back",
  14661. image: {
  14662. source: "./media/characters/ilisha-devya/back.svg",
  14663. extra: 1131/1128,
  14664. bottom: 39/1170
  14665. }
  14666. },
  14667. },
  14668. [
  14669. {
  14670. name: "Macro",
  14671. height: math.unit(500, "feet"),
  14672. default: true
  14673. },
  14674. {
  14675. name: "Megamacro",
  14676. height: math.unit(10, "miles")
  14677. },
  14678. {
  14679. name: "Gigamacro",
  14680. height: math.unit(100000, "miles")
  14681. },
  14682. {
  14683. name: "Examacro",
  14684. height: math.unit(1e9, "lightyears")
  14685. },
  14686. {
  14687. name: "Omniversal",
  14688. height: math.unit(1e33, "lightyears")
  14689. },
  14690. {
  14691. name: "Beyond Infinite",
  14692. height: math.unit(1e100, "lightyears")
  14693. },
  14694. ]
  14695. ))
  14696. characterMakers.push(() => makeCharacter(
  14697. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14698. {
  14699. Side: {
  14700. height: math.unit(6, "feet"),
  14701. weight: math.unit(150, "lb"),
  14702. name: "Side",
  14703. image: {
  14704. source: "./media/characters/mira/side.svg",
  14705. extra: 900 / 799,
  14706. bottom: 0.02
  14707. }
  14708. },
  14709. },
  14710. [
  14711. {
  14712. name: "Human Size",
  14713. height: math.unit(6, "feet")
  14714. },
  14715. {
  14716. name: "Macro",
  14717. height: math.unit(100, "feet"),
  14718. default: true
  14719. },
  14720. {
  14721. name: "Megamacro",
  14722. height: math.unit(10, "miles")
  14723. },
  14724. {
  14725. name: "Gigamacro",
  14726. height: math.unit(25000, "miles")
  14727. },
  14728. {
  14729. name: "Teramacro",
  14730. height: math.unit(300, "AU")
  14731. },
  14732. {
  14733. name: "Full Size",
  14734. height: math.unit(4.5e10, "lightyears")
  14735. },
  14736. ]
  14737. ))
  14738. characterMakers.push(() => makeCharacter(
  14739. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14740. {
  14741. front: {
  14742. height: math.unit(6, "feet"),
  14743. weight: math.unit(150, "lb"),
  14744. name: "Front",
  14745. image: {
  14746. source: "./media/characters/holly/front.svg",
  14747. extra: 639 / 606
  14748. }
  14749. },
  14750. back: {
  14751. height: math.unit(6, "feet"),
  14752. weight: math.unit(150, "lb"),
  14753. name: "Back",
  14754. image: {
  14755. source: "./media/characters/holly/back.svg",
  14756. extra: 623 / 598
  14757. }
  14758. },
  14759. frontWorking: {
  14760. height: math.unit(6, "feet"),
  14761. weight: math.unit(150, "lb"),
  14762. name: "Front (Working)",
  14763. image: {
  14764. source: "./media/characters/holly/front-working.svg",
  14765. extra: 607 / 577,
  14766. bottom: 0.048
  14767. }
  14768. },
  14769. },
  14770. [
  14771. {
  14772. name: "Normal",
  14773. height: math.unit(12 + 3 / 12, "feet"),
  14774. default: true
  14775. },
  14776. ]
  14777. ))
  14778. characterMakers.push(() => makeCharacter(
  14779. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14780. {
  14781. front: {
  14782. height: math.unit(6, "feet"),
  14783. weight: math.unit(150, "lb"),
  14784. name: "Front",
  14785. image: {
  14786. source: "./media/characters/porter/front.svg",
  14787. extra: 1,
  14788. bottom: 0.01
  14789. }
  14790. },
  14791. frontRobes: {
  14792. height: math.unit(6, "feet"),
  14793. weight: math.unit(150, "lb"),
  14794. name: "Front (Robes)",
  14795. image: {
  14796. source: "./media/characters/porter/front-robes.svg",
  14797. extra: 1.01,
  14798. bottom: 0.01
  14799. }
  14800. },
  14801. },
  14802. [
  14803. {
  14804. name: "Normal",
  14805. height: math.unit(11 + 9 / 12, "feet"),
  14806. default: true
  14807. },
  14808. ]
  14809. ))
  14810. characterMakers.push(() => makeCharacter(
  14811. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14812. {
  14813. legendary: {
  14814. height: math.unit(6, "feet"),
  14815. weight: math.unit(150, "lb"),
  14816. name: "Legendary",
  14817. image: {
  14818. source: "./media/characters/lucy/legendary.svg",
  14819. extra: 1355 / 1100,
  14820. bottom: 0.045
  14821. }
  14822. },
  14823. },
  14824. [
  14825. {
  14826. name: "Legendary",
  14827. height: math.unit(86882 * 2, "miles"),
  14828. default: true
  14829. },
  14830. ]
  14831. ))
  14832. characterMakers.push(() => makeCharacter(
  14833. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14834. {
  14835. front: {
  14836. height: math.unit(6, "feet"),
  14837. weight: math.unit(150, "lb"),
  14838. name: "Front",
  14839. image: {
  14840. source: "./media/characters/drusilla/front.svg",
  14841. extra: 678 / 635,
  14842. bottom: 0.03
  14843. }
  14844. },
  14845. back: {
  14846. height: math.unit(6, "feet"),
  14847. weight: math.unit(150, "lb"),
  14848. name: "Back",
  14849. image: {
  14850. source: "./media/characters/drusilla/back.svg",
  14851. extra: 678 / 635,
  14852. bottom: 0.005
  14853. }
  14854. },
  14855. },
  14856. [
  14857. {
  14858. name: "Macro",
  14859. height: math.unit(100, "feet")
  14860. },
  14861. {
  14862. name: "Canon Height",
  14863. height: math.unit(2000, "feet"),
  14864. default: true
  14865. },
  14866. ]
  14867. ))
  14868. characterMakers.push(() => makeCharacter(
  14869. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14870. {
  14871. front: {
  14872. height: math.unit(6, "feet"),
  14873. weight: math.unit(180, "lb"),
  14874. name: "Front",
  14875. image: {
  14876. source: "./media/characters/renard-thatch/front.svg",
  14877. extra: 2411 / 2275,
  14878. bottom: 0.01
  14879. }
  14880. },
  14881. frontPosing: {
  14882. height: math.unit(6, "feet"),
  14883. weight: math.unit(180, "lb"),
  14884. name: "Front (Posing)",
  14885. image: {
  14886. source: "./media/characters/renard-thatch/front-posing.svg",
  14887. extra: 2381 / 2261,
  14888. bottom: 0.01
  14889. }
  14890. },
  14891. back: {
  14892. height: math.unit(6, "feet"),
  14893. weight: math.unit(180, "lb"),
  14894. name: "Back",
  14895. image: {
  14896. source: "./media/characters/renard-thatch/back.svg",
  14897. extra: 2428 / 2288
  14898. }
  14899. },
  14900. },
  14901. [
  14902. {
  14903. name: "Micro",
  14904. height: math.unit(3, "inches")
  14905. },
  14906. {
  14907. name: "Default",
  14908. height: math.unit(6, "feet"),
  14909. default: true
  14910. },
  14911. {
  14912. name: "Macro",
  14913. height: math.unit(75, "feet")
  14914. },
  14915. ]
  14916. ))
  14917. characterMakers.push(() => makeCharacter(
  14918. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14919. {
  14920. front: {
  14921. height: math.unit(1450, "feet"),
  14922. weight: math.unit(1.21e6, "tons"),
  14923. name: "Front",
  14924. image: {
  14925. source: "./media/characters/sekvra/front.svg",
  14926. extra: 1193/1190,
  14927. bottom: 78/1271
  14928. }
  14929. },
  14930. side: {
  14931. height: math.unit(1450, "feet"),
  14932. weight: math.unit(1.21e6, "tons"),
  14933. name: "Side",
  14934. image: {
  14935. source: "./media/characters/sekvra/side.svg",
  14936. extra: 1193/1190,
  14937. bottom: 52/1245
  14938. }
  14939. },
  14940. back: {
  14941. height: math.unit(1450, "feet"),
  14942. weight: math.unit(1.21e6, "tons"),
  14943. name: "Back",
  14944. image: {
  14945. source: "./media/characters/sekvra/back.svg",
  14946. extra: 1219/1216,
  14947. bottom: 21/1240
  14948. }
  14949. },
  14950. frontClothed: {
  14951. height: math.unit(1450, "feet"),
  14952. weight: math.unit(1.21e6, "tons"),
  14953. name: "Front (Clothed)",
  14954. image: {
  14955. source: "./media/characters/sekvra/front-clothed.svg",
  14956. extra: 1192/1189,
  14957. bottom: 79/1271
  14958. }
  14959. },
  14960. },
  14961. [
  14962. {
  14963. name: "Macro",
  14964. height: math.unit(1450, "feet"),
  14965. default: true
  14966. },
  14967. {
  14968. name: "Megamacro",
  14969. height: math.unit(15000, "feet")
  14970. },
  14971. ]
  14972. ))
  14973. characterMakers.push(() => makeCharacter(
  14974. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14975. {
  14976. front: {
  14977. height: math.unit(6, "feet"),
  14978. weight: math.unit(150, "lb"),
  14979. name: "Front",
  14980. image: {
  14981. source: "./media/characters/carmine/front.svg",
  14982. extra: 1557/1538,
  14983. bottom: 68/1625
  14984. }
  14985. },
  14986. frontArmor: {
  14987. height: math.unit(6, "feet"),
  14988. weight: math.unit(150, "lb"),
  14989. name: "Front (Armor)",
  14990. image: {
  14991. source: "./media/characters/carmine/front-armor.svg",
  14992. extra: 1549/1530,
  14993. bottom: 82/1631
  14994. }
  14995. },
  14996. mouth: {
  14997. height: math.unit(0.55, "feet"),
  14998. name: "Mouth",
  14999. image: {
  15000. source: "./media/characters/carmine/mouth.svg"
  15001. }
  15002. },
  15003. hand: {
  15004. height: math.unit(1.05, "feet"),
  15005. name: "Hand",
  15006. image: {
  15007. source: "./media/characters/carmine/hand.svg"
  15008. }
  15009. },
  15010. foot: {
  15011. height: math.unit(0.6, "feet"),
  15012. name: "Foot",
  15013. image: {
  15014. source: "./media/characters/carmine/foot.svg"
  15015. }
  15016. },
  15017. },
  15018. [
  15019. {
  15020. name: "Large",
  15021. height: math.unit(1, "mile")
  15022. },
  15023. {
  15024. name: "Huge",
  15025. height: math.unit(40, "miles"),
  15026. default: true
  15027. },
  15028. {
  15029. name: "Colossal",
  15030. height: math.unit(2500, "miles")
  15031. },
  15032. ]
  15033. ))
  15034. characterMakers.push(() => makeCharacter(
  15035. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15036. {
  15037. front: {
  15038. height: math.unit(6, "feet"),
  15039. weight: math.unit(150, "lb"),
  15040. name: "Front",
  15041. image: {
  15042. source: "./media/characters/elyssia/front.svg",
  15043. extra: 2201 / 2035,
  15044. bottom: 0.05
  15045. }
  15046. },
  15047. frontClothed: {
  15048. height: math.unit(6, "feet"),
  15049. weight: math.unit(150, "lb"),
  15050. name: "Front (Clothed)",
  15051. image: {
  15052. source: "./media/characters/elyssia/front-clothed.svg",
  15053. extra: 2201 / 2035,
  15054. bottom: 0.05
  15055. }
  15056. },
  15057. back: {
  15058. height: math.unit(6, "feet"),
  15059. weight: math.unit(150, "lb"),
  15060. name: "Back",
  15061. image: {
  15062. source: "./media/characters/elyssia/back.svg",
  15063. extra: 2201 / 2035,
  15064. bottom: 0.013
  15065. }
  15066. },
  15067. },
  15068. [
  15069. {
  15070. name: "Smaller",
  15071. height: math.unit(150, "feet")
  15072. },
  15073. {
  15074. name: "Standard",
  15075. height: math.unit(1400, "feet"),
  15076. default: true
  15077. },
  15078. {
  15079. name: "Distracted",
  15080. height: math.unit(15000, "feet")
  15081. },
  15082. ]
  15083. ))
  15084. characterMakers.push(() => makeCharacter(
  15085. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15086. {
  15087. front: {
  15088. height: math.unit(7 + 4/12, "feet"),
  15089. weight: math.unit(690, "lb"),
  15090. name: "Front",
  15091. image: {
  15092. source: "./media/characters/geno-maxwell/front.svg",
  15093. extra: 984/856,
  15094. bottom: 87/1071
  15095. }
  15096. },
  15097. back: {
  15098. height: math.unit(7 + 4/12, "feet"),
  15099. weight: math.unit(690, "lb"),
  15100. name: "Back",
  15101. image: {
  15102. source: "./media/characters/geno-maxwell/back.svg",
  15103. extra: 981/854,
  15104. bottom: 57/1038
  15105. }
  15106. },
  15107. frontCostume: {
  15108. height: math.unit(7 + 4/12, "feet"),
  15109. weight: math.unit(690, "lb"),
  15110. name: "Front (Costume)",
  15111. image: {
  15112. source: "./media/characters/geno-maxwell/front-costume.svg",
  15113. extra: 984/856,
  15114. bottom: 87/1071
  15115. }
  15116. },
  15117. backcostume: {
  15118. height: math.unit(7 + 4/12, "feet"),
  15119. weight: math.unit(690, "lb"),
  15120. name: "Back (Costume)",
  15121. image: {
  15122. source: "./media/characters/geno-maxwell/back-costume.svg",
  15123. extra: 981/854,
  15124. bottom: 57/1038
  15125. }
  15126. },
  15127. },
  15128. [
  15129. {
  15130. name: "Micro",
  15131. height: math.unit(3, "inches")
  15132. },
  15133. {
  15134. name: "Normal",
  15135. height: math.unit(7 + 4 / 12, "feet"),
  15136. default: true
  15137. },
  15138. {
  15139. name: "Macro",
  15140. height: math.unit(220, "feet")
  15141. },
  15142. {
  15143. name: "Megamacro",
  15144. height: math.unit(11, "miles")
  15145. },
  15146. ]
  15147. ))
  15148. characterMakers.push(() => makeCharacter(
  15149. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15150. {
  15151. front: {
  15152. height: math.unit(7 + 4/12, "feet"),
  15153. weight: math.unit(750, "lb"),
  15154. name: "Front",
  15155. image: {
  15156. source: "./media/characters/regena-maxwell/front.svg",
  15157. extra: 984/856,
  15158. bottom: 87/1071
  15159. }
  15160. },
  15161. back: {
  15162. height: math.unit(7 + 4/12, "feet"),
  15163. weight: math.unit(750, "lb"),
  15164. name: "Back",
  15165. image: {
  15166. source: "./media/characters/regena-maxwell/back.svg",
  15167. extra: 981/854,
  15168. bottom: 57/1038
  15169. }
  15170. },
  15171. frontCostume: {
  15172. height: math.unit(7 + 4/12, "feet"),
  15173. weight: math.unit(750, "lb"),
  15174. name: "Front (Costume)",
  15175. image: {
  15176. source: "./media/characters/regena-maxwell/front-costume.svg",
  15177. extra: 984/856,
  15178. bottom: 87/1071
  15179. }
  15180. },
  15181. backcostume: {
  15182. height: math.unit(7 + 4/12, "feet"),
  15183. weight: math.unit(750, "lb"),
  15184. name: "Back (Costume)",
  15185. image: {
  15186. source: "./media/characters/regena-maxwell/back-costume.svg",
  15187. extra: 981/854,
  15188. bottom: 57/1038
  15189. }
  15190. },
  15191. },
  15192. [
  15193. {
  15194. name: "Normal",
  15195. height: math.unit(7 + 4 / 12, "feet"),
  15196. default: true
  15197. },
  15198. {
  15199. name: "Macro",
  15200. height: math.unit(220, "feet")
  15201. },
  15202. {
  15203. name: "Megamacro",
  15204. height: math.unit(11, "miles")
  15205. },
  15206. ]
  15207. ))
  15208. characterMakers.push(() => makeCharacter(
  15209. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15210. {
  15211. front: {
  15212. height: math.unit(6, "feet"),
  15213. weight: math.unit(150, "lb"),
  15214. name: "Front",
  15215. image: {
  15216. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15217. extra: 860 / 690,
  15218. bottom: 0.03
  15219. }
  15220. },
  15221. },
  15222. [
  15223. {
  15224. name: "Normal",
  15225. height: math.unit(1.7, "meters"),
  15226. default: true
  15227. },
  15228. ]
  15229. ))
  15230. characterMakers.push(() => makeCharacter(
  15231. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15232. {
  15233. front: {
  15234. height: math.unit(6, "feet"),
  15235. weight: math.unit(150, "lb"),
  15236. name: "Front",
  15237. image: {
  15238. source: "./media/characters/quilly/front.svg",
  15239. extra: 890 / 776
  15240. }
  15241. },
  15242. },
  15243. [
  15244. {
  15245. name: "Gigamacro",
  15246. height: math.unit(404090, "miles"),
  15247. default: true
  15248. },
  15249. ]
  15250. ))
  15251. characterMakers.push(() => makeCharacter(
  15252. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15253. {
  15254. front: {
  15255. height: math.unit(7 + 8 / 12, "feet"),
  15256. weight: math.unit(350, "lb"),
  15257. name: "Front",
  15258. image: {
  15259. source: "./media/characters/tempest/front.svg",
  15260. extra: 1175 / 1086,
  15261. bottom: 0.02
  15262. }
  15263. },
  15264. },
  15265. [
  15266. {
  15267. name: "Normal",
  15268. height: math.unit(7 + 8 / 12, "feet"),
  15269. default: true
  15270. },
  15271. ]
  15272. ))
  15273. characterMakers.push(() => makeCharacter(
  15274. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15275. {
  15276. side: {
  15277. height: math.unit(4 + 5 / 12, "feet"),
  15278. weight: math.unit(80, "lb"),
  15279. name: "Side",
  15280. image: {
  15281. source: "./media/characters/rodger/side.svg",
  15282. extra: 1235 / 1118
  15283. }
  15284. },
  15285. },
  15286. [
  15287. {
  15288. name: "Micro",
  15289. height: math.unit(1, "inch")
  15290. },
  15291. {
  15292. name: "Normal",
  15293. height: math.unit(4 + 5 / 12, "feet"),
  15294. default: true
  15295. },
  15296. {
  15297. name: "Macro",
  15298. height: math.unit(120, "feet")
  15299. },
  15300. ]
  15301. ))
  15302. characterMakers.push(() => makeCharacter(
  15303. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15304. {
  15305. front: {
  15306. height: math.unit(6, "feet"),
  15307. weight: math.unit(150, "lb"),
  15308. name: "Front",
  15309. image: {
  15310. source: "./media/characters/danyel/front.svg",
  15311. extra: 1185 / 1123,
  15312. bottom: 0.05
  15313. }
  15314. },
  15315. },
  15316. [
  15317. {
  15318. name: "Shrunken",
  15319. height: math.unit(0.5, "mm")
  15320. },
  15321. {
  15322. name: "Micro",
  15323. height: math.unit(1, "mm"),
  15324. default: true
  15325. },
  15326. {
  15327. name: "Upsized",
  15328. height: math.unit(5 + 5 / 12, "feet")
  15329. },
  15330. ]
  15331. ))
  15332. characterMakers.push(() => makeCharacter(
  15333. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15334. {
  15335. front: {
  15336. height: math.unit(5 + 6 / 12, "feet"),
  15337. weight: math.unit(200, "lb"),
  15338. name: "Front",
  15339. image: {
  15340. source: "./media/characters/vivian-bijoux/front.svg",
  15341. extra: 1217/1209,
  15342. bottom: 76/1293
  15343. }
  15344. },
  15345. back: {
  15346. height: math.unit(5 + 6 / 12, "feet"),
  15347. weight: math.unit(200, "lb"),
  15348. name: "Back",
  15349. image: {
  15350. source: "./media/characters/vivian-bijoux/back.svg",
  15351. extra: 1214/1208,
  15352. bottom: 51/1265
  15353. }
  15354. },
  15355. dressed: {
  15356. height: math.unit(5 + 6 / 12, "feet"),
  15357. weight: math.unit(200, "lb"),
  15358. name: "Dressed",
  15359. image: {
  15360. source: "./media/characters/vivian-bijoux/dressed.svg",
  15361. extra: 1217/1209,
  15362. bottom: 76/1293
  15363. }
  15364. },
  15365. },
  15366. [
  15367. {
  15368. name: "Normal",
  15369. height: math.unit(5 + 6 / 12, "feet"),
  15370. default: true
  15371. },
  15372. {
  15373. name: "Bad Dream",
  15374. height: math.unit(500, "feet")
  15375. },
  15376. {
  15377. name: "Nightmare",
  15378. height: math.unit(500, "miles")
  15379. },
  15380. ]
  15381. ))
  15382. characterMakers.push(() => makeCharacter(
  15383. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15384. {
  15385. front: {
  15386. height: math.unit(6 + 1 / 12, "feet"),
  15387. weight: math.unit(260, "lb"),
  15388. name: "Front",
  15389. image: {
  15390. source: "./media/characters/zeta/front.svg",
  15391. extra: 1968 / 1889,
  15392. bottom: 0.06
  15393. }
  15394. },
  15395. back: {
  15396. height: math.unit(6 + 1 / 12, "feet"),
  15397. weight: math.unit(260, "lb"),
  15398. name: "Back",
  15399. image: {
  15400. source: "./media/characters/zeta/back.svg",
  15401. extra: 1944 / 1858,
  15402. bottom: 0.03
  15403. }
  15404. },
  15405. hand: {
  15406. height: math.unit(1.112, "feet"),
  15407. name: "Hand",
  15408. image: {
  15409. source: "./media/characters/zeta/hand.svg"
  15410. }
  15411. },
  15412. foot: {
  15413. height: math.unit(1.48, "feet"),
  15414. name: "Foot",
  15415. image: {
  15416. source: "./media/characters/zeta/foot.svg"
  15417. }
  15418. },
  15419. },
  15420. [
  15421. {
  15422. name: "Micro",
  15423. height: math.unit(6, "inches")
  15424. },
  15425. {
  15426. name: "Normal",
  15427. height: math.unit(6 + 1 / 12, "feet"),
  15428. default: true
  15429. },
  15430. {
  15431. name: "Macro",
  15432. height: math.unit(20, "feet")
  15433. },
  15434. ]
  15435. ))
  15436. characterMakers.push(() => makeCharacter(
  15437. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15438. {
  15439. front: {
  15440. height: math.unit(6, "feet"),
  15441. weight: math.unit(150, "lb"),
  15442. name: "Front",
  15443. image: {
  15444. source: "./media/characters/jamie-larsen/front.svg",
  15445. extra: 962 / 933,
  15446. bottom: 0.02
  15447. }
  15448. },
  15449. back: {
  15450. height: math.unit(6, "feet"),
  15451. weight: math.unit(150, "lb"),
  15452. name: "Back",
  15453. image: {
  15454. source: "./media/characters/jamie-larsen/back.svg",
  15455. extra: 997 / 946
  15456. }
  15457. },
  15458. },
  15459. [
  15460. {
  15461. name: "Macro",
  15462. height: math.unit(28 + 7 / 12, "feet"),
  15463. default: true
  15464. },
  15465. {
  15466. name: "Macro+",
  15467. height: math.unit(180, "feet")
  15468. },
  15469. {
  15470. name: "Megamacro",
  15471. height: math.unit(10, "miles")
  15472. },
  15473. {
  15474. name: "Gigamacro",
  15475. height: math.unit(200000, "miles")
  15476. },
  15477. ]
  15478. ))
  15479. characterMakers.push(() => makeCharacter(
  15480. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15481. {
  15482. front: {
  15483. height: math.unit(6, "feet"),
  15484. weight: math.unit(120, "lb"),
  15485. name: "Front",
  15486. image: {
  15487. source: "./media/characters/vance/front.svg",
  15488. extra: 1980 / 1890,
  15489. bottom: 0.09
  15490. }
  15491. },
  15492. back: {
  15493. height: math.unit(6, "feet"),
  15494. weight: math.unit(120, "lb"),
  15495. name: "Back",
  15496. image: {
  15497. source: "./media/characters/vance/back.svg",
  15498. extra: 2081 / 1994,
  15499. bottom: 0.014
  15500. }
  15501. },
  15502. hand: {
  15503. height: math.unit(0.88, "feet"),
  15504. name: "Hand",
  15505. image: {
  15506. source: "./media/characters/vance/hand.svg"
  15507. }
  15508. },
  15509. foot: {
  15510. height: math.unit(0.64, "feet"),
  15511. name: "Foot",
  15512. image: {
  15513. source: "./media/characters/vance/foot.svg"
  15514. }
  15515. },
  15516. },
  15517. [
  15518. {
  15519. name: "Small",
  15520. height: math.unit(90, "feet"),
  15521. default: true
  15522. },
  15523. {
  15524. name: "Macro",
  15525. height: math.unit(100, "meters")
  15526. },
  15527. {
  15528. name: "Megamacro",
  15529. height: math.unit(15, "miles")
  15530. },
  15531. ]
  15532. ))
  15533. characterMakers.push(() => makeCharacter(
  15534. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15535. {
  15536. front: {
  15537. height: math.unit(6, "feet"),
  15538. weight: math.unit(180, "lb"),
  15539. name: "Front",
  15540. image: {
  15541. source: "./media/characters/xochitl/front.svg",
  15542. extra: 2297 / 2261,
  15543. bottom: 0.065
  15544. }
  15545. },
  15546. back: {
  15547. height: math.unit(6, "feet"),
  15548. weight: math.unit(180, "lb"),
  15549. name: "Back",
  15550. image: {
  15551. source: "./media/characters/xochitl/back.svg",
  15552. extra: 2386 / 2354,
  15553. bottom: 0.01
  15554. }
  15555. },
  15556. foot: {
  15557. height: math.unit(6 / 5 * 1.15, "feet"),
  15558. weight: math.unit(150, "lb"),
  15559. name: "Foot",
  15560. image: {
  15561. source: "./media/characters/xochitl/foot.svg"
  15562. }
  15563. },
  15564. },
  15565. [
  15566. {
  15567. name: "Macro",
  15568. height: math.unit(80, "feet")
  15569. },
  15570. {
  15571. name: "Macro+",
  15572. height: math.unit(400, "feet"),
  15573. default: true
  15574. },
  15575. {
  15576. name: "Gigamacro",
  15577. height: math.unit(80000, "miles")
  15578. },
  15579. {
  15580. name: "Gigamacro+",
  15581. height: math.unit(400000, "miles")
  15582. },
  15583. {
  15584. name: "Teramacro",
  15585. height: math.unit(300, "AU")
  15586. },
  15587. ]
  15588. ))
  15589. characterMakers.push(() => makeCharacter(
  15590. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15591. {
  15592. front: {
  15593. height: math.unit(6, "feet"),
  15594. weight: math.unit(150, "lb"),
  15595. name: "Front",
  15596. image: {
  15597. source: "./media/characters/vincent/front.svg",
  15598. extra: 1130 / 1080,
  15599. bottom: 0.055
  15600. }
  15601. },
  15602. beak: {
  15603. height: math.unit(6 * 0.1, "feet"),
  15604. name: "Beak",
  15605. image: {
  15606. source: "./media/characters/vincent/beak.svg"
  15607. }
  15608. },
  15609. hand: {
  15610. height: math.unit(6 * 0.85, "feet"),
  15611. weight: math.unit(150, "lb"),
  15612. name: "Hand",
  15613. image: {
  15614. source: "./media/characters/vincent/hand.svg"
  15615. }
  15616. },
  15617. foot: {
  15618. height: math.unit(6 * 0.19, "feet"),
  15619. weight: math.unit(150, "lb"),
  15620. name: "Foot",
  15621. image: {
  15622. source: "./media/characters/vincent/foot.svg"
  15623. }
  15624. },
  15625. },
  15626. [
  15627. {
  15628. name: "Base",
  15629. height: math.unit(6 + 5 / 12, "feet"),
  15630. default: true
  15631. },
  15632. {
  15633. name: "Macro",
  15634. height: math.unit(300, "feet")
  15635. },
  15636. {
  15637. name: "Megamacro",
  15638. height: math.unit(2, "miles")
  15639. },
  15640. {
  15641. name: "Gigamacro",
  15642. height: math.unit(1000, "miles")
  15643. },
  15644. ]
  15645. ))
  15646. characterMakers.push(() => makeCharacter(
  15647. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15648. {
  15649. front: {
  15650. height: math.unit(2, "meters"),
  15651. weight: math.unit(500, "kg"),
  15652. name: "Front",
  15653. image: {
  15654. source: "./media/characters/coatl/front.svg",
  15655. extra: 3948 / 3500,
  15656. bottom: 0.082
  15657. }
  15658. },
  15659. },
  15660. [
  15661. {
  15662. name: "Normal",
  15663. height: math.unit(4, "meters")
  15664. },
  15665. {
  15666. name: "Macro",
  15667. height: math.unit(100, "meters"),
  15668. default: true
  15669. },
  15670. {
  15671. name: "Macro+",
  15672. height: math.unit(300, "meters")
  15673. },
  15674. {
  15675. name: "Megamacro",
  15676. height: math.unit(3, "gigameters")
  15677. },
  15678. {
  15679. name: "Megamacro+",
  15680. height: math.unit(300, "terameters")
  15681. },
  15682. {
  15683. name: "Megamacro++",
  15684. height: math.unit(3, "lightyears")
  15685. },
  15686. ]
  15687. ))
  15688. characterMakers.push(() => makeCharacter(
  15689. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15690. {
  15691. front: {
  15692. height: math.unit(6, "feet"),
  15693. weight: math.unit(50, "kg"),
  15694. name: "front",
  15695. image: {
  15696. source: "./media/characters/shiroryu/front.svg",
  15697. extra: 1990 / 1935
  15698. }
  15699. },
  15700. },
  15701. [
  15702. {
  15703. name: "Mortal Mingling",
  15704. height: math.unit(3, "meters")
  15705. },
  15706. {
  15707. name: "Kaiju-ish",
  15708. height: math.unit(250, "meters")
  15709. },
  15710. {
  15711. name: "Somewhat Godly",
  15712. height: math.unit(400, "km"),
  15713. default: true
  15714. },
  15715. {
  15716. name: "Planetary",
  15717. height: math.unit(300, "megameters")
  15718. },
  15719. {
  15720. name: "Galaxy-dwarfing",
  15721. height: math.unit(450, "kiloparsecs")
  15722. },
  15723. {
  15724. name: "Universe Eater",
  15725. height: math.unit(150, "gigaparsecs")
  15726. },
  15727. {
  15728. name: "Almost Immeasurable",
  15729. height: math.unit(1.3e266, "yottaparsecs")
  15730. },
  15731. ]
  15732. ))
  15733. characterMakers.push(() => makeCharacter(
  15734. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15735. {
  15736. front: {
  15737. height: math.unit(6, "feet"),
  15738. weight: math.unit(150, "lb"),
  15739. name: "Front",
  15740. image: {
  15741. source: "./media/characters/umeko/front.svg",
  15742. extra: 1,
  15743. bottom: 0.019
  15744. }
  15745. },
  15746. frontArmored: {
  15747. height: math.unit(6, "feet"),
  15748. weight: math.unit(150, "lb"),
  15749. name: "Front (Armored)",
  15750. image: {
  15751. source: "./media/characters/umeko/front-armored.svg",
  15752. extra: 1,
  15753. bottom: 0.021
  15754. }
  15755. },
  15756. },
  15757. [
  15758. {
  15759. name: "Macro",
  15760. height: math.unit(220, "feet"),
  15761. default: true
  15762. },
  15763. {
  15764. name: "Guardian Dragon",
  15765. height: math.unit(50, "miles")
  15766. },
  15767. {
  15768. name: "Cosmic",
  15769. height: math.unit(800000, "miles")
  15770. },
  15771. ]
  15772. ))
  15773. characterMakers.push(() => makeCharacter(
  15774. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15775. {
  15776. front: {
  15777. height: math.unit(6, "feet"),
  15778. weight: math.unit(150, "lb"),
  15779. name: "Front",
  15780. image: {
  15781. source: "./media/characters/cassidy/front.svg",
  15782. extra: 810/808,
  15783. bottom: 41/851
  15784. }
  15785. },
  15786. },
  15787. [
  15788. {
  15789. name: "Canon Height",
  15790. height: math.unit(120, "feet"),
  15791. default: true
  15792. },
  15793. {
  15794. name: "Macro+",
  15795. height: math.unit(400, "feet")
  15796. },
  15797. {
  15798. name: "Macro++",
  15799. height: math.unit(4000, "feet")
  15800. },
  15801. {
  15802. name: "Megamacro",
  15803. height: math.unit(3, "miles")
  15804. },
  15805. ]
  15806. ))
  15807. characterMakers.push(() => makeCharacter(
  15808. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15809. {
  15810. front: {
  15811. height: math.unit(6, "feet"),
  15812. weight: math.unit(150, "lb"),
  15813. name: "Front",
  15814. image: {
  15815. source: "./media/characters/isaac/front.svg",
  15816. extra: 896 / 815,
  15817. bottom: 0.11
  15818. }
  15819. },
  15820. },
  15821. [
  15822. {
  15823. name: "Human Size",
  15824. height: math.unit(8, "feet"),
  15825. default: true
  15826. },
  15827. {
  15828. name: "Macro",
  15829. height: math.unit(400, "feet")
  15830. },
  15831. {
  15832. name: "Megamacro",
  15833. height: math.unit(50, "miles")
  15834. },
  15835. {
  15836. name: "Canon Height",
  15837. height: math.unit(200, "AU")
  15838. },
  15839. ]
  15840. ))
  15841. characterMakers.push(() => makeCharacter(
  15842. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15843. {
  15844. front: {
  15845. height: math.unit(6, "feet"),
  15846. weight: math.unit(72, "kg"),
  15847. name: "Front",
  15848. image: {
  15849. source: "./media/characters/sleekit/front.svg",
  15850. extra: 4693 / 4487,
  15851. bottom: 0.012
  15852. }
  15853. },
  15854. },
  15855. [
  15856. {
  15857. name: "Minimum Height",
  15858. height: math.unit(10, "meters")
  15859. },
  15860. {
  15861. name: "Smaller",
  15862. height: math.unit(25, "meters")
  15863. },
  15864. {
  15865. name: "Larger",
  15866. height: math.unit(38, "meters"),
  15867. default: true
  15868. },
  15869. {
  15870. name: "Maximum height",
  15871. height: math.unit(100, "meters")
  15872. },
  15873. ]
  15874. ))
  15875. characterMakers.push(() => makeCharacter(
  15876. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15877. {
  15878. front: {
  15879. height: math.unit(6, "feet"),
  15880. weight: math.unit(150, "lb"),
  15881. name: "Front",
  15882. image: {
  15883. source: "./media/characters/nillia/front.svg",
  15884. extra: 719/665,
  15885. bottom: 6/725
  15886. }
  15887. },
  15888. back: {
  15889. height: math.unit(6, "feet"),
  15890. weight: math.unit(150, "lb"),
  15891. name: "Back",
  15892. image: {
  15893. source: "./media/characters/nillia/back.svg",
  15894. extra: 705/651,
  15895. bottom: 5/710
  15896. }
  15897. },
  15898. },
  15899. [
  15900. {
  15901. name: "Canon Height",
  15902. height: math.unit(489, "feet"),
  15903. default: true
  15904. }
  15905. ]
  15906. ))
  15907. characterMakers.push(() => makeCharacter(
  15908. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  15909. {
  15910. front: {
  15911. height: math.unit(6, "feet"),
  15912. weight: math.unit(150, "lb"),
  15913. name: "Front",
  15914. image: {
  15915. source: "./media/characters/mesmyriza/front.svg",
  15916. extra: 1541/1291,
  15917. bottom: 87/1628
  15918. }
  15919. },
  15920. foot: {
  15921. height: math.unit(6 / (250 / 35), "feet"),
  15922. name: "Foot",
  15923. image: {
  15924. source: "./media/characters/mesmyriza/foot.svg"
  15925. }
  15926. },
  15927. },
  15928. [
  15929. {
  15930. name: "Macro",
  15931. height: math.unit(457, "meters"),
  15932. default: true
  15933. },
  15934. {
  15935. name: "Megamacro",
  15936. height: math.unit(8, "megameters")
  15937. },
  15938. ]
  15939. ))
  15940. characterMakers.push(() => makeCharacter(
  15941. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15942. {
  15943. front: {
  15944. height: math.unit(6, "feet"),
  15945. weight: math.unit(250, "lb"),
  15946. name: "Front",
  15947. image: {
  15948. source: "./media/characters/saudade/front.svg",
  15949. extra: 1172 / 1139,
  15950. bottom: 0.035
  15951. }
  15952. },
  15953. },
  15954. [
  15955. {
  15956. name: "Micro",
  15957. height: math.unit(3, "inches")
  15958. },
  15959. {
  15960. name: "Normal",
  15961. height: math.unit(6, "feet"),
  15962. default: true
  15963. },
  15964. {
  15965. name: "Macro",
  15966. height: math.unit(50, "feet")
  15967. },
  15968. {
  15969. name: "Megamacro",
  15970. height: math.unit(2800, "feet")
  15971. },
  15972. ]
  15973. ))
  15974. characterMakers.push(() => makeCharacter(
  15975. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15976. {
  15977. front: {
  15978. height: math.unit(5 + 4 / 12, "feet"),
  15979. weight: math.unit(100, "lb"),
  15980. name: "Front",
  15981. image: {
  15982. source: "./media/characters/keireer/front.svg",
  15983. extra: 716 / 666,
  15984. bottom: 0.05
  15985. }
  15986. },
  15987. },
  15988. [
  15989. {
  15990. name: "Normal",
  15991. height: math.unit(5 + 4 / 12, "feet"),
  15992. default: true
  15993. },
  15994. ]
  15995. ))
  15996. characterMakers.push(() => makeCharacter(
  15997. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15998. {
  15999. front: {
  16000. height: math.unit(5.5, "feet"),
  16001. weight: math.unit(90, "kg"),
  16002. name: "Front",
  16003. image: {
  16004. source: "./media/characters/mirja/front.svg",
  16005. extra: 1452/1262,
  16006. bottom: 67/1519
  16007. }
  16008. },
  16009. frontDressed: {
  16010. height: math.unit(5.5, "feet"),
  16011. weight: math.unit(90, "lb"),
  16012. name: "Front (Dressed)",
  16013. image: {
  16014. source: "./media/characters/mirja/dressed.svg",
  16015. extra: 1452/1262,
  16016. bottom: 67/1519
  16017. }
  16018. },
  16019. back: {
  16020. height: math.unit(6, "feet"),
  16021. weight: math.unit(90, "lb"),
  16022. name: "Back",
  16023. image: {
  16024. source: "./media/characters/mirja/back.svg",
  16025. extra: 1892/1795,
  16026. bottom: 48/1940
  16027. }
  16028. },
  16029. maw: {
  16030. height: math.unit(1.312, "feet"),
  16031. name: "Maw",
  16032. image: {
  16033. source: "./media/characters/mirja/maw.svg"
  16034. }
  16035. },
  16036. paw: {
  16037. height: math.unit(1.15, "feet"),
  16038. name: "Paw",
  16039. image: {
  16040. source: "./media/characters/mirja/paw.svg"
  16041. }
  16042. },
  16043. },
  16044. [
  16045. {
  16046. name: "\"Incognito\"",
  16047. height: math.unit(3, "meters")
  16048. },
  16049. {
  16050. name: "Strolling Size",
  16051. height: math.unit(15, "km")
  16052. },
  16053. {
  16054. name: "Larger Strolling Size",
  16055. height: math.unit(400, "km")
  16056. },
  16057. {
  16058. name: "Preferred Size",
  16059. height: math.unit(5000, "km"),
  16060. default: true
  16061. },
  16062. {
  16063. name: "True Size",
  16064. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16065. },
  16066. ]
  16067. ))
  16068. characterMakers.push(() => makeCharacter(
  16069. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16070. {
  16071. front: {
  16072. height: math.unit(15, "feet"),
  16073. weight: math.unit(880, "kg"),
  16074. name: "Front",
  16075. image: {
  16076. source: "./media/characters/nightraver/front.svg",
  16077. extra: 2444 / 2160,
  16078. bottom: 0.027
  16079. }
  16080. },
  16081. back: {
  16082. height: math.unit(15, "feet"),
  16083. weight: math.unit(880, "kg"),
  16084. name: "Back",
  16085. image: {
  16086. source: "./media/characters/nightraver/back.svg",
  16087. extra: 2309 / 2180,
  16088. bottom: 0.005
  16089. }
  16090. },
  16091. sole: {
  16092. height: math.unit(2.878, "feet"),
  16093. name: "Sole",
  16094. image: {
  16095. source: "./media/characters/nightraver/sole.svg"
  16096. }
  16097. },
  16098. foot: {
  16099. height: math.unit(2.285, "feet"),
  16100. name: "Foot",
  16101. image: {
  16102. source: "./media/characters/nightraver/foot.svg"
  16103. }
  16104. },
  16105. maw: {
  16106. height: math.unit(2.67, "feet"),
  16107. name: "Maw",
  16108. image: {
  16109. source: "./media/characters/nightraver/maw.svg"
  16110. }
  16111. },
  16112. },
  16113. [
  16114. {
  16115. name: "Micro",
  16116. height: math.unit(1, "cm")
  16117. },
  16118. {
  16119. name: "Normal",
  16120. height: math.unit(15, "feet"),
  16121. default: true
  16122. },
  16123. {
  16124. name: "Macro",
  16125. height: math.unit(300, "feet")
  16126. },
  16127. {
  16128. name: "Megamacro",
  16129. height: math.unit(300, "miles")
  16130. },
  16131. {
  16132. name: "Gigamacro",
  16133. height: math.unit(10000, "miles")
  16134. },
  16135. ]
  16136. ))
  16137. characterMakers.push(() => makeCharacter(
  16138. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16139. {
  16140. side: {
  16141. height: math.unit(2, "inches"),
  16142. weight: math.unit(5, "grams"),
  16143. name: "Side",
  16144. image: {
  16145. source: "./media/characters/arc/side.svg"
  16146. }
  16147. },
  16148. },
  16149. [
  16150. {
  16151. name: "Micro",
  16152. height: math.unit(2, "inches"),
  16153. default: true
  16154. },
  16155. ]
  16156. ))
  16157. characterMakers.push(() => makeCharacter(
  16158. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16159. {
  16160. front: {
  16161. height: math.unit(1.1938, "meters"),
  16162. weight: math.unit(54, "kg"),
  16163. name: "Front",
  16164. image: {
  16165. source: "./media/characters/nebula-shahar/front.svg",
  16166. extra: 1642 / 1436,
  16167. bottom: 0.06
  16168. }
  16169. },
  16170. },
  16171. [
  16172. {
  16173. name: "Megamicro",
  16174. height: math.unit(0.3, "mm")
  16175. },
  16176. {
  16177. name: "Micro",
  16178. height: math.unit(3, "cm")
  16179. },
  16180. {
  16181. name: "Normal",
  16182. height: math.unit(138, "cm"),
  16183. default: true
  16184. },
  16185. {
  16186. name: "Macro",
  16187. height: math.unit(30, "m")
  16188. },
  16189. ]
  16190. ))
  16191. characterMakers.push(() => makeCharacter(
  16192. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16193. {
  16194. front: {
  16195. height: math.unit(5.24, "feet"),
  16196. weight: math.unit(150, "lb"),
  16197. name: "Front",
  16198. image: {
  16199. source: "./media/characters/shayla/front.svg",
  16200. extra: 1512 / 1414,
  16201. bottom: 0.01
  16202. }
  16203. },
  16204. back: {
  16205. height: math.unit(5.24, "feet"),
  16206. weight: math.unit(150, "lb"),
  16207. name: "Back",
  16208. image: {
  16209. source: "./media/characters/shayla/back.svg",
  16210. extra: 1512 / 1414
  16211. }
  16212. },
  16213. hand: {
  16214. height: math.unit(0.7781496062992126, "feet"),
  16215. name: "Hand",
  16216. image: {
  16217. source: "./media/characters/shayla/hand.svg"
  16218. }
  16219. },
  16220. foot: {
  16221. height: math.unit(1.4206036745406823, "feet"),
  16222. name: "Foot",
  16223. image: {
  16224. source: "./media/characters/shayla/foot.svg"
  16225. }
  16226. },
  16227. },
  16228. [
  16229. {
  16230. name: "Micro",
  16231. height: math.unit(0.32, "feet")
  16232. },
  16233. {
  16234. name: "Normal",
  16235. height: math.unit(5.24, "feet"),
  16236. default: true
  16237. },
  16238. {
  16239. name: "Macro",
  16240. height: math.unit(492.12, "feet")
  16241. },
  16242. {
  16243. name: "Megamacro",
  16244. height: math.unit(186.41, "miles")
  16245. },
  16246. ]
  16247. ))
  16248. characterMakers.push(() => makeCharacter(
  16249. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16250. {
  16251. front: {
  16252. height: math.unit(2.2, "m"),
  16253. weight: math.unit(120, "kg"),
  16254. name: "Front",
  16255. image: {
  16256. source: "./media/characters/pia-jr/front.svg",
  16257. extra: 1000 / 970,
  16258. bottom: 0.035
  16259. }
  16260. },
  16261. hand: {
  16262. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16263. name: "Hand",
  16264. image: {
  16265. source: "./media/characters/pia-jr/hand.svg"
  16266. }
  16267. },
  16268. paw: {
  16269. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16270. name: "Paw",
  16271. image: {
  16272. source: "./media/characters/pia-jr/paw.svg"
  16273. }
  16274. },
  16275. },
  16276. [
  16277. {
  16278. name: "Micro",
  16279. height: math.unit(1.2, "cm")
  16280. },
  16281. {
  16282. name: "Normal",
  16283. height: math.unit(2.2, "m"),
  16284. default: true
  16285. },
  16286. {
  16287. name: "Macro",
  16288. height: math.unit(180, "m")
  16289. },
  16290. {
  16291. name: "Megamacro",
  16292. height: math.unit(420, "km")
  16293. },
  16294. ]
  16295. ))
  16296. characterMakers.push(() => makeCharacter(
  16297. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16298. {
  16299. front: {
  16300. height: math.unit(2, "m"),
  16301. weight: math.unit(115, "kg"),
  16302. name: "Front",
  16303. image: {
  16304. source: "./media/characters/pia-sr/front.svg",
  16305. extra: 760 / 730,
  16306. bottom: 0.015
  16307. }
  16308. },
  16309. back: {
  16310. height: math.unit(2, "m"),
  16311. weight: math.unit(115, "kg"),
  16312. name: "Back",
  16313. image: {
  16314. source: "./media/characters/pia-sr/back.svg",
  16315. extra: 760 / 730,
  16316. bottom: 0.01
  16317. }
  16318. },
  16319. hand: {
  16320. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16321. name: "Hand",
  16322. image: {
  16323. source: "./media/characters/pia-sr/hand.svg"
  16324. }
  16325. },
  16326. foot: {
  16327. height: math.unit(1.83, "feet"),
  16328. name: "Foot",
  16329. image: {
  16330. source: "./media/characters/pia-sr/foot.svg"
  16331. }
  16332. },
  16333. },
  16334. [
  16335. {
  16336. name: "Micro",
  16337. height: math.unit(88, "mm")
  16338. },
  16339. {
  16340. name: "Normal",
  16341. height: math.unit(2, "m"),
  16342. default: true
  16343. },
  16344. {
  16345. name: "Macro",
  16346. height: math.unit(200, "m")
  16347. },
  16348. {
  16349. name: "Megamacro",
  16350. height: math.unit(420, "km")
  16351. },
  16352. ]
  16353. ))
  16354. characterMakers.push(() => makeCharacter(
  16355. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16356. {
  16357. front: {
  16358. height: math.unit(8 + 2 / 12, "feet"),
  16359. weight: math.unit(300, "lb"),
  16360. name: "Front",
  16361. image: {
  16362. source: "./media/characters/kibibyte/front.svg",
  16363. extra: 2221 / 2098,
  16364. bottom: 0.04
  16365. }
  16366. },
  16367. },
  16368. [
  16369. {
  16370. name: "Normal",
  16371. height: math.unit(8 + 2 / 12, "feet"),
  16372. default: true
  16373. },
  16374. {
  16375. name: "Socialable Macro",
  16376. height: math.unit(50, "feet")
  16377. },
  16378. {
  16379. name: "Macro",
  16380. height: math.unit(300, "feet")
  16381. },
  16382. {
  16383. name: "Megamacro",
  16384. height: math.unit(500, "miles")
  16385. },
  16386. ]
  16387. ))
  16388. characterMakers.push(() => makeCharacter(
  16389. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16390. {
  16391. front: {
  16392. height: math.unit(6, "feet"),
  16393. weight: math.unit(150, "lb"),
  16394. name: "Front",
  16395. image: {
  16396. source: "./media/characters/felix/front.svg",
  16397. extra: 762 / 722,
  16398. bottom: 0.02
  16399. }
  16400. },
  16401. frontClothed: {
  16402. height: math.unit(6, "feet"),
  16403. weight: math.unit(150, "lb"),
  16404. name: "Front (Clothed)",
  16405. image: {
  16406. source: "./media/characters/felix/front-clothed.svg",
  16407. extra: 762 / 722,
  16408. bottom: 0.02
  16409. }
  16410. },
  16411. },
  16412. [
  16413. {
  16414. name: "Normal",
  16415. height: math.unit(6 + 8 / 12, "feet"),
  16416. default: true
  16417. },
  16418. {
  16419. name: "Macro",
  16420. height: math.unit(2600, "feet")
  16421. },
  16422. {
  16423. name: "Megamacro",
  16424. height: math.unit(450, "miles")
  16425. },
  16426. ]
  16427. ))
  16428. characterMakers.push(() => makeCharacter(
  16429. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16430. {
  16431. front: {
  16432. height: math.unit(6 + 1 / 12, "feet"),
  16433. weight: math.unit(250, "lb"),
  16434. name: "Front",
  16435. image: {
  16436. source: "./media/characters/tobo/front.svg",
  16437. extra: 608 / 586,
  16438. bottom: 0.023
  16439. }
  16440. },
  16441. back: {
  16442. height: math.unit(6 + 1 / 12, "feet"),
  16443. weight: math.unit(250, "lb"),
  16444. name: "Back",
  16445. image: {
  16446. source: "./media/characters/tobo/back.svg",
  16447. extra: 608 / 586
  16448. }
  16449. },
  16450. },
  16451. [
  16452. {
  16453. name: "Nano",
  16454. height: math.unit(2, "nm")
  16455. },
  16456. {
  16457. name: "Megamicro",
  16458. height: math.unit(0.1, "mm")
  16459. },
  16460. {
  16461. name: "Micro",
  16462. height: math.unit(1, "inch"),
  16463. default: true
  16464. },
  16465. {
  16466. name: "Human-sized",
  16467. height: math.unit(6 + 1 / 12, "feet")
  16468. },
  16469. {
  16470. name: "Macro",
  16471. height: math.unit(250, "feet")
  16472. },
  16473. {
  16474. name: "Megamacro",
  16475. height: math.unit(75, "miles")
  16476. },
  16477. {
  16478. name: "Texas-sized",
  16479. height: math.unit(750, "miles")
  16480. },
  16481. {
  16482. name: "Teramacro",
  16483. height: math.unit(50000, "miles")
  16484. },
  16485. ]
  16486. ))
  16487. characterMakers.push(() => makeCharacter(
  16488. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16489. {
  16490. front: {
  16491. height: math.unit(6, "feet"),
  16492. weight: math.unit(269, "lb"),
  16493. name: "Front",
  16494. image: {
  16495. source: "./media/characters/danny-kapowsky/front.svg",
  16496. extra: 766 / 736,
  16497. bottom: 0.044
  16498. }
  16499. },
  16500. back: {
  16501. height: math.unit(6, "feet"),
  16502. weight: math.unit(269, "lb"),
  16503. name: "Back",
  16504. image: {
  16505. source: "./media/characters/danny-kapowsky/back.svg",
  16506. extra: 797 / 760,
  16507. bottom: 0.025
  16508. }
  16509. },
  16510. },
  16511. [
  16512. {
  16513. name: "Macro",
  16514. height: math.unit(150, "feet"),
  16515. default: true
  16516. },
  16517. {
  16518. name: "Macro+",
  16519. height: math.unit(200, "feet")
  16520. },
  16521. {
  16522. name: "Macro++",
  16523. height: math.unit(300, "feet")
  16524. },
  16525. {
  16526. name: "Macro+++",
  16527. height: math.unit(400, "feet")
  16528. },
  16529. ]
  16530. ))
  16531. characterMakers.push(() => makeCharacter(
  16532. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16533. {
  16534. side: {
  16535. height: math.unit(6, "feet"),
  16536. weight: math.unit(170, "lb"),
  16537. name: "Side",
  16538. image: {
  16539. source: "./media/characters/finn/side.svg",
  16540. extra: 1953 / 1807,
  16541. bottom: 0.057
  16542. }
  16543. },
  16544. },
  16545. [
  16546. {
  16547. name: "Megamacro",
  16548. height: math.unit(14445, "feet"),
  16549. default: true
  16550. },
  16551. ]
  16552. ))
  16553. characterMakers.push(() => makeCharacter(
  16554. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16555. {
  16556. front: {
  16557. height: math.unit(5 + 6 / 12, "feet"),
  16558. weight: math.unit(125, "lb"),
  16559. name: "Front",
  16560. image: {
  16561. source: "./media/characters/roy/front.svg",
  16562. extra: 1,
  16563. bottom: 0.11
  16564. }
  16565. },
  16566. },
  16567. [
  16568. {
  16569. name: "Micro",
  16570. height: math.unit(3, "inches"),
  16571. default: true
  16572. },
  16573. {
  16574. name: "Normal",
  16575. height: math.unit(5 + 6 / 12, "feet")
  16576. },
  16577. {
  16578. name: "Lesser Macro",
  16579. height: math.unit(60, "feet")
  16580. },
  16581. {
  16582. name: "Greater Macro",
  16583. height: math.unit(120, "feet")
  16584. },
  16585. ]
  16586. ))
  16587. characterMakers.push(() => makeCharacter(
  16588. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16589. {
  16590. front: {
  16591. height: math.unit(6, "feet"),
  16592. weight: math.unit(100, "lb"),
  16593. name: "Front",
  16594. image: {
  16595. source: "./media/characters/aevsivs/front.svg",
  16596. extra: 1,
  16597. bottom: 0.03
  16598. }
  16599. },
  16600. back: {
  16601. height: math.unit(6, "feet"),
  16602. weight: math.unit(100, "lb"),
  16603. name: "Back",
  16604. image: {
  16605. source: "./media/characters/aevsivs/back.svg"
  16606. }
  16607. },
  16608. },
  16609. [
  16610. {
  16611. name: "Micro",
  16612. height: math.unit(2, "inches"),
  16613. default: true
  16614. },
  16615. {
  16616. name: "Normal",
  16617. height: math.unit(5, "feet")
  16618. },
  16619. ]
  16620. ))
  16621. characterMakers.push(() => makeCharacter(
  16622. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16623. {
  16624. front: {
  16625. height: math.unit(5 + 7 / 12, "feet"),
  16626. weight: math.unit(159, "lb"),
  16627. name: "Front",
  16628. image: {
  16629. source: "./media/characters/hildegard/front.svg",
  16630. extra: 289 / 269,
  16631. bottom: 7.63 / 297.8
  16632. }
  16633. },
  16634. back: {
  16635. height: math.unit(5 + 7 / 12, "feet"),
  16636. weight: math.unit(159, "lb"),
  16637. name: "Back",
  16638. image: {
  16639. source: "./media/characters/hildegard/back.svg",
  16640. extra: 280 / 260,
  16641. bottom: 2.3 / 282
  16642. }
  16643. },
  16644. },
  16645. [
  16646. {
  16647. name: "Normal",
  16648. height: math.unit(5 + 7 / 12, "feet"),
  16649. default: true
  16650. },
  16651. ]
  16652. ))
  16653. characterMakers.push(() => makeCharacter(
  16654. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16655. {
  16656. bernard: {
  16657. height: math.unit(2 + 7 / 12, "feet"),
  16658. weight: math.unit(66, "lb"),
  16659. name: "Bernard",
  16660. rename: true,
  16661. image: {
  16662. source: "./media/characters/bernard-wilder/bernard.svg",
  16663. extra: 192 / 128,
  16664. bottom: 0.05
  16665. }
  16666. },
  16667. wilder: {
  16668. height: math.unit(5 + 8 / 12, "feet"),
  16669. weight: math.unit(143, "lb"),
  16670. name: "Wilder",
  16671. rename: true,
  16672. image: {
  16673. source: "./media/characters/bernard-wilder/wilder.svg",
  16674. extra: 361 / 312,
  16675. bottom: 0.02
  16676. }
  16677. },
  16678. },
  16679. [
  16680. {
  16681. name: "Normal",
  16682. height: math.unit(2 + 7 / 12, "feet"),
  16683. default: true
  16684. },
  16685. ]
  16686. ))
  16687. characterMakers.push(() => makeCharacter(
  16688. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16689. {
  16690. anthro: {
  16691. height: math.unit(6 + 1 / 12, "feet"),
  16692. weight: math.unit(155, "lb"),
  16693. name: "Anthro",
  16694. image: {
  16695. source: "./media/characters/hearth/anthro.svg",
  16696. extra: 1178/1136,
  16697. bottom: 28/1206
  16698. }
  16699. },
  16700. feral: {
  16701. height: math.unit(3.78, "feet"),
  16702. weight: math.unit(35, "kg"),
  16703. name: "Feral",
  16704. image: {
  16705. source: "./media/characters/hearth/feral.svg",
  16706. extra: 153 / 135,
  16707. bottom: 0.03
  16708. }
  16709. },
  16710. },
  16711. [
  16712. {
  16713. name: "Normal",
  16714. height: math.unit(6 + 1 / 12, "feet"),
  16715. default: true
  16716. },
  16717. ]
  16718. ))
  16719. characterMakers.push(() => makeCharacter(
  16720. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16721. {
  16722. front: {
  16723. height: math.unit(6, "feet"),
  16724. weight: math.unit(182, "lb"),
  16725. name: "Front",
  16726. image: {
  16727. source: "./media/characters/ingrid/front.svg",
  16728. extra: 294 / 268,
  16729. bottom: 0.027
  16730. }
  16731. },
  16732. },
  16733. [
  16734. {
  16735. name: "Normal",
  16736. height: math.unit(6, "feet"),
  16737. default: true
  16738. },
  16739. ]
  16740. ))
  16741. characterMakers.push(() => makeCharacter(
  16742. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16743. {
  16744. eevee: {
  16745. height: math.unit(2 + 10 / 12, "feet"),
  16746. weight: math.unit(86, "lb"),
  16747. name: "Malgam",
  16748. image: {
  16749. source: "./media/characters/malgam/eevee.svg",
  16750. extra: 952/784,
  16751. bottom: 38/990
  16752. }
  16753. },
  16754. sylveon: {
  16755. height: math.unit(4, "feet"),
  16756. weight: math.unit(101, "lb"),
  16757. name: "Future Malgam",
  16758. rename: true,
  16759. image: {
  16760. source: "./media/characters/malgam/sylveon.svg",
  16761. extra: 371 / 325,
  16762. bottom: 0.015
  16763. }
  16764. },
  16765. gigantamax: {
  16766. height: math.unit(50, "feet"),
  16767. name: "Gigantamax Malgam",
  16768. rename: true,
  16769. image: {
  16770. source: "./media/characters/malgam/gigantamax.svg"
  16771. }
  16772. },
  16773. },
  16774. [
  16775. {
  16776. name: "Normal",
  16777. height: math.unit(2 + 10 / 12, "feet"),
  16778. default: true
  16779. },
  16780. ]
  16781. ))
  16782. characterMakers.push(() => makeCharacter(
  16783. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16784. {
  16785. front: {
  16786. height: math.unit(5 + 11 / 12, "feet"),
  16787. weight: math.unit(188, "lb"),
  16788. name: "Front",
  16789. image: {
  16790. source: "./media/characters/fleur/front.svg",
  16791. extra: 309 / 283,
  16792. bottom: 0.007
  16793. }
  16794. },
  16795. },
  16796. [
  16797. {
  16798. name: "Normal",
  16799. height: math.unit(5 + 11 / 12, "feet"),
  16800. default: true
  16801. },
  16802. ]
  16803. ))
  16804. characterMakers.push(() => makeCharacter(
  16805. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16806. {
  16807. front: {
  16808. height: math.unit(5 + 4 / 12, "feet"),
  16809. weight: math.unit(122, "lb"),
  16810. name: "Front",
  16811. image: {
  16812. source: "./media/characters/jude/front.svg",
  16813. extra: 288 / 273,
  16814. bottom: 0.03
  16815. }
  16816. },
  16817. },
  16818. [
  16819. {
  16820. name: "Normal",
  16821. height: math.unit(5 + 4 / 12, "feet"),
  16822. default: true
  16823. },
  16824. ]
  16825. ))
  16826. characterMakers.push(() => makeCharacter(
  16827. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16828. {
  16829. front: {
  16830. height: math.unit(5 + 11 / 12, "feet"),
  16831. weight: math.unit(190, "lb"),
  16832. name: "Front",
  16833. image: {
  16834. source: "./media/characters/seara/front.svg",
  16835. extra: 1,
  16836. bottom: 0.05
  16837. }
  16838. },
  16839. },
  16840. [
  16841. {
  16842. name: "Normal",
  16843. height: math.unit(5 + 11 / 12, "feet"),
  16844. default: true
  16845. },
  16846. ]
  16847. ))
  16848. characterMakers.push(() => makeCharacter(
  16849. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16850. {
  16851. front: {
  16852. height: math.unit(16 + 5 / 12, "feet"),
  16853. weight: math.unit(524, "lb"),
  16854. name: "Front",
  16855. image: {
  16856. source: "./media/characters/caspian-lugia/front.svg",
  16857. extra: 1,
  16858. bottom: 0.04
  16859. }
  16860. },
  16861. },
  16862. [
  16863. {
  16864. name: "Normal",
  16865. height: math.unit(16 + 5 / 12, "feet"),
  16866. default: true
  16867. },
  16868. ]
  16869. ))
  16870. characterMakers.push(() => makeCharacter(
  16871. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16872. {
  16873. front: {
  16874. height: math.unit(5 + 7 / 12, "feet"),
  16875. weight: math.unit(170, "lb"),
  16876. name: "Front",
  16877. image: {
  16878. source: "./media/characters/mika/front.svg",
  16879. extra: 1,
  16880. bottom: 0.016
  16881. }
  16882. },
  16883. },
  16884. [
  16885. {
  16886. name: "Normal",
  16887. height: math.unit(5 + 7 / 12, "feet"),
  16888. default: true
  16889. },
  16890. ]
  16891. ))
  16892. characterMakers.push(() => makeCharacter(
  16893. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16894. {
  16895. front: {
  16896. height: math.unit(6 + 2 / 12, "feet"),
  16897. weight: math.unit(268, "lb"),
  16898. name: "Front",
  16899. image: {
  16900. source: "./media/characters/sol/front.svg",
  16901. extra: 247 / 231,
  16902. bottom: 0.05
  16903. }
  16904. },
  16905. },
  16906. [
  16907. {
  16908. name: "Normal",
  16909. height: math.unit(6 + 2 / 12, "feet"),
  16910. default: true
  16911. },
  16912. ]
  16913. ))
  16914. characterMakers.push(() => makeCharacter(
  16915. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16916. {
  16917. buizel: {
  16918. height: math.unit(2 + 5 / 12, "feet"),
  16919. weight: math.unit(87, "lb"),
  16920. name: "Front",
  16921. image: {
  16922. source: "./media/characters/umiko/buizel.svg",
  16923. extra: 172 / 157,
  16924. bottom: 0.01
  16925. },
  16926. form: "buizel",
  16927. default: true
  16928. },
  16929. floatzel: {
  16930. height: math.unit(5 + 9 / 12, "feet"),
  16931. weight: math.unit(250, "lb"),
  16932. name: "Front",
  16933. image: {
  16934. source: "./media/characters/umiko/floatzel.svg",
  16935. extra: 1076/1006,
  16936. bottom: 15/1091
  16937. },
  16938. form: "floatzel",
  16939. default: true
  16940. },
  16941. },
  16942. [
  16943. {
  16944. name: "Normal",
  16945. height: math.unit(2 + 5 / 12, "feet"),
  16946. form: "buizel",
  16947. default: true
  16948. },
  16949. {
  16950. name: "Normal",
  16951. height: math.unit(5 + 9 / 12, "feet"),
  16952. form: "floatzel",
  16953. default: true
  16954. },
  16955. ],
  16956. {
  16957. "buizel": {
  16958. name: "Buizel"
  16959. },
  16960. "floatzel": {
  16961. name: "Floatzel",
  16962. default: true
  16963. }
  16964. }
  16965. ))
  16966. characterMakers.push(() => makeCharacter(
  16967. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16968. {
  16969. front: {
  16970. height: math.unit(6 + 2 / 12, "feet"),
  16971. weight: math.unit(146, "lb"),
  16972. name: "Front",
  16973. image: {
  16974. source: "./media/characters/iliac/front.svg",
  16975. extra: 389 / 365,
  16976. bottom: 0.035
  16977. }
  16978. },
  16979. },
  16980. [
  16981. {
  16982. name: "Normal",
  16983. height: math.unit(6 + 2 / 12, "feet"),
  16984. default: true
  16985. },
  16986. ]
  16987. ))
  16988. characterMakers.push(() => makeCharacter(
  16989. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16990. {
  16991. front: {
  16992. height: math.unit(6, "feet"),
  16993. weight: math.unit(170, "lb"),
  16994. name: "Front",
  16995. image: {
  16996. source: "./media/characters/topaz/front.svg",
  16997. extra: 317 / 303,
  16998. bottom: 0.055
  16999. }
  17000. },
  17001. },
  17002. [
  17003. {
  17004. name: "Normal",
  17005. height: math.unit(6, "feet"),
  17006. default: true
  17007. },
  17008. ]
  17009. ))
  17010. characterMakers.push(() => makeCharacter(
  17011. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17012. {
  17013. front: {
  17014. height: math.unit(5 + 11 / 12, "feet"),
  17015. weight: math.unit(144, "lb"),
  17016. name: "Front",
  17017. image: {
  17018. source: "./media/characters/gabriel/front.svg",
  17019. extra: 285 / 262,
  17020. bottom: 0.004
  17021. }
  17022. },
  17023. },
  17024. [
  17025. {
  17026. name: "Normal",
  17027. height: math.unit(5 + 11 / 12, "feet"),
  17028. default: true
  17029. },
  17030. ]
  17031. ))
  17032. characterMakers.push(() => makeCharacter(
  17033. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17034. {
  17035. side: {
  17036. height: math.unit(6 + 5 / 12, "feet"),
  17037. weight: math.unit(300, "lb"),
  17038. name: "Side",
  17039. image: {
  17040. source: "./media/characters/tempest-suicune/side.svg",
  17041. extra: 195 / 154,
  17042. bottom: 0.04
  17043. }
  17044. },
  17045. },
  17046. [
  17047. {
  17048. name: "Normal",
  17049. height: math.unit(6 + 5 / 12, "feet"),
  17050. default: true
  17051. },
  17052. ]
  17053. ))
  17054. characterMakers.push(() => makeCharacter(
  17055. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17056. {
  17057. front: {
  17058. height: math.unit(7 + 2 / 12, "feet"),
  17059. weight: math.unit(322, "lb"),
  17060. name: "Front",
  17061. image: {
  17062. source: "./media/characters/vulcan/front.svg",
  17063. extra: 154 / 147,
  17064. bottom: 0.04
  17065. }
  17066. },
  17067. },
  17068. [
  17069. {
  17070. name: "Normal",
  17071. height: math.unit(7 + 2 / 12, "feet"),
  17072. default: true
  17073. },
  17074. ]
  17075. ))
  17076. characterMakers.push(() => makeCharacter(
  17077. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17078. {
  17079. front: {
  17080. height: math.unit(5 + 10 / 12, "feet"),
  17081. weight: math.unit(264, "lb"),
  17082. name: "Front",
  17083. image: {
  17084. source: "./media/characters/gault/front.svg",
  17085. extra: 161 / 140,
  17086. bottom: 0.028
  17087. }
  17088. },
  17089. },
  17090. [
  17091. {
  17092. name: "Normal",
  17093. height: math.unit(5 + 10 / 12, "feet"),
  17094. default: true
  17095. },
  17096. ]
  17097. ))
  17098. characterMakers.push(() => makeCharacter(
  17099. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17100. {
  17101. front: {
  17102. height: math.unit(6, "feet"),
  17103. weight: math.unit(150, "lb"),
  17104. name: "Front",
  17105. image: {
  17106. source: "./media/characters/shard/front.svg",
  17107. extra: 273 / 238,
  17108. bottom: 0.02
  17109. }
  17110. },
  17111. },
  17112. [
  17113. {
  17114. name: "Normal",
  17115. height: math.unit(3 + 6 / 12, "feet"),
  17116. default: true
  17117. },
  17118. ]
  17119. ))
  17120. characterMakers.push(() => makeCharacter(
  17121. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17122. {
  17123. front: {
  17124. height: math.unit(5 + 11 / 12, "feet"),
  17125. weight: math.unit(146, "lb"),
  17126. name: "Front",
  17127. image: {
  17128. source: "./media/characters/ashe/front.svg",
  17129. extra: 400 / 373,
  17130. bottom: 0.01
  17131. }
  17132. },
  17133. },
  17134. [
  17135. {
  17136. name: "Normal",
  17137. height: math.unit(5 + 11 / 12, "feet"),
  17138. default: true
  17139. },
  17140. ]
  17141. ))
  17142. characterMakers.push(() => makeCharacter(
  17143. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17144. {
  17145. front: {
  17146. height: math.unit(5 + 5 / 12, "feet"),
  17147. weight: math.unit(135, "lb"),
  17148. name: "Front",
  17149. image: {
  17150. source: "./media/characters/beatrix/front.svg",
  17151. extra: 392 / 379,
  17152. bottom: 0.01
  17153. }
  17154. },
  17155. },
  17156. [
  17157. {
  17158. name: "Normal",
  17159. height: math.unit(6, "feet"),
  17160. default: true
  17161. },
  17162. ]
  17163. ))
  17164. characterMakers.push(() => makeCharacter(
  17165. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17166. {
  17167. front: {
  17168. height: math.unit(6 + 2/12, "feet"),
  17169. weight: math.unit(135, "lb"),
  17170. name: "Front",
  17171. image: {
  17172. source: "./media/characters/ignatius/front.svg",
  17173. extra: 1380/1259,
  17174. bottom: 27/1407
  17175. }
  17176. },
  17177. },
  17178. [
  17179. {
  17180. name: "Normal",
  17181. height: math.unit(6 + 2/12, "feet"),
  17182. default: true
  17183. },
  17184. ]
  17185. ))
  17186. characterMakers.push(() => makeCharacter(
  17187. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17188. {
  17189. front: {
  17190. height: math.unit(6 + 2 / 12, "feet"),
  17191. weight: math.unit(138, "lb"),
  17192. name: "Front",
  17193. image: {
  17194. source: "./media/characters/mei-li/front.svg",
  17195. extra: 237 / 229,
  17196. bottom: 0.03
  17197. }
  17198. },
  17199. },
  17200. [
  17201. {
  17202. name: "Normal",
  17203. height: math.unit(6 + 2 / 12, "feet"),
  17204. default: true
  17205. },
  17206. ]
  17207. ))
  17208. characterMakers.push(() => makeCharacter(
  17209. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17210. {
  17211. front: {
  17212. height: math.unit(2 + 4 / 12, "feet"),
  17213. weight: math.unit(62, "lb"),
  17214. name: "Front",
  17215. image: {
  17216. source: "./media/characters/puru/front.svg",
  17217. extra: 206 / 149,
  17218. bottom: 0.06
  17219. }
  17220. },
  17221. },
  17222. [
  17223. {
  17224. name: "Normal",
  17225. height: math.unit(2 + 4 / 12, "feet"),
  17226. default: true
  17227. },
  17228. ]
  17229. ))
  17230. characterMakers.push(() => makeCharacter(
  17231. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17232. {
  17233. anthro: {
  17234. height: math.unit(5 + 8/12, "feet"),
  17235. weight: math.unit(200, "lb"),
  17236. energyNeed: math.unit(2000, "kcal"),
  17237. name: "Anthro",
  17238. image: {
  17239. source: "./media/characters/kee/anthro.svg",
  17240. extra: 3251/3184,
  17241. bottom: 250/3501
  17242. }
  17243. },
  17244. taur: {
  17245. height: math.unit(11, "feet"),
  17246. weight: math.unit(500, "lb"),
  17247. energyNeed: math.unit(5000, "kcal"),
  17248. name: "Taur",
  17249. image: {
  17250. source: "./media/characters/kee/taur.svg",
  17251. extra: 1362/1320,
  17252. bottom: 83/1445
  17253. }
  17254. },
  17255. },
  17256. [
  17257. {
  17258. name: "Normal",
  17259. height: math.unit(5 + 8/12, "feet"),
  17260. default: true
  17261. },
  17262. {
  17263. name: "Macro",
  17264. height: math.unit(35, "feet")
  17265. },
  17266. ]
  17267. ))
  17268. characterMakers.push(() => makeCharacter(
  17269. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17270. {
  17271. anthro: {
  17272. height: math.unit(7, "feet"),
  17273. weight: math.unit(190, "lb"),
  17274. name: "Anthro",
  17275. image: {
  17276. source: "./media/characters/cobalt-dracha/anthro.svg",
  17277. extra: 231 / 225,
  17278. bottom: 0.04
  17279. }
  17280. },
  17281. feral: {
  17282. height: math.unit(9 + 7 / 12, "feet"),
  17283. weight: math.unit(294, "lb"),
  17284. name: "Feral",
  17285. image: {
  17286. source: "./media/characters/cobalt-dracha/feral.svg",
  17287. extra: 692 / 633,
  17288. bottom: 0.05
  17289. }
  17290. },
  17291. },
  17292. [
  17293. {
  17294. name: "Normal",
  17295. height: math.unit(7, "feet"),
  17296. default: true
  17297. },
  17298. ]
  17299. ))
  17300. characterMakers.push(() => makeCharacter(
  17301. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17302. {
  17303. fallen: {
  17304. height: math.unit(11 + 8 / 12, "feet"),
  17305. weight: math.unit(485, "lb"),
  17306. name: "Java (Fallen)",
  17307. rename: true,
  17308. image: {
  17309. source: "./media/characters/java/fallen.svg",
  17310. extra: 226 / 208,
  17311. bottom: 0.005
  17312. }
  17313. },
  17314. godkin: {
  17315. height: math.unit(10 + 6 / 12, "feet"),
  17316. weight: math.unit(328, "lb"),
  17317. name: "Java (Godkin)",
  17318. rename: true,
  17319. image: {
  17320. source: "./media/characters/java/godkin.svg",
  17321. extra: 1104/1068,
  17322. bottom: 36/1140
  17323. }
  17324. },
  17325. },
  17326. [
  17327. {
  17328. name: "Normal",
  17329. height: math.unit(11 + 8 / 12, "feet"),
  17330. default: true
  17331. },
  17332. ]
  17333. ))
  17334. characterMakers.push(() => makeCharacter(
  17335. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17336. {
  17337. front: {
  17338. height: math.unit(5 + 9 / 12, "feet"),
  17339. weight: math.unit(170, "lb"),
  17340. name: "Front",
  17341. image: {
  17342. source: "./media/characters/purna/front.svg",
  17343. extra: 239 / 229,
  17344. bottom: 0.01
  17345. }
  17346. },
  17347. },
  17348. [
  17349. {
  17350. name: "Normal",
  17351. height: math.unit(5 + 9 / 12, "feet"),
  17352. default: true
  17353. },
  17354. ]
  17355. ))
  17356. characterMakers.push(() => makeCharacter(
  17357. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17358. {
  17359. front: {
  17360. height: math.unit(5 + 9 / 12, "feet"),
  17361. weight: math.unit(142, "lb"),
  17362. name: "Front",
  17363. image: {
  17364. source: "./media/characters/kuva/front.svg",
  17365. extra: 281 / 271,
  17366. bottom: 0.006
  17367. }
  17368. },
  17369. },
  17370. [
  17371. {
  17372. name: "Normal",
  17373. height: math.unit(5 + 9 / 12, "feet"),
  17374. default: true
  17375. },
  17376. ]
  17377. ))
  17378. characterMakers.push(() => makeCharacter(
  17379. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17380. {
  17381. anthro: {
  17382. height: math.unit(9 + 2 / 12, "feet"),
  17383. weight: math.unit(270, "lb"),
  17384. name: "Anthro",
  17385. image: {
  17386. source: "./media/characters/embra/anthro.svg",
  17387. extra: 200 / 187,
  17388. bottom: 0.02
  17389. }
  17390. },
  17391. feral: {
  17392. height: math.unit(18 + 8 / 12, "feet"),
  17393. weight: math.unit(576, "lb"),
  17394. name: "Feral",
  17395. image: {
  17396. source: "./media/characters/embra/feral.svg",
  17397. extra: 152 / 137,
  17398. bottom: 0.037
  17399. }
  17400. },
  17401. },
  17402. [
  17403. {
  17404. name: "Normal",
  17405. height: math.unit(9 + 2 / 12, "feet"),
  17406. default: true
  17407. },
  17408. ]
  17409. ))
  17410. characterMakers.push(() => makeCharacter(
  17411. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17412. {
  17413. anthro: {
  17414. height: math.unit(10 + 9 / 12, "feet"),
  17415. weight: math.unit(224, "lb"),
  17416. name: "Anthro",
  17417. image: {
  17418. source: "./media/characters/grottos/anthro.svg",
  17419. extra: 350 / 332,
  17420. bottom: 0.045
  17421. }
  17422. },
  17423. feral: {
  17424. height: math.unit(20 + 7 / 12, "feet"),
  17425. weight: math.unit(629, "lb"),
  17426. name: "Feral",
  17427. image: {
  17428. source: "./media/characters/grottos/feral.svg",
  17429. extra: 207 / 190,
  17430. bottom: 0.05
  17431. }
  17432. },
  17433. },
  17434. [
  17435. {
  17436. name: "Normal",
  17437. height: math.unit(10 + 9 / 12, "feet"),
  17438. default: true
  17439. },
  17440. ]
  17441. ))
  17442. characterMakers.push(() => makeCharacter(
  17443. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17444. {
  17445. anthro: {
  17446. height: math.unit(9 + 6 / 12, "feet"),
  17447. weight: math.unit(298, "lb"),
  17448. name: "Anthro",
  17449. image: {
  17450. source: "./media/characters/frifna/anthro.svg",
  17451. extra: 282 / 269,
  17452. bottom: 0.015
  17453. }
  17454. },
  17455. feral: {
  17456. height: math.unit(16 + 2 / 12, "feet"),
  17457. weight: math.unit(624, "lb"),
  17458. name: "Feral",
  17459. image: {
  17460. source: "./media/characters/frifna/feral.svg"
  17461. }
  17462. },
  17463. },
  17464. [
  17465. {
  17466. name: "Normal",
  17467. height: math.unit(9 + 6 / 12, "feet"),
  17468. default: true
  17469. },
  17470. ]
  17471. ))
  17472. characterMakers.push(() => makeCharacter(
  17473. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17474. {
  17475. front: {
  17476. height: math.unit(6 + 2 / 12, "feet"),
  17477. weight: math.unit(168, "lb"),
  17478. name: "Front",
  17479. image: {
  17480. source: "./media/characters/elise/front.svg",
  17481. extra: 276 / 271
  17482. }
  17483. },
  17484. },
  17485. [
  17486. {
  17487. name: "Normal",
  17488. height: math.unit(6 + 2 / 12, "feet"),
  17489. default: true
  17490. },
  17491. ]
  17492. ))
  17493. characterMakers.push(() => makeCharacter(
  17494. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17495. {
  17496. front: {
  17497. height: math.unit(5 + 10 / 12, "feet"),
  17498. weight: math.unit(210, "lb"),
  17499. name: "Front",
  17500. image: {
  17501. source: "./media/characters/glade/front.svg",
  17502. extra: 258 / 247,
  17503. bottom: 0.008
  17504. }
  17505. },
  17506. },
  17507. [
  17508. {
  17509. name: "Normal",
  17510. height: math.unit(5 + 10 / 12, "feet"),
  17511. default: true
  17512. },
  17513. ]
  17514. ))
  17515. characterMakers.push(() => makeCharacter(
  17516. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17517. {
  17518. front: {
  17519. height: math.unit(5 + 10 / 12, "feet"),
  17520. weight: math.unit(129, "lb"),
  17521. name: "Front",
  17522. image: {
  17523. source: "./media/characters/rina/front.svg",
  17524. extra: 266 / 255,
  17525. bottom: 0.005
  17526. }
  17527. },
  17528. },
  17529. [
  17530. {
  17531. name: "Normal",
  17532. height: math.unit(5 + 10 / 12, "feet"),
  17533. default: true
  17534. },
  17535. ]
  17536. ))
  17537. characterMakers.push(() => makeCharacter(
  17538. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17539. {
  17540. front: {
  17541. height: math.unit(6 + 1 / 12, "feet"),
  17542. weight: math.unit(192, "lb"),
  17543. name: "Front",
  17544. image: {
  17545. source: "./media/characters/veronica/front.svg",
  17546. extra: 319 / 309,
  17547. bottom: 0.005
  17548. }
  17549. },
  17550. },
  17551. [
  17552. {
  17553. name: "Normal",
  17554. height: math.unit(6 + 1 / 12, "feet"),
  17555. default: true
  17556. },
  17557. ]
  17558. ))
  17559. characterMakers.push(() => makeCharacter(
  17560. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17561. {
  17562. front: {
  17563. height: math.unit(9 + 3 / 12, "feet"),
  17564. weight: math.unit(1100, "lb"),
  17565. name: "Front",
  17566. image: {
  17567. source: "./media/characters/braxton/front.svg",
  17568. extra: 1057 / 984,
  17569. bottom: 0.05
  17570. }
  17571. },
  17572. },
  17573. [
  17574. {
  17575. name: "Normal",
  17576. height: math.unit(9 + 3 / 12, "feet")
  17577. },
  17578. {
  17579. name: "Giant",
  17580. height: math.unit(300, "feet"),
  17581. default: true
  17582. },
  17583. {
  17584. name: "Macro",
  17585. height: math.unit(700, "feet")
  17586. },
  17587. {
  17588. name: "Megamacro",
  17589. height: math.unit(6000, "feet")
  17590. },
  17591. ]
  17592. ))
  17593. characterMakers.push(() => makeCharacter(
  17594. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17595. {
  17596. front: {
  17597. height: math.unit(6 + 7 / 12, "feet"),
  17598. weight: math.unit(150, "lb"),
  17599. name: "Front",
  17600. image: {
  17601. source: "./media/characters/blue-feyonics/front.svg",
  17602. extra: 1403 / 1306,
  17603. bottom: 0.047
  17604. }
  17605. },
  17606. },
  17607. [
  17608. {
  17609. name: "Normal",
  17610. height: math.unit(6 + 7 / 12, "feet"),
  17611. default: true
  17612. },
  17613. ]
  17614. ))
  17615. characterMakers.push(() => makeCharacter(
  17616. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17617. {
  17618. front: {
  17619. height: math.unit(1.8, "meters"),
  17620. weight: math.unit(60, "kg"),
  17621. name: "Front",
  17622. image: {
  17623. source: "./media/characters/maxwell/front.svg",
  17624. extra: 2060 / 1873
  17625. }
  17626. },
  17627. },
  17628. [
  17629. {
  17630. name: "Micro",
  17631. height: math.unit(1, "mm")
  17632. },
  17633. {
  17634. name: "Normal",
  17635. height: math.unit(1.8, "meter"),
  17636. default: true
  17637. },
  17638. {
  17639. name: "Macro",
  17640. height: math.unit(30, "meters")
  17641. },
  17642. {
  17643. name: "Megamacro",
  17644. height: math.unit(10, "km")
  17645. },
  17646. ]
  17647. ))
  17648. characterMakers.push(() => makeCharacter(
  17649. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17650. {
  17651. front: {
  17652. height: math.unit(6, "feet"),
  17653. weight: math.unit(150, "lb"),
  17654. name: "Front",
  17655. image: {
  17656. source: "./media/characters/jack/front.svg",
  17657. extra: 1754 / 1640,
  17658. bottom: 0.01
  17659. }
  17660. },
  17661. },
  17662. [
  17663. {
  17664. name: "Normal",
  17665. height: math.unit(80000, "feet"),
  17666. default: true
  17667. },
  17668. {
  17669. name: "Max size",
  17670. height: math.unit(10, "lightyears")
  17671. },
  17672. ]
  17673. ))
  17674. characterMakers.push(() => makeCharacter(
  17675. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17676. {
  17677. urban: {
  17678. height: math.unit(5, "feet"),
  17679. weight: math.unit(240, "lb"),
  17680. name: "Urban",
  17681. image: {
  17682. source: "./media/characters/cafat/urban.svg",
  17683. extra: 1223/1126,
  17684. bottom: 205/1428
  17685. }
  17686. },
  17687. summer: {
  17688. height: math.unit(5, "feet"),
  17689. weight: math.unit(240, "lb"),
  17690. name: "Summer",
  17691. image: {
  17692. source: "./media/characters/cafat/summer.svg",
  17693. extra: 1223/1126,
  17694. bottom: 205/1428
  17695. }
  17696. },
  17697. winter: {
  17698. height: math.unit(5, "feet"),
  17699. weight: math.unit(240, "lb"),
  17700. name: "Winter",
  17701. image: {
  17702. source: "./media/characters/cafat/winter.svg",
  17703. extra: 1223/1126,
  17704. bottom: 205/1428
  17705. }
  17706. },
  17707. lingerie: {
  17708. height: math.unit(5, "feet"),
  17709. weight: math.unit(240, "lb"),
  17710. name: "Lingerie",
  17711. image: {
  17712. source: "./media/characters/cafat/lingerie.svg",
  17713. extra: 1223/1126,
  17714. bottom: 205/1428
  17715. }
  17716. },
  17717. upright: {
  17718. height: math.unit(6.3, "feet"),
  17719. weight: math.unit(240, "lb"),
  17720. name: "Upright",
  17721. image: {
  17722. source: "./media/characters/cafat/upright.svg",
  17723. bottom: 0.01
  17724. }
  17725. },
  17726. uprightFull: {
  17727. height: math.unit(6.3, "feet"),
  17728. weight: math.unit(240, "lb"),
  17729. name: "Upright (Full)",
  17730. image: {
  17731. source: "./media/characters/cafat/upright-full.svg",
  17732. bottom: 0.01
  17733. }
  17734. },
  17735. },
  17736. [
  17737. {
  17738. name: "Small",
  17739. height: math.unit(5, "feet"),
  17740. default: true
  17741. },
  17742. {
  17743. name: "Large",
  17744. height: math.unit(13, "feet")
  17745. },
  17746. ]
  17747. ))
  17748. characterMakers.push(() => makeCharacter(
  17749. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17750. {
  17751. front: {
  17752. height: math.unit(6, "feet"),
  17753. weight: math.unit(150, "lb"),
  17754. name: "Front",
  17755. image: {
  17756. source: "./media/characters/verin-raharra/front.svg",
  17757. extra: 5019 / 4835,
  17758. bottom: 0.023
  17759. }
  17760. },
  17761. },
  17762. [
  17763. {
  17764. name: "Normal",
  17765. height: math.unit(7 + 5 / 12, "feet"),
  17766. default: true
  17767. },
  17768. {
  17769. name: "Upsized",
  17770. height: math.unit(20, "feet")
  17771. },
  17772. ]
  17773. ))
  17774. characterMakers.push(() => makeCharacter(
  17775. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17776. {
  17777. front: {
  17778. height: math.unit(7, "feet"),
  17779. weight: math.unit(230, "lb"),
  17780. name: "Front",
  17781. image: {
  17782. source: "./media/characters/nakata/front.svg",
  17783. extra: 1.005,
  17784. bottom: 0.01
  17785. }
  17786. },
  17787. },
  17788. [
  17789. {
  17790. name: "Normal",
  17791. height: math.unit(7, "feet"),
  17792. default: true
  17793. },
  17794. {
  17795. name: "Big",
  17796. height: math.unit(14, "feet")
  17797. },
  17798. {
  17799. name: "Macro",
  17800. height: math.unit(400, "feet")
  17801. },
  17802. ]
  17803. ))
  17804. characterMakers.push(() => makeCharacter(
  17805. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17806. {
  17807. front: {
  17808. height: math.unit(4.91, "feet"),
  17809. weight: math.unit(100, "lb"),
  17810. name: "Front",
  17811. image: {
  17812. source: "./media/characters/lily/front.svg",
  17813. extra: 1585 / 1415,
  17814. bottom: 0.02
  17815. }
  17816. },
  17817. },
  17818. [
  17819. {
  17820. name: "Normal",
  17821. height: math.unit(4.91, "feet"),
  17822. default: true
  17823. },
  17824. ]
  17825. ))
  17826. characterMakers.push(() => makeCharacter(
  17827. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17828. {
  17829. laying: {
  17830. height: math.unit(4 + 4 / 12, "feet"),
  17831. weight: math.unit(600, "lb"),
  17832. name: "Laying",
  17833. image: {
  17834. source: "./media/characters/sheila/laying.svg",
  17835. extra: 1333 / 1265,
  17836. bottom: 0.16
  17837. }
  17838. },
  17839. },
  17840. [
  17841. {
  17842. name: "Normal",
  17843. height: math.unit(4 + 4 / 12, "feet"),
  17844. default: true
  17845. },
  17846. ]
  17847. ))
  17848. characterMakers.push(() => makeCharacter(
  17849. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17850. {
  17851. front: {
  17852. height: math.unit(6, "feet"),
  17853. weight: math.unit(190, "lb"),
  17854. name: "Front",
  17855. image: {
  17856. source: "./media/characters/sax/front.svg",
  17857. extra: 1187 / 973,
  17858. bottom: 0.042
  17859. }
  17860. },
  17861. },
  17862. [
  17863. {
  17864. name: "Micro",
  17865. height: math.unit(4, "inches"),
  17866. default: true
  17867. },
  17868. ]
  17869. ))
  17870. characterMakers.push(() => makeCharacter(
  17871. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17872. {
  17873. front: {
  17874. height: math.unit(6, "feet"),
  17875. weight: math.unit(150, "lb"),
  17876. name: "Front",
  17877. image: {
  17878. source: "./media/characters/pandora/front.svg",
  17879. extra: 2720 / 2556,
  17880. bottom: 0.015
  17881. }
  17882. },
  17883. back: {
  17884. height: math.unit(6, "feet"),
  17885. weight: math.unit(150, "lb"),
  17886. name: "Back",
  17887. image: {
  17888. source: "./media/characters/pandora/back.svg",
  17889. extra: 2720 / 2556,
  17890. bottom: 0.01
  17891. }
  17892. },
  17893. beans: {
  17894. height: math.unit(6 / 8, "feet"),
  17895. name: "Beans",
  17896. image: {
  17897. source: "./media/characters/pandora/beans.svg"
  17898. }
  17899. },
  17900. collar: {
  17901. height: math.unit(0.31, "feet"),
  17902. name: "Collar",
  17903. image: {
  17904. source: "./media/characters/pandora/collar.svg"
  17905. }
  17906. },
  17907. skirt: {
  17908. height: math.unit(6, "feet"),
  17909. weight: math.unit(150, "lb"),
  17910. name: "Skirt",
  17911. image: {
  17912. source: "./media/characters/pandora/skirt.svg",
  17913. extra: 1622 / 1525,
  17914. bottom: 0.015
  17915. }
  17916. },
  17917. hoodie: {
  17918. height: math.unit(6, "feet"),
  17919. weight: math.unit(150, "lb"),
  17920. name: "Hoodie",
  17921. image: {
  17922. source: "./media/characters/pandora/hoodie.svg",
  17923. extra: 1622 / 1525,
  17924. bottom: 0.015
  17925. }
  17926. },
  17927. casual: {
  17928. height: math.unit(6, "feet"),
  17929. weight: math.unit(150, "lb"),
  17930. name: "Casual",
  17931. image: {
  17932. source: "./media/characters/pandora/casual.svg",
  17933. extra: 1622 / 1525,
  17934. bottom: 0.015
  17935. }
  17936. },
  17937. },
  17938. [
  17939. {
  17940. name: "Normal",
  17941. height: math.unit(6, "feet")
  17942. },
  17943. {
  17944. name: "Big Steppy",
  17945. height: math.unit(1, "km"),
  17946. default: true
  17947. },
  17948. {
  17949. name: "Galactic Steppy",
  17950. height: math.unit(2, "gigameters")
  17951. },
  17952. ]
  17953. ))
  17954. characterMakers.push(() => makeCharacter(
  17955. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17956. {
  17957. side: {
  17958. height: math.unit(10, "feet"),
  17959. weight: math.unit(800, "kg"),
  17960. name: "Side",
  17961. image: {
  17962. source: "./media/characters/venio-darcony/side.svg",
  17963. extra: 1373 / 1003,
  17964. bottom: 0.037
  17965. }
  17966. },
  17967. front: {
  17968. height: math.unit(19, "feet"),
  17969. weight: math.unit(800, "kg"),
  17970. name: "Front",
  17971. image: {
  17972. source: "./media/characters/venio-darcony/front.svg"
  17973. }
  17974. },
  17975. back: {
  17976. height: math.unit(19, "feet"),
  17977. weight: math.unit(800, "kg"),
  17978. name: "Back",
  17979. image: {
  17980. source: "./media/characters/venio-darcony/back.svg"
  17981. }
  17982. },
  17983. sideNsfw: {
  17984. height: math.unit(10, "feet"),
  17985. weight: math.unit(800, "kg"),
  17986. name: "Side (NSFW)",
  17987. image: {
  17988. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17989. extra: 1373 / 1003,
  17990. bottom: 0.037
  17991. }
  17992. },
  17993. frontNsfw: {
  17994. height: math.unit(19, "feet"),
  17995. weight: math.unit(800, "kg"),
  17996. name: "Front (NSFW)",
  17997. image: {
  17998. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17999. }
  18000. },
  18001. backNsfw: {
  18002. height: math.unit(19, "feet"),
  18003. weight: math.unit(800, "kg"),
  18004. name: "Back (NSFW)",
  18005. image: {
  18006. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18007. }
  18008. },
  18009. sideArmored: {
  18010. height: math.unit(10, "feet"),
  18011. weight: math.unit(800, "kg"),
  18012. name: "Side (Armored)",
  18013. image: {
  18014. source: "./media/characters/venio-darcony/side-armored.svg",
  18015. extra: 1373 / 1003,
  18016. bottom: 0.037
  18017. }
  18018. },
  18019. frontArmored: {
  18020. height: math.unit(19, "feet"),
  18021. weight: math.unit(900, "kg"),
  18022. name: "Front (Armored)",
  18023. image: {
  18024. source: "./media/characters/venio-darcony/front-armored.svg"
  18025. }
  18026. },
  18027. backArmored: {
  18028. height: math.unit(19, "feet"),
  18029. weight: math.unit(900, "kg"),
  18030. name: "Back (Armored)",
  18031. image: {
  18032. source: "./media/characters/venio-darcony/back-armored.svg"
  18033. }
  18034. },
  18035. sword: {
  18036. height: math.unit(10, "feet"),
  18037. weight: math.unit(50, "lb"),
  18038. name: "Sword",
  18039. image: {
  18040. source: "./media/characters/venio-darcony/sword.svg"
  18041. }
  18042. },
  18043. },
  18044. [
  18045. {
  18046. name: "Normal",
  18047. height: math.unit(10, "feet")
  18048. },
  18049. {
  18050. name: "Macro",
  18051. height: math.unit(130, "feet"),
  18052. default: true
  18053. },
  18054. {
  18055. name: "Macro+",
  18056. height: math.unit(240, "feet")
  18057. },
  18058. ]
  18059. ))
  18060. characterMakers.push(() => makeCharacter(
  18061. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18062. {
  18063. front: {
  18064. height: math.unit(6, "feet"),
  18065. weight: math.unit(150, "lb"),
  18066. name: "Front",
  18067. image: {
  18068. source: "./media/characters/veski/front.svg",
  18069. extra: 1299 / 1225,
  18070. bottom: 0.04
  18071. }
  18072. },
  18073. back: {
  18074. height: math.unit(6, "feet"),
  18075. weight: math.unit(150, "lb"),
  18076. name: "Back",
  18077. image: {
  18078. source: "./media/characters/veski/back.svg",
  18079. extra: 1299 / 1225,
  18080. bottom: 0.008
  18081. }
  18082. },
  18083. maw: {
  18084. height: math.unit(1.5 * 1.21, "feet"),
  18085. name: "Maw",
  18086. image: {
  18087. source: "./media/characters/veski/maw.svg"
  18088. }
  18089. },
  18090. },
  18091. [
  18092. {
  18093. name: "Macro",
  18094. height: math.unit(2, "km"),
  18095. default: true
  18096. },
  18097. ]
  18098. ))
  18099. characterMakers.push(() => makeCharacter(
  18100. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18101. {
  18102. front: {
  18103. height: math.unit(5 + 7 / 12, "feet"),
  18104. name: "Front",
  18105. image: {
  18106. source: "./media/characters/isabelle/front.svg",
  18107. extra: 2130 / 1976,
  18108. bottom: 0.05
  18109. }
  18110. },
  18111. },
  18112. [
  18113. {
  18114. name: "Supermicro",
  18115. height: math.unit(10, "micrometers")
  18116. },
  18117. {
  18118. name: "Micro",
  18119. height: math.unit(1, "inch")
  18120. },
  18121. {
  18122. name: "Tiny",
  18123. height: math.unit(5, "inches")
  18124. },
  18125. {
  18126. name: "Standard",
  18127. height: math.unit(5 + 7 / 12, "inches")
  18128. },
  18129. {
  18130. name: "Macro",
  18131. height: math.unit(80, "meters"),
  18132. default: true
  18133. },
  18134. {
  18135. name: "Megamacro",
  18136. height: math.unit(250, "meters")
  18137. },
  18138. {
  18139. name: "Gigamacro",
  18140. height: math.unit(5, "km")
  18141. },
  18142. {
  18143. name: "Cosmic",
  18144. height: math.unit(2.5e6, "miles")
  18145. },
  18146. ]
  18147. ))
  18148. characterMakers.push(() => makeCharacter(
  18149. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18150. {
  18151. front: {
  18152. height: math.unit(6, "feet"),
  18153. weight: math.unit(150, "lb"),
  18154. name: "Front",
  18155. image: {
  18156. source: "./media/characters/hanzo/front.svg",
  18157. extra: 374 / 344,
  18158. bottom: 0.02
  18159. }
  18160. },
  18161. },
  18162. [
  18163. {
  18164. name: "Normal",
  18165. height: math.unit(8, "feet"),
  18166. default: true
  18167. },
  18168. ]
  18169. ))
  18170. characterMakers.push(() => makeCharacter(
  18171. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18172. {
  18173. front: {
  18174. height: math.unit(7, "feet"),
  18175. weight: math.unit(130, "lb"),
  18176. name: "Front",
  18177. image: {
  18178. source: "./media/characters/anna/front.svg",
  18179. extra: 169 / 145,
  18180. bottom: 0.06
  18181. }
  18182. },
  18183. full: {
  18184. height: math.unit(4.96, "feet"),
  18185. weight: math.unit(220, "lb"),
  18186. name: "Full",
  18187. image: {
  18188. source: "./media/characters/anna/full.svg",
  18189. extra: 138 / 114,
  18190. bottom: 0.15
  18191. }
  18192. },
  18193. tongue: {
  18194. height: math.unit(2.53, "feet"),
  18195. name: "Tongue",
  18196. image: {
  18197. source: "./media/characters/anna/tongue.svg"
  18198. }
  18199. },
  18200. },
  18201. [
  18202. {
  18203. name: "Normal",
  18204. height: math.unit(7, "feet"),
  18205. default: true
  18206. },
  18207. ]
  18208. ))
  18209. characterMakers.push(() => makeCharacter(
  18210. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18211. {
  18212. front: {
  18213. height: math.unit(7, "feet"),
  18214. weight: math.unit(150, "lb"),
  18215. name: "Front",
  18216. image: {
  18217. source: "./media/characters/ian-corvid/front.svg",
  18218. extra: 150 / 142,
  18219. bottom: 0.02
  18220. }
  18221. },
  18222. back: {
  18223. height: math.unit(7, "feet"),
  18224. weight: math.unit(150, "lb"),
  18225. name: "Back",
  18226. image: {
  18227. source: "./media/characters/ian-corvid/back.svg",
  18228. extra: 150 / 143,
  18229. bottom: 0.01
  18230. }
  18231. },
  18232. stomping: {
  18233. height: math.unit(7, "feet"),
  18234. weight: math.unit(150, "lb"),
  18235. name: "Stomping",
  18236. image: {
  18237. source: "./media/characters/ian-corvid/stomping.svg",
  18238. extra: 76 / 72
  18239. }
  18240. },
  18241. sitting: {
  18242. height: math.unit(7 / 1.8, "feet"),
  18243. weight: math.unit(150, "lb"),
  18244. name: "Sitting",
  18245. image: {
  18246. source: "./media/characters/ian-corvid/sitting.svg",
  18247. extra: 1400 / 1269,
  18248. bottom: 0.15
  18249. }
  18250. },
  18251. },
  18252. [
  18253. {
  18254. name: "Tiny Microw",
  18255. height: math.unit(1, "inch")
  18256. },
  18257. {
  18258. name: "Microw",
  18259. height: math.unit(6, "inches")
  18260. },
  18261. {
  18262. name: "Crow",
  18263. height: math.unit(7 + 1 / 12, "feet"),
  18264. default: true
  18265. },
  18266. {
  18267. name: "Macrow",
  18268. height: math.unit(176, "feet")
  18269. },
  18270. ]
  18271. ))
  18272. characterMakers.push(() => makeCharacter(
  18273. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18274. {
  18275. front: {
  18276. height: math.unit(5 + 7 / 12, "feet"),
  18277. weight: math.unit(147, "lb"),
  18278. name: "Front",
  18279. image: {
  18280. source: "./media/characters/natalie-kellon/front.svg",
  18281. extra: 1214 / 1141,
  18282. bottom: 0.02
  18283. }
  18284. },
  18285. },
  18286. [
  18287. {
  18288. name: "Micro",
  18289. height: math.unit(1 / 16, "inch")
  18290. },
  18291. {
  18292. name: "Tiny",
  18293. height: math.unit(4, "inches")
  18294. },
  18295. {
  18296. name: "Normal",
  18297. height: math.unit(5 + 7 / 12, "feet"),
  18298. default: true
  18299. },
  18300. {
  18301. name: "Amazon",
  18302. height: math.unit(12, "feet")
  18303. },
  18304. {
  18305. name: "Giantess",
  18306. height: math.unit(160, "meters")
  18307. },
  18308. {
  18309. name: "Titaness",
  18310. height: math.unit(800, "meters")
  18311. },
  18312. ]
  18313. ))
  18314. characterMakers.push(() => makeCharacter(
  18315. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18316. {
  18317. front: {
  18318. height: math.unit(6, "feet"),
  18319. weight: math.unit(150, "lb"),
  18320. name: "Front",
  18321. image: {
  18322. source: "./media/characters/alluria/front.svg",
  18323. extra: 806 / 738,
  18324. bottom: 0.01
  18325. }
  18326. },
  18327. side: {
  18328. height: math.unit(6, "feet"),
  18329. weight: math.unit(150, "lb"),
  18330. name: "Side",
  18331. image: {
  18332. source: "./media/characters/alluria/side.svg",
  18333. extra: 800 / 750,
  18334. }
  18335. },
  18336. back: {
  18337. height: math.unit(6, "feet"),
  18338. weight: math.unit(150, "lb"),
  18339. name: "Back",
  18340. image: {
  18341. source: "./media/characters/alluria/back.svg",
  18342. extra: 806 / 738,
  18343. }
  18344. },
  18345. frontMaid: {
  18346. height: math.unit(6, "feet"),
  18347. weight: math.unit(150, "lb"),
  18348. name: "Front (Maid)",
  18349. image: {
  18350. source: "./media/characters/alluria/front-maid.svg",
  18351. extra: 806 / 738,
  18352. bottom: 0.01
  18353. }
  18354. },
  18355. sideMaid: {
  18356. height: math.unit(6, "feet"),
  18357. weight: math.unit(150, "lb"),
  18358. name: "Side (Maid)",
  18359. image: {
  18360. source: "./media/characters/alluria/side-maid.svg",
  18361. extra: 800 / 750,
  18362. bottom: 0.005
  18363. }
  18364. },
  18365. backMaid: {
  18366. height: math.unit(6, "feet"),
  18367. weight: math.unit(150, "lb"),
  18368. name: "Back (Maid)",
  18369. image: {
  18370. source: "./media/characters/alluria/back-maid.svg",
  18371. extra: 806 / 738,
  18372. }
  18373. },
  18374. },
  18375. [
  18376. {
  18377. name: "Micro",
  18378. height: math.unit(6, "inches"),
  18379. default: true
  18380. },
  18381. ]
  18382. ))
  18383. characterMakers.push(() => makeCharacter(
  18384. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18385. {
  18386. front: {
  18387. height: math.unit(6, "feet"),
  18388. weight: math.unit(150, "lb"),
  18389. name: "Front",
  18390. image: {
  18391. source: "./media/characters/kyle/front.svg",
  18392. extra: 1069 / 962,
  18393. bottom: 77.228 / 1727.45
  18394. }
  18395. },
  18396. },
  18397. [
  18398. {
  18399. name: "Macro",
  18400. height: math.unit(150, "feet"),
  18401. default: true
  18402. },
  18403. ]
  18404. ))
  18405. characterMakers.push(() => makeCharacter(
  18406. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18407. {
  18408. front: {
  18409. height: math.unit(6, "feet"),
  18410. weight: math.unit(300, "lb"),
  18411. name: "Front",
  18412. image: {
  18413. source: "./media/characters/duncan/front.svg",
  18414. extra: 1650 / 1482,
  18415. bottom: 0.05
  18416. }
  18417. },
  18418. },
  18419. [
  18420. {
  18421. name: "Macro",
  18422. height: math.unit(100, "feet"),
  18423. default: true
  18424. },
  18425. ]
  18426. ))
  18427. characterMakers.push(() => makeCharacter(
  18428. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18429. {
  18430. front: {
  18431. height: math.unit(5 + 4 / 12, "feet"),
  18432. weight: math.unit(220, "lb"),
  18433. name: "Front",
  18434. image: {
  18435. source: "./media/characters/memory/front.svg",
  18436. extra: 3641 / 3545,
  18437. bottom: 0.03
  18438. }
  18439. },
  18440. back: {
  18441. height: math.unit(5 + 4 / 12, "feet"),
  18442. weight: math.unit(220, "lb"),
  18443. name: "Back",
  18444. image: {
  18445. source: "./media/characters/memory/back.svg",
  18446. extra: 3641 / 3545,
  18447. bottom: 0.025
  18448. }
  18449. },
  18450. frontSkirt: {
  18451. height: math.unit(5 + 4 / 12, "feet"),
  18452. weight: math.unit(220, "lb"),
  18453. name: "Front (Skirt)",
  18454. image: {
  18455. source: "./media/characters/memory/front-skirt.svg",
  18456. extra: 3641 / 3545,
  18457. bottom: 0.03
  18458. }
  18459. },
  18460. frontDress: {
  18461. height: math.unit(5 + 4 / 12, "feet"),
  18462. weight: math.unit(220, "lb"),
  18463. name: "Front (Dress)",
  18464. image: {
  18465. source: "./media/characters/memory/front-dress.svg",
  18466. extra: 3641 / 3545,
  18467. bottom: 0.03
  18468. }
  18469. },
  18470. },
  18471. [
  18472. {
  18473. name: "Micro",
  18474. height: math.unit(6, "inches"),
  18475. default: true
  18476. },
  18477. {
  18478. name: "Normal",
  18479. height: math.unit(5 + 4 / 12, "feet")
  18480. },
  18481. ]
  18482. ))
  18483. characterMakers.push(() => makeCharacter(
  18484. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18485. {
  18486. front: {
  18487. height: math.unit(4 + 11 / 12, "feet"),
  18488. weight: math.unit(100, "lb"),
  18489. name: "Front",
  18490. image: {
  18491. source: "./media/characters/luno/front.svg",
  18492. extra: 1535 / 1487,
  18493. bottom: 0.03
  18494. }
  18495. },
  18496. },
  18497. [
  18498. {
  18499. name: "Micro",
  18500. height: math.unit(3, "inches")
  18501. },
  18502. {
  18503. name: "Normal",
  18504. height: math.unit(4 + 11 / 12, "feet"),
  18505. default: true
  18506. },
  18507. {
  18508. name: "Macro",
  18509. height: math.unit(300, "feet")
  18510. },
  18511. {
  18512. name: "Megamacro",
  18513. height: math.unit(700, "miles")
  18514. },
  18515. ]
  18516. ))
  18517. characterMakers.push(() => makeCharacter(
  18518. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18519. {
  18520. front: {
  18521. height: math.unit(6 + 2 / 12, "feet"),
  18522. weight: math.unit(170, "lb"),
  18523. name: "Front",
  18524. image: {
  18525. source: "./media/characters/jamesy/front.svg",
  18526. extra: 440 / 382,
  18527. bottom: 0.005
  18528. }
  18529. },
  18530. },
  18531. [
  18532. {
  18533. name: "Micro",
  18534. height: math.unit(3, "inches")
  18535. },
  18536. {
  18537. name: "Normal",
  18538. height: math.unit(6 + 2 / 12, "feet"),
  18539. default: true
  18540. },
  18541. {
  18542. name: "Macro",
  18543. height: math.unit(300, "feet")
  18544. },
  18545. {
  18546. name: "Megamacro",
  18547. height: math.unit(700, "miles")
  18548. },
  18549. ]
  18550. ))
  18551. characterMakers.push(() => makeCharacter(
  18552. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18553. {
  18554. front: {
  18555. height: math.unit(6, "feet"),
  18556. weight: math.unit(160, "lb"),
  18557. name: "Front",
  18558. image: {
  18559. source: "./media/characters/mark/front.svg",
  18560. extra: 3300 / 3100,
  18561. bottom: 136.42 / 3440.47
  18562. }
  18563. },
  18564. },
  18565. [
  18566. {
  18567. name: "Macro",
  18568. height: math.unit(120, "meters")
  18569. },
  18570. {
  18571. name: "Bigger Macro",
  18572. height: math.unit(350, "meters")
  18573. },
  18574. {
  18575. name: "Megamacro",
  18576. height: math.unit(8, "km"),
  18577. default: true
  18578. },
  18579. {
  18580. name: "Continental",
  18581. height: math.unit(4550, "km")
  18582. },
  18583. {
  18584. name: "Planetary",
  18585. height: math.unit(65000, "km")
  18586. },
  18587. ]
  18588. ))
  18589. characterMakers.push(() => makeCharacter(
  18590. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18591. {
  18592. front: {
  18593. height: math.unit(6, "feet"),
  18594. weight: math.unit(400, "lb"),
  18595. name: "Front",
  18596. image: {
  18597. source: "./media/characters/mac/front.svg",
  18598. extra: 1048 / 987.7,
  18599. bottom: 60 / 1107.6,
  18600. }
  18601. },
  18602. },
  18603. [
  18604. {
  18605. name: "Macro",
  18606. height: math.unit(500, "feet"),
  18607. default: true
  18608. },
  18609. ]
  18610. ))
  18611. characterMakers.push(() => makeCharacter(
  18612. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18613. {
  18614. front: {
  18615. height: math.unit(5 + 2 / 12, "feet"),
  18616. weight: math.unit(190, "lb"),
  18617. name: "Front",
  18618. image: {
  18619. source: "./media/characters/bari/front.svg",
  18620. extra: 3156 / 2880,
  18621. bottom: 0.03
  18622. }
  18623. },
  18624. back: {
  18625. height: math.unit(5 + 2 / 12, "feet"),
  18626. weight: math.unit(190, "lb"),
  18627. name: "Back",
  18628. image: {
  18629. source: "./media/characters/bari/back.svg",
  18630. extra: 3260 / 2834,
  18631. bottom: 0.025
  18632. }
  18633. },
  18634. frontPlush: {
  18635. height: math.unit(5 + 2 / 12, "feet"),
  18636. weight: math.unit(190, "lb"),
  18637. name: "Front (Plush)",
  18638. image: {
  18639. source: "./media/characters/bari/front-plush.svg",
  18640. extra: 1112 / 1061,
  18641. bottom: 0.002
  18642. }
  18643. },
  18644. },
  18645. [
  18646. {
  18647. name: "Micro",
  18648. height: math.unit(3, "inches")
  18649. },
  18650. {
  18651. name: "Normal",
  18652. height: math.unit(5 + 2 / 12, "feet"),
  18653. default: true
  18654. },
  18655. {
  18656. name: "Macro",
  18657. height: math.unit(20, "feet")
  18658. },
  18659. ]
  18660. ))
  18661. characterMakers.push(() => makeCharacter(
  18662. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18663. {
  18664. front: {
  18665. height: math.unit(6 + 1 / 12, "feet"),
  18666. weight: math.unit(275, "lb"),
  18667. name: "Front",
  18668. image: {
  18669. source: "./media/characters/hunter-misha-raven/front.svg"
  18670. }
  18671. },
  18672. },
  18673. [
  18674. {
  18675. name: "Mortal",
  18676. height: math.unit(6 + 1 / 12, "feet")
  18677. },
  18678. {
  18679. name: "Divine",
  18680. height: math.unit(1.12134e34, "parsecs"),
  18681. default: true
  18682. },
  18683. ]
  18684. ))
  18685. characterMakers.push(() => makeCharacter(
  18686. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18687. {
  18688. front: {
  18689. height: math.unit(6 + 3 / 12, "feet"),
  18690. weight: math.unit(220, "lb"),
  18691. name: "Front",
  18692. image: {
  18693. source: "./media/characters/max-calore/front.svg",
  18694. extra: 1700 / 1648,
  18695. bottom: 0.01
  18696. }
  18697. },
  18698. back: {
  18699. height: math.unit(6 + 3 / 12, "feet"),
  18700. weight: math.unit(220, "lb"),
  18701. name: "Back",
  18702. image: {
  18703. source: "./media/characters/max-calore/back.svg",
  18704. extra: 1700 / 1648,
  18705. bottom: 0.01
  18706. }
  18707. },
  18708. },
  18709. [
  18710. {
  18711. name: "Normal",
  18712. height: math.unit(6 + 3 / 12, "feet"),
  18713. default: true
  18714. },
  18715. ]
  18716. ))
  18717. characterMakers.push(() => makeCharacter(
  18718. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18719. {
  18720. side: {
  18721. height: math.unit(2 + 8 / 12, "feet"),
  18722. weight: math.unit(99, "lb"),
  18723. name: "Side",
  18724. image: {
  18725. source: "./media/characters/aspen/side.svg",
  18726. extra: 152 / 138,
  18727. bottom: 0.032
  18728. }
  18729. },
  18730. },
  18731. [
  18732. {
  18733. name: "Normal",
  18734. height: math.unit(2 + 8 / 12, "feet"),
  18735. default: true
  18736. },
  18737. ]
  18738. ))
  18739. characterMakers.push(() => makeCharacter(
  18740. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18741. {
  18742. side: {
  18743. height: math.unit(3 + 2 / 12, "feet"),
  18744. weight: math.unit(224, "lb"),
  18745. name: "Side",
  18746. image: {
  18747. source: "./media/characters/sheila-feral-wolf/side.svg",
  18748. extra: 179 / 166,
  18749. bottom: 0.03
  18750. }
  18751. },
  18752. },
  18753. [
  18754. {
  18755. name: "Normal",
  18756. height: math.unit(3 + 2 / 12, "feet"),
  18757. default: true
  18758. },
  18759. ]
  18760. ))
  18761. characterMakers.push(() => makeCharacter(
  18762. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18763. {
  18764. side: {
  18765. height: math.unit(1 + 9 / 12, "feet"),
  18766. weight: math.unit(38, "lb"),
  18767. name: "Side",
  18768. image: {
  18769. source: "./media/characters/michelle/side.svg",
  18770. extra: 147 / 136.7,
  18771. bottom: 0.03
  18772. }
  18773. },
  18774. },
  18775. [
  18776. {
  18777. name: "Normal",
  18778. height: math.unit(1 + 9 / 12, "feet"),
  18779. default: true
  18780. },
  18781. ]
  18782. ))
  18783. characterMakers.push(() => makeCharacter(
  18784. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18785. {
  18786. front: {
  18787. height: math.unit(1.54, "feet"),
  18788. weight: math.unit(50, "lb"),
  18789. name: "Front",
  18790. image: {
  18791. source: "./media/characters/nino/front.svg"
  18792. }
  18793. },
  18794. },
  18795. [
  18796. {
  18797. name: "Normal",
  18798. height: math.unit(1.54, "feet"),
  18799. default: true
  18800. },
  18801. ]
  18802. ))
  18803. characterMakers.push(() => makeCharacter(
  18804. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18805. {
  18806. front: {
  18807. height: math.unit(1.49, "feet"),
  18808. weight: math.unit(45, "lb"),
  18809. name: "Front",
  18810. image: {
  18811. source: "./media/characters/viola/front.svg"
  18812. }
  18813. },
  18814. },
  18815. [
  18816. {
  18817. name: "Normal",
  18818. height: math.unit(1.49, "feet"),
  18819. default: true
  18820. },
  18821. ]
  18822. ))
  18823. characterMakers.push(() => makeCharacter(
  18824. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18825. {
  18826. front: {
  18827. height: math.unit(6 + 5 / 12, "feet"),
  18828. weight: math.unit(580, "lb"),
  18829. name: "Front",
  18830. image: {
  18831. source: "./media/characters/atlas/front.svg",
  18832. extra: 298.5 / 290,
  18833. bottom: 0.015
  18834. }
  18835. },
  18836. },
  18837. [
  18838. {
  18839. name: "Normal",
  18840. height: math.unit(6 + 5 / 12, "feet"),
  18841. default: true
  18842. },
  18843. ]
  18844. ))
  18845. characterMakers.push(() => makeCharacter(
  18846. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18847. {
  18848. side: {
  18849. height: math.unit(15.6, "inches"),
  18850. weight: math.unit(10, "lb"),
  18851. name: "Side",
  18852. image: {
  18853. source: "./media/characters/davy/side.svg",
  18854. extra: 200 / 170,
  18855. bottom: 0.01
  18856. }
  18857. },
  18858. },
  18859. [
  18860. {
  18861. name: "Normal",
  18862. height: math.unit(15.6, "inches"),
  18863. default: true
  18864. },
  18865. ]
  18866. ))
  18867. characterMakers.push(() => makeCharacter(
  18868. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18869. {
  18870. side: {
  18871. height: math.unit(4 + 8 / 12, "feet"),
  18872. weight: math.unit(166, "lb"),
  18873. name: "Side",
  18874. image: {
  18875. source: "./media/characters/fiona/side.svg",
  18876. extra: 232 / 220,
  18877. bottom: 0.03
  18878. }
  18879. },
  18880. },
  18881. [
  18882. {
  18883. name: "Normal",
  18884. height: math.unit(4 + 8 / 12, "feet"),
  18885. default: true
  18886. },
  18887. ]
  18888. ))
  18889. characterMakers.push(() => makeCharacter(
  18890. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18891. {
  18892. front: {
  18893. height: math.unit(26, "inches"),
  18894. weight: math.unit(35, "lb"),
  18895. name: "Front",
  18896. image: {
  18897. source: "./media/characters/lyla/front.svg",
  18898. bottom: 0.1
  18899. }
  18900. },
  18901. },
  18902. [
  18903. {
  18904. name: "Normal",
  18905. height: math.unit(3, "feet"),
  18906. default: true
  18907. },
  18908. ]
  18909. ))
  18910. characterMakers.push(() => makeCharacter(
  18911. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18912. {
  18913. side: {
  18914. height: math.unit(1.8, "feet"),
  18915. weight: math.unit(44, "lb"),
  18916. name: "Side",
  18917. image: {
  18918. source: "./media/characters/perseus/side.svg",
  18919. bottom: 0.21
  18920. }
  18921. },
  18922. },
  18923. [
  18924. {
  18925. name: "Normal",
  18926. height: math.unit(1.8, "feet"),
  18927. default: true
  18928. },
  18929. ]
  18930. ))
  18931. characterMakers.push(() => makeCharacter(
  18932. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18933. {
  18934. side: {
  18935. height: math.unit(4 + 2 / 12, "feet"),
  18936. weight: math.unit(20, "lb"),
  18937. name: "Side",
  18938. image: {
  18939. source: "./media/characters/remus/side.svg"
  18940. }
  18941. },
  18942. },
  18943. [
  18944. {
  18945. name: "Normal",
  18946. height: math.unit(4 + 2 / 12, "feet"),
  18947. default: true
  18948. },
  18949. ]
  18950. ))
  18951. characterMakers.push(() => makeCharacter(
  18952. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18953. {
  18954. front: {
  18955. height: math.unit(4 + 11 / 12, "feet"),
  18956. weight: math.unit(114, "lb"),
  18957. name: "Front",
  18958. image: {
  18959. source: "./media/characters/raf/front.svg",
  18960. extra: 1504/1339,
  18961. bottom: 26/1530
  18962. }
  18963. },
  18964. side: {
  18965. height: math.unit(4 + 11 / 12, "feet"),
  18966. weight: math.unit(114, "lb"),
  18967. name: "Side",
  18968. image: {
  18969. source: "./media/characters/raf/side.svg",
  18970. extra: 1466/1316,
  18971. bottom: 29/1495
  18972. }
  18973. },
  18974. paw: {
  18975. height: math.unit(1.45, "feet"),
  18976. name: "Paw",
  18977. image: {
  18978. source: "./media/characters/raf/paw.svg"
  18979. },
  18980. extraAttributes: {
  18981. "toeSize": {
  18982. name: "Toe Size",
  18983. power: 2,
  18984. type: "area",
  18985. base: math.unit(0.004, "m^2")
  18986. },
  18987. "padSize": {
  18988. name: "Pad Size",
  18989. power: 2,
  18990. type: "area",
  18991. base: math.unit(0.04, "m^2")
  18992. },
  18993. "footSize": {
  18994. name: "Foot Size",
  18995. power: 2,
  18996. type: "area",
  18997. base: math.unit(0.08, "m^2")
  18998. },
  18999. }
  19000. },
  19001. },
  19002. [
  19003. {
  19004. name: "Micro",
  19005. height: math.unit(2, "inches")
  19006. },
  19007. {
  19008. name: "Normal",
  19009. height: math.unit(4 + 11 / 12, "feet"),
  19010. default: true
  19011. },
  19012. {
  19013. name: "Macro",
  19014. height: math.unit(70, "feet")
  19015. },
  19016. ]
  19017. ))
  19018. characterMakers.push(() => makeCharacter(
  19019. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19020. {
  19021. front: {
  19022. height: math.unit(1.5, "meters"),
  19023. weight: math.unit(68, "kg"),
  19024. name: "Front",
  19025. image: {
  19026. source: "./media/characters/liam-einarr/front.svg",
  19027. extra: 2822 / 2666
  19028. }
  19029. },
  19030. back: {
  19031. height: math.unit(1.5, "meters"),
  19032. weight: math.unit(68, "kg"),
  19033. name: "Back",
  19034. image: {
  19035. source: "./media/characters/liam-einarr/back.svg",
  19036. extra: 2822 / 2666,
  19037. bottom: 0.015
  19038. }
  19039. },
  19040. },
  19041. [
  19042. {
  19043. name: "Normal",
  19044. height: math.unit(1.5, "meters"),
  19045. default: true
  19046. },
  19047. {
  19048. name: "Macro",
  19049. height: math.unit(150, "meters")
  19050. },
  19051. {
  19052. name: "Megamacro",
  19053. height: math.unit(35, "km")
  19054. },
  19055. ]
  19056. ))
  19057. characterMakers.push(() => makeCharacter(
  19058. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19059. {
  19060. front: {
  19061. height: math.unit(6, "feet"),
  19062. weight: math.unit(75, "kg"),
  19063. name: "Front",
  19064. image: {
  19065. source: "./media/characters/linda/front.svg",
  19066. extra: 930 / 874,
  19067. bottom: 0.004
  19068. }
  19069. },
  19070. },
  19071. [
  19072. {
  19073. name: "Normal",
  19074. height: math.unit(6, "feet"),
  19075. default: true
  19076. },
  19077. ]
  19078. ))
  19079. characterMakers.push(() => makeCharacter(
  19080. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19081. {
  19082. front: {
  19083. height: math.unit(6 + 8 / 12, "feet"),
  19084. weight: math.unit(220, "lb"),
  19085. name: "Front",
  19086. image: {
  19087. source: "./media/characters/caylex/front.svg",
  19088. extra: 821 / 772,
  19089. bottom: 0.07
  19090. }
  19091. },
  19092. back: {
  19093. height: math.unit(6 + 8 / 12, "feet"),
  19094. weight: math.unit(220, "lb"),
  19095. name: "Back",
  19096. image: {
  19097. source: "./media/characters/caylex/back.svg",
  19098. extra: 821 / 772,
  19099. bottom: 0.022
  19100. }
  19101. },
  19102. hand: {
  19103. height: math.unit(1.25, "feet"),
  19104. name: "Hand",
  19105. image: {
  19106. source: "./media/characters/caylex/hand.svg"
  19107. }
  19108. },
  19109. foot: {
  19110. height: math.unit(1.6, "feet"),
  19111. name: "Foot",
  19112. image: {
  19113. source: "./media/characters/caylex/foot.svg"
  19114. }
  19115. },
  19116. armored: {
  19117. height: math.unit(6 + 8 / 12, "feet"),
  19118. weight: math.unit(250, "lb"),
  19119. name: "Armored",
  19120. image: {
  19121. source: "./media/characters/caylex/armored.svg",
  19122. extra: 1420 / 1310,
  19123. bottom: 0.045
  19124. }
  19125. },
  19126. },
  19127. [
  19128. {
  19129. name: "Normal",
  19130. height: math.unit(6 + 8 / 12, "feet"),
  19131. default: true
  19132. },
  19133. {
  19134. name: "Normal+",
  19135. height: math.unit(12, "feet")
  19136. },
  19137. ]
  19138. ))
  19139. characterMakers.push(() => makeCharacter(
  19140. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19141. {
  19142. front: {
  19143. height: math.unit(7 + 6 / 12, "feet"),
  19144. weight: math.unit(288, "lb"),
  19145. name: "Front",
  19146. image: {
  19147. source: "./media/characters/alana/front.svg",
  19148. extra: 679 / 653,
  19149. bottom: 22.5 / 701
  19150. }
  19151. },
  19152. },
  19153. [
  19154. {
  19155. name: "Normal",
  19156. height: math.unit(7 + 6 / 12, "feet")
  19157. },
  19158. {
  19159. name: "Large",
  19160. height: math.unit(50, "feet")
  19161. },
  19162. {
  19163. name: "Macro",
  19164. height: math.unit(100, "feet"),
  19165. default: true
  19166. },
  19167. {
  19168. name: "Macro+",
  19169. height: math.unit(200, "feet")
  19170. },
  19171. ]
  19172. ))
  19173. characterMakers.push(() => makeCharacter(
  19174. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19175. {
  19176. front: {
  19177. height: math.unit(6 + 1 / 12, "feet"),
  19178. weight: math.unit(210, "lb"),
  19179. name: "Front",
  19180. image: {
  19181. source: "./media/characters/hasani/front.svg",
  19182. extra: 244 / 232,
  19183. bottom: 0.01
  19184. }
  19185. },
  19186. back: {
  19187. height: math.unit(6 + 1 / 12, "feet"),
  19188. weight: math.unit(210, "lb"),
  19189. name: "Back",
  19190. image: {
  19191. source: "./media/characters/hasani/back.svg",
  19192. extra: 244 / 232,
  19193. bottom: 0.01
  19194. }
  19195. },
  19196. },
  19197. [
  19198. {
  19199. name: "Normal",
  19200. height: math.unit(6 + 1 / 12, "feet")
  19201. },
  19202. {
  19203. name: "Macro",
  19204. height: math.unit(175, "feet"),
  19205. default: true
  19206. },
  19207. ]
  19208. ))
  19209. characterMakers.push(() => makeCharacter(
  19210. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19211. {
  19212. front: {
  19213. height: math.unit(1.82, "meters"),
  19214. weight: math.unit(140, "lb"),
  19215. name: "Front",
  19216. image: {
  19217. source: "./media/characters/nita/front.svg",
  19218. extra: 2473 / 2363,
  19219. bottom: 0.01
  19220. }
  19221. },
  19222. },
  19223. [
  19224. {
  19225. name: "Normal",
  19226. height: math.unit(1.82, "m")
  19227. },
  19228. {
  19229. name: "Macro",
  19230. height: math.unit(300, "m")
  19231. },
  19232. {
  19233. name: "Mistake Canon",
  19234. height: math.unit(0.5, "miles"),
  19235. default: true
  19236. },
  19237. {
  19238. name: "Big Mistake",
  19239. height: math.unit(13, "miles")
  19240. },
  19241. {
  19242. name: "Playing God",
  19243. height: math.unit(2450, "miles")
  19244. },
  19245. ]
  19246. ))
  19247. characterMakers.push(() => makeCharacter(
  19248. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19249. {
  19250. front: {
  19251. height: math.unit(4, "feet"),
  19252. weight: math.unit(120, "lb"),
  19253. name: "Front",
  19254. image: {
  19255. source: "./media/characters/shiriko/front.svg",
  19256. extra: 970/934,
  19257. bottom: 5/975
  19258. }
  19259. },
  19260. },
  19261. [
  19262. {
  19263. name: "Normal",
  19264. height: math.unit(4, "feet"),
  19265. default: true
  19266. },
  19267. ]
  19268. ))
  19269. characterMakers.push(() => makeCharacter(
  19270. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19271. {
  19272. front: {
  19273. height: math.unit(6, "feet"),
  19274. name: "front",
  19275. image: {
  19276. source: "./media/characters/deja/front.svg",
  19277. extra: 926 / 840,
  19278. bottom: 0.07
  19279. }
  19280. },
  19281. },
  19282. [
  19283. {
  19284. name: "Planck Length",
  19285. height: math.unit(1.6e-35, "meters")
  19286. },
  19287. {
  19288. name: "Normal",
  19289. height: math.unit(30.48, "meters"),
  19290. default: true
  19291. },
  19292. {
  19293. name: "Universal",
  19294. height: math.unit(8.8e26, "meters")
  19295. },
  19296. ]
  19297. ))
  19298. characterMakers.push(() => makeCharacter(
  19299. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19300. {
  19301. side: {
  19302. height: math.unit(8, "feet"),
  19303. weight: math.unit(6300, "lb"),
  19304. name: "Side",
  19305. image: {
  19306. source: "./media/characters/anima/side.svg",
  19307. bottom: 0.035
  19308. }
  19309. },
  19310. },
  19311. [
  19312. {
  19313. name: "Normal",
  19314. height: math.unit(8, "feet"),
  19315. default: true
  19316. },
  19317. ]
  19318. ))
  19319. characterMakers.push(() => makeCharacter(
  19320. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19321. {
  19322. front: {
  19323. height: math.unit(8, "feet"),
  19324. weight: math.unit(350, "lb"),
  19325. name: "Front",
  19326. image: {
  19327. source: "./media/characters/bianca/front.svg",
  19328. extra: 234 / 225,
  19329. bottom: 0.03
  19330. }
  19331. },
  19332. },
  19333. [
  19334. {
  19335. name: "Normal",
  19336. height: math.unit(8, "feet"),
  19337. default: true
  19338. },
  19339. ]
  19340. ))
  19341. characterMakers.push(() => makeCharacter(
  19342. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19343. {
  19344. front: {
  19345. height: math.unit(11 + 5/12, "feet"),
  19346. weight: math.unit(1200, "lb"),
  19347. name: "Front",
  19348. image: {
  19349. source: "./media/characters/adinia/front.svg",
  19350. extra: 1767/1641,
  19351. bottom: 44/1811
  19352. },
  19353. extraAttributes: {
  19354. "energyIntake": {
  19355. name: "Energy Intake",
  19356. power: 3,
  19357. type: "energy",
  19358. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19359. },
  19360. }
  19361. },
  19362. back: {
  19363. height: math.unit(11 + 5/12, "feet"),
  19364. weight: math.unit(1200, "lb"),
  19365. name: "Back",
  19366. image: {
  19367. source: "./media/characters/adinia/back.svg",
  19368. extra: 1834/1684,
  19369. bottom: 14/1848
  19370. },
  19371. extraAttributes: {
  19372. "energyIntake": {
  19373. name: "Energy Intake",
  19374. power: 3,
  19375. type: "energy",
  19376. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19377. },
  19378. }
  19379. },
  19380. maw: {
  19381. height: math.unit(3.79, "feet"),
  19382. name: "Maw",
  19383. image: {
  19384. source: "./media/characters/adinia/maw.svg"
  19385. }
  19386. },
  19387. rump: {
  19388. height: math.unit(4.6, "feet"),
  19389. name: "Rump",
  19390. image: {
  19391. source: "./media/characters/adinia/rump.svg"
  19392. }
  19393. },
  19394. },
  19395. [
  19396. {
  19397. name: "Normal",
  19398. height: math.unit(11 + 5 / 12, "feet"),
  19399. default: true
  19400. },
  19401. ]
  19402. ))
  19403. characterMakers.push(() => makeCharacter(
  19404. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19405. {
  19406. front: {
  19407. height: math.unit(3, "meters"),
  19408. weight: math.unit(200, "kg"),
  19409. name: "Front",
  19410. image: {
  19411. source: "./media/characters/lykasa/front.svg",
  19412. extra: 1076 / 976,
  19413. bottom: 0.06
  19414. }
  19415. },
  19416. },
  19417. [
  19418. {
  19419. name: "Normal",
  19420. height: math.unit(3, "meters")
  19421. },
  19422. {
  19423. name: "Kaiju",
  19424. height: math.unit(120, "meters"),
  19425. default: true
  19426. },
  19427. {
  19428. name: "Mega Kaiju",
  19429. height: math.unit(240, "km")
  19430. },
  19431. {
  19432. name: "Giga Kaiju",
  19433. height: math.unit(400, "megameters")
  19434. },
  19435. {
  19436. name: "Tera Kaiju",
  19437. height: math.unit(800, "gigameters")
  19438. },
  19439. {
  19440. name: "Kaiju Dragon Goddess",
  19441. height: math.unit(26, "zettaparsecs")
  19442. },
  19443. ]
  19444. ))
  19445. characterMakers.push(() => makeCharacter(
  19446. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19447. {
  19448. side: {
  19449. height: math.unit(283 / 124 * 6, "feet"),
  19450. weight: math.unit(35000, "lb"),
  19451. name: "Side",
  19452. image: {
  19453. source: "./media/characters/malfaren/side.svg",
  19454. extra: 1310/529,
  19455. bottom: 24/1334
  19456. }
  19457. },
  19458. front: {
  19459. height: math.unit(22.36, "feet"),
  19460. weight: math.unit(35000, "lb"),
  19461. name: "Front",
  19462. image: {
  19463. source: "./media/characters/malfaren/front.svg",
  19464. extra: 1237/1115,
  19465. bottom: 32/1269
  19466. }
  19467. },
  19468. maw: {
  19469. height: math.unit(6.9, "feet"),
  19470. name: "Maw",
  19471. image: {
  19472. source: "./media/characters/malfaren/maw.svg"
  19473. }
  19474. },
  19475. dick: {
  19476. height: math.unit(6.19, "feet"),
  19477. name: "Dick",
  19478. image: {
  19479. source: "./media/characters/malfaren/dick.svg"
  19480. }
  19481. },
  19482. eye: {
  19483. height: math.unit(0.69, "feet"),
  19484. name: "Eye",
  19485. image: {
  19486. source: "./media/characters/malfaren/eye.svg"
  19487. }
  19488. },
  19489. },
  19490. [
  19491. {
  19492. name: "Big",
  19493. height: math.unit(283 / 162 * 6, "feet"),
  19494. },
  19495. {
  19496. name: "Bigger",
  19497. height: math.unit(283 / 124 * 6, "feet")
  19498. },
  19499. {
  19500. name: "Massive",
  19501. height: math.unit(283 / 92 * 6, "feet"),
  19502. default: true
  19503. },
  19504. {
  19505. name: "👀💦",
  19506. height: math.unit(283 / 73 * 6, "feet"),
  19507. },
  19508. ]
  19509. ))
  19510. characterMakers.push(() => makeCharacter(
  19511. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19512. {
  19513. front: {
  19514. height: math.unit(1.7, "m"),
  19515. weight: math.unit(70, "kg"),
  19516. name: "Front",
  19517. image: {
  19518. source: "./media/characters/kernel/front.svg",
  19519. extra: 222 / 210,
  19520. bottom: 0.007
  19521. }
  19522. },
  19523. },
  19524. [
  19525. {
  19526. name: "Nano",
  19527. height: math.unit(17, "micrometers")
  19528. },
  19529. {
  19530. name: "Micro",
  19531. height: math.unit(1.7, "mm")
  19532. },
  19533. {
  19534. name: "Small",
  19535. height: math.unit(1.7, "cm")
  19536. },
  19537. {
  19538. name: "Normal",
  19539. height: math.unit(1.7, "m"),
  19540. default: true
  19541. },
  19542. ]
  19543. ))
  19544. characterMakers.push(() => makeCharacter(
  19545. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19546. {
  19547. front: {
  19548. height: math.unit(1.75, "meters"),
  19549. weight: math.unit(65, "kg"),
  19550. name: "Front",
  19551. image: {
  19552. source: "./media/characters/jayne-folest/front.svg",
  19553. extra: 2115 / 2007,
  19554. bottom: 0.02
  19555. }
  19556. },
  19557. back: {
  19558. height: math.unit(1.75, "meters"),
  19559. weight: math.unit(65, "kg"),
  19560. name: "Back",
  19561. image: {
  19562. source: "./media/characters/jayne-folest/back.svg",
  19563. extra: 2115 / 2007,
  19564. bottom: 0.005
  19565. }
  19566. },
  19567. frontClothed: {
  19568. height: math.unit(1.75, "meters"),
  19569. weight: math.unit(65, "kg"),
  19570. name: "Front (Clothed)",
  19571. image: {
  19572. source: "./media/characters/jayne-folest/front-clothed.svg",
  19573. extra: 2115 / 2007,
  19574. bottom: 0.035
  19575. }
  19576. },
  19577. hand: {
  19578. height: math.unit(1 / 1.260, "feet"),
  19579. name: "Hand",
  19580. image: {
  19581. source: "./media/characters/jayne-folest/hand.svg"
  19582. }
  19583. },
  19584. foot: {
  19585. height: math.unit(1 / 0.918, "feet"),
  19586. name: "Foot",
  19587. image: {
  19588. source: "./media/characters/jayne-folest/foot.svg"
  19589. }
  19590. },
  19591. },
  19592. [
  19593. {
  19594. name: "Micro",
  19595. height: math.unit(4, "cm")
  19596. },
  19597. {
  19598. name: "Normal",
  19599. height: math.unit(1.75, "meters")
  19600. },
  19601. {
  19602. name: "Macro",
  19603. height: math.unit(47.5, "meters"),
  19604. default: true
  19605. },
  19606. ]
  19607. ))
  19608. characterMakers.push(() => makeCharacter(
  19609. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19610. {
  19611. front: {
  19612. height: math.unit(180, "cm"),
  19613. weight: math.unit(70, "kg"),
  19614. name: "Front",
  19615. image: {
  19616. source: "./media/characters/algier/front.svg",
  19617. extra: 596 / 572,
  19618. bottom: 0.04
  19619. }
  19620. },
  19621. back: {
  19622. height: math.unit(180, "cm"),
  19623. weight: math.unit(70, "kg"),
  19624. name: "Back",
  19625. image: {
  19626. source: "./media/characters/algier/back.svg",
  19627. extra: 596 / 572,
  19628. bottom: 0.025
  19629. }
  19630. },
  19631. frontdressed: {
  19632. height: math.unit(180, "cm"),
  19633. weight: math.unit(150, "kg"),
  19634. name: "Front-dressed",
  19635. image: {
  19636. source: "./media/characters/algier/front-dressed.svg",
  19637. extra: 596 / 572,
  19638. bottom: 0.038
  19639. }
  19640. },
  19641. },
  19642. [
  19643. {
  19644. name: "Micro",
  19645. height: math.unit(5, "cm")
  19646. },
  19647. {
  19648. name: "Normal",
  19649. height: math.unit(180, "cm"),
  19650. default: true
  19651. },
  19652. {
  19653. name: "Macro",
  19654. height: math.unit(64, "m")
  19655. },
  19656. ]
  19657. ))
  19658. characterMakers.push(() => makeCharacter(
  19659. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19660. {
  19661. upright: {
  19662. height: math.unit(7, "feet"),
  19663. weight: math.unit(300, "lb"),
  19664. name: "Upright",
  19665. image: {
  19666. source: "./media/characters/pretzel/upright.svg",
  19667. extra: 534 / 522,
  19668. bottom: 0.065
  19669. }
  19670. },
  19671. sprawling: {
  19672. height: math.unit(3.75, "feet"),
  19673. weight: math.unit(300, "lb"),
  19674. name: "Sprawling",
  19675. image: {
  19676. source: "./media/characters/pretzel/sprawling.svg",
  19677. extra: 314 / 281,
  19678. bottom: 0.1
  19679. }
  19680. },
  19681. tongue: {
  19682. height: math.unit(2, "feet"),
  19683. name: "Tongue",
  19684. image: {
  19685. source: "./media/characters/pretzel/tongue.svg"
  19686. }
  19687. },
  19688. },
  19689. [
  19690. {
  19691. name: "Normal",
  19692. height: math.unit(7, "feet"),
  19693. default: true
  19694. },
  19695. {
  19696. name: "Oversized",
  19697. height: math.unit(15, "feet")
  19698. },
  19699. {
  19700. name: "Huge",
  19701. height: math.unit(30, "feet")
  19702. },
  19703. {
  19704. name: "Macro",
  19705. height: math.unit(250, "feet")
  19706. },
  19707. ]
  19708. ))
  19709. characterMakers.push(() => makeCharacter(
  19710. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19711. {
  19712. sideFront: {
  19713. height: math.unit(5 + 2 / 12, "feet"),
  19714. weight: math.unit(120, "lb"),
  19715. name: "Front Side",
  19716. image: {
  19717. source: "./media/characters/roxi/side-front.svg",
  19718. extra: 2924 / 2717,
  19719. bottom: 0.08
  19720. }
  19721. },
  19722. sideBack: {
  19723. height: math.unit(5 + 2 / 12, "feet"),
  19724. weight: math.unit(120, "lb"),
  19725. name: "Back Side",
  19726. image: {
  19727. source: "./media/characters/roxi/side-back.svg",
  19728. extra: 2904 / 2693,
  19729. bottom: 0.06
  19730. }
  19731. },
  19732. front: {
  19733. height: math.unit(5 + 2 / 12, "feet"),
  19734. weight: math.unit(120, "lb"),
  19735. name: "Front",
  19736. image: {
  19737. source: "./media/characters/roxi/front.svg",
  19738. extra: 2028 / 1907,
  19739. bottom: 0.01
  19740. }
  19741. },
  19742. frontAlt: {
  19743. height: math.unit(5 + 2 / 12, "feet"),
  19744. weight: math.unit(120, "lb"),
  19745. name: "Front (Alt)",
  19746. image: {
  19747. source: "./media/characters/roxi/front-alt.svg",
  19748. extra: 1828 / 1798,
  19749. bottom: 0.01
  19750. }
  19751. },
  19752. sitting: {
  19753. height: math.unit(2.8, "feet"),
  19754. weight: math.unit(120, "lb"),
  19755. name: "Sitting",
  19756. image: {
  19757. source: "./media/characters/roxi/sitting.svg",
  19758. extra: 2660 / 2462,
  19759. bottom: 0.1
  19760. }
  19761. },
  19762. },
  19763. [
  19764. {
  19765. name: "Normal",
  19766. height: math.unit(5 + 2 / 12, "feet"),
  19767. default: true
  19768. },
  19769. ]
  19770. ))
  19771. characterMakers.push(() => makeCharacter(
  19772. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19773. {
  19774. side: {
  19775. height: math.unit(55, "feet"),
  19776. weight: math.unit(153, "tons"),
  19777. name: "Side",
  19778. image: {
  19779. source: "./media/characters/shadow/side.svg",
  19780. extra: 701 / 628,
  19781. bottom: 0.02
  19782. }
  19783. },
  19784. flying: {
  19785. height: math.unit(145, "feet"),
  19786. weight: math.unit(153, "tons"),
  19787. name: "Flying",
  19788. image: {
  19789. source: "./media/characters/shadow/flying.svg"
  19790. }
  19791. },
  19792. },
  19793. [
  19794. {
  19795. name: "Normal",
  19796. height: math.unit(55, "feet"),
  19797. default: true
  19798. },
  19799. ]
  19800. ))
  19801. characterMakers.push(() => makeCharacter(
  19802. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19803. {
  19804. front: {
  19805. height: math.unit(6, "feet"),
  19806. weight: math.unit(200, "lb"),
  19807. name: "Front",
  19808. image: {
  19809. source: "./media/characters/marcie/front.svg",
  19810. extra: 960 / 876,
  19811. bottom: 58 / 1017.87
  19812. }
  19813. },
  19814. },
  19815. [
  19816. {
  19817. name: "Macro",
  19818. height: math.unit(1, "mile"),
  19819. default: true
  19820. },
  19821. ]
  19822. ))
  19823. characterMakers.push(() => makeCharacter(
  19824. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19825. {
  19826. front: {
  19827. height: math.unit(7, "feet"),
  19828. weight: math.unit(200, "lb"),
  19829. name: "Front",
  19830. image: {
  19831. source: "./media/characters/kachina/front.svg",
  19832. extra: 1290.68 / 1119,
  19833. bottom: 36.5 / 1327.18
  19834. }
  19835. },
  19836. },
  19837. [
  19838. {
  19839. name: "Normal",
  19840. height: math.unit(7, "feet"),
  19841. default: true
  19842. },
  19843. ]
  19844. ))
  19845. characterMakers.push(() => makeCharacter(
  19846. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19847. {
  19848. looking: {
  19849. height: math.unit(2, "meters"),
  19850. weight: math.unit(300, "kg"),
  19851. name: "Looking",
  19852. image: {
  19853. source: "./media/characters/kash/looking.svg",
  19854. extra: 474 / 344,
  19855. bottom: 0.03
  19856. }
  19857. },
  19858. side: {
  19859. height: math.unit(2, "meters"),
  19860. weight: math.unit(300, "kg"),
  19861. name: "Side",
  19862. image: {
  19863. source: "./media/characters/kash/side.svg",
  19864. extra: 302 / 251,
  19865. bottom: 0.03
  19866. }
  19867. },
  19868. front: {
  19869. height: math.unit(2, "meters"),
  19870. weight: math.unit(300, "kg"),
  19871. name: "Front",
  19872. image: {
  19873. source: "./media/characters/kash/front.svg",
  19874. extra: 495 / 360,
  19875. bottom: 0.015
  19876. }
  19877. },
  19878. },
  19879. [
  19880. {
  19881. name: "Normal",
  19882. height: math.unit(2, "meters"),
  19883. default: true
  19884. },
  19885. {
  19886. name: "Big",
  19887. height: math.unit(3, "meters")
  19888. },
  19889. {
  19890. name: "Large",
  19891. height: math.unit(5, "meters")
  19892. },
  19893. ]
  19894. ))
  19895. characterMakers.push(() => makeCharacter(
  19896. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19897. {
  19898. feeding: {
  19899. height: math.unit(6.7, "feet"),
  19900. weight: math.unit(350, "lb"),
  19901. name: "Feeding",
  19902. image: {
  19903. source: "./media/characters/lalim/feeding.svg",
  19904. }
  19905. },
  19906. },
  19907. [
  19908. {
  19909. name: "Normal",
  19910. height: math.unit(6.7, "feet"),
  19911. default: true
  19912. },
  19913. ]
  19914. ))
  19915. characterMakers.push(() => makeCharacter(
  19916. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19917. {
  19918. front: {
  19919. height: math.unit(9.5, "feet"),
  19920. weight: math.unit(600, "lb"),
  19921. name: "Front",
  19922. image: {
  19923. source: "./media/characters/de'vout/front.svg",
  19924. extra: 1443 / 1328,
  19925. bottom: 0.025
  19926. }
  19927. },
  19928. back: {
  19929. height: math.unit(9.5, "feet"),
  19930. weight: math.unit(600, "lb"),
  19931. name: "Back",
  19932. image: {
  19933. source: "./media/characters/de'vout/back.svg",
  19934. extra: 1443 / 1328
  19935. }
  19936. },
  19937. frontDressed: {
  19938. height: math.unit(9.5, "feet"),
  19939. weight: math.unit(600, "lb"),
  19940. name: "Front (Dressed",
  19941. image: {
  19942. source: "./media/characters/de'vout/front-dressed.svg",
  19943. extra: 1443 / 1328,
  19944. bottom: 0.025
  19945. }
  19946. },
  19947. backDressed: {
  19948. height: math.unit(9.5, "feet"),
  19949. weight: math.unit(600, "lb"),
  19950. name: "Back (Dressed",
  19951. image: {
  19952. source: "./media/characters/de'vout/back-dressed.svg",
  19953. extra: 1443 / 1328
  19954. }
  19955. },
  19956. },
  19957. [
  19958. {
  19959. name: "Normal",
  19960. height: math.unit(9.5, "feet"),
  19961. default: true
  19962. },
  19963. ]
  19964. ))
  19965. characterMakers.push(() => makeCharacter(
  19966. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19967. {
  19968. front: {
  19969. height: math.unit(8, "feet"),
  19970. weight: math.unit(225, "lb"),
  19971. name: "Front",
  19972. image: {
  19973. source: "./media/characters/talana/front.svg",
  19974. extra: 1410 / 1300,
  19975. bottom: 0.015
  19976. }
  19977. },
  19978. frontDressed: {
  19979. height: math.unit(8, "feet"),
  19980. weight: math.unit(225, "lb"),
  19981. name: "Front (Dressed",
  19982. image: {
  19983. source: "./media/characters/talana/front-dressed.svg",
  19984. extra: 1410 / 1300,
  19985. bottom: 0.015
  19986. }
  19987. },
  19988. },
  19989. [
  19990. {
  19991. name: "Normal",
  19992. height: math.unit(8, "feet"),
  19993. default: true
  19994. },
  19995. ]
  19996. ))
  19997. characterMakers.push(() => makeCharacter(
  19998. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19999. {
  20000. side: {
  20001. height: math.unit(7.2, "feet"),
  20002. weight: math.unit(150, "lb"),
  20003. name: "Side",
  20004. image: {
  20005. source: "./media/characters/xeauvok/side.svg",
  20006. extra: 1975 / 1523,
  20007. bottom: 0.07
  20008. }
  20009. },
  20010. },
  20011. [
  20012. {
  20013. name: "Normal",
  20014. height: math.unit(7.2, "feet"),
  20015. default: true
  20016. },
  20017. ]
  20018. ))
  20019. characterMakers.push(() => makeCharacter(
  20020. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20021. {
  20022. side: {
  20023. height: math.unit(4, "meters"),
  20024. weight: math.unit(2200, "kg"),
  20025. name: "Side",
  20026. image: {
  20027. source: "./media/characters/zara/side.svg",
  20028. extra: 765/744,
  20029. bottom: 156/921
  20030. }
  20031. },
  20032. },
  20033. [
  20034. {
  20035. name: "Normal",
  20036. height: math.unit(4, "meters"),
  20037. default: true
  20038. },
  20039. ]
  20040. ))
  20041. characterMakers.push(() => makeCharacter(
  20042. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20043. {
  20044. side: {
  20045. height: math.unit(6, "feet"),
  20046. weight: math.unit(150, "lb"),
  20047. name: "Side",
  20048. image: {
  20049. source: "./media/characters/richard-dragon/side.svg",
  20050. extra: 845 / 340,
  20051. bottom: 0.017
  20052. }
  20053. },
  20054. maw: {
  20055. height: math.unit(2.97, "feet"),
  20056. name: "Maw",
  20057. image: {
  20058. source: "./media/characters/richard-dragon/maw.svg"
  20059. }
  20060. },
  20061. },
  20062. [
  20063. ]
  20064. ))
  20065. characterMakers.push(() => makeCharacter(
  20066. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20067. {
  20068. front: {
  20069. height: math.unit(4, "feet"),
  20070. weight: math.unit(100, "lb"),
  20071. name: "Front",
  20072. image: {
  20073. source: "./media/characters/richard-smeargle/front.svg",
  20074. extra: 2952 / 2820,
  20075. bottom: 0.028
  20076. }
  20077. },
  20078. },
  20079. [
  20080. {
  20081. name: "Normal",
  20082. height: math.unit(4, "feet"),
  20083. default: true
  20084. },
  20085. {
  20086. name: "Dynamax",
  20087. height: math.unit(20, "meters")
  20088. },
  20089. ]
  20090. ))
  20091. characterMakers.push(() => makeCharacter(
  20092. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20093. {
  20094. front: {
  20095. height: math.unit(6, "feet"),
  20096. weight: math.unit(110, "lb"),
  20097. name: "Front",
  20098. image: {
  20099. source: "./media/characters/klay/front.svg",
  20100. extra: 962 / 883,
  20101. bottom: 0.04
  20102. }
  20103. },
  20104. back: {
  20105. height: math.unit(6, "feet"),
  20106. weight: math.unit(110, "lb"),
  20107. name: "Back",
  20108. image: {
  20109. source: "./media/characters/klay/back.svg",
  20110. extra: 962 / 883
  20111. }
  20112. },
  20113. beans: {
  20114. height: math.unit(1.15, "feet"),
  20115. name: "Beans",
  20116. image: {
  20117. source: "./media/characters/klay/beans.svg"
  20118. }
  20119. },
  20120. },
  20121. [
  20122. {
  20123. name: "Micro",
  20124. height: math.unit(6, "inches")
  20125. },
  20126. {
  20127. name: "Mini",
  20128. height: math.unit(3, "feet")
  20129. },
  20130. {
  20131. name: "Normal",
  20132. height: math.unit(6, "feet"),
  20133. default: true
  20134. },
  20135. {
  20136. name: "Big",
  20137. height: math.unit(25, "feet")
  20138. },
  20139. {
  20140. name: "Macro",
  20141. height: math.unit(100, "feet")
  20142. },
  20143. {
  20144. name: "Megamacro",
  20145. height: math.unit(400, "feet")
  20146. },
  20147. ]
  20148. ))
  20149. characterMakers.push(() => makeCharacter(
  20150. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20151. {
  20152. front: {
  20153. height: math.unit(6, "feet"),
  20154. weight: math.unit(160, "lb"),
  20155. name: "Front",
  20156. image: {
  20157. source: "./media/characters/marcus/front.svg",
  20158. extra: 734 / 676,
  20159. bottom: 0.03
  20160. }
  20161. },
  20162. },
  20163. [
  20164. {
  20165. name: "Little",
  20166. height: math.unit(6, "feet")
  20167. },
  20168. {
  20169. name: "Normal",
  20170. height: math.unit(110, "feet"),
  20171. default: true
  20172. },
  20173. {
  20174. name: "Macro",
  20175. height: math.unit(250, "feet")
  20176. },
  20177. {
  20178. name: "Megamacro",
  20179. height: math.unit(1000, "feet")
  20180. },
  20181. ]
  20182. ))
  20183. characterMakers.push(() => makeCharacter(
  20184. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20185. {
  20186. front: {
  20187. height: math.unit(7, "feet"),
  20188. weight: math.unit(275, "lb"),
  20189. name: "Front",
  20190. image: {
  20191. source: "./media/characters/claude-delroute/front.svg",
  20192. extra: 902/827,
  20193. bottom: 26/928
  20194. }
  20195. },
  20196. side: {
  20197. height: math.unit(7, "feet"),
  20198. weight: math.unit(275, "lb"),
  20199. name: "Side",
  20200. image: {
  20201. source: "./media/characters/claude-delroute/side.svg",
  20202. extra: 908/853,
  20203. bottom: 16/924
  20204. }
  20205. },
  20206. back: {
  20207. height: math.unit(7, "feet"),
  20208. weight: math.unit(275, "lb"),
  20209. name: "Back",
  20210. image: {
  20211. source: "./media/characters/claude-delroute/back.svg",
  20212. extra: 911/829,
  20213. bottom: 18/929
  20214. }
  20215. },
  20216. maw: {
  20217. height: math.unit(0.6407, "meters"),
  20218. name: "Maw",
  20219. image: {
  20220. source: "./media/characters/claude-delroute/maw.svg"
  20221. }
  20222. },
  20223. },
  20224. [
  20225. {
  20226. name: "Normal",
  20227. height: math.unit(7, "feet"),
  20228. default: true
  20229. },
  20230. {
  20231. name: "Lorge",
  20232. height: math.unit(20, "feet")
  20233. },
  20234. ]
  20235. ))
  20236. characterMakers.push(() => makeCharacter(
  20237. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20238. {
  20239. front: {
  20240. height: math.unit(8 + 4 / 12, "feet"),
  20241. weight: math.unit(600, "lb"),
  20242. name: "Front",
  20243. image: {
  20244. source: "./media/characters/dragonien/front.svg",
  20245. extra: 100 / 94,
  20246. bottom: 3.3 / 103.3445
  20247. }
  20248. },
  20249. back: {
  20250. height: math.unit(8 + 4 / 12, "feet"),
  20251. weight: math.unit(600, "lb"),
  20252. name: "Back",
  20253. image: {
  20254. source: "./media/characters/dragonien/back.svg",
  20255. extra: 776 / 746,
  20256. bottom: 6.4 / 782.0616
  20257. }
  20258. },
  20259. foot: {
  20260. height: math.unit(1.54, "feet"),
  20261. name: "Foot",
  20262. image: {
  20263. source: "./media/characters/dragonien/foot.svg",
  20264. }
  20265. },
  20266. },
  20267. [
  20268. {
  20269. name: "Normal",
  20270. height: math.unit(8 + 4 / 12, "feet"),
  20271. default: true
  20272. },
  20273. {
  20274. name: "Macro",
  20275. height: math.unit(200, "feet")
  20276. },
  20277. {
  20278. name: "Megamacro",
  20279. height: math.unit(1, "mile")
  20280. },
  20281. {
  20282. name: "Gigamacro",
  20283. height: math.unit(1000, "miles")
  20284. },
  20285. ]
  20286. ))
  20287. characterMakers.push(() => makeCharacter(
  20288. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20289. {
  20290. front: {
  20291. height: math.unit(5 + 2 / 12, "feet"),
  20292. weight: math.unit(110, "lb"),
  20293. name: "Front",
  20294. image: {
  20295. source: "./media/characters/desta/front.svg",
  20296. extra: 767 / 726,
  20297. bottom: 11.7 / 779
  20298. }
  20299. },
  20300. back: {
  20301. height: math.unit(5 + 2 / 12, "feet"),
  20302. weight: math.unit(110, "lb"),
  20303. name: "Back",
  20304. image: {
  20305. source: "./media/characters/desta/back.svg",
  20306. extra: 777 / 728,
  20307. bottom: 6 / 784
  20308. }
  20309. },
  20310. frontAlt: {
  20311. height: math.unit(5 + 2 / 12, "feet"),
  20312. weight: math.unit(110, "lb"),
  20313. name: "Front",
  20314. image: {
  20315. source: "./media/characters/desta/front-alt.svg",
  20316. extra: 1482 / 1417
  20317. }
  20318. },
  20319. side: {
  20320. height: math.unit(5 + 2 / 12, "feet"),
  20321. weight: math.unit(110, "lb"),
  20322. name: "Side",
  20323. image: {
  20324. source: "./media/characters/desta/side.svg",
  20325. extra: 2579 / 2491,
  20326. bottom: 0.053
  20327. }
  20328. },
  20329. },
  20330. [
  20331. {
  20332. name: "Micro",
  20333. height: math.unit(6, "inches")
  20334. },
  20335. {
  20336. name: "Normal",
  20337. height: math.unit(5 + 2 / 12, "feet"),
  20338. default: true
  20339. },
  20340. {
  20341. name: "Macro",
  20342. height: math.unit(62, "feet")
  20343. },
  20344. {
  20345. name: "Megamacro",
  20346. height: math.unit(1800, "feet")
  20347. },
  20348. ]
  20349. ))
  20350. characterMakers.push(() => makeCharacter(
  20351. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20352. {
  20353. front: {
  20354. height: math.unit(10, "feet"),
  20355. weight: math.unit(700, "lb"),
  20356. name: "Front",
  20357. image: {
  20358. source: "./media/characters/storm-alystar/front.svg",
  20359. extra: 2112 / 1898,
  20360. bottom: 0.034
  20361. }
  20362. },
  20363. },
  20364. [
  20365. {
  20366. name: "Micro",
  20367. height: math.unit(3.5, "inches")
  20368. },
  20369. {
  20370. name: "Normal",
  20371. height: math.unit(10, "feet"),
  20372. default: true
  20373. },
  20374. {
  20375. name: "Macro",
  20376. height: math.unit(400, "feet")
  20377. },
  20378. {
  20379. name: "Deific",
  20380. height: math.unit(60, "miles")
  20381. },
  20382. ]
  20383. ))
  20384. characterMakers.push(() => makeCharacter(
  20385. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20386. {
  20387. front: {
  20388. height: math.unit(2.35, "meters"),
  20389. weight: math.unit(119, "kg"),
  20390. name: "Front",
  20391. image: {
  20392. source: "./media/characters/ilia/front.svg",
  20393. extra: 1285 / 1255,
  20394. bottom: 0.06
  20395. }
  20396. },
  20397. },
  20398. [
  20399. {
  20400. name: "Normal",
  20401. height: math.unit(2.35, "meters")
  20402. },
  20403. {
  20404. name: "Macro",
  20405. height: math.unit(140, "meters"),
  20406. default: true
  20407. },
  20408. {
  20409. name: "Megamacro",
  20410. height: math.unit(100, "miles")
  20411. },
  20412. ]
  20413. ))
  20414. characterMakers.push(() => makeCharacter(
  20415. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20416. {
  20417. front: {
  20418. height: math.unit(6 + 5 / 12, "feet"),
  20419. weight: math.unit(190, "lb"),
  20420. name: "Front",
  20421. image: {
  20422. source: "./media/characters/kingdead/front.svg",
  20423. extra: 1228 / 1177
  20424. }
  20425. },
  20426. },
  20427. [
  20428. {
  20429. name: "Micro",
  20430. height: math.unit(7, "inches")
  20431. },
  20432. {
  20433. name: "Normal",
  20434. height: math.unit(6 + 5 / 12, "feet")
  20435. },
  20436. {
  20437. name: "Macro",
  20438. height: math.unit(150, "feet"),
  20439. default: true
  20440. },
  20441. {
  20442. name: "Megamacro",
  20443. height: math.unit(200, "miles")
  20444. },
  20445. ]
  20446. ))
  20447. characterMakers.push(() => makeCharacter(
  20448. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20449. {
  20450. front: {
  20451. height: math.unit(8, "feet"),
  20452. weight: math.unit(600, "lb"),
  20453. name: "Front",
  20454. image: {
  20455. source: "./media/characters/kyrehx/front.svg",
  20456. extra: 1195 / 1095,
  20457. bottom: 0.034
  20458. }
  20459. },
  20460. },
  20461. [
  20462. {
  20463. name: "Micro",
  20464. height: math.unit(2, "inches")
  20465. },
  20466. {
  20467. name: "Normal",
  20468. height: math.unit(8, "feet"),
  20469. default: true
  20470. },
  20471. {
  20472. name: "Macro",
  20473. height: math.unit(255, "feet")
  20474. },
  20475. ]
  20476. ))
  20477. characterMakers.push(() => makeCharacter(
  20478. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20479. {
  20480. front: {
  20481. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20482. weight: math.unit(184, "lb"),
  20483. name: "Front",
  20484. image: {
  20485. source: "./media/characters/xang/front.svg",
  20486. extra: 845 / 755
  20487. }
  20488. },
  20489. },
  20490. [
  20491. {
  20492. name: "Normal",
  20493. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20494. default: true
  20495. },
  20496. {
  20497. name: "Macro",
  20498. height: math.unit(0.935 * 146, "feet")
  20499. },
  20500. {
  20501. name: "Megamacro",
  20502. height: math.unit(0.935 * 3, "miles")
  20503. },
  20504. ]
  20505. ))
  20506. characterMakers.push(() => makeCharacter(
  20507. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20508. {
  20509. frontDressed: {
  20510. height: math.unit(5 + 7 / 12, "feet"),
  20511. weight: math.unit(140, "lb"),
  20512. name: "Front (Dressed)",
  20513. image: {
  20514. source: "./media/characters/doc-weardno/front-dressed.svg",
  20515. extra: 263 / 234
  20516. }
  20517. },
  20518. backDressed: {
  20519. height: math.unit(5 + 7 / 12, "feet"),
  20520. weight: math.unit(140, "lb"),
  20521. name: "Back (Dressed)",
  20522. image: {
  20523. source: "./media/characters/doc-weardno/back-dressed.svg",
  20524. extra: 266 / 238
  20525. }
  20526. },
  20527. front: {
  20528. height: math.unit(5 + 7 / 12, "feet"),
  20529. weight: math.unit(140, "lb"),
  20530. name: "Front",
  20531. image: {
  20532. source: "./media/characters/doc-weardno/front.svg",
  20533. extra: 254 / 233
  20534. }
  20535. },
  20536. },
  20537. [
  20538. {
  20539. name: "Micro",
  20540. height: math.unit(3, "inches")
  20541. },
  20542. {
  20543. name: "Normal",
  20544. height: math.unit(5 + 7 / 12, "feet"),
  20545. default: true
  20546. },
  20547. {
  20548. name: "Macro",
  20549. height: math.unit(25, "feet")
  20550. },
  20551. {
  20552. name: "Megamacro",
  20553. height: math.unit(2, "miles")
  20554. },
  20555. ]
  20556. ))
  20557. characterMakers.push(() => makeCharacter(
  20558. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20559. {
  20560. front: {
  20561. height: math.unit(6 + 2 / 12, "feet"),
  20562. weight: math.unit(153, "lb"),
  20563. name: "Front",
  20564. image: {
  20565. source: "./media/characters/seth-whilst/front.svg",
  20566. bottom: 0.07
  20567. }
  20568. },
  20569. },
  20570. [
  20571. {
  20572. name: "Micro",
  20573. height: math.unit(5, "inches")
  20574. },
  20575. {
  20576. name: "Normal",
  20577. height: math.unit(6 + 2 / 12, "feet"),
  20578. default: true
  20579. },
  20580. ]
  20581. ))
  20582. characterMakers.push(() => makeCharacter(
  20583. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20584. {
  20585. front: {
  20586. height: math.unit(3, "inches"),
  20587. weight: math.unit(8, "grams"),
  20588. name: "Front",
  20589. image: {
  20590. source: "./media/characters/pocket-jabari/front.svg",
  20591. extra: 1024 / 974,
  20592. bottom: 0.039
  20593. }
  20594. },
  20595. },
  20596. [
  20597. {
  20598. name: "Minimicro",
  20599. height: math.unit(8, "mm")
  20600. },
  20601. {
  20602. name: "Micro",
  20603. height: math.unit(3, "inches"),
  20604. default: true
  20605. },
  20606. {
  20607. name: "Normal",
  20608. height: math.unit(3, "feet")
  20609. },
  20610. ]
  20611. ))
  20612. characterMakers.push(() => makeCharacter(
  20613. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20614. {
  20615. frontDressed: {
  20616. height: math.unit(15, "feet"),
  20617. weight: math.unit(3280, "lb"),
  20618. name: "Front (Dressed)",
  20619. image: {
  20620. source: "./media/characters/sapphy/front-dressed.svg",
  20621. extra: 1951/1654,
  20622. bottom: 194/2145
  20623. },
  20624. form: "anthro",
  20625. default: true
  20626. },
  20627. backDressed: {
  20628. height: math.unit(15, "feet"),
  20629. weight: math.unit(3280, "lb"),
  20630. name: "Back (Dressed)",
  20631. image: {
  20632. source: "./media/characters/sapphy/back-dressed.svg",
  20633. extra: 2058/1918,
  20634. bottom: 125/2183
  20635. },
  20636. form: "anthro"
  20637. },
  20638. frontNude: {
  20639. height: math.unit(15, "feet"),
  20640. weight: math.unit(3280, "lb"),
  20641. name: "Front (Nude)",
  20642. image: {
  20643. source: "./media/characters/sapphy/front-nude.svg",
  20644. extra: 1951/1654,
  20645. bottom: 194/2145
  20646. },
  20647. form: "anthro"
  20648. },
  20649. backNude: {
  20650. height: math.unit(15, "feet"),
  20651. weight: math.unit(3280, "lb"),
  20652. name: "Back (Nude)",
  20653. image: {
  20654. source: "./media/characters/sapphy/back-nude.svg",
  20655. extra: 2058/1918,
  20656. bottom: 125/2183
  20657. },
  20658. form: "anthro"
  20659. },
  20660. full: {
  20661. height: math.unit(15, "feet"),
  20662. weight: math.unit(3280, "lb"),
  20663. name: "Full",
  20664. image: {
  20665. source: "./media/characters/sapphy/full.svg",
  20666. extra: 1396/1317,
  20667. bottom: 44/1440
  20668. },
  20669. form: "anthro"
  20670. },
  20671. dick: {
  20672. height: math.unit(3.8, "feet"),
  20673. name: "Dick",
  20674. image: {
  20675. source: "./media/characters/sapphy/dick.svg"
  20676. },
  20677. form: "anthro"
  20678. },
  20679. feral: {
  20680. height: math.unit(35, "feet"),
  20681. weight: math.unit(160, "tons"),
  20682. name: "Feral",
  20683. image: {
  20684. source: "./media/characters/sapphy/feral.svg",
  20685. extra: 1050/573,
  20686. bottom: 60/1110
  20687. },
  20688. form: "feral",
  20689. default: true
  20690. },
  20691. },
  20692. [
  20693. {
  20694. name: "Normal",
  20695. height: math.unit(15, "feet"),
  20696. form: "anthro"
  20697. },
  20698. {
  20699. name: "Casual Macro",
  20700. height: math.unit(120, "feet"),
  20701. form: "anthro"
  20702. },
  20703. {
  20704. name: "Macro",
  20705. height: math.unit(2150, "feet"),
  20706. default: true,
  20707. form: "anthro"
  20708. },
  20709. {
  20710. name: "Megamacro",
  20711. height: math.unit(8, "miles"),
  20712. form: "anthro"
  20713. },
  20714. {
  20715. name: "Galaxy Mom",
  20716. height: math.unit(6, "megalightyears"),
  20717. form: "anthro"
  20718. },
  20719. {
  20720. name: "Normal",
  20721. height: math.unit(35, "feet"),
  20722. form: "feral",
  20723. default: true
  20724. },
  20725. {
  20726. name: "Macro",
  20727. height: math.unit(300, "feet"),
  20728. form: "feral"
  20729. },
  20730. {
  20731. name: "Galaxy Mom",
  20732. height: math.unit(10, "megalightyears"),
  20733. form: "feral"
  20734. },
  20735. ],
  20736. {
  20737. "anthro": {
  20738. name: "Anthro",
  20739. default: true
  20740. },
  20741. "feral": {
  20742. name: "Feral"
  20743. }
  20744. }
  20745. ))
  20746. characterMakers.push(() => makeCharacter(
  20747. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20748. {
  20749. hyenaFront: {
  20750. height: math.unit(6, "feet"),
  20751. weight: math.unit(190, "lb"),
  20752. name: "Front",
  20753. image: {
  20754. source: "./media/characters/kiro/hyena-front.svg",
  20755. extra: 927/839,
  20756. bottom: 91/1018
  20757. },
  20758. form: "hyena",
  20759. default: true
  20760. },
  20761. front: {
  20762. height: math.unit(6, "feet"),
  20763. weight: math.unit(170, "lb"),
  20764. name: "Front",
  20765. image: {
  20766. source: "./media/characters/kiro/front.svg",
  20767. extra: 1064 / 1012,
  20768. bottom: 0.052
  20769. },
  20770. form: "folf",
  20771. default: true
  20772. },
  20773. },
  20774. [
  20775. {
  20776. name: "Micro",
  20777. height: math.unit(6, "inches"),
  20778. form: "folf"
  20779. },
  20780. {
  20781. name: "Normal",
  20782. height: math.unit(6, "feet"),
  20783. form: "folf",
  20784. default: true
  20785. },
  20786. {
  20787. name: "Macro",
  20788. height: math.unit(72, "feet"),
  20789. form: "folf"
  20790. },
  20791. {
  20792. name: "Micro",
  20793. height: math.unit(6, "inches"),
  20794. form: "hyena"
  20795. },
  20796. {
  20797. name: "Normal",
  20798. height: math.unit(6, "feet"),
  20799. form: "hyena",
  20800. default: true
  20801. },
  20802. {
  20803. name: "Macro",
  20804. height: math.unit(72, "feet"),
  20805. form: "hyena"
  20806. },
  20807. ],
  20808. {
  20809. "hyena": {
  20810. name: "Hyena",
  20811. default: true
  20812. },
  20813. "folf": {
  20814. name: "Folf",
  20815. },
  20816. }
  20817. ))
  20818. characterMakers.push(() => makeCharacter(
  20819. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20820. {
  20821. front: {
  20822. height: math.unit(5 + 9 / 12, "feet"),
  20823. weight: math.unit(175, "lb"),
  20824. name: "Front",
  20825. image: {
  20826. source: "./media/characters/irishfox/front.svg",
  20827. extra: 1912 / 1680,
  20828. bottom: 0.02
  20829. }
  20830. },
  20831. },
  20832. [
  20833. {
  20834. name: "Nano",
  20835. height: math.unit(1, "mm")
  20836. },
  20837. {
  20838. name: "Micro",
  20839. height: math.unit(2, "inches")
  20840. },
  20841. {
  20842. name: "Normal",
  20843. height: math.unit(5 + 9 / 12, "feet"),
  20844. default: true
  20845. },
  20846. {
  20847. name: "Macro",
  20848. height: math.unit(45, "feet")
  20849. },
  20850. ]
  20851. ))
  20852. characterMakers.push(() => makeCharacter(
  20853. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20854. {
  20855. front: {
  20856. height: math.unit(6 + 1 / 12, "feet"),
  20857. weight: math.unit(75, "lb"),
  20858. name: "Front",
  20859. image: {
  20860. source: "./media/characters/aronai-sieyes/front.svg",
  20861. extra: 1532/1450,
  20862. bottom: 42/1574
  20863. }
  20864. },
  20865. side: {
  20866. height: math.unit(6 + 1 / 12, "feet"),
  20867. weight: math.unit(75, "lb"),
  20868. name: "Side",
  20869. image: {
  20870. source: "./media/characters/aronai-sieyes/side.svg",
  20871. extra: 1422/1365,
  20872. bottom: 148/1570
  20873. }
  20874. },
  20875. back: {
  20876. height: math.unit(6 + 1 / 12, "feet"),
  20877. weight: math.unit(75, "lb"),
  20878. name: "Back",
  20879. image: {
  20880. source: "./media/characters/aronai-sieyes/back.svg",
  20881. extra: 1526/1464,
  20882. bottom: 51/1577
  20883. }
  20884. },
  20885. dressed: {
  20886. height: math.unit(6 + 1 / 12, "feet"),
  20887. weight: math.unit(75, "lb"),
  20888. name: "Dressed",
  20889. image: {
  20890. source: "./media/characters/aronai-sieyes/dressed.svg",
  20891. extra: 1559/1483,
  20892. bottom: 39/1598
  20893. }
  20894. },
  20895. slit: {
  20896. height: math.unit(1.3, "feet"),
  20897. name: "Slit",
  20898. image: {
  20899. source: "./media/characters/aronai-sieyes/slit.svg"
  20900. }
  20901. },
  20902. slitSpread: {
  20903. height: math.unit(0.9, "feet"),
  20904. name: "Slit (Spread)",
  20905. image: {
  20906. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20907. }
  20908. },
  20909. rump: {
  20910. height: math.unit(1.3, "feet"),
  20911. name: "Rump",
  20912. image: {
  20913. source: "./media/characters/aronai-sieyes/rump.svg"
  20914. }
  20915. },
  20916. maw: {
  20917. height: math.unit(1.25, "feet"),
  20918. name: "Maw",
  20919. image: {
  20920. source: "./media/characters/aronai-sieyes/maw.svg"
  20921. }
  20922. },
  20923. feral: {
  20924. height: math.unit(18, "feet"),
  20925. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20926. name: "Feral",
  20927. image: {
  20928. source: "./media/characters/aronai-sieyes/feral.svg",
  20929. extra: 1530 / 1240,
  20930. bottom: 0.035
  20931. }
  20932. },
  20933. },
  20934. [
  20935. {
  20936. name: "Micro",
  20937. height: math.unit(2, "inches")
  20938. },
  20939. {
  20940. name: "Normal",
  20941. height: math.unit(6 + 1 / 12, "feet"),
  20942. default: true
  20943. }
  20944. ]
  20945. ))
  20946. characterMakers.push(() => makeCharacter(
  20947. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20948. {
  20949. front: {
  20950. height: math.unit(12, "feet"),
  20951. weight: math.unit(410, "kg"),
  20952. name: "Front",
  20953. image: {
  20954. source: "./media/characters/xuna/front.svg",
  20955. extra: 2184 / 1980
  20956. }
  20957. },
  20958. side: {
  20959. height: math.unit(12, "feet"),
  20960. weight: math.unit(410, "kg"),
  20961. name: "Side",
  20962. image: {
  20963. source: "./media/characters/xuna/side.svg",
  20964. extra: 2184 / 1980
  20965. }
  20966. },
  20967. back: {
  20968. height: math.unit(12, "feet"),
  20969. weight: math.unit(410, "kg"),
  20970. name: "Back",
  20971. image: {
  20972. source: "./media/characters/xuna/back.svg",
  20973. extra: 2184 / 1980
  20974. }
  20975. },
  20976. },
  20977. [
  20978. {
  20979. name: "Nano glow",
  20980. height: math.unit(10, "nm")
  20981. },
  20982. {
  20983. name: "Micro floof",
  20984. height: math.unit(0.3, "m")
  20985. },
  20986. {
  20987. name: "Huggable softy boi",
  20988. height: math.unit(3.6576, "m"),
  20989. default: true
  20990. },
  20991. {
  20992. name: "Admirable floof",
  20993. height: math.unit(80, "meters")
  20994. },
  20995. {
  20996. name: "Gentle macro",
  20997. height: math.unit(300, "meters")
  20998. },
  20999. {
  21000. name: "Very careful floof",
  21001. height: math.unit(3200, "meters")
  21002. },
  21003. {
  21004. name: "The mega floof",
  21005. height: math.unit(36000, "meters")
  21006. },
  21007. {
  21008. name: "Giga-fur-Wicker",
  21009. height: math.unit(4800000, "meters")
  21010. },
  21011. {
  21012. name: "Licky world",
  21013. height: math.unit(20000000, "meters")
  21014. },
  21015. {
  21016. name: "Floofy cyan sun",
  21017. height: math.unit(1500000000, "meters")
  21018. },
  21019. {
  21020. name: "Milky Wicker",
  21021. height: math.unit(1000000000000000000000, "meters")
  21022. },
  21023. {
  21024. name: "The observing Wicker",
  21025. height: math.unit(999999999999999999999999999, "meters")
  21026. },
  21027. ]
  21028. ))
  21029. characterMakers.push(() => makeCharacter(
  21030. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21031. {
  21032. front: {
  21033. height: math.unit(5 + 9 / 12, "feet"),
  21034. weight: math.unit(150, "lb"),
  21035. name: "Front",
  21036. image: {
  21037. source: "./media/characters/arokha-sieyes/front.svg",
  21038. extra: 1425 / 1284,
  21039. bottom: 0.05
  21040. }
  21041. },
  21042. },
  21043. [
  21044. {
  21045. name: "Normal",
  21046. height: math.unit(5 + 9 / 12, "feet")
  21047. },
  21048. {
  21049. name: "Macro",
  21050. height: math.unit(30, "meters"),
  21051. default: true
  21052. },
  21053. ]
  21054. ))
  21055. characterMakers.push(() => makeCharacter(
  21056. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21057. {
  21058. front: {
  21059. height: math.unit(6, "feet"),
  21060. weight: math.unit(180, "lb"),
  21061. name: "Front",
  21062. image: {
  21063. source: "./media/characters/arokh-sieyes/front.svg",
  21064. extra: 1830 / 1769,
  21065. bottom: 0.01
  21066. }
  21067. },
  21068. },
  21069. [
  21070. {
  21071. name: "Normal",
  21072. height: math.unit(6, "feet")
  21073. },
  21074. {
  21075. name: "Macro",
  21076. height: math.unit(30, "meters"),
  21077. default: true
  21078. },
  21079. ]
  21080. ))
  21081. characterMakers.push(() => makeCharacter(
  21082. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21083. {
  21084. side: {
  21085. height: math.unit(13 + 1 / 12, "feet"),
  21086. weight: math.unit(8.5, "tonnes"),
  21087. preyCapacity: math.unit(36, "people"),
  21088. name: "Side",
  21089. image: {
  21090. source: "./media/characters/goldeneye/side.svg",
  21091. extra: 1139/741,
  21092. bottom: 98/1237
  21093. }
  21094. },
  21095. front: {
  21096. height: math.unit(5.1, "feet"),
  21097. weight: math.unit(8.5, "tonnes"),
  21098. preyCapacity: math.unit(36, "people"),
  21099. name: "Front",
  21100. image: {
  21101. source: "./media/characters/goldeneye/front.svg",
  21102. extra: 635/365,
  21103. bottom: 598/1233
  21104. }
  21105. },
  21106. maw: {
  21107. height: math.unit(6.6, "feet"),
  21108. name: "Maw",
  21109. image: {
  21110. source: "./media/characters/goldeneye/maw.svg"
  21111. }
  21112. },
  21113. headFront: {
  21114. height: math.unit(8, "feet"),
  21115. name: "Head (Front)",
  21116. image: {
  21117. source: "./media/characters/goldeneye/head-front.svg"
  21118. }
  21119. },
  21120. headSide: {
  21121. height: math.unit(6, "feet"),
  21122. name: "Head (Side)",
  21123. image: {
  21124. source: "./media/characters/goldeneye/head-side.svg"
  21125. }
  21126. },
  21127. headBack: {
  21128. height: math.unit(8, "feet"),
  21129. name: "Head (Back)",
  21130. image: {
  21131. source: "./media/characters/goldeneye/head-back.svg"
  21132. }
  21133. },
  21134. paw: {
  21135. height: math.unit(3.4, "feet"),
  21136. name: "Paw",
  21137. image: {
  21138. source: "./media/characters/goldeneye/paw.svg"
  21139. }
  21140. },
  21141. toering: {
  21142. height: math.unit(0.45, "feet"),
  21143. name: "Toering",
  21144. image: {
  21145. source: "./media/characters/goldeneye/toering.svg"
  21146. }
  21147. },
  21148. eyes: {
  21149. height: math.unit(0.5, "feet"),
  21150. name: "Eyes",
  21151. image: {
  21152. source: "./media/characters/goldeneye/eyes.svg"
  21153. }
  21154. },
  21155. },
  21156. [
  21157. {
  21158. name: "Normal",
  21159. height: math.unit(13 + 1 / 12, "feet"),
  21160. default: true
  21161. },
  21162. ]
  21163. ))
  21164. characterMakers.push(() => makeCharacter(
  21165. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21166. {
  21167. front: {
  21168. height: math.unit(6 + 1 / 12, "feet"),
  21169. weight: math.unit(210, "lb"),
  21170. name: "Front",
  21171. image: {
  21172. source: "./media/characters/leonardo-lycheborne/front.svg",
  21173. extra: 776/723,
  21174. bottom: 34/810
  21175. }
  21176. },
  21177. side: {
  21178. height: math.unit(6 + 1 / 12, "feet"),
  21179. weight: math.unit(210, "lb"),
  21180. name: "Side",
  21181. image: {
  21182. source: "./media/characters/leonardo-lycheborne/side.svg",
  21183. extra: 780/728,
  21184. bottom: 12/792
  21185. }
  21186. },
  21187. back: {
  21188. height: math.unit(6 + 1 / 12, "feet"),
  21189. weight: math.unit(210, "lb"),
  21190. name: "Back",
  21191. image: {
  21192. source: "./media/characters/leonardo-lycheborne/back.svg",
  21193. extra: 775/721,
  21194. bottom: 17/792
  21195. }
  21196. },
  21197. hand: {
  21198. height: math.unit(1.08, "feet"),
  21199. name: "Hand",
  21200. image: {
  21201. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21202. }
  21203. },
  21204. foot: {
  21205. height: math.unit(1.32, "feet"),
  21206. name: "Foot",
  21207. image: {
  21208. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21209. }
  21210. },
  21211. maw: {
  21212. height: math.unit(1, "feet"),
  21213. name: "Maw",
  21214. image: {
  21215. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21216. }
  21217. },
  21218. were: {
  21219. height: math.unit(20, "feet"),
  21220. weight: math.unit(7800, "lb"),
  21221. name: "Were",
  21222. image: {
  21223. source: "./media/characters/leonardo-lycheborne/were.svg",
  21224. extra: 1224/1165,
  21225. bottom: 72/1296
  21226. }
  21227. },
  21228. feral: {
  21229. height: math.unit(7.5, "feet"),
  21230. weight: math.unit(600, "lb"),
  21231. name: "Feral",
  21232. image: {
  21233. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21234. extra: 797/702,
  21235. bottom: 139/936
  21236. }
  21237. },
  21238. taur: {
  21239. height: math.unit(11, "feet"),
  21240. weight: math.unit(3300, "lb"),
  21241. name: "Taur",
  21242. image: {
  21243. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21244. extra: 1271/1197,
  21245. bottom: 47/1318
  21246. }
  21247. },
  21248. barghest: {
  21249. height: math.unit(11, "feet"),
  21250. weight: math.unit(1300, "lb"),
  21251. name: "Barghest",
  21252. image: {
  21253. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21254. extra: 1291/1204,
  21255. bottom: 37/1328
  21256. }
  21257. },
  21258. dick: {
  21259. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21260. name: "Dick",
  21261. image: {
  21262. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21263. }
  21264. },
  21265. dickWere: {
  21266. height: math.unit((20) / 3.8, "feet"),
  21267. name: "Dick (Were)",
  21268. image: {
  21269. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21270. }
  21271. },
  21272. },
  21273. [
  21274. {
  21275. name: "Normal",
  21276. height: math.unit(6 + 1 / 12, "feet"),
  21277. default: true
  21278. },
  21279. ]
  21280. ))
  21281. characterMakers.push(() => makeCharacter(
  21282. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21283. {
  21284. front: {
  21285. height: math.unit(10, "feet"),
  21286. weight: math.unit(350, "lb"),
  21287. name: "Front",
  21288. image: {
  21289. source: "./media/characters/jet/front.svg",
  21290. extra: 2050 / 1980,
  21291. bottom: 0.013
  21292. }
  21293. },
  21294. back: {
  21295. height: math.unit(10, "feet"),
  21296. weight: math.unit(350, "lb"),
  21297. name: "Back",
  21298. image: {
  21299. source: "./media/characters/jet/back.svg",
  21300. extra: 2050 / 1980,
  21301. bottom: 0.013
  21302. }
  21303. },
  21304. },
  21305. [
  21306. {
  21307. name: "Micro",
  21308. height: math.unit(6, "inches")
  21309. },
  21310. {
  21311. name: "Normal",
  21312. height: math.unit(10, "feet"),
  21313. default: true
  21314. },
  21315. {
  21316. name: "Macro",
  21317. height: math.unit(100, "feet")
  21318. },
  21319. ]
  21320. ))
  21321. characterMakers.push(() => makeCharacter(
  21322. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21323. {
  21324. front: {
  21325. height: math.unit(15, "feet"),
  21326. weight: math.unit(2800, "lb"),
  21327. name: "Front",
  21328. image: {
  21329. source: "./media/characters/tanarath/front.svg",
  21330. extra: 2392 / 2220,
  21331. bottom: 0.03
  21332. }
  21333. },
  21334. back: {
  21335. height: math.unit(15, "feet"),
  21336. weight: math.unit(2800, "lb"),
  21337. name: "Back",
  21338. image: {
  21339. source: "./media/characters/tanarath/back.svg",
  21340. extra: 2392 / 2220,
  21341. bottom: 0.03
  21342. }
  21343. },
  21344. },
  21345. [
  21346. {
  21347. name: "Normal",
  21348. height: math.unit(15, "feet"),
  21349. default: true
  21350. },
  21351. ]
  21352. ))
  21353. characterMakers.push(() => makeCharacter(
  21354. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21355. {
  21356. front: {
  21357. height: math.unit(7 + 1 / 12, "feet"),
  21358. weight: math.unit(175, "lb"),
  21359. name: "Front",
  21360. image: {
  21361. source: "./media/characters/patty-cattybatty/front.svg",
  21362. extra: 908 / 874,
  21363. bottom: 0.025
  21364. }
  21365. },
  21366. },
  21367. [
  21368. {
  21369. name: "Micro",
  21370. height: math.unit(1, "inch")
  21371. },
  21372. {
  21373. name: "Normal",
  21374. height: math.unit(7 + 1 / 12, "feet")
  21375. },
  21376. {
  21377. name: "Mini Macro",
  21378. height: math.unit(155, "feet")
  21379. },
  21380. {
  21381. name: "Macro",
  21382. height: math.unit(1077, "feet")
  21383. },
  21384. {
  21385. name: "Mega Macro",
  21386. height: math.unit(47650, "feet"),
  21387. default: true
  21388. },
  21389. {
  21390. name: "Giga Macro",
  21391. height: math.unit(440, "miles")
  21392. },
  21393. {
  21394. name: "Tera Macro",
  21395. height: math.unit(8700, "miles")
  21396. },
  21397. {
  21398. name: "Planetary Macro",
  21399. height: math.unit(32700, "miles")
  21400. },
  21401. {
  21402. name: "Solar Macro",
  21403. height: math.unit(550000, "miles")
  21404. },
  21405. {
  21406. name: "Celestial Macro",
  21407. height: math.unit(2.5, "AU")
  21408. },
  21409. ]
  21410. ))
  21411. characterMakers.push(() => makeCharacter(
  21412. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21413. {
  21414. front: {
  21415. height: math.unit(4 + 5 / 12, "feet"),
  21416. weight: math.unit(90, "lb"),
  21417. name: "Front",
  21418. image: {
  21419. source: "./media/characters/cappu/front.svg",
  21420. extra: 1247 / 1152,
  21421. bottom: 0.012
  21422. }
  21423. },
  21424. },
  21425. [
  21426. {
  21427. name: "Normal",
  21428. height: math.unit(4 + 5 / 12, "feet"),
  21429. default: true
  21430. },
  21431. ]
  21432. ))
  21433. characterMakers.push(() => makeCharacter(
  21434. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21435. {
  21436. frontDressed: {
  21437. height: math.unit(70, "cm"),
  21438. weight: math.unit(6, "kg"),
  21439. name: "Front (Dressed)",
  21440. image: {
  21441. source: "./media/characters/sebi/front-dressed.svg",
  21442. extra: 713.5 / 686.5,
  21443. bottom: 0.003
  21444. }
  21445. },
  21446. front: {
  21447. height: math.unit(70, "cm"),
  21448. weight: math.unit(5, "kg"),
  21449. name: "Front",
  21450. image: {
  21451. source: "./media/characters/sebi/front.svg",
  21452. extra: 713.5 / 686.5,
  21453. bottom: 0.003
  21454. }
  21455. }
  21456. },
  21457. [
  21458. {
  21459. name: "Normal",
  21460. height: math.unit(70, "cm"),
  21461. default: true
  21462. },
  21463. {
  21464. name: "Macro",
  21465. height: math.unit(8, "meters")
  21466. },
  21467. ]
  21468. ))
  21469. characterMakers.push(() => makeCharacter(
  21470. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21471. {
  21472. front: {
  21473. height: math.unit(6, "feet"),
  21474. weight: math.unit(150, "lb"),
  21475. name: "Front",
  21476. image: {
  21477. source: "./media/characters/typhek/front.svg",
  21478. extra: 1948 / 1929,
  21479. bottom: 0.025
  21480. }
  21481. },
  21482. side: {
  21483. height: math.unit(6, "feet"),
  21484. weight: math.unit(150, "lb"),
  21485. name: "Side",
  21486. image: {
  21487. source: "./media/characters/typhek/side.svg",
  21488. extra: 2034 / 2010,
  21489. bottom: 0.003
  21490. }
  21491. },
  21492. back: {
  21493. height: math.unit(6, "feet"),
  21494. weight: math.unit(150, "lb"),
  21495. name: "Back",
  21496. image: {
  21497. source: "./media/characters/typhek/back.svg",
  21498. extra: 2005 / 1978,
  21499. bottom: 0.004
  21500. }
  21501. },
  21502. palm: {
  21503. height: math.unit(1.2, "feet"),
  21504. name: "Palm",
  21505. image: {
  21506. source: "./media/characters/typhek/palm.svg"
  21507. }
  21508. },
  21509. fist: {
  21510. height: math.unit(1.1, "feet"),
  21511. name: "Fist",
  21512. image: {
  21513. source: "./media/characters/typhek/fist.svg"
  21514. }
  21515. },
  21516. foot: {
  21517. height: math.unit(1.57, "feet"),
  21518. name: "Foot",
  21519. image: {
  21520. source: "./media/characters/typhek/foot.svg"
  21521. }
  21522. },
  21523. sole: {
  21524. height: math.unit(2.05, "feet"),
  21525. name: "Sole",
  21526. image: {
  21527. source: "./media/characters/typhek/sole.svg"
  21528. }
  21529. },
  21530. },
  21531. [
  21532. {
  21533. name: "Macro",
  21534. height: math.unit(40, "stories"),
  21535. default: true
  21536. },
  21537. {
  21538. name: "Megamacro",
  21539. height: math.unit(1, "mile")
  21540. },
  21541. {
  21542. name: "Gigamacro",
  21543. height: math.unit(4000, "solarradii")
  21544. },
  21545. {
  21546. name: "Universal",
  21547. height: math.unit(1.1, "universes")
  21548. }
  21549. ]
  21550. ))
  21551. characterMakers.push(() => makeCharacter(
  21552. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21553. {
  21554. side: {
  21555. height: math.unit(5 + 7 / 12, "feet"),
  21556. weight: math.unit(150, "lb"),
  21557. name: "Side",
  21558. image: {
  21559. source: "./media/characters/kassy/side.svg",
  21560. extra: 1280 / 1225,
  21561. bottom: 0.002
  21562. }
  21563. },
  21564. front: {
  21565. height: math.unit(5 + 7 / 12, "feet"),
  21566. weight: math.unit(150, "lb"),
  21567. name: "Front",
  21568. image: {
  21569. source: "./media/characters/kassy/front.svg",
  21570. extra: 1280 / 1225,
  21571. bottom: 0.025
  21572. }
  21573. },
  21574. back: {
  21575. height: math.unit(5 + 7 / 12, "feet"),
  21576. weight: math.unit(150, "lb"),
  21577. name: "Back",
  21578. image: {
  21579. source: "./media/characters/kassy/back.svg",
  21580. extra: 1280 / 1225,
  21581. bottom: 0.002
  21582. }
  21583. },
  21584. foot: {
  21585. height: math.unit(1.266, "feet"),
  21586. name: "Foot",
  21587. image: {
  21588. source: "./media/characters/kassy/foot.svg"
  21589. }
  21590. },
  21591. },
  21592. [
  21593. {
  21594. name: "Normal",
  21595. height: math.unit(5 + 7 / 12, "feet")
  21596. },
  21597. {
  21598. name: "Macro",
  21599. height: math.unit(137, "feet"),
  21600. default: true
  21601. },
  21602. {
  21603. name: "Megamacro",
  21604. height: math.unit(1, "mile")
  21605. },
  21606. ]
  21607. ))
  21608. characterMakers.push(() => makeCharacter(
  21609. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21610. {
  21611. front: {
  21612. height: math.unit(6 + 1 / 12, "feet"),
  21613. weight: math.unit(200, "lb"),
  21614. name: "Front",
  21615. image: {
  21616. source: "./media/characters/neil/front.svg",
  21617. extra: 1326 / 1250,
  21618. bottom: 0.023
  21619. }
  21620. },
  21621. },
  21622. [
  21623. {
  21624. name: "Normal",
  21625. height: math.unit(6 + 1 / 12, "feet"),
  21626. default: true
  21627. },
  21628. {
  21629. name: "Macro",
  21630. height: math.unit(200, "feet")
  21631. },
  21632. ]
  21633. ))
  21634. characterMakers.push(() => makeCharacter(
  21635. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21636. {
  21637. front: {
  21638. height: math.unit(5 + 9 / 12, "feet"),
  21639. weight: math.unit(190, "lb"),
  21640. name: "Front",
  21641. image: {
  21642. source: "./media/characters/atticus/front.svg",
  21643. extra: 2934 / 2785,
  21644. bottom: 0.025
  21645. }
  21646. },
  21647. },
  21648. [
  21649. {
  21650. name: "Normal",
  21651. height: math.unit(5 + 9 / 12, "feet"),
  21652. default: true
  21653. },
  21654. {
  21655. name: "Macro",
  21656. height: math.unit(180, "feet")
  21657. },
  21658. ]
  21659. ))
  21660. characterMakers.push(() => makeCharacter(
  21661. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21662. {
  21663. side: {
  21664. height: math.unit(9, "feet"),
  21665. weight: math.unit(650, "lb"),
  21666. name: "Side",
  21667. image: {
  21668. source: "./media/characters/milo/side.svg",
  21669. extra: 2644 / 2310,
  21670. bottom: 0.032
  21671. }
  21672. },
  21673. },
  21674. [
  21675. {
  21676. name: "Normal",
  21677. height: math.unit(9, "feet"),
  21678. default: true
  21679. },
  21680. {
  21681. name: "Macro",
  21682. height: math.unit(300, "feet")
  21683. },
  21684. ]
  21685. ))
  21686. characterMakers.push(() => makeCharacter(
  21687. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21688. {
  21689. side: {
  21690. height: math.unit(8, "meters"),
  21691. weight: math.unit(90000, "kg"),
  21692. name: "Side",
  21693. image: {
  21694. source: "./media/characters/ijzer/side.svg",
  21695. extra: 2756 / 1600,
  21696. bottom: 0.01
  21697. }
  21698. },
  21699. },
  21700. [
  21701. {
  21702. name: "Small",
  21703. height: math.unit(3, "meters")
  21704. },
  21705. {
  21706. name: "Normal",
  21707. height: math.unit(8, "meters"),
  21708. default: true
  21709. },
  21710. {
  21711. name: "Normal+",
  21712. height: math.unit(10, "meters")
  21713. },
  21714. {
  21715. name: "Bigger",
  21716. height: math.unit(24, "meters")
  21717. },
  21718. {
  21719. name: "Huge",
  21720. height: math.unit(80, "meters")
  21721. },
  21722. ]
  21723. ))
  21724. characterMakers.push(() => makeCharacter(
  21725. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21726. {
  21727. front: {
  21728. height: math.unit(6 + 2 / 12, "feet"),
  21729. weight: math.unit(153, "lb"),
  21730. name: "Front",
  21731. image: {
  21732. source: "./media/characters/luca-cervicum/front.svg",
  21733. extra: 370 / 327,
  21734. bottom: 0.015
  21735. }
  21736. },
  21737. back: {
  21738. height: math.unit(6 + 2 / 12, "feet"),
  21739. weight: math.unit(153, "lb"),
  21740. name: "Back",
  21741. image: {
  21742. source: "./media/characters/luca-cervicum/back.svg",
  21743. extra: 367 / 333,
  21744. bottom: 0.005
  21745. }
  21746. },
  21747. frontGear: {
  21748. height: math.unit(6 + 2 / 12, "feet"),
  21749. weight: math.unit(173, "lb"),
  21750. name: "Front (Gear)",
  21751. image: {
  21752. source: "./media/characters/luca-cervicum/front-gear.svg",
  21753. extra: 377 / 333,
  21754. bottom: 0.006
  21755. }
  21756. },
  21757. },
  21758. [
  21759. {
  21760. name: "Normal",
  21761. height: math.unit(6 + 2 / 12, "feet"),
  21762. default: true
  21763. },
  21764. ]
  21765. ))
  21766. characterMakers.push(() => makeCharacter(
  21767. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21768. {
  21769. front: {
  21770. height: math.unit(6 + 1 / 12, "feet"),
  21771. weight: math.unit(304, "lb"),
  21772. name: "Front",
  21773. image: {
  21774. source: "./media/characters/oliver/front.svg",
  21775. extra: 157 / 143,
  21776. bottom: 0.08
  21777. }
  21778. },
  21779. },
  21780. [
  21781. {
  21782. name: "Normal",
  21783. height: math.unit(6 + 1 / 12, "feet"),
  21784. default: true
  21785. },
  21786. ]
  21787. ))
  21788. characterMakers.push(() => makeCharacter(
  21789. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21790. {
  21791. front: {
  21792. height: math.unit(5 + 7 / 12, "feet"),
  21793. weight: math.unit(140, "lb"),
  21794. name: "Front",
  21795. image: {
  21796. source: "./media/characters/shane/front.svg",
  21797. extra: 304 / 289,
  21798. bottom: 0.005
  21799. }
  21800. },
  21801. },
  21802. [
  21803. {
  21804. name: "Normal",
  21805. height: math.unit(5 + 7 / 12, "feet"),
  21806. default: true
  21807. },
  21808. ]
  21809. ))
  21810. characterMakers.push(() => makeCharacter(
  21811. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21812. {
  21813. front: {
  21814. height: math.unit(5 + 9 / 12, "feet"),
  21815. weight: math.unit(178, "lb"),
  21816. name: "Front",
  21817. image: {
  21818. source: "./media/characters/shin/front.svg",
  21819. extra: 159 / 151,
  21820. bottom: 0.015
  21821. }
  21822. },
  21823. },
  21824. [
  21825. {
  21826. name: "Normal",
  21827. height: math.unit(5 + 9 / 12, "feet"),
  21828. default: true
  21829. },
  21830. ]
  21831. ))
  21832. characterMakers.push(() => makeCharacter(
  21833. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21834. {
  21835. front: {
  21836. height: math.unit(5 + 10 / 12, "feet"),
  21837. weight: math.unit(168, "lb"),
  21838. name: "Front",
  21839. image: {
  21840. source: "./media/characters/xerxes/front.svg",
  21841. extra: 282 / 260,
  21842. bottom: 0.045
  21843. }
  21844. },
  21845. },
  21846. [
  21847. {
  21848. name: "Normal",
  21849. height: math.unit(5 + 10 / 12, "feet"),
  21850. default: true
  21851. },
  21852. ]
  21853. ))
  21854. characterMakers.push(() => makeCharacter(
  21855. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21856. {
  21857. front: {
  21858. height: math.unit(6 + 7 / 12, "feet"),
  21859. weight: math.unit(208, "lb"),
  21860. name: "Front",
  21861. image: {
  21862. source: "./media/characters/chaska/front.svg",
  21863. extra: 332 / 319,
  21864. bottom: 0.015
  21865. }
  21866. },
  21867. },
  21868. [
  21869. {
  21870. name: "Normal",
  21871. height: math.unit(6 + 7 / 12, "feet"),
  21872. default: true
  21873. },
  21874. ]
  21875. ))
  21876. characterMakers.push(() => makeCharacter(
  21877. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21878. {
  21879. front: {
  21880. height: math.unit(5 + 8 / 12, "feet"),
  21881. weight: math.unit(208, "lb"),
  21882. name: "Front",
  21883. image: {
  21884. source: "./media/characters/enuk/front.svg",
  21885. extra: 437 / 406,
  21886. bottom: 0.02
  21887. }
  21888. },
  21889. },
  21890. [
  21891. {
  21892. name: "Normal",
  21893. height: math.unit(5 + 8 / 12, "feet"),
  21894. default: true
  21895. },
  21896. ]
  21897. ))
  21898. characterMakers.push(() => makeCharacter(
  21899. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21900. {
  21901. front: {
  21902. height: math.unit(5 + 10 / 12, "feet"),
  21903. weight: math.unit(252, "lb"),
  21904. name: "Front",
  21905. image: {
  21906. source: "./media/characters/bruun/front.svg",
  21907. extra: 197 / 187,
  21908. bottom: 0.012
  21909. }
  21910. },
  21911. },
  21912. [
  21913. {
  21914. name: "Normal",
  21915. height: math.unit(5 + 10 / 12, "feet"),
  21916. default: true
  21917. },
  21918. ]
  21919. ))
  21920. characterMakers.push(() => makeCharacter(
  21921. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21922. {
  21923. front: {
  21924. height: math.unit(6 + 10 / 12, "feet"),
  21925. weight: math.unit(255, "lb"),
  21926. name: "Front",
  21927. image: {
  21928. source: "./media/characters/alexeev/front.svg",
  21929. extra: 213 / 200,
  21930. bottom: 0.05
  21931. }
  21932. },
  21933. },
  21934. [
  21935. {
  21936. name: "Normal",
  21937. height: math.unit(6 + 10 / 12, "feet"),
  21938. default: true
  21939. },
  21940. ]
  21941. ))
  21942. characterMakers.push(() => makeCharacter(
  21943. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21944. {
  21945. front: {
  21946. height: math.unit(2 + 8 / 12, "feet"),
  21947. weight: math.unit(22, "lb"),
  21948. name: "Front",
  21949. image: {
  21950. source: "./media/characters/evelyn/front.svg",
  21951. extra: 208 / 180
  21952. }
  21953. },
  21954. },
  21955. [
  21956. {
  21957. name: "Normal",
  21958. height: math.unit(2 + 8 / 12, "feet"),
  21959. default: true
  21960. },
  21961. ]
  21962. ))
  21963. characterMakers.push(() => makeCharacter(
  21964. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21965. {
  21966. front: {
  21967. height: math.unit(5 + 9 / 12, "feet"),
  21968. weight: math.unit(139, "lb"),
  21969. name: "Front",
  21970. image: {
  21971. source: "./media/characters/inca/front.svg",
  21972. extra: 294 / 291,
  21973. bottom: 0.03
  21974. }
  21975. },
  21976. },
  21977. [
  21978. {
  21979. name: "Normal",
  21980. height: math.unit(5 + 9 / 12, "feet"),
  21981. default: true
  21982. },
  21983. ]
  21984. ))
  21985. characterMakers.push(() => makeCharacter(
  21986. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21987. {
  21988. front: {
  21989. height: math.unit(6 + 3 / 12, "feet"),
  21990. weight: math.unit(185, "lb"),
  21991. name: "Front",
  21992. image: {
  21993. source: "./media/characters/mera/front.svg",
  21994. extra: 291 / 277,
  21995. bottom: 0.03
  21996. }
  21997. },
  21998. },
  21999. [
  22000. {
  22001. name: "Normal",
  22002. height: math.unit(6 + 3 / 12, "feet"),
  22003. default: true
  22004. },
  22005. ]
  22006. ))
  22007. characterMakers.push(() => makeCharacter(
  22008. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22009. {
  22010. front: {
  22011. height: math.unit(6 + 7 / 12, "feet"),
  22012. weight: math.unit(160, "lb"),
  22013. name: "Front",
  22014. image: {
  22015. source: "./media/characters/ceres/front.svg",
  22016. extra: 1023 / 950,
  22017. bottom: 0.027
  22018. }
  22019. },
  22020. back: {
  22021. height: math.unit(6 + 7 / 12, "feet"),
  22022. weight: math.unit(160, "lb"),
  22023. name: "Back",
  22024. image: {
  22025. source: "./media/characters/ceres/back.svg",
  22026. extra: 1023 / 950
  22027. }
  22028. },
  22029. },
  22030. [
  22031. {
  22032. name: "Normal",
  22033. height: math.unit(6 + 7 / 12, "feet"),
  22034. default: true
  22035. },
  22036. ]
  22037. ))
  22038. characterMakers.push(() => makeCharacter(
  22039. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22040. {
  22041. front: {
  22042. height: math.unit(5 + 10 / 12, "feet"),
  22043. weight: math.unit(150, "lb"),
  22044. name: "Front",
  22045. image: {
  22046. source: "./media/characters/kris/front.svg",
  22047. extra: 885 / 803,
  22048. bottom: 0.03
  22049. }
  22050. },
  22051. },
  22052. [
  22053. {
  22054. name: "Normal",
  22055. height: math.unit(5 + 10 / 12, "feet"),
  22056. default: true
  22057. },
  22058. ]
  22059. ))
  22060. characterMakers.push(() => makeCharacter(
  22061. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22062. {
  22063. dragon_front: {
  22064. height: math.unit(5, "feet"),
  22065. name: "Front",
  22066. image: {
  22067. source: "./media/characters/taluthus/dragon-front.svg",
  22068. extra: 1203/1098,
  22069. bottom: 46/1249
  22070. },
  22071. form: "dragon",
  22072. default: true
  22073. },
  22074. dragon_maw: {
  22075. height: math.unit(2.35, "feet"),
  22076. name: "Maw",
  22077. image: {
  22078. source: "./media/characters/taluthus/dragon-maw.svg"
  22079. },
  22080. form: "dragon",
  22081. },
  22082. kitsune_front: {
  22083. height: math.unit(7, "feet"),
  22084. name: "Front",
  22085. image: {
  22086. source: "./media/characters/taluthus/kitsune-front.svg",
  22087. extra: 900/841,
  22088. bottom: 65/965
  22089. },
  22090. form: "kitsune",
  22091. default: true
  22092. },
  22093. },
  22094. [
  22095. {
  22096. name: "Normal",
  22097. height: math.unit(5, "feet"),
  22098. form: "dragon",
  22099. default: true,
  22100. },
  22101. {
  22102. name: "Normal",
  22103. height: math.unit(7, "feet"),
  22104. form: "kitsune",
  22105. default: true
  22106. },
  22107. {
  22108. name: "Macro",
  22109. height: math.unit(300, "feet"),
  22110. allForms: true
  22111. },
  22112. ],
  22113. {
  22114. "dragon": {
  22115. name: "Dragon",
  22116. default: true
  22117. },
  22118. "kitsune": {
  22119. name: "Kitsune",
  22120. },
  22121. }
  22122. ))
  22123. characterMakers.push(() => makeCharacter(
  22124. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22125. {
  22126. front: {
  22127. height: math.unit(5 + 9 / 12, "feet"),
  22128. weight: math.unit(145, "lb"),
  22129. name: "Front",
  22130. image: {
  22131. source: "./media/characters/dawn/front.svg",
  22132. extra: 2094 / 2016,
  22133. bottom: 0.025
  22134. }
  22135. },
  22136. back: {
  22137. height: math.unit(5 + 9 / 12, "feet"),
  22138. weight: math.unit(160, "lb"),
  22139. name: "Back",
  22140. image: {
  22141. source: "./media/characters/dawn/back.svg",
  22142. extra: 2112 / 2080,
  22143. bottom: 0.005
  22144. }
  22145. },
  22146. },
  22147. [
  22148. {
  22149. name: "Normal",
  22150. height: math.unit(6 + 7 / 12, "feet"),
  22151. default: true
  22152. },
  22153. ]
  22154. ))
  22155. characterMakers.push(() => makeCharacter(
  22156. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22157. {
  22158. anthro: {
  22159. height: math.unit(8 + 3 / 12, "feet"),
  22160. weight: math.unit(450, "lb"),
  22161. name: "Anthro",
  22162. image: {
  22163. source: "./media/characters/arador/anthro.svg",
  22164. extra: 1835 / 1718,
  22165. bottom: 0.025
  22166. }
  22167. },
  22168. feral: {
  22169. height: math.unit(4, "feet"),
  22170. weight: math.unit(200, "lb"),
  22171. name: "Feral",
  22172. image: {
  22173. source: "./media/characters/arador/feral.svg",
  22174. extra: 1683 / 1514,
  22175. bottom: 0.07
  22176. }
  22177. },
  22178. },
  22179. [
  22180. {
  22181. name: "Normal",
  22182. height: math.unit(8 + 3 / 12, "feet")
  22183. },
  22184. {
  22185. name: "Macro",
  22186. height: math.unit(82.5, "feet"),
  22187. default: true
  22188. },
  22189. ]
  22190. ))
  22191. characterMakers.push(() => makeCharacter(
  22192. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22193. {
  22194. front: {
  22195. height: math.unit(5 + 10 / 12, "feet"),
  22196. weight: math.unit(125, "lb"),
  22197. name: "Front",
  22198. image: {
  22199. source: "./media/characters/dharsi/front.svg",
  22200. extra: 716 / 630,
  22201. bottom: 0.035
  22202. }
  22203. },
  22204. },
  22205. [
  22206. {
  22207. name: "Nano",
  22208. height: math.unit(100, "nm")
  22209. },
  22210. {
  22211. name: "Micro",
  22212. height: math.unit(2, "inches")
  22213. },
  22214. {
  22215. name: "Normal",
  22216. height: math.unit(5 + 10 / 12, "feet"),
  22217. default: true
  22218. },
  22219. {
  22220. name: "Macro",
  22221. height: math.unit(1000, "feet")
  22222. },
  22223. {
  22224. name: "Megamacro",
  22225. height: math.unit(10, "miles")
  22226. },
  22227. {
  22228. name: "Gigamacro",
  22229. height: math.unit(3000, "miles")
  22230. },
  22231. {
  22232. name: "Teramacro",
  22233. height: math.unit(500000, "miles")
  22234. },
  22235. {
  22236. name: "Teramacro+",
  22237. height: math.unit(30, "galaxies")
  22238. },
  22239. ]
  22240. ))
  22241. characterMakers.push(() => makeCharacter(
  22242. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22243. {
  22244. front: {
  22245. height: math.unit(6, "feet"),
  22246. weight: math.unit(150, "lb"),
  22247. name: "Front",
  22248. image: {
  22249. source: "./media/characters/deathy/front.svg",
  22250. extra: 1552 / 1463,
  22251. bottom: 0.025
  22252. }
  22253. },
  22254. side: {
  22255. height: math.unit(6, "feet"),
  22256. weight: math.unit(150, "lb"),
  22257. name: "Side",
  22258. image: {
  22259. source: "./media/characters/deathy/side.svg",
  22260. extra: 1604 / 1455,
  22261. bottom: 0.025
  22262. }
  22263. },
  22264. back: {
  22265. height: math.unit(6, "feet"),
  22266. weight: math.unit(150, "lb"),
  22267. name: "Back",
  22268. image: {
  22269. source: "./media/characters/deathy/back.svg",
  22270. extra: 1580 / 1463,
  22271. bottom: 0.005
  22272. }
  22273. },
  22274. },
  22275. [
  22276. {
  22277. name: "Micro",
  22278. height: math.unit(5, "millimeters")
  22279. },
  22280. {
  22281. name: "Normal",
  22282. height: math.unit(6 + 5 / 12, "feet"),
  22283. default: true
  22284. },
  22285. ]
  22286. ))
  22287. characterMakers.push(() => makeCharacter(
  22288. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22289. {
  22290. front: {
  22291. height: math.unit(16, "feet"),
  22292. weight: math.unit(4000, "lb"),
  22293. name: "Front",
  22294. image: {
  22295. source: "./media/characters/juniper/front.svg",
  22296. bottom: 0.04
  22297. }
  22298. },
  22299. },
  22300. [
  22301. {
  22302. name: "Normal",
  22303. height: math.unit(16, "feet"),
  22304. default: true
  22305. },
  22306. ]
  22307. ))
  22308. characterMakers.push(() => makeCharacter(
  22309. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22310. {
  22311. front: {
  22312. height: math.unit(6, "feet"),
  22313. weight: math.unit(150, "lb"),
  22314. name: "Front",
  22315. image: {
  22316. source: "./media/characters/hipster/front.svg",
  22317. extra: 1312 / 1209,
  22318. bottom: 0.025
  22319. }
  22320. },
  22321. back: {
  22322. height: math.unit(6, "feet"),
  22323. weight: math.unit(150, "lb"),
  22324. name: "Back",
  22325. image: {
  22326. source: "./media/characters/hipster/back.svg",
  22327. extra: 1281 / 1196,
  22328. bottom: 0.01
  22329. }
  22330. },
  22331. },
  22332. [
  22333. {
  22334. name: "Micro",
  22335. height: math.unit(1, "mm")
  22336. },
  22337. {
  22338. name: "Normal",
  22339. height: math.unit(4, "inches"),
  22340. default: true
  22341. },
  22342. {
  22343. name: "Macro",
  22344. height: math.unit(500, "feet")
  22345. },
  22346. {
  22347. name: "Megamacro",
  22348. height: math.unit(1000, "miles")
  22349. },
  22350. ]
  22351. ))
  22352. characterMakers.push(() => makeCharacter(
  22353. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22354. {
  22355. front: {
  22356. height: math.unit(6, "feet"),
  22357. weight: math.unit(150, "lb"),
  22358. name: "Front",
  22359. image: {
  22360. source: "./media/characters/tendirmuldr/front.svg",
  22361. extra: 1878 / 1772,
  22362. bottom: 0.015
  22363. }
  22364. },
  22365. },
  22366. [
  22367. {
  22368. name: "Megamacro",
  22369. height: math.unit(1500, "miles"),
  22370. default: true
  22371. },
  22372. ]
  22373. ))
  22374. characterMakers.push(() => makeCharacter(
  22375. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22376. {
  22377. front: {
  22378. height: math.unit(14, "feet"),
  22379. weight: math.unit(12000, "lb"),
  22380. name: "Front",
  22381. image: {
  22382. source: "./media/characters/mort/front.svg",
  22383. extra: 365 / 318,
  22384. bottom: 0.01
  22385. }
  22386. },
  22387. side: {
  22388. height: math.unit(14, "feet"),
  22389. weight: math.unit(12000, "lb"),
  22390. name: "Side",
  22391. image: {
  22392. source: "./media/characters/mort/side.svg",
  22393. extra: 365 / 318,
  22394. bottom: 0.052
  22395. },
  22396. default: true
  22397. },
  22398. back: {
  22399. height: math.unit(14, "feet"),
  22400. weight: math.unit(12000, "lb"),
  22401. name: "Back",
  22402. image: {
  22403. source: "./media/characters/mort/back.svg",
  22404. extra: 371 / 332,
  22405. bottom: 0.18
  22406. }
  22407. },
  22408. },
  22409. [
  22410. {
  22411. name: "Normal",
  22412. height: math.unit(14, "feet"),
  22413. default: true
  22414. },
  22415. ]
  22416. ))
  22417. characterMakers.push(() => makeCharacter(
  22418. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22419. {
  22420. front: {
  22421. height: math.unit(8, "feet"),
  22422. weight: math.unit(1, "ton"),
  22423. name: "Front",
  22424. image: {
  22425. source: "./media/characters/lycoa/front.svg",
  22426. extra: 1836/1728,
  22427. bottom: 81/1917
  22428. }
  22429. },
  22430. back: {
  22431. height: math.unit(8, "feet"),
  22432. weight: math.unit(1, "ton"),
  22433. name: "Back",
  22434. image: {
  22435. source: "./media/characters/lycoa/back.svg",
  22436. extra: 1785/1720,
  22437. bottom: 91/1876
  22438. }
  22439. },
  22440. head: {
  22441. height: math.unit(1.6243, "feet"),
  22442. name: "Head",
  22443. image: {
  22444. source: "./media/characters/lycoa/head.svg",
  22445. extra: 1011/782,
  22446. bottom: 0/1011
  22447. }
  22448. },
  22449. tailmaw: {
  22450. height: math.unit(1.9, "feet"),
  22451. name: "Tailmaw",
  22452. image: {
  22453. source: "./media/characters/lycoa/tailmaw.svg"
  22454. }
  22455. },
  22456. tentacles: {
  22457. height: math.unit(2.1, "feet"),
  22458. name: "Tentacles",
  22459. image: {
  22460. source: "./media/characters/lycoa/tentacles.svg"
  22461. }
  22462. },
  22463. dick: {
  22464. height: math.unit(1.73, "feet"),
  22465. name: "Dick",
  22466. image: {
  22467. source: "./media/characters/lycoa/dick.svg"
  22468. }
  22469. },
  22470. },
  22471. [
  22472. {
  22473. name: "Normal",
  22474. height: math.unit(8, "feet"),
  22475. default: true
  22476. },
  22477. {
  22478. name: "Macro",
  22479. height: math.unit(30, "feet")
  22480. },
  22481. ]
  22482. ))
  22483. characterMakers.push(() => makeCharacter(
  22484. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22485. {
  22486. front: {
  22487. height: math.unit(4 + 2 / 12, "feet"),
  22488. weight: math.unit(70, "lb"),
  22489. name: "Front",
  22490. image: {
  22491. source: "./media/characters/naldara/front.svg",
  22492. extra: 1664/1387,
  22493. bottom: 81/1745
  22494. },
  22495. form: "anthro",
  22496. default: true
  22497. },
  22498. naga: {
  22499. height: math.unit(20, "feet"),
  22500. weight: math.unit(15000, "kg"),
  22501. name: "Front",
  22502. image: {
  22503. source: "./media/characters/naldara/naga.svg",
  22504. extra: 1590/1396,
  22505. bottom: 285/1875
  22506. },
  22507. form: "naga",
  22508. default: true
  22509. },
  22510. },
  22511. [
  22512. {
  22513. name: "Normal",
  22514. height: math.unit(4 + 2 / 12, "feet"),
  22515. form: "anthro",
  22516. default: true
  22517. },
  22518. {
  22519. name: "Normal",
  22520. height: math.unit(20, "feet"),
  22521. form: "naga",
  22522. default: true
  22523. },
  22524. ],
  22525. {
  22526. "anthro": {
  22527. name: "Anthro",
  22528. default: true
  22529. },
  22530. "naga": {
  22531. name: "Naga"
  22532. }
  22533. }
  22534. ))
  22535. characterMakers.push(() => makeCharacter(
  22536. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22537. {
  22538. front: {
  22539. height: math.unit(13 + 7 / 12, "feet"),
  22540. weight: math.unit(1500, "lb"),
  22541. name: "Front",
  22542. image: {
  22543. source: "./media/characters/briar/front.svg",
  22544. extra: 1223/1157,
  22545. bottom: 123/1346
  22546. }
  22547. },
  22548. },
  22549. [
  22550. {
  22551. name: "Normal",
  22552. height: math.unit(13 + 7 / 12, "feet"),
  22553. default: true
  22554. },
  22555. ]
  22556. ))
  22557. characterMakers.push(() => makeCharacter(
  22558. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22559. {
  22560. side: {
  22561. height: math.unit(16, "feet"),
  22562. weight: math.unit(500, "lb"),
  22563. name: "Side",
  22564. image: {
  22565. source: "./media/characters/vanguard/side.svg",
  22566. extra: 1022/914,
  22567. bottom: 30/1052
  22568. }
  22569. },
  22570. sideAlt: {
  22571. height: math.unit(10, "feet"),
  22572. weight: math.unit(500, "lb"),
  22573. name: "Side (Alt)",
  22574. image: {
  22575. source: "./media/characters/vanguard/side-alt.svg",
  22576. extra: 502 / 425,
  22577. bottom: 0.087
  22578. }
  22579. },
  22580. },
  22581. [
  22582. {
  22583. name: "Normal",
  22584. height: math.unit(17.71, "feet"),
  22585. default: true
  22586. },
  22587. ]
  22588. ))
  22589. characterMakers.push(() => makeCharacter(
  22590. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22591. {
  22592. front: {
  22593. height: math.unit(7.5, "feet"),
  22594. weight: math.unit(2, "lb"),
  22595. name: "Front",
  22596. image: {
  22597. source: "./media/characters/artemis/work-safe-front.svg",
  22598. extra: 1192 / 1075,
  22599. bottom: 0.07
  22600. },
  22601. form: "work-safe",
  22602. default: true
  22603. },
  22604. frontNsfw: {
  22605. height: math.unit(7.5, "feet"),
  22606. weight: math.unit(2, "lb"),
  22607. name: "Front",
  22608. image: {
  22609. source: "./media/characters/artemis/calibrating-front.svg",
  22610. extra: 1192 / 1075,
  22611. bottom: 0.07
  22612. },
  22613. form: "calibrating",
  22614. default: true
  22615. },
  22616. frontNsfwer: {
  22617. height: math.unit(7.5, "feet"),
  22618. weight: math.unit(2, "lb"),
  22619. name: "Front",
  22620. image: {
  22621. source: "./media/characters/artemis/oversize-load-front.svg",
  22622. extra: 1192 / 1075,
  22623. bottom: 0.07
  22624. },
  22625. form: "oversize-load",
  22626. default: true
  22627. },
  22628. side: {
  22629. height: math.unit(7.5, "feet"),
  22630. weight: math.unit(2, "lb"),
  22631. name: "Side",
  22632. image: {
  22633. source: "./media/characters/artemis/work-safe-side.svg",
  22634. extra: 1192 / 1075,
  22635. bottom: 0.07
  22636. },
  22637. form: "work-safe"
  22638. },
  22639. sideNsfw: {
  22640. height: math.unit(7.5, "feet"),
  22641. weight: math.unit(2, "lb"),
  22642. name: "Side",
  22643. image: {
  22644. source: "./media/characters/artemis/calibrating-side.svg",
  22645. extra: 1192 / 1075,
  22646. bottom: 0.07
  22647. },
  22648. form: "calibrating"
  22649. },
  22650. sideNsfwer: {
  22651. height: math.unit(7.5, "feet"),
  22652. weight: math.unit(2, "lb"),
  22653. name: "Side",
  22654. image: {
  22655. source: "./media/characters/artemis/oversize-load-side.svg",
  22656. extra: 1192 / 1075,
  22657. bottom: 0.07
  22658. },
  22659. form: "oversize-load"
  22660. },
  22661. maw: {
  22662. height: math.unit(1.1, "feet"),
  22663. name: "Maw",
  22664. image: {
  22665. source: "./media/characters/artemis/maw.svg"
  22666. },
  22667. form: "work-safe"
  22668. },
  22669. stomach: {
  22670. height: math.unit(0.95, "feet"),
  22671. name: "Stomach",
  22672. image: {
  22673. source: "./media/characters/artemis/stomach.svg"
  22674. },
  22675. form: "work-safe"
  22676. },
  22677. dickCanine: {
  22678. height: math.unit(1, "feet"),
  22679. name: "Dick (Canine)",
  22680. image: {
  22681. source: "./media/characters/artemis/dick-canine.svg"
  22682. },
  22683. form: "calibrating"
  22684. },
  22685. dickEquine: {
  22686. height: math.unit(0.85, "feet"),
  22687. name: "Dick (Equine)",
  22688. image: {
  22689. source: "./media/characters/artemis/dick-equine.svg"
  22690. },
  22691. form: "calibrating"
  22692. },
  22693. dickExotic: {
  22694. height: math.unit(0.85, "feet"),
  22695. name: "Dick (Exotic)",
  22696. image: {
  22697. source: "./media/characters/artemis/dick-exotic.svg"
  22698. },
  22699. form: "calibrating"
  22700. },
  22701. dickCanineBigger: {
  22702. height: math.unit(1 * 1.33, "feet"),
  22703. name: "Dick (Canine)",
  22704. image: {
  22705. source: "./media/characters/artemis/dick-canine.svg"
  22706. },
  22707. form: "oversize-load"
  22708. },
  22709. dickEquineBigger: {
  22710. height: math.unit(0.85 * 1.33, "feet"),
  22711. name: "Dick (Equine)",
  22712. image: {
  22713. source: "./media/characters/artemis/dick-equine.svg"
  22714. },
  22715. form: "oversize-load"
  22716. },
  22717. dickExoticBigger: {
  22718. height: math.unit(0.85 * 1.33, "feet"),
  22719. name: "Dick (Exotic)",
  22720. image: {
  22721. source: "./media/characters/artemis/dick-exotic.svg"
  22722. },
  22723. form: "oversize-load"
  22724. },
  22725. },
  22726. [
  22727. {
  22728. name: "Normal",
  22729. height: math.unit(7.5, "feet"),
  22730. form: "work-safe",
  22731. default: true
  22732. },
  22733. {
  22734. name: "Normal",
  22735. height: math.unit(7.5, "feet"),
  22736. form: "calibrating",
  22737. default: true
  22738. },
  22739. {
  22740. name: "Normal",
  22741. height: math.unit(7.5, "feet"),
  22742. form: "oversize-load",
  22743. default: true
  22744. },
  22745. {
  22746. name: "Enlarged",
  22747. height: math.unit(12, "feet"),
  22748. form: "work-safe",
  22749. },
  22750. {
  22751. name: "Enlarged",
  22752. height: math.unit(12, "feet"),
  22753. form: "calibrating",
  22754. },
  22755. {
  22756. name: "Enlarged",
  22757. height: math.unit(12, "feet"),
  22758. form: "oversize-load",
  22759. },
  22760. ],
  22761. {
  22762. "work-safe": {
  22763. name: "Work-Safe",
  22764. default: true
  22765. },
  22766. "calibrating": {
  22767. name: "Calibrating"
  22768. },
  22769. "oversize-load": {
  22770. name: "Oversize Load"
  22771. }
  22772. }
  22773. ))
  22774. characterMakers.push(() => makeCharacter(
  22775. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22776. {
  22777. front: {
  22778. height: math.unit(5 + 3 / 12, "feet"),
  22779. weight: math.unit(160, "lb"),
  22780. name: "Front",
  22781. image: {
  22782. source: "./media/characters/kira/front.svg",
  22783. extra: 906 / 786,
  22784. bottom: 0.01
  22785. }
  22786. },
  22787. back: {
  22788. height: math.unit(5 + 3 / 12, "feet"),
  22789. weight: math.unit(160, "lb"),
  22790. name: "Back",
  22791. image: {
  22792. source: "./media/characters/kira/back.svg",
  22793. extra: 882 / 757,
  22794. bottom: 0.005
  22795. }
  22796. },
  22797. frontDressed: {
  22798. height: math.unit(5 + 3 / 12, "feet"),
  22799. weight: math.unit(160, "lb"),
  22800. name: "Front (Dressed)",
  22801. image: {
  22802. source: "./media/characters/kira/front-dressed.svg",
  22803. extra: 906 / 786,
  22804. bottom: 0.01
  22805. }
  22806. },
  22807. beans: {
  22808. height: math.unit(0.92, "feet"),
  22809. name: "Beans",
  22810. image: {
  22811. source: "./media/characters/kira/beans.svg"
  22812. }
  22813. },
  22814. },
  22815. [
  22816. {
  22817. name: "Normal",
  22818. height: math.unit(5 + 3 / 12, "feet"),
  22819. default: true
  22820. },
  22821. ]
  22822. ))
  22823. characterMakers.push(() => makeCharacter(
  22824. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22825. {
  22826. front: {
  22827. height: math.unit(5 + 4 / 12, "feet"),
  22828. weight: math.unit(145, "lb"),
  22829. name: "Front",
  22830. image: {
  22831. source: "./media/characters/scramble/front.svg",
  22832. extra: 763 / 727,
  22833. bottom: 0.05
  22834. }
  22835. },
  22836. back: {
  22837. height: math.unit(5 + 4 / 12, "feet"),
  22838. weight: math.unit(145, "lb"),
  22839. name: "Back",
  22840. image: {
  22841. source: "./media/characters/scramble/back.svg",
  22842. extra: 826 / 737,
  22843. bottom: 0.002
  22844. }
  22845. },
  22846. },
  22847. [
  22848. {
  22849. name: "Normal",
  22850. height: math.unit(5 + 4 / 12, "feet"),
  22851. default: true
  22852. },
  22853. ]
  22854. ))
  22855. characterMakers.push(() => makeCharacter(
  22856. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22857. {
  22858. side: {
  22859. height: math.unit(6 + 2 / 12, "feet"),
  22860. weight: math.unit(190, "lb"),
  22861. name: "Side",
  22862. image: {
  22863. source: "./media/characters/biscuit/side.svg",
  22864. extra: 858 / 791,
  22865. bottom: 0.044
  22866. }
  22867. },
  22868. },
  22869. [
  22870. {
  22871. name: "Normal",
  22872. height: math.unit(6 + 2 / 12, "feet"),
  22873. default: true
  22874. },
  22875. ]
  22876. ))
  22877. characterMakers.push(() => makeCharacter(
  22878. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22879. {
  22880. front: {
  22881. height: math.unit(5 + 2 / 12, "feet"),
  22882. weight: math.unit(120, "lb"),
  22883. name: "Front",
  22884. image: {
  22885. source: "./media/characters/poffin/front.svg",
  22886. extra: 786 / 680,
  22887. bottom: 0.005
  22888. }
  22889. },
  22890. },
  22891. [
  22892. {
  22893. name: "Normal",
  22894. height: math.unit(5 + 2 / 12, "feet"),
  22895. default: true
  22896. },
  22897. ]
  22898. ))
  22899. characterMakers.push(() => makeCharacter(
  22900. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22901. {
  22902. front: {
  22903. height: math.unit(6 + 3 / 12, "feet"),
  22904. weight: math.unit(519, "lb"),
  22905. name: "Front",
  22906. image: {
  22907. source: "./media/characters/dhari/front.svg",
  22908. extra: 1048 / 946,
  22909. bottom: 0.015
  22910. }
  22911. },
  22912. back: {
  22913. height: math.unit(6 + 3 / 12, "feet"),
  22914. weight: math.unit(519, "lb"),
  22915. name: "Back",
  22916. image: {
  22917. source: "./media/characters/dhari/back.svg",
  22918. extra: 1048 / 931,
  22919. bottom: 0.005
  22920. }
  22921. },
  22922. frontDressed: {
  22923. height: math.unit(6 + 3 / 12, "feet"),
  22924. weight: math.unit(519, "lb"),
  22925. name: "Front (Dressed)",
  22926. image: {
  22927. source: "./media/characters/dhari/front-dressed.svg",
  22928. extra: 1713 / 1546,
  22929. bottom: 0.02
  22930. }
  22931. },
  22932. backDressed: {
  22933. height: math.unit(6 + 3 / 12, "feet"),
  22934. weight: math.unit(519, "lb"),
  22935. name: "Back (Dressed)",
  22936. image: {
  22937. source: "./media/characters/dhari/back-dressed.svg",
  22938. extra: 1699 / 1537,
  22939. bottom: 0.01
  22940. }
  22941. },
  22942. maw: {
  22943. height: math.unit(0.95, "feet"),
  22944. name: "Maw",
  22945. image: {
  22946. source: "./media/characters/dhari/maw.svg"
  22947. }
  22948. },
  22949. wereFront: {
  22950. height: math.unit(12 + 8 / 12, "feet"),
  22951. weight: math.unit(4000, "lb"),
  22952. name: "Front (Were)",
  22953. image: {
  22954. source: "./media/characters/dhari/were-front.svg",
  22955. extra: 1065 / 969,
  22956. bottom: 0.015
  22957. }
  22958. },
  22959. wereBack: {
  22960. height: math.unit(12 + 8 / 12, "feet"),
  22961. weight: math.unit(4000, "lb"),
  22962. name: "Back (Were)",
  22963. image: {
  22964. source: "./media/characters/dhari/were-back.svg",
  22965. extra: 1065 / 969,
  22966. bottom: 0.012
  22967. }
  22968. },
  22969. wereMaw: {
  22970. height: math.unit(0.625, "meters"),
  22971. name: "Maw (Were)",
  22972. image: {
  22973. source: "./media/characters/dhari/were-maw.svg"
  22974. }
  22975. },
  22976. },
  22977. [
  22978. {
  22979. name: "Normal",
  22980. height: math.unit(6 + 3 / 12, "feet"),
  22981. default: true
  22982. },
  22983. ]
  22984. ))
  22985. characterMakers.push(() => makeCharacter(
  22986. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22987. {
  22988. anthro: {
  22989. height: math.unit(5 + 7 / 12, "feet"),
  22990. weight: math.unit(175, "lb"),
  22991. name: "Anthro",
  22992. image: {
  22993. source: "./media/characters/rena-dyne/anthro.svg",
  22994. extra: 1849 / 1785,
  22995. bottom: 0.005
  22996. }
  22997. },
  22998. taur: {
  22999. height: math.unit(15 + 6 / 12, "feet"),
  23000. weight: math.unit(8000, "lb"),
  23001. name: "Taur",
  23002. image: {
  23003. source: "./media/characters/rena-dyne/taur.svg",
  23004. extra: 2315 / 2234,
  23005. bottom: 0.033
  23006. }
  23007. },
  23008. },
  23009. [
  23010. {
  23011. name: "Normal",
  23012. height: math.unit(5 + 7 / 12, "feet"),
  23013. default: true
  23014. },
  23015. ]
  23016. ))
  23017. characterMakers.push(() => makeCharacter(
  23018. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23019. {
  23020. front: {
  23021. height: math.unit(8, "feet"),
  23022. weight: math.unit(600, "lb"),
  23023. name: "Front",
  23024. image: {
  23025. source: "./media/characters/weremeep/front.svg",
  23026. extra: 970/849,
  23027. bottom: 7/977
  23028. }
  23029. },
  23030. },
  23031. [
  23032. {
  23033. name: "Normal",
  23034. height: math.unit(8, "feet"),
  23035. default: true
  23036. },
  23037. {
  23038. name: "Lorg",
  23039. height: math.unit(12, "feet")
  23040. },
  23041. {
  23042. name: "Oh Lawd She Comin'",
  23043. height: math.unit(20, "feet")
  23044. },
  23045. ]
  23046. ))
  23047. characterMakers.push(() => makeCharacter(
  23048. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23049. {
  23050. front: {
  23051. height: math.unit(4, "feet"),
  23052. weight: math.unit(90, "lb"),
  23053. name: "Front",
  23054. image: {
  23055. source: "./media/characters/reza/front.svg",
  23056. extra: 1183 / 1111,
  23057. bottom: 0.017
  23058. }
  23059. },
  23060. back: {
  23061. height: math.unit(4, "feet"),
  23062. weight: math.unit(90, "lb"),
  23063. name: "Back",
  23064. image: {
  23065. source: "./media/characters/reza/back.svg",
  23066. extra: 1183 / 1111,
  23067. bottom: 0.01
  23068. }
  23069. },
  23070. drake: {
  23071. height: math.unit(30, "feet"),
  23072. weight: math.unit(246960, "lb"),
  23073. name: "Drake",
  23074. image: {
  23075. source: "./media/characters/reza/drake.svg",
  23076. extra: 2350 / 2024,
  23077. bottom: 60.7 / 2403
  23078. }
  23079. },
  23080. },
  23081. [
  23082. {
  23083. name: "Normal",
  23084. height: math.unit(4, "feet"),
  23085. default: true
  23086. },
  23087. ]
  23088. ))
  23089. characterMakers.push(() => makeCharacter(
  23090. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23091. {
  23092. side: {
  23093. height: math.unit(15, "feet"),
  23094. weight: math.unit(14, "tons"),
  23095. name: "Side",
  23096. image: {
  23097. source: "./media/characters/athea/side.svg",
  23098. extra: 960 / 540,
  23099. bottom: 0.003
  23100. }
  23101. },
  23102. sitting: {
  23103. height: math.unit(6 * 2.85, "feet"),
  23104. weight: math.unit(14, "tons"),
  23105. name: "Sitting",
  23106. image: {
  23107. source: "./media/characters/athea/sitting.svg",
  23108. extra: 621 / 581,
  23109. bottom: 0.075
  23110. }
  23111. },
  23112. maw: {
  23113. height: math.unit(7.59498031496063, "feet"),
  23114. name: "Maw",
  23115. image: {
  23116. source: "./media/characters/athea/maw.svg"
  23117. }
  23118. },
  23119. },
  23120. [
  23121. {
  23122. name: "Lap Cat",
  23123. height: math.unit(2.5, "feet")
  23124. },
  23125. {
  23126. name: "Minimacro",
  23127. height: math.unit(15, "feet"),
  23128. default: true
  23129. },
  23130. {
  23131. name: "Macro",
  23132. height: math.unit(120, "feet")
  23133. },
  23134. {
  23135. name: "Macro+",
  23136. height: math.unit(640, "feet")
  23137. },
  23138. {
  23139. name: "Colossus",
  23140. height: math.unit(2.2, "miles")
  23141. },
  23142. ]
  23143. ))
  23144. characterMakers.push(() => makeCharacter(
  23145. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23146. {
  23147. front: {
  23148. height: math.unit(8 + 8 / 12, "feet"),
  23149. weight: math.unit(130, "kg"),
  23150. name: "Front",
  23151. image: {
  23152. source: "./media/characters/seroko/front.svg",
  23153. extra: 1385 / 1280,
  23154. bottom: 0.025
  23155. }
  23156. },
  23157. back: {
  23158. height: math.unit(8 + 8 / 12, "feet"),
  23159. weight: math.unit(130, "kg"),
  23160. name: "Back",
  23161. image: {
  23162. source: "./media/characters/seroko/back.svg",
  23163. extra: 1369 / 1238,
  23164. bottom: 0.018
  23165. }
  23166. },
  23167. frontDressed: {
  23168. height: math.unit(8 + 8 / 12, "feet"),
  23169. weight: math.unit(130, "kg"),
  23170. name: "Front (Dressed)",
  23171. image: {
  23172. source: "./media/characters/seroko/front-dressed.svg",
  23173. extra: 1366 / 1275,
  23174. bottom: 0.03
  23175. }
  23176. },
  23177. },
  23178. [
  23179. {
  23180. name: "Normal",
  23181. height: math.unit(8 + 8 / 12, "feet"),
  23182. default: true
  23183. },
  23184. ]
  23185. ))
  23186. characterMakers.push(() => makeCharacter(
  23187. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23188. {
  23189. front: {
  23190. height: math.unit(5.5, "feet"),
  23191. weight: math.unit(160, "lb"),
  23192. name: "Front",
  23193. image: {
  23194. source: "./media/characters/quatzi/front.svg",
  23195. extra: 2346 / 2242,
  23196. bottom: 0.015
  23197. }
  23198. },
  23199. },
  23200. [
  23201. {
  23202. name: "Normal",
  23203. height: math.unit(5.5, "feet"),
  23204. default: true
  23205. },
  23206. {
  23207. name: "Big",
  23208. height: math.unit(7.7, "feet")
  23209. },
  23210. ]
  23211. ))
  23212. characterMakers.push(() => makeCharacter(
  23213. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23214. {
  23215. front: {
  23216. height: math.unit(5 + 11 / 12, "feet"),
  23217. weight: math.unit(180, "lb"),
  23218. name: "Front",
  23219. image: {
  23220. source: "./media/characters/sen/front.svg",
  23221. extra: 1321 / 1254,
  23222. bottom: 0.015
  23223. }
  23224. },
  23225. side: {
  23226. height: math.unit(5 + 11 / 12, "feet"),
  23227. weight: math.unit(180, "lb"),
  23228. name: "Side",
  23229. image: {
  23230. source: "./media/characters/sen/side.svg",
  23231. extra: 1321 / 1254,
  23232. bottom: 0.007
  23233. }
  23234. },
  23235. back: {
  23236. height: math.unit(5 + 11 / 12, "feet"),
  23237. weight: math.unit(180, "lb"),
  23238. name: "Back",
  23239. image: {
  23240. source: "./media/characters/sen/back.svg",
  23241. extra: 1321 / 1254
  23242. }
  23243. },
  23244. },
  23245. [
  23246. {
  23247. name: "Normal",
  23248. height: math.unit(5 + 11 / 12, "feet"),
  23249. default: true
  23250. },
  23251. ]
  23252. ))
  23253. characterMakers.push(() => makeCharacter(
  23254. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23255. {
  23256. front: {
  23257. height: math.unit(166.6, "cm"),
  23258. weight: math.unit(66.6, "kg"),
  23259. name: "Front",
  23260. image: {
  23261. source: "./media/characters/fruity/front.svg",
  23262. extra: 1510 / 1386,
  23263. bottom: 0.04
  23264. }
  23265. },
  23266. back: {
  23267. height: math.unit(166.6, "cm"),
  23268. weight: math.unit(66.6, "lb"),
  23269. name: "Back",
  23270. image: {
  23271. source: "./media/characters/fruity/back.svg",
  23272. extra: 1563 / 1435,
  23273. bottom: 0.005
  23274. }
  23275. },
  23276. },
  23277. [
  23278. {
  23279. name: "Normal",
  23280. height: math.unit(166.6, "cm"),
  23281. default: true
  23282. },
  23283. {
  23284. name: "Demonic",
  23285. height: math.unit(166.6, "feet")
  23286. },
  23287. ]
  23288. ))
  23289. characterMakers.push(() => makeCharacter(
  23290. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23291. {
  23292. side: {
  23293. height: math.unit(10, "feet"),
  23294. weight: math.unit(500, "lb"),
  23295. name: "Side",
  23296. image: {
  23297. source: "./media/characters/zost/side.svg",
  23298. extra: 2870/2533,
  23299. bottom: 252/3122
  23300. }
  23301. },
  23302. mawFront: {
  23303. height: math.unit(1.08, "meters"),
  23304. name: "Maw (Front)",
  23305. image: {
  23306. source: "./media/characters/zost/maw-front.svg"
  23307. }
  23308. },
  23309. mawSide: {
  23310. height: math.unit(2.66, "feet"),
  23311. name: "Maw (Side)",
  23312. image: {
  23313. source: "./media/characters/zost/maw-side.svg"
  23314. }
  23315. },
  23316. wingspan: {
  23317. height: math.unit(7.4, "feet"),
  23318. name: "Wingspan",
  23319. image: {
  23320. source: "./media/characters/zost/wingspan.svg"
  23321. }
  23322. },
  23323. },
  23324. [
  23325. {
  23326. name: "Normal",
  23327. height: math.unit(10, "feet"),
  23328. default: true
  23329. },
  23330. ]
  23331. ))
  23332. characterMakers.push(() => makeCharacter(
  23333. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23334. {
  23335. front: {
  23336. height: math.unit(5 + 4 / 12, "feet"),
  23337. weight: math.unit(120, "lb"),
  23338. name: "Front",
  23339. image: {
  23340. source: "./media/characters/luci/front.svg",
  23341. extra: 1985 / 1884,
  23342. bottom: 0.04
  23343. }
  23344. },
  23345. back: {
  23346. height: math.unit(5 + 4 / 12, "feet"),
  23347. weight: math.unit(120, "lb"),
  23348. name: "Back",
  23349. image: {
  23350. source: "./media/characters/luci/back.svg",
  23351. extra: 1892 / 1791,
  23352. bottom: 0.002
  23353. }
  23354. },
  23355. },
  23356. [
  23357. {
  23358. name: "Normal",
  23359. height: math.unit(5 + 4 / 12, "feet"),
  23360. default: true
  23361. },
  23362. ]
  23363. ))
  23364. characterMakers.push(() => makeCharacter(
  23365. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23366. {
  23367. front: {
  23368. height: math.unit(1500, "feet"),
  23369. weight: math.unit(3.8e6, "tons"),
  23370. name: "Front",
  23371. image: {
  23372. source: "./media/characters/2th/front.svg",
  23373. extra: 3489 / 3350,
  23374. bottom: 0.1
  23375. }
  23376. },
  23377. foot: {
  23378. height: math.unit(461, "feet"),
  23379. name: "Foot",
  23380. image: {
  23381. source: "./media/characters/2th/foot.svg"
  23382. }
  23383. },
  23384. },
  23385. [
  23386. {
  23387. name: "\"Micro\"",
  23388. height: math.unit(15 + 7 / 12, "feet")
  23389. },
  23390. {
  23391. name: "Normal",
  23392. height: math.unit(1500, "feet"),
  23393. default: true
  23394. },
  23395. {
  23396. name: "Macro",
  23397. height: math.unit(5000, "feet")
  23398. },
  23399. {
  23400. name: "Megamacro",
  23401. height: math.unit(15, "miles")
  23402. },
  23403. {
  23404. name: "Gigamacro",
  23405. height: math.unit(4000, "miles")
  23406. },
  23407. {
  23408. name: "Galactic",
  23409. height: math.unit(50, "AU")
  23410. },
  23411. ]
  23412. ))
  23413. characterMakers.push(() => makeCharacter(
  23414. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23415. {
  23416. front: {
  23417. height: math.unit(5 + 6 / 12, "feet"),
  23418. weight: math.unit(220, "lb"),
  23419. name: "Front",
  23420. image: {
  23421. source: "./media/characters/amethyst/front.svg",
  23422. extra: 2078 / 2040,
  23423. bottom: 0.045
  23424. }
  23425. },
  23426. back: {
  23427. height: math.unit(5 + 6 / 12, "feet"),
  23428. weight: math.unit(220, "lb"),
  23429. name: "Back",
  23430. image: {
  23431. source: "./media/characters/amethyst/back.svg",
  23432. extra: 2021 / 1989,
  23433. bottom: 0.02
  23434. }
  23435. },
  23436. },
  23437. [
  23438. {
  23439. name: "Normal",
  23440. height: math.unit(5 + 6 / 12, "feet"),
  23441. default: true
  23442. },
  23443. ]
  23444. ))
  23445. characterMakers.push(() => makeCharacter(
  23446. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23447. {
  23448. front: {
  23449. height: math.unit(4 + 11 / 12, "feet"),
  23450. weight: math.unit(120, "lb"),
  23451. name: "Front",
  23452. image: {
  23453. source: "./media/characters/yumi-akiyama/front.svg",
  23454. extra: 1327 / 1235,
  23455. bottom: 0.02
  23456. }
  23457. },
  23458. back: {
  23459. height: math.unit(4 + 11 / 12, "feet"),
  23460. weight: math.unit(120, "lb"),
  23461. name: "Back",
  23462. image: {
  23463. source: "./media/characters/yumi-akiyama/back.svg",
  23464. extra: 1287 / 1245,
  23465. bottom: 0.002
  23466. }
  23467. },
  23468. },
  23469. [
  23470. {
  23471. name: "Galactic",
  23472. height: math.unit(50, "galaxies"),
  23473. default: true
  23474. },
  23475. {
  23476. name: "Universal",
  23477. height: math.unit(100, "universes")
  23478. },
  23479. ]
  23480. ))
  23481. characterMakers.push(() => makeCharacter(
  23482. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23483. {
  23484. front: {
  23485. height: math.unit(8, "feet"),
  23486. weight: math.unit(500, "lb"),
  23487. name: "Front",
  23488. image: {
  23489. source: "./media/characters/rifter-yrmori/front.svg",
  23490. extra: 1180 / 1125,
  23491. bottom: 0.02
  23492. }
  23493. },
  23494. back: {
  23495. height: math.unit(8, "feet"),
  23496. weight: math.unit(500, "lb"),
  23497. name: "Back",
  23498. image: {
  23499. source: "./media/characters/rifter-yrmori/back.svg",
  23500. extra: 1190 / 1145,
  23501. bottom: 0.001
  23502. }
  23503. },
  23504. wings: {
  23505. height: math.unit(7.75, "feet"),
  23506. weight: math.unit(500, "lb"),
  23507. name: "Wings",
  23508. image: {
  23509. source: "./media/characters/rifter-yrmori/wings.svg",
  23510. extra: 1357 / 1285
  23511. }
  23512. },
  23513. maw: {
  23514. height: math.unit(0.8, "feet"),
  23515. name: "Maw",
  23516. image: {
  23517. source: "./media/characters/rifter-yrmori/maw.svg"
  23518. }
  23519. },
  23520. mawfront: {
  23521. height: math.unit(1.45, "feet"),
  23522. name: "Maw (Front)",
  23523. image: {
  23524. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23525. }
  23526. },
  23527. },
  23528. [
  23529. {
  23530. name: "Normal",
  23531. height: math.unit(8, "feet"),
  23532. default: true
  23533. },
  23534. {
  23535. name: "Macro",
  23536. height: math.unit(42, "meters")
  23537. },
  23538. ]
  23539. ))
  23540. characterMakers.push(() => makeCharacter(
  23541. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23542. {
  23543. were: {
  23544. height: math.unit(25 + 6 / 12, "feet"),
  23545. weight: math.unit(10000, "lb"),
  23546. name: "Were",
  23547. image: {
  23548. source: "./media/characters/tahajin/were.svg",
  23549. extra: 801 / 770,
  23550. bottom: 0.042
  23551. }
  23552. },
  23553. aquatic: {
  23554. height: math.unit(6 + 4 / 12, "feet"),
  23555. weight: math.unit(160, "lb"),
  23556. name: "Aquatic",
  23557. image: {
  23558. source: "./media/characters/tahajin/aquatic.svg",
  23559. extra: 572 / 542,
  23560. bottom: 0.04
  23561. }
  23562. },
  23563. chow: {
  23564. height: math.unit(8 + 11 / 12, "feet"),
  23565. weight: math.unit(450, "lb"),
  23566. name: "Chow",
  23567. image: {
  23568. source: "./media/characters/tahajin/chow.svg",
  23569. extra: 660 / 640,
  23570. bottom: 0.015
  23571. }
  23572. },
  23573. demiNaga: {
  23574. height: math.unit(6 + 8 / 12, "feet"),
  23575. weight: math.unit(300, "lb"),
  23576. name: "Demi Naga",
  23577. image: {
  23578. source: "./media/characters/tahajin/demi-naga.svg",
  23579. extra: 643 / 615,
  23580. bottom: 0.1
  23581. }
  23582. },
  23583. data: {
  23584. height: math.unit(5, "inches"),
  23585. weight: math.unit(0.1, "lb"),
  23586. name: "Data",
  23587. image: {
  23588. source: "./media/characters/tahajin/data.svg"
  23589. }
  23590. },
  23591. fluu: {
  23592. height: math.unit(5 + 7 / 12, "feet"),
  23593. weight: math.unit(140, "lb"),
  23594. name: "Fluu",
  23595. image: {
  23596. source: "./media/characters/tahajin/fluu.svg",
  23597. extra: 628 / 592,
  23598. bottom: 0.02
  23599. }
  23600. },
  23601. starWarrior: {
  23602. height: math.unit(4 + 5 / 12, "feet"),
  23603. weight: math.unit(50, "lb"),
  23604. name: "Star Warrior",
  23605. image: {
  23606. source: "./media/characters/tahajin/star-warrior.svg"
  23607. }
  23608. },
  23609. },
  23610. [
  23611. {
  23612. name: "Normal",
  23613. height: math.unit(25 + 6 / 12, "feet"),
  23614. default: true
  23615. },
  23616. ]
  23617. ))
  23618. characterMakers.push(() => makeCharacter(
  23619. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23620. {
  23621. front: {
  23622. height: math.unit(8, "feet"),
  23623. weight: math.unit(350, "lb"),
  23624. name: "Front",
  23625. image: {
  23626. source: "./media/characters/gabira/front.svg",
  23627. extra: 1261/1154,
  23628. bottom: 51/1312
  23629. }
  23630. },
  23631. back: {
  23632. height: math.unit(8, "feet"),
  23633. weight: math.unit(350, "lb"),
  23634. name: "Back",
  23635. image: {
  23636. source: "./media/characters/gabira/back.svg",
  23637. extra: 1265/1163,
  23638. bottom: 46/1311
  23639. }
  23640. },
  23641. head: {
  23642. height: math.unit(2.85, "feet"),
  23643. name: "Head",
  23644. image: {
  23645. source: "./media/characters/gabira/head.svg"
  23646. }
  23647. },
  23648. },
  23649. [
  23650. {
  23651. name: "Normal",
  23652. height: math.unit(8, "feet"),
  23653. default: true
  23654. },
  23655. ]
  23656. ))
  23657. characterMakers.push(() => makeCharacter(
  23658. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23659. {
  23660. front: {
  23661. height: math.unit(5 + 3 / 12, "feet"),
  23662. weight: math.unit(137, "lb"),
  23663. name: "Front",
  23664. image: {
  23665. source: "./media/characters/sasha-katraine/front.svg",
  23666. extra: 1745/1694,
  23667. bottom: 37/1782
  23668. }
  23669. },
  23670. back: {
  23671. height: math.unit(5 + 3 / 12, "feet"),
  23672. weight: math.unit(137, "lb"),
  23673. name: "Back",
  23674. image: {
  23675. source: "./media/characters/sasha-katraine/back.svg",
  23676. extra: 1776/1699,
  23677. bottom: 26/1802
  23678. }
  23679. },
  23680. },
  23681. [
  23682. {
  23683. name: "Micro",
  23684. height: math.unit(5, "inches")
  23685. },
  23686. {
  23687. name: "Normal",
  23688. height: math.unit(5 + 3 / 12, "feet"),
  23689. default: true
  23690. },
  23691. ]
  23692. ))
  23693. characterMakers.push(() => makeCharacter(
  23694. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23695. {
  23696. side: {
  23697. height: math.unit(4, "inches"),
  23698. weight: math.unit(200, "grams"),
  23699. name: "Side",
  23700. image: {
  23701. source: "./media/characters/der/side.svg",
  23702. extra: 719 / 400,
  23703. bottom: 30.6 / 749.9187
  23704. }
  23705. },
  23706. },
  23707. [
  23708. {
  23709. name: "Micro",
  23710. height: math.unit(4, "inches"),
  23711. default: true
  23712. },
  23713. ]
  23714. ))
  23715. characterMakers.push(() => makeCharacter(
  23716. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23717. {
  23718. side: {
  23719. height: math.unit(30, "meters"),
  23720. weight: math.unit(700, "tonnes"),
  23721. name: "Side",
  23722. image: {
  23723. source: "./media/characters/fixerdragon/side.svg",
  23724. extra: (1293.0514 - 116.03) / 1106.86,
  23725. bottom: 116.03 / 1293.0514
  23726. }
  23727. },
  23728. },
  23729. [
  23730. {
  23731. name: "Planck",
  23732. height: math.unit(1.6e-35, "meters")
  23733. },
  23734. {
  23735. name: "Micro",
  23736. height: math.unit(0.4, "meters")
  23737. },
  23738. {
  23739. name: "Normal",
  23740. height: math.unit(30, "meters"),
  23741. default: true
  23742. },
  23743. {
  23744. name: "Megamacro",
  23745. height: math.unit(1.2, "megameters")
  23746. },
  23747. {
  23748. name: "Teramacro",
  23749. height: math.unit(130, "terameters")
  23750. },
  23751. {
  23752. name: "Yottamacro",
  23753. height: math.unit(6200, "yottameters")
  23754. },
  23755. ]
  23756. ));
  23757. characterMakers.push(() => makeCharacter(
  23758. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23759. {
  23760. front: {
  23761. height: math.unit(8, "feet"),
  23762. weight: math.unit(250, "lb"),
  23763. name: "Front",
  23764. image: {
  23765. source: "./media/characters/kite/front.svg",
  23766. extra: 2796 / 2659,
  23767. bottom: 0.002
  23768. }
  23769. },
  23770. },
  23771. [
  23772. {
  23773. name: "Normal",
  23774. height: math.unit(8, "feet"),
  23775. default: true
  23776. },
  23777. {
  23778. name: "Macro",
  23779. height: math.unit(360, "feet")
  23780. },
  23781. {
  23782. name: "Megamacro",
  23783. height: math.unit(1500, "feet")
  23784. },
  23785. ]
  23786. ))
  23787. characterMakers.push(() => makeCharacter(
  23788. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23789. {
  23790. anthro_front: {
  23791. height: math.unit(5 + 11/12, "feet"),
  23792. weight: math.unit(170, "lb"),
  23793. name: "Front",
  23794. image: {
  23795. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  23796. extra: 1735/1585,
  23797. bottom: 96/1831
  23798. },
  23799. form: "anthro",
  23800. default: true
  23801. },
  23802. anthro_back: {
  23803. height: math.unit(5 + 11/12, "feet"),
  23804. weight: math.unit(170, "lb"),
  23805. name: "Back",
  23806. image: {
  23807. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  23808. extra: 1749/1607,
  23809. bottom: 28/1777
  23810. },
  23811. form: "anthro"
  23812. },
  23813. anthro_male: {
  23814. height: math.unit(5 + 11/12, "feet"),
  23815. weight: math.unit(170, "lb"),
  23816. name: "Male",
  23817. image: {
  23818. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  23819. extra: 1855/1713,
  23820. bottom: 63/1918
  23821. },
  23822. form: "anthro"
  23823. },
  23824. taur_front: {
  23825. height: math.unit(5 + 7/12, "feet"),
  23826. weight: math.unit(170, "lb"),
  23827. name: "Front",
  23828. image: {
  23829. source: "./media/characters/poojawa-vynar/taur-front.svg",
  23830. extra: 1151/1059,
  23831. bottom: 356/1507
  23832. },
  23833. form: "taur",
  23834. default: true
  23835. },
  23836. anthro_frontDressed: {
  23837. height: math.unit(5 + 11/12, "feet"),
  23838. weight: math.unit(170, "lb"),
  23839. name: "Front (Dressed)",
  23840. image: {
  23841. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  23842. extra: 1735/1585,
  23843. bottom: 96/1831
  23844. },
  23845. form: "anthro"
  23846. },
  23847. anthro_backDressed: {
  23848. height: math.unit(5 + 11/12, "feet"),
  23849. weight: math.unit(170, "lb"),
  23850. name: "Back (Dressed)",
  23851. image: {
  23852. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  23853. extra: 1749/1607,
  23854. bottom: 28/1777
  23855. },
  23856. form: "anthro"
  23857. },
  23858. anthro_maleDressed: {
  23859. height: math.unit(5 + 11/12, "feet"),
  23860. weight: math.unit(170, "lb"),
  23861. name: "Male (Dressed)",
  23862. image: {
  23863. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  23864. extra: 1855/1713,
  23865. bottom: 63/1918
  23866. },
  23867. form: "anthro"
  23868. },
  23869. taur_frontDressed: {
  23870. height: math.unit(5 + 7/12, "feet"),
  23871. weight: math.unit(170, "lb"),
  23872. name: "Front (Dressed)",
  23873. image: {
  23874. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  23875. extra: 1151/1059,
  23876. bottom: 356/1507
  23877. },
  23878. form: "taur"
  23879. },
  23880. maw: {
  23881. height: math.unit(1.46, "feet"),
  23882. name: "Maw",
  23883. image: {
  23884. source: "./media/characters/poojawa-vynar/maw.svg"
  23885. },
  23886. allForms: true
  23887. },
  23888. head: {
  23889. height: math.unit(2.34, "feet"),
  23890. name: "Head",
  23891. image: {
  23892. source: "./media/characters/poojawa-vynar/head.svg"
  23893. },
  23894. allForms: true
  23895. },
  23896. leftPaw: {
  23897. height: math.unit(1.72, "feet"),
  23898. name: "Left Paw",
  23899. image: {
  23900. source: "./media/characters/poojawa-vynar/paw-left.svg"
  23901. },
  23902. allForms: true
  23903. },
  23904. rightPaw: {
  23905. height: math.unit(1.61, "feet"),
  23906. name: "Right Paw",
  23907. image: {
  23908. source: "./media/characters/poojawa-vynar/paw-right.svg"
  23909. },
  23910. allForms: true
  23911. },
  23912. toering: {
  23913. height: math.unit(2.9, "inches"),
  23914. name: "Toering",
  23915. image: {
  23916. source: "./media/characters/poojawa-vynar/toering.svg"
  23917. },
  23918. allForms: true
  23919. },
  23920. shaft: {
  23921. height: math.unit(0.625, "feet"),
  23922. name: "Shaft",
  23923. image: {
  23924. source: "./media/characters/poojawa-vynar/shaft.svg"
  23925. },
  23926. allForms: true
  23927. },
  23928. spade: {
  23929. height: math.unit(0.42, "feet"),
  23930. name: "Spade",
  23931. image: {
  23932. source: "./media/characters/poojawa-vynar/spade.svg"
  23933. },
  23934. allForms: true
  23935. },
  23936. },
  23937. [
  23938. {
  23939. name: "Shortstack",
  23940. height: math.unit(4, "feet"),
  23941. form: "anthro"
  23942. },
  23943. {
  23944. name: "Normal",
  23945. height: math.unit(5 + 11 / 12, "feet"),
  23946. form: "anthro",
  23947. default: true
  23948. },
  23949. {
  23950. name: "Tauric",
  23951. height: math.unit(4, "meters"),
  23952. form: "taur",
  23953. default: true
  23954. },
  23955. ],
  23956. {
  23957. "anthro": {
  23958. name: "Anthro",
  23959. default: true
  23960. },
  23961. "taur": {
  23962. name: "Taur",
  23963. },
  23964. }
  23965. ))
  23966. characterMakers.push(() => makeCharacter(
  23967. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23968. {
  23969. front: {
  23970. height: math.unit(293, "meters"),
  23971. weight: math.unit(70400, "tons"),
  23972. name: "Front",
  23973. image: {
  23974. source: "./media/characters/violette/front.svg",
  23975. extra: 1227 / 1180,
  23976. bottom: 0.005
  23977. }
  23978. },
  23979. back: {
  23980. height: math.unit(293, "meters"),
  23981. weight: math.unit(70400, "tons"),
  23982. name: "Back",
  23983. image: {
  23984. source: "./media/characters/violette/back.svg",
  23985. extra: 1227 / 1180,
  23986. bottom: 0.005
  23987. }
  23988. },
  23989. },
  23990. [
  23991. {
  23992. name: "Macro",
  23993. height: math.unit(293, "meters"),
  23994. default: true
  23995. },
  23996. ]
  23997. ))
  23998. characterMakers.push(() => makeCharacter(
  23999. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24000. {
  24001. front: {
  24002. height: math.unit(1050, "feet"),
  24003. weight: math.unit(200000, "tons"),
  24004. name: "Front",
  24005. image: {
  24006. source: "./media/characters/alessandra/front.svg",
  24007. extra: 960 / 912,
  24008. bottom: 0.06
  24009. }
  24010. },
  24011. },
  24012. [
  24013. {
  24014. name: "Macro",
  24015. height: math.unit(1050, "feet")
  24016. },
  24017. {
  24018. name: "Macro+",
  24019. height: math.unit(900, "meters"),
  24020. default: true
  24021. },
  24022. ]
  24023. ))
  24024. characterMakers.push(() => makeCharacter(
  24025. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24026. {
  24027. front: {
  24028. height: math.unit(5, "feet"),
  24029. weight: math.unit(187, "lb"),
  24030. name: "Front",
  24031. image: {
  24032. source: "./media/characters/person/front.svg",
  24033. extra: 3087 / 2945,
  24034. bottom: 91 / 3181
  24035. }
  24036. },
  24037. },
  24038. [
  24039. {
  24040. name: "Micro",
  24041. height: math.unit(3, "inches")
  24042. },
  24043. {
  24044. name: "Normal",
  24045. height: math.unit(5, "feet"),
  24046. default: true
  24047. },
  24048. {
  24049. name: "Macro",
  24050. height: math.unit(90, "feet")
  24051. },
  24052. {
  24053. name: "Max Size",
  24054. height: math.unit(280, "feet")
  24055. },
  24056. ]
  24057. ))
  24058. characterMakers.push(() => makeCharacter(
  24059. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24060. {
  24061. front: {
  24062. height: math.unit(4.5, "meters"),
  24063. weight: math.unit(3200, "lb"),
  24064. name: "Front",
  24065. image: {
  24066. source: "./media/characters/ty/front.svg",
  24067. extra: 1038 / 960,
  24068. bottom: 31.156 / 1068
  24069. }
  24070. },
  24071. back: {
  24072. height: math.unit(4.5, "meters"),
  24073. weight: math.unit(3200, "lb"),
  24074. name: "Back",
  24075. image: {
  24076. source: "./media/characters/ty/back.svg",
  24077. extra: 1044 / 966,
  24078. bottom: 7.48 / 1049
  24079. }
  24080. },
  24081. },
  24082. [
  24083. {
  24084. name: "Normal",
  24085. height: math.unit(4.5, "meters"),
  24086. default: true
  24087. },
  24088. ]
  24089. ))
  24090. characterMakers.push(() => makeCharacter(
  24091. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24092. {
  24093. front: {
  24094. height: math.unit(5 + 4 / 12, "feet"),
  24095. weight: math.unit(115, "lb"),
  24096. name: "Front",
  24097. image: {
  24098. source: "./media/characters/rocky/front.svg",
  24099. extra: 1012 / 975,
  24100. bottom: 54 / 1066
  24101. }
  24102. },
  24103. },
  24104. [
  24105. {
  24106. name: "Normal",
  24107. height: math.unit(5 + 4 / 12, "feet"),
  24108. default: true
  24109. },
  24110. ]
  24111. ))
  24112. characterMakers.push(() => makeCharacter(
  24113. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24114. {
  24115. upright: {
  24116. height: math.unit(6, "meters"),
  24117. weight: math.unit(4000, "kg"),
  24118. name: "Upright",
  24119. image: {
  24120. source: "./media/characters/ruin/upright.svg",
  24121. extra: 668 / 661,
  24122. bottom: 42 / 799.8396
  24123. }
  24124. },
  24125. },
  24126. [
  24127. {
  24128. name: "Normal",
  24129. height: math.unit(6, "meters"),
  24130. default: true
  24131. },
  24132. ]
  24133. ))
  24134. characterMakers.push(() => makeCharacter(
  24135. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24136. {
  24137. front: {
  24138. height: math.unit(5, "feet"),
  24139. weight: math.unit(106, "lb"),
  24140. name: "Front",
  24141. image: {
  24142. source: "./media/characters/robin/front.svg",
  24143. extra: 862 / 799,
  24144. bottom: 42.4 / 914.8856
  24145. }
  24146. },
  24147. },
  24148. [
  24149. {
  24150. name: "Normal",
  24151. height: math.unit(5, "feet"),
  24152. default: true
  24153. },
  24154. ]
  24155. ))
  24156. characterMakers.push(() => makeCharacter(
  24157. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24158. {
  24159. side: {
  24160. height: math.unit(3, "feet"),
  24161. weight: math.unit(225, "lb"),
  24162. name: "Side",
  24163. image: {
  24164. source: "./media/characters/saian/side.svg",
  24165. extra: 566 / 356,
  24166. bottom: 79.7 / 643
  24167. }
  24168. },
  24169. maw: {
  24170. height: math.unit(2.85, "feet"),
  24171. name: "Maw",
  24172. image: {
  24173. source: "./media/characters/saian/maw.svg"
  24174. }
  24175. },
  24176. },
  24177. [
  24178. {
  24179. name: "Normal",
  24180. height: math.unit(3, "feet"),
  24181. default: true
  24182. },
  24183. ]
  24184. ))
  24185. characterMakers.push(() => makeCharacter(
  24186. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24187. {
  24188. side: {
  24189. height: math.unit(8, "feet"),
  24190. weight: math.unit(300, "lb"),
  24191. name: "Side",
  24192. image: {
  24193. source: "./media/characters/equus-silvermane/side.svg",
  24194. extra: 2176 / 2050,
  24195. bottom: 65.7 / 2245
  24196. }
  24197. },
  24198. front: {
  24199. height: math.unit(8, "feet"),
  24200. weight: math.unit(300, "lb"),
  24201. name: "Front",
  24202. image: {
  24203. source: "./media/characters/equus-silvermane/front.svg",
  24204. extra: 4633 / 4400,
  24205. bottom: 71.3 / 4706.915
  24206. }
  24207. },
  24208. sideStepping: {
  24209. height: math.unit(8, "feet"),
  24210. weight: math.unit(300, "lb"),
  24211. name: "Side (Stepping)",
  24212. image: {
  24213. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24214. extra: 1968 / 1860,
  24215. bottom: 16.4 / 1989
  24216. }
  24217. },
  24218. },
  24219. [
  24220. {
  24221. name: "Normal",
  24222. height: math.unit(8, "feet")
  24223. },
  24224. {
  24225. name: "Minimacro",
  24226. height: math.unit(75, "feet"),
  24227. default: true
  24228. },
  24229. {
  24230. name: "Macro",
  24231. height: math.unit(150, "feet")
  24232. },
  24233. {
  24234. name: "Macro+",
  24235. height: math.unit(1000, "feet")
  24236. },
  24237. {
  24238. name: "Megamacro",
  24239. height: math.unit(1, "mile")
  24240. },
  24241. ]
  24242. ))
  24243. characterMakers.push(() => makeCharacter(
  24244. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24245. {
  24246. side: {
  24247. height: math.unit(20, "feet"),
  24248. weight: math.unit(30000, "kg"),
  24249. name: "Side",
  24250. image: {
  24251. source: "./media/characters/windar/side.svg",
  24252. extra: 1491 / 1248,
  24253. bottom: 82.56 / 1568
  24254. }
  24255. },
  24256. },
  24257. [
  24258. {
  24259. name: "Normal",
  24260. height: math.unit(20, "feet"),
  24261. default: true
  24262. },
  24263. ]
  24264. ))
  24265. characterMakers.push(() => makeCharacter(
  24266. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24267. {
  24268. side: {
  24269. height: math.unit(15.66, "feet"),
  24270. weight: math.unit(150, "lb"),
  24271. name: "Side",
  24272. image: {
  24273. source: "./media/characters/melody/side.svg",
  24274. extra: 1097 / 944,
  24275. bottom: 11.8 / 1109
  24276. }
  24277. },
  24278. sideOutfit: {
  24279. height: math.unit(15.66, "feet"),
  24280. weight: math.unit(150, "lb"),
  24281. name: "Side (Outfit)",
  24282. image: {
  24283. source: "./media/characters/melody/side-outfit.svg",
  24284. extra: 1097 / 944,
  24285. bottom: 11.8 / 1109
  24286. }
  24287. },
  24288. },
  24289. [
  24290. {
  24291. name: "Normal",
  24292. height: math.unit(15.66, "feet"),
  24293. default: true
  24294. },
  24295. ]
  24296. ))
  24297. characterMakers.push(() => makeCharacter(
  24298. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24299. {
  24300. armoredFront: {
  24301. height: math.unit(8, "feet"),
  24302. weight: math.unit(325, "lb"),
  24303. name: "Front",
  24304. image: {
  24305. source: "./media/characters/windera/armored-front.svg",
  24306. extra: 1830/1598,
  24307. bottom: 151/1981
  24308. },
  24309. form: "armored",
  24310. default: true
  24311. },
  24312. macroFront: {
  24313. height: math.unit(70, "feet"),
  24314. weight: math.unit(315453, "lb"),
  24315. name: "Front",
  24316. image: {
  24317. source: "./media/characters/windera/macro-front.svg",
  24318. extra: 963/883,
  24319. bottom: 23/986
  24320. },
  24321. form: "macro",
  24322. default: true
  24323. },
  24324. },
  24325. [
  24326. {
  24327. name: "Normal",
  24328. height: math.unit(8, "feet"),
  24329. default: true,
  24330. form: "armored"
  24331. },
  24332. {
  24333. name: "Normal",
  24334. height: math.unit(70, "feet"),
  24335. default: true,
  24336. form: "macro"
  24337. },
  24338. ],
  24339. {
  24340. "armored": {
  24341. name: "Armored",
  24342. default: true
  24343. },
  24344. "macro": {
  24345. name: "Macro",
  24346. },
  24347. }
  24348. ))
  24349. characterMakers.push(() => makeCharacter(
  24350. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24351. {
  24352. front: {
  24353. height: math.unit(28.75, "feet"),
  24354. weight: math.unit(2000, "kg"),
  24355. name: "Front",
  24356. image: {
  24357. source: "./media/characters/sonear/front.svg",
  24358. extra: 1041.1 / 964.9,
  24359. bottom: 53.7 / 1096.6
  24360. }
  24361. },
  24362. },
  24363. [
  24364. {
  24365. name: "Normal",
  24366. height: math.unit(28.75, "feet"),
  24367. default: true
  24368. },
  24369. ]
  24370. ))
  24371. characterMakers.push(() => makeCharacter(
  24372. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24373. {
  24374. side: {
  24375. height: math.unit(25.5, "feet"),
  24376. weight: math.unit(23000, "kg"),
  24377. name: "Side",
  24378. image: {
  24379. source: "./media/characters/kanara/side.svg"
  24380. }
  24381. },
  24382. },
  24383. [
  24384. {
  24385. name: "Normal",
  24386. height: math.unit(25.5, "feet"),
  24387. default: true
  24388. },
  24389. ]
  24390. ))
  24391. characterMakers.push(() => makeCharacter(
  24392. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24393. {
  24394. side: {
  24395. height: math.unit(10, "feet"),
  24396. weight: math.unit(1000, "kg"),
  24397. name: "Side",
  24398. image: {
  24399. source: "./media/characters/ereus/side.svg",
  24400. extra: 1157 / 959,
  24401. bottom: 153 / 1312.5
  24402. }
  24403. },
  24404. },
  24405. [
  24406. {
  24407. name: "Normal",
  24408. height: math.unit(10, "feet"),
  24409. default: true
  24410. },
  24411. ]
  24412. ))
  24413. characterMakers.push(() => makeCharacter(
  24414. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24415. {
  24416. side: {
  24417. height: math.unit(4.5, "feet"),
  24418. weight: math.unit(500, "lb"),
  24419. name: "Side",
  24420. image: {
  24421. source: "./media/characters/e-ter/side.svg",
  24422. extra: 1550 / 1248,
  24423. bottom: 146 / 1694
  24424. }
  24425. },
  24426. },
  24427. [
  24428. {
  24429. name: "Normal",
  24430. height: math.unit(4.5, "feet"),
  24431. default: true
  24432. },
  24433. ]
  24434. ))
  24435. characterMakers.push(() => makeCharacter(
  24436. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24437. {
  24438. side: {
  24439. height: math.unit(9.7, "feet"),
  24440. weight: math.unit(4000, "kg"),
  24441. name: "Side",
  24442. image: {
  24443. source: "./media/characters/yamie/side.svg"
  24444. }
  24445. },
  24446. },
  24447. [
  24448. {
  24449. name: "Normal",
  24450. height: math.unit(9.7, "feet"),
  24451. default: true
  24452. },
  24453. ]
  24454. ))
  24455. characterMakers.push(() => makeCharacter(
  24456. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24457. {
  24458. front: {
  24459. height: math.unit(50, "feet"),
  24460. weight: math.unit(50000, "kg"),
  24461. name: "Front",
  24462. image: {
  24463. source: "./media/characters/anders/front.svg",
  24464. extra: 570 / 539,
  24465. bottom: 14.7 / 586.7
  24466. }
  24467. },
  24468. },
  24469. [
  24470. {
  24471. name: "Large",
  24472. height: math.unit(50, "feet")
  24473. },
  24474. {
  24475. name: "Macro",
  24476. height: math.unit(2000, "feet"),
  24477. default: true
  24478. },
  24479. {
  24480. name: "Megamacro",
  24481. height: math.unit(12, "miles")
  24482. },
  24483. ]
  24484. ))
  24485. characterMakers.push(() => makeCharacter(
  24486. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24487. {
  24488. front: {
  24489. height: math.unit(7 + 2 / 12, "feet"),
  24490. weight: math.unit(300, "lb"),
  24491. name: "Front",
  24492. image: {
  24493. source: "./media/characters/reban/front.svg",
  24494. extra: 1287/1212,
  24495. bottom: 148/1435
  24496. }
  24497. },
  24498. head: {
  24499. height: math.unit(1.95, "feet"),
  24500. name: "Head",
  24501. image: {
  24502. source: "./media/characters/reban/head.svg"
  24503. }
  24504. },
  24505. maw: {
  24506. height: math.unit(0.95, "feet"),
  24507. name: "Maw",
  24508. image: {
  24509. source: "./media/characters/reban/maw.svg"
  24510. }
  24511. },
  24512. foot: {
  24513. height: math.unit(1.65, "feet"),
  24514. name: "Foot",
  24515. image: {
  24516. source: "./media/characters/reban/foot.svg"
  24517. }
  24518. },
  24519. dick: {
  24520. height: math.unit(7 / 5, "feet"),
  24521. name: "Dick",
  24522. image: {
  24523. source: "./media/characters/reban/dick.svg"
  24524. }
  24525. },
  24526. },
  24527. [
  24528. {
  24529. name: "Natural Height",
  24530. height: math.unit(7 + 2 / 12, "feet")
  24531. },
  24532. {
  24533. name: "Macro",
  24534. height: math.unit(500, "feet"),
  24535. default: true
  24536. },
  24537. {
  24538. name: "Canon Height",
  24539. height: math.unit(50, "AU")
  24540. },
  24541. ]
  24542. ))
  24543. characterMakers.push(() => makeCharacter(
  24544. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24545. {
  24546. front: {
  24547. height: math.unit(6, "feet"),
  24548. weight: math.unit(150, "lb"),
  24549. name: "Front",
  24550. image: {
  24551. source: "./media/characters/terrance-keayes/front.svg",
  24552. extra: 1.005,
  24553. bottom: 151 / 1615
  24554. }
  24555. },
  24556. side: {
  24557. height: math.unit(6, "feet"),
  24558. weight: math.unit(150, "lb"),
  24559. name: "Side",
  24560. image: {
  24561. source: "./media/characters/terrance-keayes/side.svg",
  24562. extra: 1.005,
  24563. bottom: 129.4 / 1544
  24564. }
  24565. },
  24566. back: {
  24567. height: math.unit(6, "feet"),
  24568. weight: math.unit(150, "lb"),
  24569. name: "Back",
  24570. image: {
  24571. source: "./media/characters/terrance-keayes/back.svg",
  24572. extra: 1.005,
  24573. bottom: 58.4 / 1557.3
  24574. }
  24575. },
  24576. dick: {
  24577. height: math.unit(6 * 0.208, "feet"),
  24578. name: "Dick",
  24579. image: {
  24580. source: "./media/characters/terrance-keayes/dick.svg"
  24581. }
  24582. },
  24583. },
  24584. [
  24585. {
  24586. name: "Canon Height",
  24587. height: math.unit(35, "miles"),
  24588. default: true
  24589. },
  24590. ]
  24591. ))
  24592. characterMakers.push(() => makeCharacter(
  24593. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24594. {
  24595. front: {
  24596. height: math.unit(6, "feet"),
  24597. weight: math.unit(150, "lb"),
  24598. name: "Front",
  24599. image: {
  24600. source: "./media/characters/ofelia/front.svg",
  24601. extra: 1130/1117,
  24602. bottom: 91/1221
  24603. }
  24604. },
  24605. back: {
  24606. height: math.unit(6, "feet"),
  24607. weight: math.unit(150, "lb"),
  24608. name: "Back",
  24609. image: {
  24610. source: "./media/characters/ofelia/back.svg",
  24611. extra: 1172/1159,
  24612. bottom: 28/1200
  24613. }
  24614. },
  24615. maw: {
  24616. height: math.unit(1, "feet"),
  24617. name: "Maw",
  24618. image: {
  24619. source: "./media/characters/ofelia/maw.svg"
  24620. }
  24621. },
  24622. foot: {
  24623. height: math.unit(1.949, "feet"),
  24624. name: "Foot",
  24625. image: {
  24626. source: "./media/characters/ofelia/foot.svg"
  24627. }
  24628. },
  24629. },
  24630. [
  24631. {
  24632. name: "Canon Height",
  24633. height: math.unit(2000, "miles"),
  24634. default: true
  24635. },
  24636. ]
  24637. ))
  24638. characterMakers.push(() => makeCharacter(
  24639. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24640. {
  24641. front: {
  24642. height: math.unit(6, "feet"),
  24643. weight: math.unit(150, "lb"),
  24644. name: "Front",
  24645. image: {
  24646. source: "./media/characters/samuel/front.svg",
  24647. extra: 265 / 258,
  24648. bottom: 2 / 266.1566
  24649. }
  24650. },
  24651. },
  24652. [
  24653. {
  24654. name: "Macro",
  24655. height: math.unit(100, "feet"),
  24656. default: true
  24657. },
  24658. {
  24659. name: "Full Size",
  24660. height: math.unit(1000, "miles")
  24661. },
  24662. ]
  24663. ))
  24664. characterMakers.push(() => makeCharacter(
  24665. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24666. {
  24667. front: {
  24668. height: math.unit(6, "feet"),
  24669. weight: math.unit(300, "lb"),
  24670. name: "Front",
  24671. image: {
  24672. source: "./media/characters/beishir-kiel/front.svg",
  24673. extra: 569 / 547,
  24674. bottom: 41.9 / 609
  24675. }
  24676. },
  24677. maw: {
  24678. height: math.unit(6 * 0.202, "feet"),
  24679. name: "Maw",
  24680. image: {
  24681. source: "./media/characters/beishir-kiel/maw.svg"
  24682. }
  24683. },
  24684. },
  24685. [
  24686. {
  24687. name: "Macro",
  24688. height: math.unit(300, "feet"),
  24689. default: true
  24690. },
  24691. ]
  24692. ))
  24693. characterMakers.push(() => makeCharacter(
  24694. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24695. {
  24696. front: {
  24697. height: math.unit(5 + 7/12, "feet"),
  24698. weight: math.unit(120, "lb"),
  24699. name: "Front",
  24700. image: {
  24701. source: "./media/characters/logan-grey/front.svg",
  24702. extra: 1836/1738,
  24703. bottom: 108/1944
  24704. }
  24705. },
  24706. back: {
  24707. height: math.unit(5 + 7/12, "feet"),
  24708. weight: math.unit(120, "lb"),
  24709. name: "Back",
  24710. image: {
  24711. source: "./media/characters/logan-grey/back.svg",
  24712. extra: 1880/1794,
  24713. bottom: 24/1904
  24714. }
  24715. },
  24716. frontSfw: {
  24717. height: math.unit(5 + 7/12, "feet"),
  24718. weight: math.unit(120, "lb"),
  24719. name: "Front (SFW)",
  24720. image: {
  24721. source: "./media/characters/logan-grey/front-sfw.svg",
  24722. extra: 1836/1738,
  24723. bottom: 108/1944
  24724. }
  24725. },
  24726. backSfw: {
  24727. height: math.unit(5 + 7/12, "feet"),
  24728. weight: math.unit(120, "lb"),
  24729. name: "Back (SFW)",
  24730. image: {
  24731. source: "./media/characters/logan-grey/back-sfw.svg",
  24732. extra: 1880/1794,
  24733. bottom: 24/1904
  24734. }
  24735. },
  24736. hands: {
  24737. height: math.unit(0.84, "feet"),
  24738. name: "Hands",
  24739. image: {
  24740. source: "./media/characters/logan-grey/hands.svg"
  24741. }
  24742. },
  24743. paws: {
  24744. height: math.unit(0.72, "feet"),
  24745. name: "Paws",
  24746. image: {
  24747. source: "./media/characters/logan-grey/paws.svg"
  24748. }
  24749. },
  24750. cock: {
  24751. height: math.unit(1.45, "feet"),
  24752. name: "Cock",
  24753. image: {
  24754. source: "./media/characters/logan-grey/cock.svg"
  24755. }
  24756. },
  24757. cockAlt: {
  24758. height: math.unit(1.437, "feet"),
  24759. name: "Cock (alt)",
  24760. image: {
  24761. source: "./media/characters/logan-grey/cock-alt.svg"
  24762. }
  24763. },
  24764. },
  24765. [
  24766. {
  24767. name: "Normal",
  24768. height: math.unit(5 + 8 / 12, "feet")
  24769. },
  24770. {
  24771. name: "The 500 Foot Femboy",
  24772. height: math.unit(500, "feet"),
  24773. default: true
  24774. },
  24775. {
  24776. name: "Megmacro",
  24777. height: math.unit(20, "miles")
  24778. },
  24779. ]
  24780. ))
  24781. characterMakers.push(() => makeCharacter(
  24782. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24783. {
  24784. front: {
  24785. height: math.unit(8 + 2 / 12, "feet"),
  24786. weight: math.unit(275, "lb"),
  24787. name: "Front",
  24788. image: {
  24789. source: "./media/characters/draganta/front.svg",
  24790. extra: 1177 / 1135,
  24791. bottom: 33.46 / 1212.1
  24792. }
  24793. },
  24794. },
  24795. [
  24796. {
  24797. name: "Normal",
  24798. height: math.unit(8 + 6 / 12, "feet"),
  24799. default: true
  24800. },
  24801. {
  24802. name: "Macro",
  24803. height: math.unit(150, "feet")
  24804. },
  24805. {
  24806. name: "Megamacro",
  24807. height: math.unit(1000, "miles")
  24808. },
  24809. ]
  24810. ))
  24811. characterMakers.push(() => makeCharacter(
  24812. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24813. {
  24814. front: {
  24815. height: math.unit(1.72, "m"),
  24816. weight: math.unit(80, "lb"),
  24817. name: "Front",
  24818. image: {
  24819. source: "./media/characters/voski/front.svg",
  24820. extra: 2076.22 / 2022.4,
  24821. bottom: 102.7 / 2177.3866
  24822. }
  24823. },
  24824. frontFlaccid: {
  24825. height: math.unit(1.72, "m"),
  24826. weight: math.unit(80, "lb"),
  24827. name: "Front (Flaccid)",
  24828. image: {
  24829. source: "./media/characters/voski/front-flaccid.svg",
  24830. extra: 2076.22 / 2022.4,
  24831. bottom: 102.7 / 2177.3866
  24832. }
  24833. },
  24834. frontErect: {
  24835. height: math.unit(1.72, "m"),
  24836. weight: math.unit(80, "lb"),
  24837. name: "Front (Erect)",
  24838. image: {
  24839. source: "./media/characters/voski/front-erect.svg",
  24840. extra: 2076.22 / 2022.4,
  24841. bottom: 102.7 / 2177.3866
  24842. }
  24843. },
  24844. back: {
  24845. height: math.unit(1.72, "m"),
  24846. weight: math.unit(80, "lb"),
  24847. name: "Back",
  24848. image: {
  24849. source: "./media/characters/voski/back.svg",
  24850. extra: 2104 / 2051,
  24851. bottom: 10.45 / 2113.63
  24852. }
  24853. },
  24854. },
  24855. [
  24856. {
  24857. name: "Normal",
  24858. height: math.unit(1.72, "m")
  24859. },
  24860. {
  24861. name: "Macro",
  24862. height: math.unit(55, "m"),
  24863. default: true
  24864. },
  24865. {
  24866. name: "Macro+",
  24867. height: math.unit(300, "m")
  24868. },
  24869. {
  24870. name: "Macro++",
  24871. height: math.unit(700, "m")
  24872. },
  24873. {
  24874. name: "Macro+++",
  24875. height: math.unit(4500, "m")
  24876. },
  24877. {
  24878. name: "Macro++++",
  24879. height: math.unit(45, "km")
  24880. },
  24881. {
  24882. name: "Macro+++++",
  24883. height: math.unit(1220, "km")
  24884. },
  24885. ]
  24886. ))
  24887. characterMakers.push(() => makeCharacter(
  24888. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24889. {
  24890. front: {
  24891. height: math.unit(2.3, "m"),
  24892. weight: math.unit(304, "kg"),
  24893. name: "Front",
  24894. image: {
  24895. source: "./media/characters/icowom-lee/front.svg",
  24896. extra: 985 / 955,
  24897. bottom: 25.4 / 1012
  24898. }
  24899. },
  24900. fronttentacles: {
  24901. height: math.unit(2.3, "m"),
  24902. weight: math.unit(304, "kg"),
  24903. name: "Front-tentacles",
  24904. image: {
  24905. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24906. extra: 985 / 955,
  24907. bottom: 25.4 / 1012
  24908. }
  24909. },
  24910. back: {
  24911. height: math.unit(2.3, "m"),
  24912. weight: math.unit(304, "kg"),
  24913. name: "Back",
  24914. image: {
  24915. source: "./media/characters/icowom-lee/back.svg",
  24916. extra: 975 / 954,
  24917. bottom: 9.5 / 985
  24918. }
  24919. },
  24920. backtentacles: {
  24921. height: math.unit(2.3, "m"),
  24922. weight: math.unit(304, "kg"),
  24923. name: "Back-tentacles",
  24924. image: {
  24925. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24926. extra: 975 / 954,
  24927. bottom: 9.5 / 985
  24928. }
  24929. },
  24930. frontDressed: {
  24931. height: math.unit(2.3, "m"),
  24932. weight: math.unit(304, "kg"),
  24933. name: "Front (Dressed)",
  24934. image: {
  24935. source: "./media/characters/icowom-lee/front-dressed.svg",
  24936. extra: 3076 / 2933,
  24937. bottom: 51.4 / 3125.1889
  24938. }
  24939. },
  24940. rump: {
  24941. height: math.unit(0.776, "meters"),
  24942. name: "Rump",
  24943. image: {
  24944. source: "./media/characters/icowom-lee/rump.svg"
  24945. }
  24946. },
  24947. genitals: {
  24948. height: math.unit(0.78, "meters"),
  24949. name: "Genitals",
  24950. image: {
  24951. source: "./media/characters/icowom-lee/genitals.svg"
  24952. }
  24953. },
  24954. },
  24955. [
  24956. {
  24957. name: "Normal",
  24958. height: math.unit(2.3, "meters"),
  24959. default: true
  24960. },
  24961. {
  24962. name: "Macro",
  24963. height: math.unit(94, "meters"),
  24964. default: true
  24965. },
  24966. ]
  24967. ))
  24968. characterMakers.push(() => makeCharacter(
  24969. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24970. {
  24971. front: {
  24972. height: math.unit(22, "meters"),
  24973. weight: math.unit(21000, "kg"),
  24974. name: "Front",
  24975. image: {
  24976. source: "./media/characters/shock-diamond/front.svg",
  24977. extra: 2204 / 2053,
  24978. bottom: 65 / 2239.47
  24979. }
  24980. },
  24981. frontNude: {
  24982. height: math.unit(22, "meters"),
  24983. weight: math.unit(21000, "kg"),
  24984. name: "Front (Nude)",
  24985. image: {
  24986. source: "./media/characters/shock-diamond/front-nude.svg",
  24987. extra: 2514 / 2285,
  24988. bottom: 13 / 2527.56
  24989. }
  24990. },
  24991. },
  24992. [
  24993. {
  24994. name: "Normal",
  24995. height: math.unit(3, "meters")
  24996. },
  24997. {
  24998. name: "Macro",
  24999. height: math.unit(22, "meters"),
  25000. default: true
  25001. },
  25002. ]
  25003. ))
  25004. characterMakers.push(() => makeCharacter(
  25005. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25006. {
  25007. front: {
  25008. height: math.unit(5 + 4/12, "feet"),
  25009. weight: math.unit(125, "lb"),
  25010. name: "Front",
  25011. image: {
  25012. source: "./media/characters/rory/front.svg",
  25013. extra: 1790/1681,
  25014. bottom: 66/1856
  25015. },
  25016. form: "normal",
  25017. default: true
  25018. },
  25019. back: {
  25020. height: math.unit(5 + 4/12, "feet"),
  25021. weight: math.unit(125, "lb"),
  25022. name: "Back",
  25023. image: {
  25024. source: "./media/characters/rory/back.svg",
  25025. extra: 1805/1690,
  25026. bottom: 56/1861
  25027. },
  25028. form: "normal"
  25029. },
  25030. frontDressed: {
  25031. height: math.unit(5 + 4/12, "feet"),
  25032. weight: math.unit(125, "lb"),
  25033. name: "Front (Dressed)",
  25034. image: {
  25035. source: "./media/characters/rory/front-dressed.svg",
  25036. extra: 1790/1681,
  25037. bottom: 66/1856
  25038. },
  25039. form: "normal"
  25040. },
  25041. backDressed: {
  25042. height: math.unit(5 + 4/12, "feet"),
  25043. weight: math.unit(125, "lb"),
  25044. name: "Back (Dressed)",
  25045. image: {
  25046. source: "./media/characters/rory/back-dressed.svg",
  25047. extra: 1805/1690,
  25048. bottom: 56/1861
  25049. },
  25050. form: "normal"
  25051. },
  25052. frontNsfw: {
  25053. height: math.unit(5 + 4/12, "feet"),
  25054. weight: math.unit(125, "lb"),
  25055. name: "Front (NSFW)",
  25056. image: {
  25057. source: "./media/characters/rory/front-nsfw.svg",
  25058. extra: 1790/1681,
  25059. bottom: 66/1856
  25060. },
  25061. form: "normal"
  25062. },
  25063. backNsfw: {
  25064. height: math.unit(5 + 4/12, "feet"),
  25065. weight: math.unit(125, "lb"),
  25066. name: "Back (NSFW)",
  25067. image: {
  25068. source: "./media/characters/rory/back-nsfw.svg",
  25069. extra: 1805/1690,
  25070. bottom: 56/1861
  25071. },
  25072. form: "normal"
  25073. },
  25074. dick: {
  25075. height: math.unit(0.8, "feet"),
  25076. name: "Dick",
  25077. image: {
  25078. source: "./media/characters/rory/dick.svg"
  25079. },
  25080. form: "normal"
  25081. },
  25082. thicc_front: {
  25083. height: math.unit(5 + 4/12, "feet"),
  25084. weight: math.unit(195, "lb"),
  25085. name: "Front",
  25086. image: {
  25087. source: "./media/characters/rory/thicc-front.svg",
  25088. extra: 1220/1100,
  25089. bottom: 103/1323
  25090. },
  25091. form: "thicc",
  25092. default: true
  25093. },
  25094. thicc_back: {
  25095. height: math.unit(5 + 4/12, "feet"),
  25096. weight: math.unit(195, "lb"),
  25097. name: "Back",
  25098. image: {
  25099. source: "./media/characters/rory/thicc-back.svg",
  25100. extra: 1166/1086,
  25101. bottom: 35/1201
  25102. },
  25103. form: "thicc"
  25104. },
  25105. },
  25106. [
  25107. {
  25108. name: "Micro",
  25109. height: math.unit(3, "inches"),
  25110. allForms: true
  25111. },
  25112. {
  25113. name: "Normal",
  25114. height: math.unit(5 + 4/12, "feet"),
  25115. allForms: true,
  25116. default: true
  25117. },
  25118. {
  25119. name: "Macro",
  25120. height: math.unit(90, "feet"),
  25121. allForms: true
  25122. },
  25123. {
  25124. name: "Supercharged",
  25125. height: math.unit(270, "feet"),
  25126. allForms: true
  25127. },
  25128. ],
  25129. {
  25130. "normal": {
  25131. name: "Normal",
  25132. default: true
  25133. },
  25134. "thicc": {
  25135. name: "Thicc",
  25136. },
  25137. }
  25138. ))
  25139. characterMakers.push(() => makeCharacter(
  25140. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25141. {
  25142. front: {
  25143. height: math.unit(5 + 9 / 12, "feet"),
  25144. weight: math.unit(190, "lb"),
  25145. name: "Front",
  25146. image: {
  25147. source: "./media/characters/sprisk/front.svg",
  25148. extra: 1225 / 1180,
  25149. bottom: 42.7 / 1266.4
  25150. }
  25151. },
  25152. frontNsfw: {
  25153. height: math.unit(5 + 9 / 12, "feet"),
  25154. weight: math.unit(190, "lb"),
  25155. name: "Front (NSFW)",
  25156. image: {
  25157. source: "./media/characters/sprisk/front-nsfw.svg",
  25158. extra: 1225 / 1180,
  25159. bottom: 42.7 / 1266.4
  25160. }
  25161. },
  25162. back: {
  25163. height: math.unit(5 + 9 / 12, "feet"),
  25164. weight: math.unit(190, "lb"),
  25165. name: "Back",
  25166. image: {
  25167. source: "./media/characters/sprisk/back.svg",
  25168. extra: 1247 / 1200,
  25169. bottom: 5.6 / 1253.04
  25170. }
  25171. },
  25172. },
  25173. [
  25174. {
  25175. name: "Tiny",
  25176. height: math.unit(2, "inches")
  25177. },
  25178. {
  25179. name: "Normal",
  25180. height: math.unit(5 + 9 / 12, "feet"),
  25181. default: true
  25182. },
  25183. {
  25184. name: "Mini Macro",
  25185. height: math.unit(18, "feet")
  25186. },
  25187. {
  25188. name: "Macro",
  25189. height: math.unit(100, "feet")
  25190. },
  25191. {
  25192. name: "MACRO",
  25193. height: math.unit(50, "miles")
  25194. },
  25195. {
  25196. name: "M A C R O",
  25197. height: math.unit(300, "miles")
  25198. },
  25199. ]
  25200. ))
  25201. characterMakers.push(() => makeCharacter(
  25202. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25203. {
  25204. side: {
  25205. height: math.unit(15.6, "meters"),
  25206. weight: math.unit(700000, "kg"),
  25207. name: "Side",
  25208. image: {
  25209. source: "./media/characters/bunsen/side.svg",
  25210. extra: 1644 / 358
  25211. }
  25212. },
  25213. foot: {
  25214. height: math.unit(1.611 * 1644 / 358, "meter"),
  25215. name: "Foot",
  25216. image: {
  25217. source: "./media/characters/bunsen/foot.svg"
  25218. }
  25219. },
  25220. },
  25221. [
  25222. {
  25223. name: "Small",
  25224. height: math.unit(10, "feet")
  25225. },
  25226. {
  25227. name: "Normal",
  25228. height: math.unit(15.6, "meters"),
  25229. default: true
  25230. },
  25231. ]
  25232. ))
  25233. characterMakers.push(() => makeCharacter(
  25234. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25235. {
  25236. front: {
  25237. height: math.unit(4 + 11 / 12, "feet"),
  25238. weight: math.unit(140, "lb"),
  25239. name: "Front",
  25240. image: {
  25241. source: "./media/characters/sesh/front.svg",
  25242. extra: 3420 / 3231,
  25243. bottom: 72 / 3949.5
  25244. }
  25245. },
  25246. },
  25247. [
  25248. {
  25249. name: "Normal",
  25250. height: math.unit(4 + 11 / 12, "feet")
  25251. },
  25252. {
  25253. name: "Grown",
  25254. height: math.unit(15, "feet"),
  25255. default: true
  25256. },
  25257. {
  25258. name: "Macro",
  25259. height: math.unit(1500, "feet")
  25260. },
  25261. {
  25262. name: "Megamacro",
  25263. height: math.unit(30, "miles")
  25264. },
  25265. {
  25266. name: "Continental",
  25267. height: math.unit(3000, "miles")
  25268. },
  25269. {
  25270. name: "Gravity Mass",
  25271. height: math.unit(300000, "miles")
  25272. },
  25273. {
  25274. name: "Planet Buster",
  25275. height: math.unit(30000000, "miles")
  25276. },
  25277. {
  25278. name: "Big",
  25279. height: math.unit(3000000000, "miles")
  25280. },
  25281. ]
  25282. ))
  25283. characterMakers.push(() => makeCharacter(
  25284. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25285. {
  25286. front: {
  25287. height: math.unit(9, "feet"),
  25288. weight: math.unit(350, "lb"),
  25289. name: "Front",
  25290. image: {
  25291. source: "./media/characters/pepper/front.svg",
  25292. extra: 1448 / 1312,
  25293. bottom: 9.4 / 1457.88
  25294. }
  25295. },
  25296. back: {
  25297. height: math.unit(9, "feet"),
  25298. weight: math.unit(350, "lb"),
  25299. name: "Back",
  25300. image: {
  25301. source: "./media/characters/pepper/back.svg",
  25302. extra: 1423 / 1300,
  25303. bottom: 4.6 / 1429
  25304. }
  25305. },
  25306. maw: {
  25307. height: math.unit(0.932, "feet"),
  25308. name: "Maw",
  25309. image: {
  25310. source: "./media/characters/pepper/maw.svg"
  25311. }
  25312. },
  25313. },
  25314. [
  25315. {
  25316. name: "Normal",
  25317. height: math.unit(9, "feet"),
  25318. default: true
  25319. },
  25320. ]
  25321. ))
  25322. characterMakers.push(() => makeCharacter(
  25323. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25324. {
  25325. front: {
  25326. height: math.unit(6, "feet"),
  25327. weight: math.unit(150, "lb"),
  25328. name: "Front",
  25329. image: {
  25330. source: "./media/characters/maelstrom/front.svg",
  25331. extra: 2100 / 1883,
  25332. bottom: 94 / 2196.7
  25333. }
  25334. },
  25335. },
  25336. [
  25337. {
  25338. name: "Less Kaiju",
  25339. height: math.unit(200, "feet")
  25340. },
  25341. {
  25342. name: "Kaiju",
  25343. height: math.unit(400, "feet"),
  25344. default: true
  25345. },
  25346. {
  25347. name: "Kaiju-er",
  25348. height: math.unit(600, "feet")
  25349. },
  25350. ]
  25351. ))
  25352. characterMakers.push(() => makeCharacter(
  25353. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25354. {
  25355. front: {
  25356. height: math.unit(6 + 5 / 12, "feet"),
  25357. weight: math.unit(180, "lb"),
  25358. name: "Front",
  25359. image: {
  25360. source: "./media/characters/lexir/front.svg",
  25361. extra: 180 / 172,
  25362. bottom: 12 / 192
  25363. }
  25364. },
  25365. back: {
  25366. height: math.unit(6 + 5 / 12, "feet"),
  25367. weight: math.unit(180, "lb"),
  25368. name: "Back",
  25369. image: {
  25370. source: "./media/characters/lexir/back.svg",
  25371. extra: 1273/1201,
  25372. bottom: 39/1312
  25373. }
  25374. },
  25375. },
  25376. [
  25377. {
  25378. name: "Very Smal",
  25379. height: math.unit(1, "nm")
  25380. },
  25381. {
  25382. name: "Normal",
  25383. height: math.unit(6 + 5 / 12, "feet"),
  25384. default: true
  25385. },
  25386. {
  25387. name: "Macro",
  25388. height: math.unit(1, "mile")
  25389. },
  25390. {
  25391. name: "Megamacro",
  25392. height: math.unit(50, "miles")
  25393. },
  25394. ]
  25395. ))
  25396. characterMakers.push(() => makeCharacter(
  25397. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25398. {
  25399. front: {
  25400. height: math.unit(1.5, "meters"),
  25401. weight: math.unit(100, "lb"),
  25402. name: "Front",
  25403. image: {
  25404. source: "./media/characters/maksio/front.svg",
  25405. extra: 1549 / 1531,
  25406. bottom: 123.7 / 1674.5429
  25407. }
  25408. },
  25409. back: {
  25410. height: math.unit(1.5, "meters"),
  25411. weight: math.unit(100, "lb"),
  25412. name: "Back",
  25413. image: {
  25414. source: "./media/characters/maksio/back.svg",
  25415. extra: 1541 / 1509,
  25416. bottom: 97 / 1639
  25417. }
  25418. },
  25419. hand: {
  25420. height: math.unit(0.621, "feet"),
  25421. name: "Hand",
  25422. image: {
  25423. source: "./media/characters/maksio/hand.svg"
  25424. }
  25425. },
  25426. foot: {
  25427. height: math.unit(1.611, "feet"),
  25428. name: "Foot",
  25429. image: {
  25430. source: "./media/characters/maksio/foot.svg"
  25431. }
  25432. },
  25433. },
  25434. [
  25435. {
  25436. name: "Shrunken",
  25437. height: math.unit(10, "cm")
  25438. },
  25439. {
  25440. name: "Normal",
  25441. height: math.unit(150, "cm"),
  25442. default: true
  25443. },
  25444. ]
  25445. ))
  25446. characterMakers.push(() => makeCharacter(
  25447. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25448. {
  25449. front: {
  25450. height: math.unit(100, "feet"),
  25451. name: "Front",
  25452. image: {
  25453. source: "./media/characters/erza-bear/front.svg",
  25454. extra: 2449 / 2390,
  25455. bottom: 46 / 2494
  25456. }
  25457. },
  25458. back: {
  25459. height: math.unit(100, "feet"),
  25460. name: "Back",
  25461. image: {
  25462. source: "./media/characters/erza-bear/back.svg",
  25463. extra: 2489 / 2430,
  25464. bottom: 85.4 / 2480
  25465. }
  25466. },
  25467. tail: {
  25468. height: math.unit(42, "feet"),
  25469. name: "Tail",
  25470. image: {
  25471. source: "./media/characters/erza-bear/tail.svg"
  25472. }
  25473. },
  25474. tongue: {
  25475. height: math.unit(8, "feet"),
  25476. name: "Tongue",
  25477. image: {
  25478. source: "./media/characters/erza-bear/tongue.svg"
  25479. }
  25480. },
  25481. dick: {
  25482. height: math.unit(10.5, "feet"),
  25483. name: "Dick",
  25484. image: {
  25485. source: "./media/characters/erza-bear/dick.svg"
  25486. }
  25487. },
  25488. dickVertical: {
  25489. height: math.unit(16.9, "feet"),
  25490. name: "Dick (Vertical)",
  25491. image: {
  25492. source: "./media/characters/erza-bear/dick-vertical.svg"
  25493. }
  25494. },
  25495. },
  25496. [
  25497. {
  25498. name: "Macro",
  25499. height: math.unit(100, "feet"),
  25500. default: true
  25501. },
  25502. ]
  25503. ))
  25504. characterMakers.push(() => makeCharacter(
  25505. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25506. {
  25507. front: {
  25508. height: math.unit(172, "cm"),
  25509. weight: math.unit(73, "kg"),
  25510. name: "Front",
  25511. image: {
  25512. source: "./media/characters/violet-flor/front.svg",
  25513. extra: 1530 / 1442,
  25514. bottom: 61.9 / 1588.8
  25515. }
  25516. },
  25517. back: {
  25518. height: math.unit(180, "cm"),
  25519. weight: math.unit(73, "kg"),
  25520. name: "Back",
  25521. image: {
  25522. source: "./media/characters/violet-flor/back.svg",
  25523. extra: 1692 / 1630,
  25524. bottom: 20 / 1712
  25525. }
  25526. },
  25527. },
  25528. [
  25529. {
  25530. name: "Normal",
  25531. height: math.unit(172, "cm"),
  25532. default: true
  25533. },
  25534. ]
  25535. ))
  25536. characterMakers.push(() => makeCharacter(
  25537. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25538. {
  25539. front: {
  25540. height: math.unit(6, "feet"),
  25541. weight: math.unit(220, "lb"),
  25542. name: "Front",
  25543. image: {
  25544. source: "./media/characters/lynn-rhea/front.svg",
  25545. extra: 310 / 273
  25546. }
  25547. },
  25548. back: {
  25549. height: math.unit(6, "feet"),
  25550. weight: math.unit(220, "lb"),
  25551. name: "Back",
  25552. image: {
  25553. source: "./media/characters/lynn-rhea/back.svg",
  25554. extra: 310 / 273
  25555. }
  25556. },
  25557. dicks: {
  25558. height: math.unit(0.9, "feet"),
  25559. name: "Dicks",
  25560. image: {
  25561. source: "./media/characters/lynn-rhea/dicks.svg"
  25562. }
  25563. },
  25564. slit: {
  25565. height: math.unit(0.4, "feet"),
  25566. name: "Slit",
  25567. image: {
  25568. source: "./media/characters/lynn-rhea/slit.svg"
  25569. }
  25570. },
  25571. },
  25572. [
  25573. {
  25574. name: "Micro",
  25575. height: math.unit(1, "inch")
  25576. },
  25577. {
  25578. name: "Macro",
  25579. height: math.unit(60, "feet"),
  25580. default: true
  25581. },
  25582. {
  25583. name: "Megamacro",
  25584. height: math.unit(2, "miles")
  25585. },
  25586. {
  25587. name: "Gigamacro",
  25588. height: math.unit(3, "earths")
  25589. },
  25590. {
  25591. name: "Galactic",
  25592. height: math.unit(0.8, "galaxies")
  25593. },
  25594. ]
  25595. ))
  25596. characterMakers.push(() => makeCharacter(
  25597. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25598. {
  25599. front: {
  25600. height: math.unit(1600, "feet"),
  25601. weight: math.unit(85758785169, "kg"),
  25602. name: "Front",
  25603. image: {
  25604. source: "./media/characters/valathos/front.svg",
  25605. extra: 1451 / 1339
  25606. }
  25607. },
  25608. },
  25609. [
  25610. {
  25611. name: "Macro",
  25612. height: math.unit(1600, "feet"),
  25613. default: true
  25614. },
  25615. ]
  25616. ))
  25617. characterMakers.push(() => makeCharacter(
  25618. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25619. {
  25620. front: {
  25621. height: math.unit(7 + 5 / 12, "feet"),
  25622. weight: math.unit(300, "lb"),
  25623. name: "Front",
  25624. image: {
  25625. source: "./media/characters/azula/front.svg",
  25626. extra: 3208 / 2880,
  25627. bottom: 80.2 / 3277
  25628. }
  25629. },
  25630. back: {
  25631. height: math.unit(7 + 5 / 12, "feet"),
  25632. weight: math.unit(300, "lb"),
  25633. name: "Back",
  25634. image: {
  25635. source: "./media/characters/azula/back.svg",
  25636. extra: 3169 / 2822,
  25637. bottom: 150.6 / 3321
  25638. }
  25639. },
  25640. },
  25641. [
  25642. {
  25643. name: "Normal",
  25644. height: math.unit(7 + 5 / 12, "feet"),
  25645. default: true
  25646. },
  25647. {
  25648. name: "Big",
  25649. height: math.unit(20, "feet")
  25650. },
  25651. ]
  25652. ))
  25653. characterMakers.push(() => makeCharacter(
  25654. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25655. {
  25656. front: {
  25657. height: math.unit(5 + 1 / 12, "feet"),
  25658. weight: math.unit(110, "lb"),
  25659. name: "Front",
  25660. image: {
  25661. source: "./media/characters/rupert/front.svg",
  25662. extra: 1549 / 1495,
  25663. bottom: 54.2 / 1604.4
  25664. }
  25665. },
  25666. },
  25667. [
  25668. {
  25669. name: "Normal",
  25670. height: math.unit(5 + 1 / 12, "feet"),
  25671. default: true
  25672. },
  25673. ]
  25674. ))
  25675. characterMakers.push(() => makeCharacter(
  25676. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25677. {
  25678. front: {
  25679. height: math.unit(8 + 4 / 12, "feet"),
  25680. weight: math.unit(350, "lb"),
  25681. name: "Front",
  25682. image: {
  25683. source: "./media/characters/sheera-castellar/front.svg",
  25684. extra: 1957 / 1894,
  25685. bottom: 26.97 / 1975.017
  25686. }
  25687. },
  25688. side: {
  25689. height: math.unit(8 + 4 / 12, "feet"),
  25690. weight: math.unit(350, "lb"),
  25691. name: "Side",
  25692. image: {
  25693. source: "./media/characters/sheera-castellar/side.svg",
  25694. extra: 1957 / 1894
  25695. }
  25696. },
  25697. back: {
  25698. height: math.unit(8 + 4 / 12, "feet"),
  25699. weight: math.unit(350, "lb"),
  25700. name: "Back",
  25701. image: {
  25702. source: "./media/characters/sheera-castellar/back.svg",
  25703. extra: 1957 / 1894
  25704. }
  25705. },
  25706. angled: {
  25707. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25708. weight: math.unit(350, "lb"),
  25709. name: "Angled",
  25710. image: {
  25711. source: "./media/characters/sheera-castellar/angled.svg",
  25712. extra: 1807 / 1707,
  25713. bottom: 68 / 1875
  25714. }
  25715. },
  25716. genitals: {
  25717. height: math.unit(2.2, "feet"),
  25718. name: "Genitals",
  25719. image: {
  25720. source: "./media/characters/sheera-castellar/genitals.svg"
  25721. }
  25722. },
  25723. taur: {
  25724. height: math.unit(10 + 6/12, "feet"),
  25725. name: "Taur",
  25726. image: {
  25727. source: "./media/characters/sheera-castellar/taur.svg",
  25728. extra: 2017/1909,
  25729. bottom: 185/2202
  25730. }
  25731. },
  25732. },
  25733. [
  25734. {
  25735. name: "Normal",
  25736. height: math.unit(8 + 4 / 12, "feet")
  25737. },
  25738. {
  25739. name: "Macro",
  25740. height: math.unit(150, "feet"),
  25741. default: true
  25742. },
  25743. {
  25744. name: "Macro+",
  25745. height: math.unit(800, "feet")
  25746. },
  25747. ]
  25748. ))
  25749. characterMakers.push(() => makeCharacter(
  25750. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25751. {
  25752. front: {
  25753. height: math.unit(6, "feet"),
  25754. weight: math.unit(150, "lb"),
  25755. name: "Front",
  25756. image: {
  25757. source: "./media/characters/jaipur/front.svg",
  25758. extra: 3860 / 3731,
  25759. bottom: 287 / 4140
  25760. }
  25761. },
  25762. back: {
  25763. height: math.unit(6, "feet"),
  25764. weight: math.unit(150, "lb"),
  25765. name: "Back",
  25766. image: {
  25767. source: "./media/characters/jaipur/back.svg",
  25768. extra: 1637/1561,
  25769. bottom: 154/1791
  25770. }
  25771. },
  25772. },
  25773. [
  25774. {
  25775. name: "Normal",
  25776. height: math.unit(1.85, "meters"),
  25777. default: true
  25778. },
  25779. {
  25780. name: "Macro",
  25781. height: math.unit(150, "meters")
  25782. },
  25783. {
  25784. name: "Macro+",
  25785. height: math.unit(0.5, "miles")
  25786. },
  25787. {
  25788. name: "Macro++",
  25789. height: math.unit(2.5, "miles")
  25790. },
  25791. {
  25792. name: "Macro+++",
  25793. height: math.unit(12, "miles")
  25794. },
  25795. {
  25796. name: "Macro++++",
  25797. height: math.unit(120, "miles")
  25798. },
  25799. {
  25800. name: "Macro+++++",
  25801. height: math.unit(1200, "miles")
  25802. },
  25803. ]
  25804. ))
  25805. characterMakers.push(() => makeCharacter(
  25806. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25807. {
  25808. front: {
  25809. height: math.unit(6, "feet"),
  25810. weight: math.unit(150, "lb"),
  25811. name: "Front",
  25812. image: {
  25813. source: "./media/characters/sheila-wolf/front.svg",
  25814. extra: 1931 / 1808,
  25815. bottom: 29.5 / 1960
  25816. }
  25817. },
  25818. dick: {
  25819. height: math.unit(1.464, "feet"),
  25820. name: "Dick",
  25821. image: {
  25822. source: "./media/characters/sheila-wolf/dick.svg"
  25823. }
  25824. },
  25825. muzzle: {
  25826. height: math.unit(0.513, "feet"),
  25827. name: "Muzzle",
  25828. image: {
  25829. source: "./media/characters/sheila-wolf/muzzle.svg"
  25830. }
  25831. },
  25832. },
  25833. [
  25834. {
  25835. name: "Macro",
  25836. height: math.unit(70, "feet"),
  25837. default: true
  25838. },
  25839. ]
  25840. ))
  25841. characterMakers.push(() => makeCharacter(
  25842. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25843. {
  25844. front: {
  25845. height: math.unit(32, "meters"),
  25846. weight: math.unit(300000, "kg"),
  25847. name: "Front",
  25848. image: {
  25849. source: "./media/characters/almor/front.svg",
  25850. extra: 1408 / 1322,
  25851. bottom: 94.6 / 1506.5
  25852. }
  25853. },
  25854. },
  25855. [
  25856. {
  25857. name: "Macro",
  25858. height: math.unit(32, "meters"),
  25859. default: true
  25860. },
  25861. ]
  25862. ))
  25863. characterMakers.push(() => makeCharacter(
  25864. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25865. {
  25866. front: {
  25867. height: math.unit(7, "feet"),
  25868. weight: math.unit(200, "lb"),
  25869. name: "Front",
  25870. image: {
  25871. source: "./media/characters/silver/front.svg",
  25872. extra: 472.1 / 450.5,
  25873. bottom: 26.5 / 499.424
  25874. }
  25875. },
  25876. },
  25877. [
  25878. {
  25879. name: "Normal",
  25880. height: math.unit(7, "feet"),
  25881. default: true
  25882. },
  25883. {
  25884. name: "Macro",
  25885. height: math.unit(800, "feet")
  25886. },
  25887. {
  25888. name: "Megamacro",
  25889. height: math.unit(250, "miles")
  25890. },
  25891. ]
  25892. ))
  25893. characterMakers.push(() => makeCharacter(
  25894. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25895. {
  25896. front: {
  25897. height: math.unit(6, "feet"),
  25898. weight: math.unit(150, "lb"),
  25899. name: "Front",
  25900. image: {
  25901. source: "./media/characters/pliskin/front.svg",
  25902. extra: 1469 / 1359,
  25903. bottom: 70 / 1540
  25904. }
  25905. },
  25906. },
  25907. [
  25908. {
  25909. name: "Micro",
  25910. height: math.unit(3, "inches")
  25911. },
  25912. {
  25913. name: "Normal",
  25914. height: math.unit(5 + 11 / 12, "feet"),
  25915. default: true
  25916. },
  25917. {
  25918. name: "Macro",
  25919. height: math.unit(120, "feet")
  25920. },
  25921. ]
  25922. ))
  25923. characterMakers.push(() => makeCharacter(
  25924. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25925. {
  25926. front: {
  25927. height: math.unit(6, "feet"),
  25928. weight: math.unit(150, "lb"),
  25929. name: "Front",
  25930. image: {
  25931. source: "./media/characters/sammy/front.svg",
  25932. extra: 1193 / 1089,
  25933. bottom: 30.5 / 1226
  25934. }
  25935. },
  25936. },
  25937. [
  25938. {
  25939. name: "Macro",
  25940. height: math.unit(1700, "feet"),
  25941. default: true
  25942. },
  25943. {
  25944. name: "Examacro",
  25945. height: math.unit(2.5e9, "lightyears")
  25946. },
  25947. ]
  25948. ))
  25949. characterMakers.push(() => makeCharacter(
  25950. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25951. {
  25952. front: {
  25953. height: math.unit(21, "meters"),
  25954. weight: math.unit(12, "tonnes"),
  25955. name: "Front",
  25956. image: {
  25957. source: "./media/characters/kuru/front.svg",
  25958. extra: 4301 / 3785,
  25959. bottom: 371.3 / 4691
  25960. }
  25961. },
  25962. },
  25963. [
  25964. {
  25965. name: "Macro",
  25966. height: math.unit(21, "meters"),
  25967. default: true
  25968. },
  25969. ]
  25970. ))
  25971. characterMakers.push(() => makeCharacter(
  25972. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25973. {
  25974. front: {
  25975. height: math.unit(23, "meters"),
  25976. weight: math.unit(12.2, "tonnes"),
  25977. name: "Front",
  25978. image: {
  25979. source: "./media/characters/rakka/front.svg",
  25980. extra: 4670 / 4169,
  25981. bottom: 301 / 4968.7
  25982. }
  25983. },
  25984. },
  25985. [
  25986. {
  25987. name: "Macro",
  25988. height: math.unit(23, "meters"),
  25989. default: true
  25990. },
  25991. ]
  25992. ))
  25993. characterMakers.push(() => makeCharacter(
  25994. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25995. {
  25996. front: {
  25997. height: math.unit(6, "feet"),
  25998. weight: math.unit(150, "lb"),
  25999. name: "Front",
  26000. image: {
  26001. source: "./media/characters/rhys-feline/front.svg",
  26002. extra: 2488 / 2308,
  26003. bottom: 35.67 / 2519.19
  26004. }
  26005. },
  26006. },
  26007. [
  26008. {
  26009. name: "Really Small",
  26010. height: math.unit(1, "nm")
  26011. },
  26012. {
  26013. name: "Micro",
  26014. height: math.unit(4, "inches")
  26015. },
  26016. {
  26017. name: "Normal",
  26018. height: math.unit(4 + 10 / 12, "feet"),
  26019. default: true
  26020. },
  26021. {
  26022. name: "Macro",
  26023. height: math.unit(100, "feet")
  26024. },
  26025. {
  26026. name: "Megamacto",
  26027. height: math.unit(50, "miles")
  26028. },
  26029. ]
  26030. ))
  26031. characterMakers.push(() => makeCharacter(
  26032. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26033. {
  26034. side: {
  26035. height: math.unit(30, "feet"),
  26036. weight: math.unit(35000, "kg"),
  26037. name: "Side",
  26038. image: {
  26039. source: "./media/characters/alydar/side.svg",
  26040. extra: 234 / 222,
  26041. bottom: 6.5 / 241
  26042. }
  26043. },
  26044. front: {
  26045. height: math.unit(30, "feet"),
  26046. weight: math.unit(35000, "kg"),
  26047. name: "Front",
  26048. image: {
  26049. source: "./media/characters/alydar/front.svg",
  26050. extra: 223.37 / 210.2,
  26051. bottom: 22.3 / 246.76
  26052. }
  26053. },
  26054. top: {
  26055. height: math.unit(64.54, "feet"),
  26056. weight: math.unit(35000, "kg"),
  26057. name: "Top",
  26058. image: {
  26059. source: "./media/characters/alydar/top.svg"
  26060. }
  26061. },
  26062. anthro: {
  26063. height: math.unit(30, "feet"),
  26064. weight: math.unit(9000, "kg"),
  26065. name: "Anthro",
  26066. image: {
  26067. source: "./media/characters/alydar/anthro.svg",
  26068. extra: 432 / 421,
  26069. bottom: 7.18 / 440
  26070. }
  26071. },
  26072. maw: {
  26073. height: math.unit(11.693, "feet"),
  26074. name: "Maw",
  26075. image: {
  26076. source: "./media/characters/alydar/maw.svg"
  26077. }
  26078. },
  26079. head: {
  26080. height: math.unit(11.693, "feet"),
  26081. name: "Head",
  26082. image: {
  26083. source: "./media/characters/alydar/head.svg"
  26084. }
  26085. },
  26086. headAlt: {
  26087. height: math.unit(12.861, "feet"),
  26088. name: "Head (Alt)",
  26089. image: {
  26090. source: "./media/characters/alydar/head-alt.svg"
  26091. }
  26092. },
  26093. wing: {
  26094. height: math.unit(20.712, "feet"),
  26095. name: "Wing",
  26096. image: {
  26097. source: "./media/characters/alydar/wing.svg"
  26098. }
  26099. },
  26100. wingFeather: {
  26101. height: math.unit(9.662, "feet"),
  26102. name: "Wing Feather",
  26103. image: {
  26104. source: "./media/characters/alydar/wing-feather.svg"
  26105. }
  26106. },
  26107. countourFeather: {
  26108. height: math.unit(4.154, "feet"),
  26109. name: "Contour Feather",
  26110. image: {
  26111. source: "./media/characters/alydar/contour-feather.svg"
  26112. }
  26113. },
  26114. },
  26115. [
  26116. {
  26117. name: "Diplomatic",
  26118. height: math.unit(13, "feet"),
  26119. default: true
  26120. },
  26121. {
  26122. name: "Small",
  26123. height: math.unit(30, "feet")
  26124. },
  26125. {
  26126. name: "Normal",
  26127. height: math.unit(95, "feet"),
  26128. default: true
  26129. },
  26130. {
  26131. name: "Large",
  26132. height: math.unit(285, "feet")
  26133. },
  26134. {
  26135. name: "Incomprehensible",
  26136. height: math.unit(450, "megameters")
  26137. },
  26138. ]
  26139. ))
  26140. characterMakers.push(() => makeCharacter(
  26141. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26142. {
  26143. side: {
  26144. height: math.unit(11, "feet"),
  26145. weight: math.unit(1750, "kg"),
  26146. name: "Side",
  26147. image: {
  26148. source: "./media/characters/selicia/side.svg",
  26149. extra: 440 / 396,
  26150. bottom: 24.8 / 465.979
  26151. }
  26152. },
  26153. maw: {
  26154. height: math.unit(4.665, "feet"),
  26155. name: "Maw",
  26156. image: {
  26157. source: "./media/characters/selicia/maw.svg"
  26158. }
  26159. },
  26160. },
  26161. [
  26162. {
  26163. name: "Normal",
  26164. height: math.unit(11, "feet"),
  26165. default: true
  26166. },
  26167. ]
  26168. ))
  26169. characterMakers.push(() => makeCharacter(
  26170. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26171. {
  26172. side: {
  26173. height: math.unit(2 + 6 / 12, "feet"),
  26174. weight: math.unit(30, "lb"),
  26175. name: "Side",
  26176. image: {
  26177. source: "./media/characters/layla/side.svg",
  26178. extra: 244 / 188,
  26179. bottom: 18.2 / 262.1
  26180. }
  26181. },
  26182. back: {
  26183. height: math.unit(2 + 6 / 12, "feet"),
  26184. weight: math.unit(30, "lb"),
  26185. name: "Back",
  26186. image: {
  26187. source: "./media/characters/layla/back.svg",
  26188. extra: 308 / 241.5,
  26189. bottom: 8.9 / 316.8
  26190. }
  26191. },
  26192. cumming: {
  26193. height: math.unit(2 + 6 / 12, "feet"),
  26194. weight: math.unit(30, "lb"),
  26195. name: "Cumming",
  26196. image: {
  26197. source: "./media/characters/layla/cumming.svg",
  26198. extra: 342 / 279,
  26199. bottom: 595 / 938
  26200. }
  26201. },
  26202. dickFlaccid: {
  26203. height: math.unit(2.595, "feet"),
  26204. name: "Flaccid Genitals",
  26205. image: {
  26206. source: "./media/characters/layla/dick-flaccid.svg"
  26207. }
  26208. },
  26209. dickErect: {
  26210. height: math.unit(2.359, "feet"),
  26211. name: "Erect Genitals",
  26212. image: {
  26213. source: "./media/characters/layla/dick-erect.svg"
  26214. }
  26215. },
  26216. dragon: {
  26217. height: math.unit(40, "feet"),
  26218. name: "Dragon",
  26219. image: {
  26220. source: "./media/characters/layla/dragon.svg",
  26221. extra: 610/535,
  26222. bottom: 367/977
  26223. }
  26224. },
  26225. taur: {
  26226. height: math.unit(30, "feet"),
  26227. name: "Taur",
  26228. image: {
  26229. source: "./media/characters/layla/taur.svg",
  26230. extra: 1268/1199,
  26231. bottom: 112/1380
  26232. }
  26233. },
  26234. },
  26235. [
  26236. {
  26237. name: "Micro",
  26238. height: math.unit(1, "inch")
  26239. },
  26240. {
  26241. name: "Small",
  26242. height: math.unit(1, "foot")
  26243. },
  26244. {
  26245. name: "Normal",
  26246. height: math.unit(2 + 6 / 12, "feet"),
  26247. default: true
  26248. },
  26249. {
  26250. name: "Macro",
  26251. height: math.unit(200, "feet")
  26252. },
  26253. {
  26254. name: "Megamacro",
  26255. height: math.unit(1000, "miles")
  26256. },
  26257. {
  26258. name: "Planetary",
  26259. height: math.unit(8000, "miles")
  26260. },
  26261. {
  26262. name: "True Layla",
  26263. height: math.unit(200000 * 7, "multiverses")
  26264. },
  26265. ]
  26266. ))
  26267. characterMakers.push(() => makeCharacter(
  26268. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26269. {
  26270. back: {
  26271. height: math.unit(10.5, "feet"),
  26272. weight: math.unit(800, "lb"),
  26273. name: "Back",
  26274. image: {
  26275. source: "./media/characters/knox/back.svg",
  26276. extra: 1486 / 1089,
  26277. bottom: 107 / 1601.4
  26278. }
  26279. },
  26280. side: {
  26281. height: math.unit(10.5, "feet"),
  26282. weight: math.unit(800, "lb"),
  26283. name: "Side",
  26284. image: {
  26285. source: "./media/characters/knox/side.svg",
  26286. extra: 244 / 218,
  26287. bottom: 14 / 260
  26288. }
  26289. },
  26290. },
  26291. [
  26292. {
  26293. name: "Compact",
  26294. height: math.unit(10.5, "feet"),
  26295. default: true
  26296. },
  26297. {
  26298. name: "Dynamax",
  26299. height: math.unit(210, "feet")
  26300. },
  26301. {
  26302. name: "Full Macro",
  26303. height: math.unit(850, "feet")
  26304. },
  26305. ]
  26306. ))
  26307. characterMakers.push(() => makeCharacter(
  26308. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26309. {
  26310. front: {
  26311. height: math.unit(28, "feet"),
  26312. weight: math.unit(10500, "lb"),
  26313. name: "Front",
  26314. image: {
  26315. source: "./media/characters/kayda/front.svg",
  26316. extra: 1536 / 1428,
  26317. bottom: 68.7 / 1603
  26318. }
  26319. },
  26320. back: {
  26321. height: math.unit(28, "feet"),
  26322. weight: math.unit(10500, "lb"),
  26323. name: "Back",
  26324. image: {
  26325. source: "./media/characters/kayda/back.svg",
  26326. extra: 1557 / 1464,
  26327. bottom: 39.5 / 1597.49
  26328. }
  26329. },
  26330. dick: {
  26331. height: math.unit(3.858, "feet"),
  26332. name: "Dick",
  26333. image: {
  26334. source: "./media/characters/kayda/dick.svg"
  26335. }
  26336. },
  26337. },
  26338. [
  26339. {
  26340. name: "Macro",
  26341. height: math.unit(28, "feet"),
  26342. default: true
  26343. },
  26344. ]
  26345. ))
  26346. characterMakers.push(() => makeCharacter(
  26347. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26348. {
  26349. front: {
  26350. height: math.unit(10 + 11 / 12, "feet"),
  26351. weight: math.unit(1400, "lb"),
  26352. name: "Front",
  26353. image: {
  26354. source: "./media/characters/brian/front.svg",
  26355. extra: 737 / 692,
  26356. bottom: 55.4 / 785
  26357. }
  26358. },
  26359. },
  26360. [
  26361. {
  26362. name: "Normal",
  26363. height: math.unit(10 + 11 / 12, "feet"),
  26364. default: true
  26365. },
  26366. ]
  26367. ))
  26368. characterMakers.push(() => makeCharacter(
  26369. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26370. {
  26371. front: {
  26372. height: math.unit(5 + 8 / 12, "feet"),
  26373. weight: math.unit(140, "lb"),
  26374. name: "Front",
  26375. image: {
  26376. source: "./media/characters/khemri/front.svg",
  26377. extra: 4780 / 4059,
  26378. bottom: 80.1 / 4859.25
  26379. }
  26380. },
  26381. },
  26382. [
  26383. {
  26384. name: "Micro",
  26385. height: math.unit(6, "inches")
  26386. },
  26387. {
  26388. name: "Normal",
  26389. height: math.unit(5 + 8 / 12, "feet"),
  26390. default: true
  26391. },
  26392. ]
  26393. ))
  26394. characterMakers.push(() => makeCharacter(
  26395. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26396. {
  26397. front: {
  26398. height: math.unit(13, "feet"),
  26399. weight: math.unit(1700, "lb"),
  26400. name: "Front",
  26401. image: {
  26402. source: "./media/characters/felix-braveheart/front.svg",
  26403. extra: 1222 / 1157,
  26404. bottom: 53.2 / 1280
  26405. }
  26406. },
  26407. back: {
  26408. height: math.unit(13, "feet"),
  26409. weight: math.unit(1700, "lb"),
  26410. name: "Back",
  26411. image: {
  26412. source: "./media/characters/felix-braveheart/back.svg",
  26413. extra: 1277 / 1203,
  26414. bottom: 50.2 / 1327
  26415. }
  26416. },
  26417. feral: {
  26418. height: math.unit(6, "feet"),
  26419. weight: math.unit(400, "lb"),
  26420. name: "Feral",
  26421. image: {
  26422. source: "./media/characters/felix-braveheart/feral.svg",
  26423. extra: 682 / 625,
  26424. bottom: 6.9 / 688
  26425. }
  26426. },
  26427. },
  26428. [
  26429. {
  26430. name: "Normal",
  26431. height: math.unit(13, "feet"),
  26432. default: true
  26433. },
  26434. ]
  26435. ))
  26436. characterMakers.push(() => makeCharacter(
  26437. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26438. {
  26439. side: {
  26440. height: math.unit(5 + 11 / 12, "feet"),
  26441. weight: math.unit(1400, "lb"),
  26442. name: "Side",
  26443. image: {
  26444. source: "./media/characters/shadow-blade/side.svg",
  26445. extra: 1726 / 1267,
  26446. bottom: 58.4 / 1785
  26447. }
  26448. },
  26449. },
  26450. [
  26451. {
  26452. name: "Normal",
  26453. height: math.unit(5 + 11 / 12, "feet"),
  26454. default: true
  26455. },
  26456. ]
  26457. ))
  26458. characterMakers.push(() => makeCharacter(
  26459. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26460. {
  26461. front: {
  26462. height: math.unit(1 + 6 / 12, "feet"),
  26463. weight: math.unit(25, "lb"),
  26464. name: "Front",
  26465. image: {
  26466. source: "./media/characters/karla-halldor/front.svg",
  26467. extra: 1459 / 1383,
  26468. bottom: 12 / 1472
  26469. }
  26470. },
  26471. },
  26472. [
  26473. {
  26474. name: "Normal",
  26475. height: math.unit(1 + 6 / 12, "feet"),
  26476. default: true
  26477. },
  26478. ]
  26479. ))
  26480. characterMakers.push(() => makeCharacter(
  26481. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26482. {
  26483. front: {
  26484. height: math.unit(6 + 2 / 12, "feet"),
  26485. weight: math.unit(160, "lb"),
  26486. name: "Front",
  26487. image: {
  26488. source: "./media/characters/ariam/front.svg",
  26489. extra: 1073/976,
  26490. bottom: 52/1125
  26491. }
  26492. },
  26493. back: {
  26494. height: math.unit(6 + 2/12, "feet"),
  26495. weight: math.unit(160, "lb"),
  26496. name: "Back",
  26497. image: {
  26498. source: "./media/characters/ariam/back.svg",
  26499. extra: 1103/1023,
  26500. bottom: 9/1112
  26501. }
  26502. },
  26503. dressed: {
  26504. height: math.unit(6 + 2/12, "feet"),
  26505. weight: math.unit(160, "lb"),
  26506. name: "Dressed",
  26507. image: {
  26508. source: "./media/characters/ariam/dressed.svg",
  26509. extra: 1099/1009,
  26510. bottom: 25/1124
  26511. }
  26512. },
  26513. squatting: {
  26514. height: math.unit(4.1, "feet"),
  26515. weight: math.unit(160, "lb"),
  26516. name: "Squatting",
  26517. image: {
  26518. source: "./media/characters/ariam/squatting.svg",
  26519. extra: 2617 / 2112,
  26520. bottom: 61.2 / 2681,
  26521. }
  26522. },
  26523. },
  26524. [
  26525. {
  26526. name: "Normal",
  26527. height: math.unit(6 + 2 / 12, "feet"),
  26528. default: true
  26529. },
  26530. {
  26531. name: "Normal+",
  26532. height: math.unit(4, "meters")
  26533. },
  26534. {
  26535. name: "Macro",
  26536. height: math.unit(50, "meters")
  26537. },
  26538. {
  26539. name: "Macro+",
  26540. height: math.unit(100, "meters")
  26541. },
  26542. {
  26543. name: "Megamacro",
  26544. height: math.unit(20, "km")
  26545. },
  26546. {
  26547. name: "Caretaker",
  26548. height: math.unit(444, "megameters")
  26549. },
  26550. ]
  26551. ))
  26552. characterMakers.push(() => makeCharacter(
  26553. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26554. {
  26555. front: {
  26556. height: math.unit(1.67, "meters"),
  26557. weight: math.unit(140, "lb"),
  26558. name: "Front",
  26559. image: {
  26560. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26561. extra: 438 / 410,
  26562. bottom: 0.75 / 439
  26563. }
  26564. },
  26565. },
  26566. [
  26567. {
  26568. name: "Shrunken",
  26569. height: math.unit(7.6, "cm")
  26570. },
  26571. {
  26572. name: "Human Scale",
  26573. height: math.unit(1.67, "meters")
  26574. },
  26575. {
  26576. name: "Wolxi Scale",
  26577. height: math.unit(36.7, "meters"),
  26578. default: true
  26579. },
  26580. ]
  26581. ))
  26582. characterMakers.push(() => makeCharacter(
  26583. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26584. {
  26585. front: {
  26586. height: math.unit(1.73, "meters"),
  26587. weight: math.unit(240, "lb"),
  26588. name: "Front",
  26589. image: {
  26590. source: "./media/characters/izue-two-mothers/front.svg",
  26591. extra: 469 / 437,
  26592. bottom: 1.24 / 470.6
  26593. }
  26594. },
  26595. },
  26596. [
  26597. {
  26598. name: "Shrunken",
  26599. height: math.unit(7.86, "cm")
  26600. },
  26601. {
  26602. name: "Human Scale",
  26603. height: math.unit(1.73, "meters")
  26604. },
  26605. {
  26606. name: "Wolxi Scale",
  26607. height: math.unit(38, "meters"),
  26608. default: true
  26609. },
  26610. ]
  26611. ))
  26612. characterMakers.push(() => makeCharacter(
  26613. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26614. {
  26615. front: {
  26616. height: math.unit(1.55, "meters"),
  26617. weight: math.unit(120, "lb"),
  26618. name: "Front",
  26619. image: {
  26620. source: "./media/characters/teeku-love-shack/front.svg",
  26621. extra: 387 / 362,
  26622. bottom: 1.51 / 388
  26623. }
  26624. },
  26625. },
  26626. [
  26627. {
  26628. name: "Shrunken",
  26629. height: math.unit(7, "cm")
  26630. },
  26631. {
  26632. name: "Human Scale",
  26633. height: math.unit(1.55, "meters")
  26634. },
  26635. {
  26636. name: "Wolxi Scale",
  26637. height: math.unit(34.1, "meters"),
  26638. default: true
  26639. },
  26640. ]
  26641. ))
  26642. characterMakers.push(() => makeCharacter(
  26643. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26644. {
  26645. front: {
  26646. height: math.unit(1.83, "meters"),
  26647. weight: math.unit(135, "lb"),
  26648. name: "Front",
  26649. image: {
  26650. source: "./media/characters/dejma-the-red/front.svg",
  26651. extra: 480 / 458,
  26652. bottom: 1.8 / 482
  26653. }
  26654. },
  26655. },
  26656. [
  26657. {
  26658. name: "Shrunken",
  26659. height: math.unit(8.3, "cm")
  26660. },
  26661. {
  26662. name: "Human Scale",
  26663. height: math.unit(1.83, "meters")
  26664. },
  26665. {
  26666. name: "Wolxi Scale",
  26667. height: math.unit(40, "meters"),
  26668. default: true
  26669. },
  26670. ]
  26671. ))
  26672. characterMakers.push(() => makeCharacter(
  26673. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26674. {
  26675. front: {
  26676. height: math.unit(1.78, "meters"),
  26677. weight: math.unit(65, "kg"),
  26678. name: "Front",
  26679. image: {
  26680. source: "./media/characters/aki/front.svg",
  26681. extra: 452 / 415
  26682. }
  26683. },
  26684. frontNsfw: {
  26685. height: math.unit(1.78, "meters"),
  26686. weight: math.unit(65, "kg"),
  26687. name: "Front (NSFW)",
  26688. image: {
  26689. source: "./media/characters/aki/front-nsfw.svg",
  26690. extra: 452 / 415
  26691. }
  26692. },
  26693. back: {
  26694. height: math.unit(1.78, "meters"),
  26695. weight: math.unit(65, "kg"),
  26696. name: "Back",
  26697. image: {
  26698. source: "./media/characters/aki/back.svg",
  26699. extra: 452 / 415
  26700. }
  26701. },
  26702. rump: {
  26703. height: math.unit(2.05, "feet"),
  26704. name: "Rump",
  26705. image: {
  26706. source: "./media/characters/aki/rump.svg"
  26707. }
  26708. },
  26709. dick: {
  26710. height: math.unit(0.95, "feet"),
  26711. name: "Dick",
  26712. image: {
  26713. source: "./media/characters/aki/dick.svg"
  26714. }
  26715. },
  26716. },
  26717. [
  26718. {
  26719. name: "Micro",
  26720. height: math.unit(15, "cm")
  26721. },
  26722. {
  26723. name: "Normal",
  26724. height: math.unit(178, "cm"),
  26725. default: true
  26726. },
  26727. {
  26728. name: "Macro",
  26729. height: math.unit(214, "m")
  26730. },
  26731. {
  26732. name: "Macro+",
  26733. height: math.unit(534, "m")
  26734. },
  26735. ]
  26736. ))
  26737. characterMakers.push(() => makeCharacter(
  26738. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26739. {
  26740. front: {
  26741. height: math.unit(5 + 5 / 12, "feet"),
  26742. weight: math.unit(120, "lb"),
  26743. name: "Front",
  26744. image: {
  26745. source: "./media/characters/ari/front.svg",
  26746. extra: 1550/1471,
  26747. bottom: 39/1589
  26748. }
  26749. },
  26750. },
  26751. [
  26752. {
  26753. name: "Normal",
  26754. height: math.unit(5 + 5 / 12, "feet")
  26755. },
  26756. {
  26757. name: "Macro",
  26758. height: math.unit(100, "feet"),
  26759. default: true
  26760. },
  26761. {
  26762. name: "Megamacro",
  26763. height: math.unit(100, "miles")
  26764. },
  26765. {
  26766. name: "Gigamacro",
  26767. height: math.unit(80000, "miles")
  26768. },
  26769. ]
  26770. ))
  26771. characterMakers.push(() => makeCharacter(
  26772. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26773. {
  26774. side: {
  26775. height: math.unit(9, "feet"),
  26776. weight: math.unit(400, "kg"),
  26777. name: "Side",
  26778. image: {
  26779. source: "./media/characters/bolt/side.svg",
  26780. extra: 1126 / 896,
  26781. bottom: 60 / 1187.3,
  26782. }
  26783. },
  26784. },
  26785. [
  26786. {
  26787. name: "Micro",
  26788. height: math.unit(5, "inches")
  26789. },
  26790. {
  26791. name: "Normal",
  26792. height: math.unit(9, "feet"),
  26793. default: true
  26794. },
  26795. {
  26796. name: "Macro",
  26797. height: math.unit(700, "feet")
  26798. },
  26799. {
  26800. name: "Max Size",
  26801. height: math.unit(1.52e22, "yottameters")
  26802. },
  26803. ]
  26804. ))
  26805. characterMakers.push(() => makeCharacter(
  26806. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26807. {
  26808. front: {
  26809. height: math.unit(4.3, "meters"),
  26810. weight: math.unit(3, "tons"),
  26811. name: "Front",
  26812. image: {
  26813. source: "./media/characters/draekon-sylviar/front.svg",
  26814. extra: 2072/1512,
  26815. bottom: 74/2146
  26816. }
  26817. },
  26818. back: {
  26819. height: math.unit(4.3, "meters"),
  26820. weight: math.unit(3, "tons"),
  26821. name: "Back",
  26822. image: {
  26823. source: "./media/characters/draekon-sylviar/back.svg",
  26824. extra: 1639/1483,
  26825. bottom: 41/1680
  26826. }
  26827. },
  26828. feral: {
  26829. height: math.unit(1.15, "meters"),
  26830. weight: math.unit(3, "tons"),
  26831. name: "Feral",
  26832. image: {
  26833. source: "./media/characters/draekon-sylviar/feral.svg",
  26834. extra: 1033/395,
  26835. bottom: 130/1163
  26836. }
  26837. },
  26838. maw: {
  26839. height: math.unit(1.3, "meters"),
  26840. name: "Maw",
  26841. image: {
  26842. source: "./media/characters/draekon-sylviar/maw.svg"
  26843. }
  26844. },
  26845. mawSeparated: {
  26846. height: math.unit(1.53, "meters"),
  26847. name: "Separated Maw",
  26848. image: {
  26849. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26850. }
  26851. },
  26852. tail: {
  26853. height: math.unit(1.15, "meters"),
  26854. name: "Tail",
  26855. image: {
  26856. source: "./media/characters/draekon-sylviar/tail.svg"
  26857. }
  26858. },
  26859. tailDick: {
  26860. height: math.unit(1.15, "meters"),
  26861. name: "Tail (Dick)",
  26862. image: {
  26863. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26864. }
  26865. },
  26866. tailDickSeparated: {
  26867. height: math.unit(1.19, "meters"),
  26868. name: "Tail (Separated Dick)",
  26869. image: {
  26870. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26871. }
  26872. },
  26873. slit: {
  26874. height: math.unit(1, "meters"),
  26875. name: "Slit",
  26876. image: {
  26877. source: "./media/characters/draekon-sylviar/slit.svg"
  26878. }
  26879. },
  26880. dick: {
  26881. height: math.unit(1.15, "meters"),
  26882. name: "Dick",
  26883. image: {
  26884. source: "./media/characters/draekon-sylviar/dick.svg"
  26885. }
  26886. },
  26887. dickSeparated: {
  26888. height: math.unit(1.1, "meters"),
  26889. name: "Separated Dick",
  26890. image: {
  26891. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26892. }
  26893. },
  26894. sheath: {
  26895. height: math.unit(1.15, "meters"),
  26896. name: "Sheath",
  26897. image: {
  26898. source: "./media/characters/draekon-sylviar/sheath.svg"
  26899. }
  26900. },
  26901. },
  26902. [
  26903. {
  26904. name: "Small",
  26905. height: math.unit(4.53 / 2, "meters"),
  26906. default: true
  26907. },
  26908. {
  26909. name: "Normal",
  26910. height: math.unit(4.53, "meters"),
  26911. default: true
  26912. },
  26913. {
  26914. name: "Large",
  26915. height: math.unit(4.53 * 2, "meters"),
  26916. },
  26917. ]
  26918. ))
  26919. characterMakers.push(() => makeCharacter(
  26920. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26921. {
  26922. front: {
  26923. height: math.unit(6 + 2 / 12, "feet"),
  26924. weight: math.unit(180, "lb"),
  26925. name: "Front",
  26926. image: {
  26927. source: "./media/characters/brawler/front.svg",
  26928. extra: 3301 / 3027,
  26929. bottom: 138 / 3439
  26930. }
  26931. },
  26932. },
  26933. [
  26934. {
  26935. name: "Normal",
  26936. height: math.unit(6 + 2 / 12, "feet"),
  26937. default: true
  26938. },
  26939. ]
  26940. ))
  26941. characterMakers.push(() => makeCharacter(
  26942. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26943. {
  26944. front: {
  26945. height: math.unit(11, "feet"),
  26946. weight: math.unit(1000, "lb"),
  26947. name: "Front",
  26948. image: {
  26949. source: "./media/characters/alex/front.svg",
  26950. bottom: 44.5 / 620
  26951. }
  26952. },
  26953. },
  26954. [
  26955. {
  26956. name: "Micro",
  26957. height: math.unit(5, "inches")
  26958. },
  26959. {
  26960. name: "Normal",
  26961. height: math.unit(11, "feet"),
  26962. default: true
  26963. },
  26964. {
  26965. name: "Macro",
  26966. height: math.unit(9.5e9, "feet")
  26967. },
  26968. {
  26969. name: "Max Size",
  26970. height: math.unit(1.4e283, "yottameters")
  26971. },
  26972. ]
  26973. ))
  26974. characterMakers.push(() => makeCharacter(
  26975. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26976. {
  26977. female: {
  26978. height: math.unit(29.9, "m"),
  26979. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26980. name: "Female",
  26981. image: {
  26982. source: "./media/characters/zenari/female.svg",
  26983. extra: 3281.6 / 3217,
  26984. bottom: 72.2 / 3353
  26985. }
  26986. },
  26987. male: {
  26988. height: math.unit(27.7, "m"),
  26989. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26990. name: "Male",
  26991. image: {
  26992. source: "./media/characters/zenari/male.svg",
  26993. extra: 3008 / 2991,
  26994. bottom: 54.6 / 3069
  26995. }
  26996. },
  26997. },
  26998. [
  26999. {
  27000. name: "Macro",
  27001. height: math.unit(29.7, "meters"),
  27002. default: true
  27003. },
  27004. ]
  27005. ))
  27006. characterMakers.push(() => makeCharacter(
  27007. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27008. {
  27009. female: {
  27010. height: math.unit(23.8, "m"),
  27011. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27012. name: "Female",
  27013. image: {
  27014. source: "./media/characters/mactarian/female.svg",
  27015. extra: 2662 / 2569,
  27016. bottom: 73 / 2736
  27017. }
  27018. },
  27019. male: {
  27020. height: math.unit(23.8, "m"),
  27021. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27022. name: "Male",
  27023. image: {
  27024. source: "./media/characters/mactarian/male.svg",
  27025. extra: 2673 / 2600,
  27026. bottom: 76 / 2750
  27027. }
  27028. },
  27029. },
  27030. [
  27031. {
  27032. name: "Macro",
  27033. height: math.unit(23.8, "meters"),
  27034. default: true
  27035. },
  27036. ]
  27037. ))
  27038. characterMakers.push(() => makeCharacter(
  27039. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27040. {
  27041. female: {
  27042. height: math.unit(19.3, "m"),
  27043. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27044. name: "Female",
  27045. image: {
  27046. source: "./media/characters/umok/female.svg",
  27047. extra: 2186 / 2078,
  27048. bottom: 87 / 2277
  27049. }
  27050. },
  27051. male: {
  27052. height: math.unit(19.5, "m"),
  27053. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27054. name: "Male",
  27055. image: {
  27056. source: "./media/characters/umok/male.svg",
  27057. extra: 2233 / 2140,
  27058. bottom: 24.4 / 2258
  27059. }
  27060. },
  27061. },
  27062. [
  27063. {
  27064. name: "Macro",
  27065. height: math.unit(19.3, "meters"),
  27066. default: true
  27067. },
  27068. ]
  27069. ))
  27070. characterMakers.push(() => makeCharacter(
  27071. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27072. {
  27073. female: {
  27074. height: math.unit(26.15, "m"),
  27075. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27076. name: "Female",
  27077. image: {
  27078. source: "./media/characters/joraxian/female.svg",
  27079. extra: 2912 / 2824,
  27080. bottom: 36 / 2956
  27081. }
  27082. },
  27083. male: {
  27084. height: math.unit(25.4, "m"),
  27085. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27086. name: "Male",
  27087. image: {
  27088. source: "./media/characters/joraxian/male.svg",
  27089. extra: 2877 / 2721,
  27090. bottom: 82 / 2967
  27091. }
  27092. },
  27093. },
  27094. [
  27095. {
  27096. name: "Macro",
  27097. height: math.unit(26.15, "meters"),
  27098. default: true
  27099. },
  27100. ]
  27101. ))
  27102. characterMakers.push(() => makeCharacter(
  27103. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27104. {
  27105. female: {
  27106. height: math.unit(21.6, "m"),
  27107. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27108. name: "Female",
  27109. image: {
  27110. source: "./media/characters/sthara/female.svg",
  27111. extra: 2516 / 2347,
  27112. bottom: 21.5 / 2537
  27113. }
  27114. },
  27115. male: {
  27116. height: math.unit(24, "m"),
  27117. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27118. name: "Male",
  27119. image: {
  27120. source: "./media/characters/sthara/male.svg",
  27121. extra: 2732 / 2607,
  27122. bottom: 23 / 2732
  27123. }
  27124. },
  27125. },
  27126. [
  27127. {
  27128. name: "Macro",
  27129. height: math.unit(21.6, "meters"),
  27130. default: true
  27131. },
  27132. ]
  27133. ))
  27134. characterMakers.push(() => makeCharacter(
  27135. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27136. {
  27137. front: {
  27138. height: math.unit(6 + 4 / 12, "feet"),
  27139. weight: math.unit(175, "lb"),
  27140. name: "Front",
  27141. image: {
  27142. source: "./media/characters/luka-bryzant/front.svg",
  27143. extra: 311 / 289,
  27144. bottom: 4 / 315
  27145. }
  27146. },
  27147. back: {
  27148. height: math.unit(6 + 4 / 12, "feet"),
  27149. weight: math.unit(175, "lb"),
  27150. name: "Back",
  27151. image: {
  27152. source: "./media/characters/luka-bryzant/back.svg",
  27153. extra: 311 / 289,
  27154. bottom: 3.8 / 313.7
  27155. }
  27156. },
  27157. },
  27158. [
  27159. {
  27160. name: "Micro",
  27161. height: math.unit(10, "inches")
  27162. },
  27163. {
  27164. name: "Normal",
  27165. height: math.unit(6 + 4 / 12, "feet"),
  27166. default: true
  27167. },
  27168. {
  27169. name: "Large",
  27170. height: math.unit(12, "feet")
  27171. },
  27172. ]
  27173. ))
  27174. characterMakers.push(() => makeCharacter(
  27175. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27176. {
  27177. front: {
  27178. height: math.unit(5 + 7 / 12, "feet"),
  27179. weight: math.unit(185, "lb"),
  27180. name: "Front",
  27181. image: {
  27182. source: "./media/characters/aman-aquila/front.svg",
  27183. extra: 1013 / 976,
  27184. bottom: 45.6 / 1057
  27185. }
  27186. },
  27187. side: {
  27188. height: math.unit(5 + 7 / 12, "feet"),
  27189. weight: math.unit(185, "lb"),
  27190. name: "Side",
  27191. image: {
  27192. source: "./media/characters/aman-aquila/side.svg",
  27193. extra: 1054 / 1011,
  27194. bottom: 15 / 1070
  27195. }
  27196. },
  27197. back: {
  27198. height: math.unit(5 + 7 / 12, "feet"),
  27199. weight: math.unit(185, "lb"),
  27200. name: "Back",
  27201. image: {
  27202. source: "./media/characters/aman-aquila/back.svg",
  27203. extra: 1026 / 970,
  27204. bottom: 12 / 1039
  27205. }
  27206. },
  27207. head: {
  27208. height: math.unit(1.211, "feet"),
  27209. name: "Head",
  27210. image: {
  27211. source: "./media/characters/aman-aquila/head.svg",
  27212. }
  27213. },
  27214. },
  27215. [
  27216. {
  27217. name: "Minimicro",
  27218. height: math.unit(0.057, "inches")
  27219. },
  27220. {
  27221. name: "Micro",
  27222. height: math.unit(7, "inches")
  27223. },
  27224. {
  27225. name: "Mini",
  27226. height: math.unit(3 + 7 / 12, "feet")
  27227. },
  27228. {
  27229. name: "Normal",
  27230. height: math.unit(5 + 7 / 12, "feet"),
  27231. default: true
  27232. },
  27233. {
  27234. name: "Macro",
  27235. height: math.unit(157 + 7 / 12, "feet")
  27236. },
  27237. {
  27238. name: "Megamacro",
  27239. height: math.unit(1557 + 7 / 12, "feet")
  27240. },
  27241. {
  27242. name: "Gigamacro",
  27243. height: math.unit(15557 + 7 / 12, "feet")
  27244. },
  27245. ]
  27246. ))
  27247. characterMakers.push(() => makeCharacter(
  27248. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27249. {
  27250. front: {
  27251. height: math.unit(3 + 2 / 12, "inches"),
  27252. weight: math.unit(0.3, "ounces"),
  27253. name: "Front",
  27254. image: {
  27255. source: "./media/characters/hiphae/front.svg",
  27256. extra: 1931 / 1683,
  27257. bottom: 24 / 1955
  27258. }
  27259. },
  27260. },
  27261. [
  27262. {
  27263. name: "Normal",
  27264. height: math.unit(3 + 1 / 2, "inches"),
  27265. default: true
  27266. },
  27267. ]
  27268. ))
  27269. characterMakers.push(() => makeCharacter(
  27270. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27271. {
  27272. front: {
  27273. height: math.unit(5 + 10 / 12, "feet"),
  27274. weight: math.unit(165, "lb"),
  27275. name: "Front",
  27276. image: {
  27277. source: "./media/characters/nicky/front.svg",
  27278. extra: 3144 / 2886,
  27279. bottom: 45.6 / 3192
  27280. }
  27281. },
  27282. back: {
  27283. height: math.unit(5 + 10 / 12, "feet"),
  27284. weight: math.unit(165, "lb"),
  27285. name: "Back",
  27286. image: {
  27287. source: "./media/characters/nicky/back.svg",
  27288. extra: 3055 / 2804,
  27289. bottom: 28.4 / 3087
  27290. }
  27291. },
  27292. frontclothed: {
  27293. height: math.unit(5 + 10 / 12, "feet"),
  27294. weight: math.unit(165, "lb"),
  27295. name: "Front-clothed",
  27296. image: {
  27297. source: "./media/characters/nicky/front-clothed.svg",
  27298. extra: 3184.9 / 2926.9,
  27299. bottom: 86.5 / 3239.9
  27300. }
  27301. },
  27302. foot: {
  27303. height: math.unit(1.16, "feet"),
  27304. name: "Foot",
  27305. image: {
  27306. source: "./media/characters/nicky/foot.svg"
  27307. }
  27308. },
  27309. feet: {
  27310. height: math.unit(1.34, "feet"),
  27311. name: "Feet",
  27312. image: {
  27313. source: "./media/characters/nicky/feet.svg"
  27314. }
  27315. },
  27316. maw: {
  27317. height: math.unit(0.9, "feet"),
  27318. name: "Maw",
  27319. image: {
  27320. source: "./media/characters/nicky/maw.svg"
  27321. }
  27322. },
  27323. },
  27324. [
  27325. {
  27326. name: "Normal",
  27327. height: math.unit(5 + 10 / 12, "feet"),
  27328. default: true
  27329. },
  27330. {
  27331. name: "Macro",
  27332. height: math.unit(60, "feet")
  27333. },
  27334. {
  27335. name: "Megamacro",
  27336. height: math.unit(1, "mile")
  27337. },
  27338. ]
  27339. ))
  27340. characterMakers.push(() => makeCharacter(
  27341. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27342. {
  27343. side: {
  27344. height: math.unit(10, "feet"),
  27345. weight: math.unit(600, "lb"),
  27346. name: "Side",
  27347. image: {
  27348. source: "./media/characters/blair/side.svg",
  27349. bottom: 16.6 / 475,
  27350. extra: 458 / 431
  27351. }
  27352. },
  27353. },
  27354. [
  27355. {
  27356. name: "Micro",
  27357. height: math.unit(8, "inches")
  27358. },
  27359. {
  27360. name: "Normal",
  27361. height: math.unit(10, "feet"),
  27362. default: true
  27363. },
  27364. {
  27365. name: "Macro",
  27366. height: math.unit(180, "feet")
  27367. },
  27368. ]
  27369. ))
  27370. characterMakers.push(() => makeCharacter(
  27371. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27372. {
  27373. front: {
  27374. height: math.unit(5 + 4 / 12, "feet"),
  27375. weight: math.unit(125, "lb"),
  27376. name: "Front",
  27377. image: {
  27378. source: "./media/characters/fisher/front.svg",
  27379. extra: 444 / 390,
  27380. bottom: 2 / 444.8
  27381. }
  27382. },
  27383. },
  27384. [
  27385. {
  27386. name: "Micro",
  27387. height: math.unit(4, "inches")
  27388. },
  27389. {
  27390. name: "Normal",
  27391. height: math.unit(5 + 4 / 12, "feet"),
  27392. default: true
  27393. },
  27394. {
  27395. name: "Macro",
  27396. height: math.unit(100, "feet")
  27397. },
  27398. ]
  27399. ))
  27400. characterMakers.push(() => makeCharacter(
  27401. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27402. {
  27403. front: {
  27404. height: math.unit(6.71, "feet"),
  27405. weight: math.unit(200, "lb"),
  27406. preyCapacity: math.unit(1000000, "people"),
  27407. name: "Front",
  27408. image: {
  27409. source: "./media/characters/gliss/front.svg",
  27410. extra: 2347 / 2231,
  27411. bottom: 113 / 2462
  27412. }
  27413. },
  27414. hammerspaceSize: {
  27415. height: math.unit(6.71 * 717, "feet"),
  27416. weight: math.unit(200, "lb"),
  27417. preyCapacity: math.unit(1000000, "people"),
  27418. name: "Hammerspace Size",
  27419. image: {
  27420. source: "./media/characters/gliss/front.svg",
  27421. extra: 2347 / 2231,
  27422. bottom: 113 / 2462
  27423. }
  27424. },
  27425. },
  27426. [
  27427. {
  27428. name: "Normal",
  27429. height: math.unit(6.71, "feet"),
  27430. default: true
  27431. },
  27432. ]
  27433. ))
  27434. characterMakers.push(() => makeCharacter(
  27435. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27436. {
  27437. side: {
  27438. height: math.unit(1.44, "m"),
  27439. weight: math.unit(80, "kg"),
  27440. name: "Side",
  27441. image: {
  27442. source: "./media/characters/dune-anderson/side.svg",
  27443. bottom: 49 / 1426
  27444. }
  27445. },
  27446. },
  27447. [
  27448. {
  27449. name: "Wolf-sized",
  27450. height: math.unit(1.44, "meters")
  27451. },
  27452. {
  27453. name: "Normal",
  27454. height: math.unit(5.05, "meters"),
  27455. default: true
  27456. },
  27457. {
  27458. name: "Big",
  27459. height: math.unit(14.4, "meters")
  27460. },
  27461. {
  27462. name: "Huge",
  27463. height: math.unit(144, "meters")
  27464. },
  27465. ]
  27466. ))
  27467. characterMakers.push(() => makeCharacter(
  27468. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27469. {
  27470. front: {
  27471. height: math.unit(6, "feet"),
  27472. weight: math.unit(220, "lb"),
  27473. name: "Front",
  27474. image: {
  27475. source: "./media/characters/hind/front.svg",
  27476. extra: 1912/1787,
  27477. bottom: 52/1964
  27478. }
  27479. },
  27480. back: {
  27481. height: math.unit(6, "feet"),
  27482. weight: math.unit(220, "lb"),
  27483. name: "Back",
  27484. image: {
  27485. source: "./media/characters/hind/back.svg",
  27486. extra: 1901/1794,
  27487. bottom: 26/1927
  27488. }
  27489. },
  27490. },
  27491. [
  27492. {
  27493. name: "Normal",
  27494. height: math.unit(6, "feet"),
  27495. default: true
  27496. },
  27497. ]
  27498. ))
  27499. characterMakers.push(() => makeCharacter(
  27500. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27501. {
  27502. front: {
  27503. height: math.unit(2.1, "meters"),
  27504. weight: math.unit(150, "lb"),
  27505. name: "Front",
  27506. image: {
  27507. source: "./media/characters/tharquench-sizestealer/front.svg",
  27508. extra: 1605/1470,
  27509. bottom: 36/1641
  27510. }
  27511. },
  27512. frontAlt: {
  27513. height: math.unit(2.1, "meters"),
  27514. weight: math.unit(150, "lb"),
  27515. name: "Front (Alt)",
  27516. image: {
  27517. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27518. extra: 2318 / 2063,
  27519. bottom: 93.4 / 2410
  27520. }
  27521. },
  27522. },
  27523. [
  27524. {
  27525. name: "Nano",
  27526. height: math.unit(1, "mm")
  27527. },
  27528. {
  27529. name: "Micro",
  27530. height: math.unit(1, "cm")
  27531. },
  27532. {
  27533. name: "Normal",
  27534. height: math.unit(2.1, "meters"),
  27535. default: true
  27536. },
  27537. ]
  27538. ))
  27539. characterMakers.push(() => makeCharacter(
  27540. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27541. {
  27542. front: {
  27543. height: math.unit(7 + 5 / 12, "feet"),
  27544. weight: math.unit(357, "lb"),
  27545. name: "Front",
  27546. image: {
  27547. source: "./media/characters/solex-draconov/front.svg",
  27548. extra: 1993 / 1865,
  27549. bottom: 117 / 2111
  27550. }
  27551. },
  27552. },
  27553. [
  27554. {
  27555. name: "Natural Height",
  27556. height: math.unit(7 + 5 / 12, "feet"),
  27557. default: true
  27558. },
  27559. {
  27560. name: "Macro",
  27561. height: math.unit(350, "feet")
  27562. },
  27563. {
  27564. name: "Macro+",
  27565. height: math.unit(1000, "feet")
  27566. },
  27567. {
  27568. name: "Megamacro",
  27569. height: math.unit(20, "km")
  27570. },
  27571. {
  27572. name: "Megamacro+",
  27573. height: math.unit(1000, "km")
  27574. },
  27575. {
  27576. name: "Gigamacro",
  27577. height: math.unit(2.5, "Gm")
  27578. },
  27579. {
  27580. name: "Teramacro",
  27581. height: math.unit(15, "Tm")
  27582. },
  27583. {
  27584. name: "Galactic",
  27585. height: math.unit(30, "Zm")
  27586. },
  27587. {
  27588. name: "Universal",
  27589. height: math.unit(21000, "Ym")
  27590. },
  27591. {
  27592. name: "Omniversal",
  27593. height: math.unit(9.861e50, "Ym")
  27594. },
  27595. {
  27596. name: "Existential",
  27597. height: math.unit(1e300, "meters")
  27598. },
  27599. ]
  27600. ))
  27601. characterMakers.push(() => makeCharacter(
  27602. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27603. {
  27604. side: {
  27605. height: math.unit(25, "feet"),
  27606. weight: math.unit(90000, "lb"),
  27607. name: "Side",
  27608. image: {
  27609. source: "./media/characters/mandarax/side.svg",
  27610. extra: 614 / 332,
  27611. bottom: 55 / 630
  27612. }
  27613. },
  27614. lounging: {
  27615. height: math.unit(15.4, "feet"),
  27616. weight: math.unit(90000, "lb"),
  27617. name: "Lounging",
  27618. image: {
  27619. source: "./media/characters/mandarax/lounging.svg",
  27620. extra: 817/609,
  27621. bottom: 685/1502
  27622. }
  27623. },
  27624. head: {
  27625. height: math.unit(11.4, "feet"),
  27626. name: "Head",
  27627. image: {
  27628. source: "./media/characters/mandarax/head.svg"
  27629. }
  27630. },
  27631. belly: {
  27632. height: math.unit(33, "feet"),
  27633. name: "Belly",
  27634. preyCapacity: math.unit(500, "people"),
  27635. image: {
  27636. source: "./media/characters/mandarax/belly.svg"
  27637. }
  27638. },
  27639. dick: {
  27640. height: math.unit(8.46, "feet"),
  27641. name: "Dick",
  27642. image: {
  27643. source: "./media/characters/mandarax/dick.svg"
  27644. }
  27645. },
  27646. top: {
  27647. height: math.unit(28, "meters"),
  27648. name: "Top",
  27649. image: {
  27650. source: "./media/characters/mandarax/top.svg"
  27651. }
  27652. },
  27653. },
  27654. [
  27655. {
  27656. name: "Normal",
  27657. height: math.unit(25, "feet"),
  27658. default: true
  27659. },
  27660. ]
  27661. ))
  27662. characterMakers.push(() => makeCharacter(
  27663. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27664. {
  27665. front: {
  27666. height: math.unit(5, "feet"),
  27667. weight: math.unit(90, "lb"),
  27668. name: "Front",
  27669. image: {
  27670. source: "./media/characters/pixil/front.svg",
  27671. extra: 2000 / 1618,
  27672. bottom: 12.3 / 2011
  27673. }
  27674. },
  27675. },
  27676. [
  27677. {
  27678. name: "Normal",
  27679. height: math.unit(5, "feet"),
  27680. default: true
  27681. },
  27682. {
  27683. name: "Megamacro",
  27684. height: math.unit(10, "miles"),
  27685. },
  27686. ]
  27687. ))
  27688. characterMakers.push(() => makeCharacter(
  27689. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27690. {
  27691. front: {
  27692. height: math.unit(7 + 2 / 12, "feet"),
  27693. weight: math.unit(200, "lb"),
  27694. name: "Front",
  27695. image: {
  27696. source: "./media/characters/angel/front.svg",
  27697. extra: 1946/1840,
  27698. bottom: 30/1976
  27699. }
  27700. },
  27701. },
  27702. [
  27703. {
  27704. name: "Normal",
  27705. height: math.unit(7 + 2 / 12, "feet"),
  27706. default: true
  27707. },
  27708. {
  27709. name: "Macro",
  27710. height: math.unit(1000, "feet")
  27711. },
  27712. {
  27713. name: "Megamacro",
  27714. height: math.unit(2, "miles")
  27715. },
  27716. {
  27717. name: "Gigamacro",
  27718. height: math.unit(20, "earths")
  27719. },
  27720. ]
  27721. ))
  27722. characterMakers.push(() => makeCharacter(
  27723. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27724. {
  27725. front: {
  27726. height: math.unit(5, "feet"),
  27727. weight: math.unit(180, "lb"),
  27728. name: "Front",
  27729. image: {
  27730. source: "./media/characters/mekana/front.svg",
  27731. extra: 1671 / 1605,
  27732. bottom: 3.5 / 1691
  27733. }
  27734. },
  27735. side: {
  27736. height: math.unit(5, "feet"),
  27737. weight: math.unit(180, "lb"),
  27738. name: "Side",
  27739. image: {
  27740. source: "./media/characters/mekana/side.svg",
  27741. extra: 1671 / 1605,
  27742. bottom: 3.5 / 1691
  27743. }
  27744. },
  27745. back: {
  27746. height: math.unit(5, "feet"),
  27747. weight: math.unit(180, "lb"),
  27748. name: "Back",
  27749. image: {
  27750. source: "./media/characters/mekana/back.svg",
  27751. extra: 1671 / 1605,
  27752. bottom: 3.5 / 1691
  27753. }
  27754. },
  27755. },
  27756. [
  27757. {
  27758. name: "Normal",
  27759. height: math.unit(5, "feet"),
  27760. default: true
  27761. },
  27762. ]
  27763. ))
  27764. characterMakers.push(() => makeCharacter(
  27765. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27766. {
  27767. front: {
  27768. height: math.unit(4 + 6 / 12, "feet"),
  27769. weight: math.unit(80, "lb"),
  27770. name: "Front",
  27771. image: {
  27772. source: "./media/characters/pixie/front.svg",
  27773. extra: 1924 / 1825,
  27774. bottom: 22.4 / 1946
  27775. }
  27776. },
  27777. },
  27778. [
  27779. {
  27780. name: "Normal",
  27781. height: math.unit(4 + 6 / 12, "feet"),
  27782. default: true
  27783. },
  27784. {
  27785. name: "Macro",
  27786. height: math.unit(40, "feet")
  27787. },
  27788. ]
  27789. ))
  27790. characterMakers.push(() => makeCharacter(
  27791. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27792. {
  27793. front: {
  27794. height: math.unit(2.1, "meters"),
  27795. weight: math.unit(200, "lb"),
  27796. name: "Front",
  27797. image: {
  27798. source: "./media/characters/the-lascivious/front.svg",
  27799. extra: 1 / 0.893,
  27800. bottom: 3.5 / 573.7
  27801. }
  27802. },
  27803. },
  27804. [
  27805. {
  27806. name: "Human Scale",
  27807. height: math.unit(2.1, "meters")
  27808. },
  27809. {
  27810. name: "Wolxi Scale",
  27811. height: math.unit(46.2, "m"),
  27812. default: true
  27813. },
  27814. {
  27815. name: "Boinker of Buildings",
  27816. height: math.unit(10, "km")
  27817. },
  27818. {
  27819. name: "Shagger of Skyscrapers",
  27820. height: math.unit(40, "km")
  27821. },
  27822. {
  27823. name: "Banger of Boroughs",
  27824. height: math.unit(4000, "km")
  27825. },
  27826. {
  27827. name: "Screwer of States",
  27828. height: math.unit(100000, "km")
  27829. },
  27830. {
  27831. name: "Pounder of Planets",
  27832. height: math.unit(2000000, "km")
  27833. },
  27834. ]
  27835. ))
  27836. characterMakers.push(() => makeCharacter(
  27837. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27838. {
  27839. front: {
  27840. height: math.unit(6, "feet"),
  27841. weight: math.unit(150, "lb"),
  27842. name: "Front",
  27843. image: {
  27844. source: "./media/characters/aj/front.svg",
  27845. extra: 2039 / 1562,
  27846. bottom: 40 / 2079
  27847. }
  27848. },
  27849. },
  27850. [
  27851. {
  27852. name: "Normal",
  27853. height: math.unit(11 + 6 / 12, "feet"),
  27854. default: true
  27855. },
  27856. {
  27857. name: "Megamacro",
  27858. height: math.unit(60, "megameters")
  27859. },
  27860. ]
  27861. ))
  27862. characterMakers.push(() => makeCharacter(
  27863. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27864. {
  27865. side: {
  27866. height: math.unit(31 + 8 / 12, "feet"),
  27867. weight: math.unit(75000, "kg"),
  27868. name: "Side",
  27869. image: {
  27870. source: "./media/characters/koros/side.svg",
  27871. extra: 1442 / 1297,
  27872. bottom: 122.7 / 1562
  27873. }
  27874. },
  27875. dicksKingsCrown: {
  27876. height: math.unit(6, "feet"),
  27877. name: "Dicks (King's Crown)",
  27878. image: {
  27879. source: "./media/characters/koros/dicks-kings-crown.svg"
  27880. }
  27881. },
  27882. dicksTailSet: {
  27883. height: math.unit(3, "feet"),
  27884. name: "Dicks (Tail Set)",
  27885. image: {
  27886. source: "./media/characters/koros/dicks-tail-set.svg"
  27887. }
  27888. },
  27889. dickCumming: {
  27890. height: math.unit(7.98, "feet"),
  27891. name: "Dick (Cumming)",
  27892. image: {
  27893. source: "./media/characters/koros/dick-cumming.svg"
  27894. }
  27895. },
  27896. dicksBack: {
  27897. height: math.unit(5.9, "feet"),
  27898. name: "Dicks (Back)",
  27899. image: {
  27900. source: "./media/characters/koros/dicks-back.svg"
  27901. }
  27902. },
  27903. dicksFront: {
  27904. height: math.unit(3.72, "feet"),
  27905. name: "Dicks (Front)",
  27906. image: {
  27907. source: "./media/characters/koros/dicks-front.svg"
  27908. }
  27909. },
  27910. dicksPeeking: {
  27911. height: math.unit(3.0, "feet"),
  27912. name: "Dicks (Peeking)",
  27913. image: {
  27914. source: "./media/characters/koros/dicks-peeking.svg"
  27915. }
  27916. },
  27917. eye: {
  27918. height: math.unit(1.7, "feet"),
  27919. name: "Eye",
  27920. image: {
  27921. source: "./media/characters/koros/eye.svg"
  27922. }
  27923. },
  27924. headFront: {
  27925. height: math.unit(11.69, "feet"),
  27926. name: "Head (Front)",
  27927. image: {
  27928. source: "./media/characters/koros/head-front.svg"
  27929. }
  27930. },
  27931. headSide: {
  27932. height: math.unit(14, "feet"),
  27933. name: "Head (Side)",
  27934. image: {
  27935. source: "./media/characters/koros/head-side.svg"
  27936. }
  27937. },
  27938. leg: {
  27939. height: math.unit(17, "feet"),
  27940. name: "Leg",
  27941. image: {
  27942. source: "./media/characters/koros/leg.svg"
  27943. }
  27944. },
  27945. mawSide: {
  27946. height: math.unit(12.8, "feet"),
  27947. name: "Maw (Side)",
  27948. image: {
  27949. source: "./media/characters/koros/maw-side.svg"
  27950. }
  27951. },
  27952. mawSpitting: {
  27953. height: math.unit(17, "feet"),
  27954. name: "Maw (Spitting)",
  27955. image: {
  27956. source: "./media/characters/koros/maw-spitting.svg"
  27957. }
  27958. },
  27959. slit: {
  27960. height: math.unit(2.8, "feet"),
  27961. name: "Slit",
  27962. image: {
  27963. source: "./media/characters/koros/slit.svg"
  27964. }
  27965. },
  27966. stomach: {
  27967. height: math.unit(6.8, "feet"),
  27968. preyCapacity: math.unit(20, "people"),
  27969. name: "Stomach",
  27970. image: {
  27971. source: "./media/characters/koros/stomach.svg"
  27972. }
  27973. },
  27974. wingspanBottom: {
  27975. height: math.unit(114, "feet"),
  27976. name: "Wingspan (Bottom)",
  27977. image: {
  27978. source: "./media/characters/koros/wingspan-bottom.svg"
  27979. }
  27980. },
  27981. wingspanTop: {
  27982. height: math.unit(104, "feet"),
  27983. name: "Wingspan (Top)",
  27984. image: {
  27985. source: "./media/characters/koros/wingspan-top.svg"
  27986. }
  27987. },
  27988. },
  27989. [
  27990. {
  27991. name: "Normal",
  27992. height: math.unit(31 + 8 / 12, "feet"),
  27993. default: true
  27994. },
  27995. ]
  27996. ))
  27997. characterMakers.push(() => makeCharacter(
  27998. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27999. {
  28000. front: {
  28001. height: math.unit(18 + 5 / 12, "feet"),
  28002. weight: math.unit(3750, "kg"),
  28003. name: "Front",
  28004. image: {
  28005. source: "./media/characters/vexx/front.svg",
  28006. extra: 426 / 396,
  28007. bottom: 31.5 / 458
  28008. }
  28009. },
  28010. maw: {
  28011. height: math.unit(6, "feet"),
  28012. name: "Maw",
  28013. image: {
  28014. source: "./media/characters/vexx/maw.svg"
  28015. }
  28016. },
  28017. },
  28018. [
  28019. {
  28020. name: "Normal",
  28021. height: math.unit(18 + 5 / 12, "feet"),
  28022. default: true
  28023. },
  28024. ]
  28025. ))
  28026. characterMakers.push(() => makeCharacter(
  28027. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28028. {
  28029. front: {
  28030. height: math.unit(17 + 6 / 12, "feet"),
  28031. weight: math.unit(150, "lb"),
  28032. name: "Front",
  28033. image: {
  28034. source: "./media/characters/baadra/front.svg",
  28035. extra: 1694/1553,
  28036. bottom: 179/1873
  28037. }
  28038. },
  28039. frontAlt: {
  28040. height: math.unit(17 + 6 / 12, "feet"),
  28041. weight: math.unit(150, "lb"),
  28042. name: "Front (Alt)",
  28043. image: {
  28044. source: "./media/characters/baadra/front-alt.svg",
  28045. extra: 3137 / 2890,
  28046. bottom: 168.4 / 3305
  28047. }
  28048. },
  28049. back: {
  28050. height: math.unit(17 + 6 / 12, "feet"),
  28051. weight: math.unit(150, "lb"),
  28052. name: "Back",
  28053. image: {
  28054. source: "./media/characters/baadra/back.svg",
  28055. extra: 3142 / 2890,
  28056. bottom: 220 / 3371
  28057. }
  28058. },
  28059. head: {
  28060. height: math.unit(5.45, "feet"),
  28061. name: "Head",
  28062. image: {
  28063. source: "./media/characters/baadra/head.svg"
  28064. }
  28065. },
  28066. headAngry: {
  28067. height: math.unit(4.95, "feet"),
  28068. name: "Head (Angry)",
  28069. image: {
  28070. source: "./media/characters/baadra/head-angry.svg"
  28071. }
  28072. },
  28073. headOpen: {
  28074. height: math.unit(6, "feet"),
  28075. name: "Head (Open)",
  28076. image: {
  28077. source: "./media/characters/baadra/head-open.svg"
  28078. }
  28079. },
  28080. },
  28081. [
  28082. {
  28083. name: "Normal",
  28084. height: math.unit(17 + 6 / 12, "feet"),
  28085. default: true
  28086. },
  28087. ]
  28088. ))
  28089. characterMakers.push(() => makeCharacter(
  28090. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28091. {
  28092. front: {
  28093. height: math.unit(7 + 3 / 12, "feet"),
  28094. weight: math.unit(180, "lb"),
  28095. name: "Front",
  28096. image: {
  28097. source: "./media/characters/juri/front.svg",
  28098. extra: 1401 / 1237,
  28099. bottom: 18.5 / 1418
  28100. }
  28101. },
  28102. side: {
  28103. height: math.unit(7 + 3 / 12, "feet"),
  28104. weight: math.unit(180, "lb"),
  28105. name: "Side",
  28106. image: {
  28107. source: "./media/characters/juri/side.svg",
  28108. extra: 1424 / 1242,
  28109. bottom: 18.5 / 1447
  28110. }
  28111. },
  28112. sitting: {
  28113. height: math.unit(6, "feet"),
  28114. weight: math.unit(180, "lb"),
  28115. name: "Sitting",
  28116. image: {
  28117. source: "./media/characters/juri/sitting.svg",
  28118. extra: 1270 / 1143,
  28119. bottom: 100 / 1343
  28120. }
  28121. },
  28122. back: {
  28123. height: math.unit(7 + 3 / 12, "feet"),
  28124. weight: math.unit(180, "lb"),
  28125. name: "Back",
  28126. image: {
  28127. source: "./media/characters/juri/back.svg",
  28128. extra: 1377 / 1240,
  28129. bottom: 23.7 / 1405
  28130. }
  28131. },
  28132. maw: {
  28133. height: math.unit(2.8, "feet"),
  28134. name: "Maw",
  28135. image: {
  28136. source: "./media/characters/juri/maw.svg"
  28137. }
  28138. },
  28139. stomach: {
  28140. height: math.unit(0.89, "feet"),
  28141. preyCapacity: math.unit(4, "liters"),
  28142. name: "Stomach",
  28143. image: {
  28144. source: "./media/characters/juri/stomach.svg"
  28145. }
  28146. },
  28147. },
  28148. [
  28149. {
  28150. name: "Normal",
  28151. height: math.unit(7 + 3 / 12, "feet"),
  28152. default: true
  28153. },
  28154. ]
  28155. ))
  28156. characterMakers.push(() => makeCharacter(
  28157. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28158. {
  28159. fox: {
  28160. height: math.unit(5 + 6 / 12, "feet"),
  28161. weight: math.unit(140, "lb"),
  28162. name: "Fox",
  28163. image: {
  28164. source: "./media/characters/maxene-sita/fox.svg",
  28165. extra: 146 / 138,
  28166. bottom: 2.1 / 148.19
  28167. }
  28168. },
  28169. foxLaying: {
  28170. height: math.unit(1.70, "feet"),
  28171. weight: math.unit(140, "lb"),
  28172. name: "Fox (Laying)",
  28173. image: {
  28174. source: "./media/characters/maxene-sita/fox-laying.svg",
  28175. extra: 910 / 572,
  28176. bottom: 71 / 981
  28177. }
  28178. },
  28179. kitsune: {
  28180. height: math.unit(10, "feet"),
  28181. weight: math.unit(800, "lb"),
  28182. name: "Kitsune",
  28183. image: {
  28184. source: "./media/characters/maxene-sita/kitsune.svg",
  28185. extra: 185 / 176,
  28186. bottom: 4.7 / 189.9
  28187. }
  28188. },
  28189. hellhound: {
  28190. height: math.unit(10, "feet"),
  28191. weight: math.unit(700, "lb"),
  28192. name: "Hellhound",
  28193. image: {
  28194. source: "./media/characters/maxene-sita/hellhound.svg",
  28195. extra: 1600 / 1545,
  28196. bottom: 81 / 1681
  28197. }
  28198. },
  28199. },
  28200. [
  28201. {
  28202. name: "Normal",
  28203. height: math.unit(5 + 6 / 12, "feet"),
  28204. default: true
  28205. },
  28206. ]
  28207. ))
  28208. characterMakers.push(() => makeCharacter(
  28209. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28210. {
  28211. front: {
  28212. height: math.unit(3 + 4 / 12, "feet"),
  28213. weight: math.unit(70, "lb"),
  28214. name: "Front",
  28215. image: {
  28216. source: "./media/characters/maia/front.svg",
  28217. extra: 227 / 219.5,
  28218. bottom: 40 / 267
  28219. }
  28220. },
  28221. back: {
  28222. height: math.unit(3 + 4 / 12, "feet"),
  28223. weight: math.unit(70, "lb"),
  28224. name: "Back",
  28225. image: {
  28226. source: "./media/characters/maia/back.svg",
  28227. extra: 237 / 225
  28228. }
  28229. },
  28230. },
  28231. [
  28232. {
  28233. name: "Normal",
  28234. height: math.unit(3 + 4 / 12, "feet"),
  28235. default: true
  28236. },
  28237. ]
  28238. ))
  28239. characterMakers.push(() => makeCharacter(
  28240. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28241. {
  28242. front: {
  28243. height: math.unit(5 + 10 / 12, "feet"),
  28244. weight: math.unit(197, "lb"),
  28245. name: "Front",
  28246. image: {
  28247. source: "./media/characters/jabaro/front.svg",
  28248. extra: 225 / 216,
  28249. bottom: 5.06 / 230
  28250. }
  28251. },
  28252. back: {
  28253. height: math.unit(5 + 10 / 12, "feet"),
  28254. weight: math.unit(197, "lb"),
  28255. name: "Back",
  28256. image: {
  28257. source: "./media/characters/jabaro/back.svg",
  28258. extra: 225 / 219,
  28259. bottom: 1.9 / 227
  28260. }
  28261. },
  28262. },
  28263. [
  28264. {
  28265. name: "Normal",
  28266. height: math.unit(5 + 10 / 12, "feet"),
  28267. default: true
  28268. },
  28269. ]
  28270. ))
  28271. characterMakers.push(() => makeCharacter(
  28272. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28273. {
  28274. front: {
  28275. height: math.unit(5 + 8 / 12, "feet"),
  28276. weight: math.unit(139, "lb"),
  28277. name: "Front",
  28278. image: {
  28279. source: "./media/characters/risa/front.svg",
  28280. extra: 270 / 260,
  28281. bottom: 11.2 / 282
  28282. }
  28283. },
  28284. back: {
  28285. height: math.unit(5 + 8 / 12, "feet"),
  28286. weight: math.unit(139, "lb"),
  28287. name: "Back",
  28288. image: {
  28289. source: "./media/characters/risa/back.svg",
  28290. extra: 264 / 255,
  28291. bottom: 4 / 268
  28292. }
  28293. },
  28294. },
  28295. [
  28296. {
  28297. name: "Normal",
  28298. height: math.unit(5 + 8 / 12, "feet"),
  28299. default: true
  28300. },
  28301. ]
  28302. ))
  28303. characterMakers.push(() => makeCharacter(
  28304. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28305. {
  28306. front: {
  28307. height: math.unit(2 + 11 / 12, "feet"),
  28308. weight: math.unit(30, "lb"),
  28309. name: "Front",
  28310. image: {
  28311. source: "./media/characters/weatley/front.svg",
  28312. bottom: 10.7 / 414,
  28313. extra: 403.5 / 362
  28314. }
  28315. },
  28316. back: {
  28317. height: math.unit(2 + 11 / 12, "feet"),
  28318. weight: math.unit(30, "lb"),
  28319. name: "Back",
  28320. image: {
  28321. source: "./media/characters/weatley/back.svg",
  28322. bottom: 10.7 / 414,
  28323. extra: 403.5 / 362
  28324. }
  28325. },
  28326. },
  28327. [
  28328. {
  28329. name: "Normal",
  28330. height: math.unit(2 + 11 / 12, "feet"),
  28331. default: true
  28332. },
  28333. ]
  28334. ))
  28335. characterMakers.push(() => makeCharacter(
  28336. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28337. {
  28338. front: {
  28339. height: math.unit(5 + 2 / 12, "feet"),
  28340. weight: math.unit(50, "kg"),
  28341. name: "Front",
  28342. image: {
  28343. source: "./media/characters/mercury-crescent/front.svg",
  28344. extra: 1088 / 1033,
  28345. bottom: 18.9 / 1109
  28346. }
  28347. },
  28348. },
  28349. [
  28350. {
  28351. name: "Normal",
  28352. height: math.unit(5 + 2 / 12, "feet"),
  28353. default: true
  28354. },
  28355. ]
  28356. ))
  28357. characterMakers.push(() => makeCharacter(
  28358. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28359. {
  28360. front: {
  28361. height: math.unit(2, "feet"),
  28362. weight: math.unit(15, "kg"),
  28363. name: "Front",
  28364. image: {
  28365. source: "./media/characters/diamond-jones/front.svg",
  28366. extra: 727/723,
  28367. bottom: 46/773
  28368. }
  28369. },
  28370. },
  28371. [
  28372. {
  28373. name: "Normal",
  28374. height: math.unit(2, "feet"),
  28375. default: true
  28376. },
  28377. ]
  28378. ))
  28379. characterMakers.push(() => makeCharacter(
  28380. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28381. {
  28382. front: {
  28383. height: math.unit(3, "feet"),
  28384. weight: math.unit(30, "kg"),
  28385. name: "Front",
  28386. image: {
  28387. source: "./media/characters/sweet-bit/front.svg",
  28388. extra: 675 / 567,
  28389. bottom: 27.7 / 703
  28390. }
  28391. },
  28392. },
  28393. [
  28394. {
  28395. name: "Normal",
  28396. height: math.unit(3, "feet"),
  28397. default: true
  28398. },
  28399. ]
  28400. ))
  28401. characterMakers.push(() => makeCharacter(
  28402. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28403. {
  28404. side: {
  28405. height: math.unit(9.178, "feet"),
  28406. weight: math.unit(500, "lb"),
  28407. name: "Side",
  28408. image: {
  28409. source: "./media/characters/umbrazen/side.svg",
  28410. extra: 1730 / 1473,
  28411. bottom: 34.6 / 1765
  28412. }
  28413. },
  28414. },
  28415. [
  28416. {
  28417. name: "Normal",
  28418. height: math.unit(9.178, "feet"),
  28419. default: true
  28420. },
  28421. ]
  28422. ))
  28423. characterMakers.push(() => makeCharacter(
  28424. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28425. {
  28426. front: {
  28427. height: math.unit(10, "feet"),
  28428. weight: math.unit(750, "lb"),
  28429. name: "Front",
  28430. image: {
  28431. source: "./media/characters/arlist/front.svg",
  28432. extra: 961 / 778,
  28433. bottom: 6.2 / 986
  28434. }
  28435. },
  28436. },
  28437. [
  28438. {
  28439. name: "Normal",
  28440. height: math.unit(10, "feet"),
  28441. default: true
  28442. },
  28443. ]
  28444. ))
  28445. characterMakers.push(() => makeCharacter(
  28446. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28447. {
  28448. front: {
  28449. height: math.unit(5 + 1 / 12, "feet"),
  28450. weight: math.unit(110, "lb"),
  28451. name: "Front",
  28452. image: {
  28453. source: "./media/characters/aradel/front.svg",
  28454. extra: 324 / 303,
  28455. bottom: 3.6 / 329.4
  28456. }
  28457. },
  28458. },
  28459. [
  28460. {
  28461. name: "Normal",
  28462. height: math.unit(5 + 1 / 12, "feet"),
  28463. default: true
  28464. },
  28465. ]
  28466. ))
  28467. characterMakers.push(() => makeCharacter(
  28468. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28469. {
  28470. dressed: {
  28471. height: math.unit(3 + 8 / 12, "feet"),
  28472. weight: math.unit(50, "lb"),
  28473. name: "Dressed",
  28474. image: {
  28475. source: "./media/characters/serryn/dressed.svg",
  28476. extra: 1792 / 1656,
  28477. bottom: 43.5 / 1840
  28478. }
  28479. },
  28480. nude: {
  28481. height: math.unit(3 + 8 / 12, "feet"),
  28482. weight: math.unit(50, "lb"),
  28483. name: "Nude",
  28484. image: {
  28485. source: "./media/characters/serryn/nude.svg",
  28486. extra: 1792 / 1656,
  28487. bottom: 43.5 / 1840
  28488. }
  28489. },
  28490. },
  28491. [
  28492. {
  28493. name: "Normal",
  28494. height: math.unit(3 + 8 / 12, "feet"),
  28495. default: true
  28496. },
  28497. ]
  28498. ))
  28499. characterMakers.push(() => makeCharacter(
  28500. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28501. {
  28502. front: {
  28503. height: math.unit(7 + 10 / 12, "feet"),
  28504. weight: math.unit(255, "lb"),
  28505. name: "Front",
  28506. image: {
  28507. source: "./media/characters/xavier-thyme/front.svg",
  28508. extra: 3733 / 3642,
  28509. bottom: 131 / 3869
  28510. }
  28511. },
  28512. frontRaven: {
  28513. height: math.unit(7 + 10 / 12, "feet"),
  28514. weight: math.unit(255, "lb"),
  28515. name: "Front (Raven)",
  28516. image: {
  28517. source: "./media/characters/xavier-thyme/front-raven.svg",
  28518. extra: 4385 / 3642,
  28519. bottom: 131 / 4517
  28520. }
  28521. },
  28522. },
  28523. [
  28524. {
  28525. name: "Normal",
  28526. height: math.unit(7 + 10 / 12, "feet"),
  28527. default: true
  28528. },
  28529. ]
  28530. ))
  28531. characterMakers.push(() => makeCharacter(
  28532. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28533. {
  28534. front: {
  28535. height: math.unit(1.6, "m"),
  28536. weight: math.unit(50, "kg"),
  28537. name: "Front",
  28538. image: {
  28539. source: "./media/characters/kiki/front.svg",
  28540. extra: 4682 / 3610,
  28541. bottom: 115 / 4777
  28542. }
  28543. },
  28544. },
  28545. [
  28546. {
  28547. name: "Normal",
  28548. height: math.unit(1.6, "meters"),
  28549. default: true
  28550. },
  28551. ]
  28552. ))
  28553. characterMakers.push(() => makeCharacter(
  28554. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28555. {
  28556. front: {
  28557. height: math.unit(50, "m"),
  28558. weight: math.unit(500, "tonnes"),
  28559. name: "Front",
  28560. image: {
  28561. source: "./media/characters/ryoko/front.svg",
  28562. extra: 4632 / 3926,
  28563. bottom: 193 / 4823
  28564. }
  28565. },
  28566. },
  28567. [
  28568. {
  28569. name: "Normal",
  28570. height: math.unit(50, "meters"),
  28571. default: true
  28572. },
  28573. ]
  28574. ))
  28575. characterMakers.push(() => makeCharacter(
  28576. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28577. {
  28578. front: {
  28579. height: math.unit(30, "m"),
  28580. weight: math.unit(22, "tonnes"),
  28581. name: "Front",
  28582. image: {
  28583. source: "./media/characters/elio/front.svg",
  28584. extra: 4582 / 3720,
  28585. bottom: 236 / 4828
  28586. }
  28587. },
  28588. },
  28589. [
  28590. {
  28591. name: "Normal",
  28592. height: math.unit(30, "meters"),
  28593. default: true
  28594. },
  28595. ]
  28596. ))
  28597. characterMakers.push(() => makeCharacter(
  28598. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28599. {
  28600. front: {
  28601. height: math.unit(6 + 3 / 12, "feet"),
  28602. weight: math.unit(120, "lb"),
  28603. name: "Front",
  28604. image: {
  28605. source: "./media/characters/azura/front.svg",
  28606. extra: 1149 / 1135,
  28607. bottom: 45 / 1194
  28608. }
  28609. },
  28610. frontClothed: {
  28611. height: math.unit(6 + 3 / 12, "feet"),
  28612. weight: math.unit(120, "lb"),
  28613. name: "Front (Clothed)",
  28614. image: {
  28615. source: "./media/characters/azura/front-clothed.svg",
  28616. extra: 1149 / 1135,
  28617. bottom: 45 / 1194
  28618. }
  28619. },
  28620. },
  28621. [
  28622. {
  28623. name: "Normal",
  28624. height: math.unit(6 + 3 / 12, "feet"),
  28625. default: true
  28626. },
  28627. {
  28628. name: "Macro",
  28629. height: math.unit(20 + 6 / 12, "feet")
  28630. },
  28631. {
  28632. name: "Megamacro",
  28633. height: math.unit(12, "miles")
  28634. },
  28635. {
  28636. name: "Gigamacro",
  28637. height: math.unit(10000, "miles")
  28638. },
  28639. {
  28640. name: "Teramacro",
  28641. height: math.unit(900000, "miles")
  28642. },
  28643. ]
  28644. ))
  28645. characterMakers.push(() => makeCharacter(
  28646. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28647. {
  28648. front: {
  28649. height: math.unit(12, "feet"),
  28650. weight: math.unit(1, "ton"),
  28651. capacity: math.unit(660000, "gallons"),
  28652. name: "Front",
  28653. image: {
  28654. source: "./media/characters/zeus/front.svg",
  28655. extra: 5005 / 4717,
  28656. bottom: 363 / 5388
  28657. }
  28658. },
  28659. },
  28660. [
  28661. {
  28662. name: "Normal",
  28663. height: math.unit(12, "feet")
  28664. },
  28665. {
  28666. name: "Preferred Size",
  28667. height: math.unit(0.5, "miles"),
  28668. default: true
  28669. },
  28670. {
  28671. name: "Giga Horse",
  28672. height: math.unit(300, "miles")
  28673. },
  28674. {
  28675. name: "Riding Planets",
  28676. height: math.unit(30, "megameters")
  28677. },
  28678. {
  28679. name: "Cosmic Giant",
  28680. height: math.unit(3, "zettameters")
  28681. },
  28682. {
  28683. name: "Breeding God",
  28684. height: math.unit(9.92e22, "yottameters")
  28685. },
  28686. ]
  28687. ))
  28688. characterMakers.push(() => makeCharacter(
  28689. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28690. {
  28691. side: {
  28692. height: math.unit(9, "feet"),
  28693. weight: math.unit(1500, "kg"),
  28694. name: "Side",
  28695. image: {
  28696. source: "./media/characters/fang/side.svg",
  28697. extra: 924 / 866,
  28698. bottom: 47.5 / 972.3
  28699. }
  28700. },
  28701. },
  28702. [
  28703. {
  28704. name: "Normal",
  28705. height: math.unit(9, "feet"),
  28706. default: true
  28707. },
  28708. {
  28709. name: "Macro",
  28710. height: math.unit(75 + 6 / 12, "feet")
  28711. },
  28712. {
  28713. name: "Teramacro",
  28714. height: math.unit(50000, "miles")
  28715. },
  28716. ]
  28717. ))
  28718. characterMakers.push(() => makeCharacter(
  28719. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28720. {
  28721. front: {
  28722. height: math.unit(10, "feet"),
  28723. weight: math.unit(2, "tons"),
  28724. name: "Front",
  28725. image: {
  28726. source: "./media/characters/rekhit/front.svg",
  28727. extra: 2796 / 2590,
  28728. bottom: 225 / 3022
  28729. }
  28730. },
  28731. },
  28732. [
  28733. {
  28734. name: "Normal",
  28735. height: math.unit(10, "feet"),
  28736. default: true
  28737. },
  28738. {
  28739. name: "Macro",
  28740. height: math.unit(500, "feet")
  28741. },
  28742. ]
  28743. ))
  28744. characterMakers.push(() => makeCharacter(
  28745. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28746. {
  28747. front: {
  28748. height: math.unit(7 + 6.451 / 12, "feet"),
  28749. weight: math.unit(310, "lb"),
  28750. name: "Front",
  28751. image: {
  28752. source: "./media/characters/dahlia-verrick/front.svg",
  28753. extra: 1488 / 1365,
  28754. bottom: 6.2 / 1495
  28755. }
  28756. },
  28757. back: {
  28758. height: math.unit(7 + 6.451 / 12, "feet"),
  28759. weight: math.unit(310, "lb"),
  28760. name: "Back",
  28761. image: {
  28762. source: "./media/characters/dahlia-verrick/back.svg",
  28763. extra: 1472 / 1351,
  28764. bottom: 5.28 / 1477
  28765. }
  28766. },
  28767. frontBusiness: {
  28768. height: math.unit(7 + 6.451 / 12, "feet"),
  28769. weight: math.unit(200, "lb"),
  28770. name: "Front (Business)",
  28771. image: {
  28772. source: "./media/characters/dahlia-verrick/front-business.svg",
  28773. extra: 1478 / 1381,
  28774. bottom: 5.5 / 1484
  28775. }
  28776. },
  28777. frontCasual: {
  28778. height: math.unit(7 + 6.451 / 12, "feet"),
  28779. weight: math.unit(200, "lb"),
  28780. name: "Front (Casual)",
  28781. image: {
  28782. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28783. extra: 1478 / 1381,
  28784. bottom: 5.5 / 1484
  28785. }
  28786. },
  28787. },
  28788. [
  28789. {
  28790. name: "Travel-Sized",
  28791. height: math.unit(7.45, "inches")
  28792. },
  28793. {
  28794. name: "Normal",
  28795. height: math.unit(7 + 6.451 / 12, "feet"),
  28796. default: true
  28797. },
  28798. {
  28799. name: "Hitting the Town",
  28800. height: math.unit(37 + 8 / 12, "feet")
  28801. },
  28802. {
  28803. name: "Stomp in the Suburbs",
  28804. height: math.unit(964 + 9.728 / 12, "feet")
  28805. },
  28806. {
  28807. name: "Sit on the City",
  28808. height: math.unit(61747 + 10.592 / 12, "feet")
  28809. },
  28810. {
  28811. name: "Glomp the Globe",
  28812. height: math.unit(252919327 + 4.832 / 12, "feet")
  28813. },
  28814. ]
  28815. ))
  28816. characterMakers.push(() => makeCharacter(
  28817. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28818. {
  28819. front: {
  28820. height: math.unit(6 + 4 / 12, "feet"),
  28821. weight: math.unit(320, "lb"),
  28822. name: "Front",
  28823. image: {
  28824. source: "./media/characters/balina-mahigan/front.svg",
  28825. extra: 447 / 428,
  28826. bottom: 18 / 466
  28827. }
  28828. },
  28829. back: {
  28830. height: math.unit(6 + 4 / 12, "feet"),
  28831. weight: math.unit(320, "lb"),
  28832. name: "Back",
  28833. image: {
  28834. source: "./media/characters/balina-mahigan/back.svg",
  28835. extra: 445 / 428,
  28836. bottom: 4.07 / 448
  28837. }
  28838. },
  28839. arm: {
  28840. height: math.unit(1.88, "feet"),
  28841. name: "Arm",
  28842. image: {
  28843. source: "./media/characters/balina-mahigan/arm.svg"
  28844. }
  28845. },
  28846. backPort: {
  28847. height: math.unit(0.685, "feet"),
  28848. name: "Back Port",
  28849. image: {
  28850. source: "./media/characters/balina-mahigan/back-port.svg"
  28851. }
  28852. },
  28853. hoofpaw: {
  28854. height: math.unit(1.41, "feet"),
  28855. name: "Hoofpaw",
  28856. image: {
  28857. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28858. }
  28859. },
  28860. leftHandBack: {
  28861. height: math.unit(0.938, "feet"),
  28862. name: "Left Hand (Back)",
  28863. image: {
  28864. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28865. }
  28866. },
  28867. leftHandFront: {
  28868. height: math.unit(0.938, "feet"),
  28869. name: "Left Hand (Front)",
  28870. image: {
  28871. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28872. }
  28873. },
  28874. rightHandBack: {
  28875. height: math.unit(0.95, "feet"),
  28876. name: "Right Hand (Back)",
  28877. image: {
  28878. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28879. }
  28880. },
  28881. rightHandFront: {
  28882. height: math.unit(0.95, "feet"),
  28883. name: "Right Hand (Front)",
  28884. image: {
  28885. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28886. }
  28887. },
  28888. },
  28889. [
  28890. {
  28891. name: "Normal",
  28892. height: math.unit(6 + 4 / 12, "feet"),
  28893. default: true
  28894. },
  28895. ]
  28896. ))
  28897. characterMakers.push(() => makeCharacter(
  28898. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28899. {
  28900. front: {
  28901. height: math.unit(6, "feet"),
  28902. weight: math.unit(320, "lb"),
  28903. name: "Front",
  28904. image: {
  28905. source: "./media/characters/balina-mejeri/front.svg",
  28906. extra: 517 / 488,
  28907. bottom: 44.2 / 561
  28908. }
  28909. },
  28910. },
  28911. [
  28912. {
  28913. name: "Normal",
  28914. height: math.unit(6 + 4 / 12, "feet")
  28915. },
  28916. {
  28917. name: "Business",
  28918. height: math.unit(155, "feet"),
  28919. default: true
  28920. },
  28921. ]
  28922. ))
  28923. characterMakers.push(() => makeCharacter(
  28924. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28925. {
  28926. kneeling: {
  28927. height: math.unit(6 + 4 / 12, "feet"),
  28928. weight: math.unit(300 * 20, "lb"),
  28929. name: "Kneeling",
  28930. image: {
  28931. source: "./media/characters/balbarian/kneeling.svg",
  28932. extra: 922 / 862,
  28933. bottom: 42.4 / 965
  28934. }
  28935. },
  28936. },
  28937. [
  28938. {
  28939. name: "Normal",
  28940. height: math.unit(6 + 4 / 12, "feet")
  28941. },
  28942. {
  28943. name: "Treasured",
  28944. height: math.unit(18 + 9 / 12, "feet"),
  28945. default: true
  28946. },
  28947. {
  28948. name: "Macro",
  28949. height: math.unit(900, "feet")
  28950. },
  28951. ]
  28952. ))
  28953. characterMakers.push(() => makeCharacter(
  28954. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28955. {
  28956. front: {
  28957. height: math.unit(6 + 4 / 12, "feet"),
  28958. weight: math.unit(325, "lb"),
  28959. name: "Front",
  28960. image: {
  28961. source: "./media/characters/balina-amarini/front.svg",
  28962. extra: 415 / 403,
  28963. bottom: 19 / 433.4
  28964. }
  28965. },
  28966. back: {
  28967. height: math.unit(6 + 4 / 12, "feet"),
  28968. weight: math.unit(325, "lb"),
  28969. name: "Back",
  28970. image: {
  28971. source: "./media/characters/balina-amarini/back.svg",
  28972. extra: 415 / 403,
  28973. bottom: 13.5 / 432
  28974. }
  28975. },
  28976. overdrive: {
  28977. height: math.unit(6 + 4 / 12, "feet"),
  28978. weight: math.unit(400, "lb"),
  28979. name: "Overdrive",
  28980. image: {
  28981. source: "./media/characters/balina-amarini/overdrive.svg",
  28982. extra: 269 / 259,
  28983. bottom: 12 / 282
  28984. }
  28985. },
  28986. },
  28987. [
  28988. {
  28989. name: "Boom",
  28990. height: math.unit(9 + 10 / 12, "feet"),
  28991. default: true
  28992. },
  28993. {
  28994. name: "Macro",
  28995. height: math.unit(280, "feet")
  28996. },
  28997. ]
  28998. ))
  28999. characterMakers.push(() => makeCharacter(
  29000. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29001. {
  29002. goddess: {
  29003. height: math.unit(600, "feet"),
  29004. weight: math.unit(2000000, "tons"),
  29005. name: "Goddess",
  29006. image: {
  29007. source: "./media/characters/lady-kubwa/goddess.svg",
  29008. extra: 1240.5 / 1223,
  29009. bottom: 22 / 1263
  29010. }
  29011. },
  29012. goddesser: {
  29013. height: math.unit(900, "feet"),
  29014. weight: math.unit(20000000, "lb"),
  29015. name: "Goddess-er",
  29016. image: {
  29017. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29018. extra: 899 / 888,
  29019. bottom: 12.6 / 912
  29020. }
  29021. },
  29022. },
  29023. [
  29024. {
  29025. name: "Macro",
  29026. height: math.unit(600, "feet"),
  29027. default: true
  29028. },
  29029. {
  29030. name: "Megamacro",
  29031. height: math.unit(250, "miles")
  29032. },
  29033. ]
  29034. ))
  29035. characterMakers.push(() => makeCharacter(
  29036. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29037. {
  29038. front: {
  29039. height: math.unit(7 + 7 / 12, "feet"),
  29040. weight: math.unit(250, "lb"),
  29041. name: "Front",
  29042. image: {
  29043. source: "./media/characters/tala-grovehorn/front.svg",
  29044. extra: 2636 / 2525,
  29045. bottom: 147 / 2781
  29046. }
  29047. },
  29048. back: {
  29049. height: math.unit(7 + 7 / 12, "feet"),
  29050. weight: math.unit(250, "lb"),
  29051. name: "Back",
  29052. image: {
  29053. source: "./media/characters/tala-grovehorn/back.svg",
  29054. extra: 2635 / 2539,
  29055. bottom: 100 / 2732.8
  29056. }
  29057. },
  29058. mouth: {
  29059. height: math.unit(1.15, "feet"),
  29060. name: "Mouth",
  29061. image: {
  29062. source: "./media/characters/tala-grovehorn/mouth.svg"
  29063. }
  29064. },
  29065. dick: {
  29066. height: math.unit(2.36, "feet"),
  29067. name: "Dick",
  29068. image: {
  29069. source: "./media/characters/tala-grovehorn/dick.svg"
  29070. }
  29071. },
  29072. slit: {
  29073. height: math.unit(0.61, "feet"),
  29074. name: "Slit",
  29075. image: {
  29076. source: "./media/characters/tala-grovehorn/slit.svg"
  29077. }
  29078. },
  29079. },
  29080. [
  29081. ]
  29082. ))
  29083. characterMakers.push(() => makeCharacter(
  29084. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29085. {
  29086. front: {
  29087. height: math.unit(7 + 7 / 12, "feet"),
  29088. weight: math.unit(225, "lb"),
  29089. name: "Front",
  29090. image: {
  29091. source: "./media/characters/epona/front.svg",
  29092. extra: 2445 / 2290,
  29093. bottom: 251 / 2696
  29094. }
  29095. },
  29096. back: {
  29097. height: math.unit(7 + 7 / 12, "feet"),
  29098. weight: math.unit(225, "lb"),
  29099. name: "Back",
  29100. image: {
  29101. source: "./media/characters/epona/back.svg",
  29102. extra: 2546 / 2408,
  29103. bottom: 44 / 2589
  29104. }
  29105. },
  29106. genitals: {
  29107. height: math.unit(1.5, "feet"),
  29108. name: "Genitals",
  29109. image: {
  29110. source: "./media/characters/epona/genitals.svg"
  29111. }
  29112. },
  29113. },
  29114. [
  29115. {
  29116. name: "Normal",
  29117. height: math.unit(7 + 7 / 12, "feet"),
  29118. default: true
  29119. },
  29120. ]
  29121. ))
  29122. characterMakers.push(() => makeCharacter(
  29123. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29124. {
  29125. front: {
  29126. height: math.unit(7, "feet"),
  29127. weight: math.unit(518, "lb"),
  29128. name: "Front",
  29129. image: {
  29130. source: "./media/characters/avia-bloodbourn/front.svg",
  29131. extra: 1466 / 1350,
  29132. bottom: 65 / 1527
  29133. }
  29134. },
  29135. },
  29136. [
  29137. ]
  29138. ))
  29139. characterMakers.push(() => makeCharacter(
  29140. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29141. {
  29142. front: {
  29143. height: math.unit(9.35, "feet"),
  29144. weight: math.unit(600, "lb"),
  29145. name: "Front",
  29146. image: {
  29147. source: "./media/characters/amera/front.svg",
  29148. extra: 891 / 818,
  29149. bottom: 30 / 922.7
  29150. }
  29151. },
  29152. back: {
  29153. height: math.unit(9.35, "feet"),
  29154. weight: math.unit(600, "lb"),
  29155. name: "Back",
  29156. image: {
  29157. source: "./media/characters/amera/back.svg",
  29158. extra: 876 / 824,
  29159. bottom: 6.8 / 884
  29160. }
  29161. },
  29162. dick: {
  29163. height: math.unit(2.14, "feet"),
  29164. name: "Dick",
  29165. image: {
  29166. source: "./media/characters/amera/dick.svg"
  29167. }
  29168. },
  29169. },
  29170. [
  29171. {
  29172. name: "Normal",
  29173. height: math.unit(9.35, "feet"),
  29174. default: true
  29175. },
  29176. ]
  29177. ))
  29178. characterMakers.push(() => makeCharacter(
  29179. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29180. {
  29181. kneeling: {
  29182. height: math.unit(3 + 4 / 12, "feet"),
  29183. weight: math.unit(90, "lb"),
  29184. name: "Kneeling",
  29185. image: {
  29186. source: "./media/characters/rosewen/kneeling.svg",
  29187. extra: 1835 / 1571,
  29188. bottom: 27.7 / 1862
  29189. }
  29190. },
  29191. },
  29192. [
  29193. {
  29194. name: "Normal",
  29195. height: math.unit(3 + 4 / 12, "feet"),
  29196. default: true
  29197. },
  29198. ]
  29199. ))
  29200. characterMakers.push(() => makeCharacter(
  29201. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29202. {
  29203. front: {
  29204. height: math.unit(5 + 10 / 12, "feet"),
  29205. weight: math.unit(200, "lb"),
  29206. name: "Front",
  29207. image: {
  29208. source: "./media/characters/sabah/front.svg",
  29209. extra: 849 / 763,
  29210. bottom: 33.9 / 881
  29211. }
  29212. },
  29213. },
  29214. [
  29215. {
  29216. name: "Normal",
  29217. height: math.unit(5 + 10 / 12, "feet"),
  29218. default: true
  29219. },
  29220. ]
  29221. ))
  29222. characterMakers.push(() => makeCharacter(
  29223. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29224. {
  29225. front: {
  29226. height: math.unit(3 + 5 / 12, "feet"),
  29227. weight: math.unit(40, "kg"),
  29228. name: "Front",
  29229. image: {
  29230. source: "./media/characters/purple-flame/front.svg",
  29231. extra: 1577 / 1412,
  29232. bottom: 97 / 1694
  29233. }
  29234. },
  29235. frontDressed: {
  29236. height: math.unit(3 + 5 / 12, "feet"),
  29237. weight: math.unit(40, "kg"),
  29238. name: "Front (Dressed)",
  29239. image: {
  29240. source: "./media/characters/purple-flame/front-dressed.svg",
  29241. extra: 1577 / 1412,
  29242. bottom: 97 / 1694
  29243. }
  29244. },
  29245. headphones: {
  29246. height: math.unit(0.85, "feet"),
  29247. name: "Headphones",
  29248. image: {
  29249. source: "./media/characters/purple-flame/headphones.svg"
  29250. }
  29251. },
  29252. },
  29253. [
  29254. {
  29255. name: "Really Small",
  29256. height: math.unit(5, "cm")
  29257. },
  29258. {
  29259. name: "Micro",
  29260. height: math.unit(1 + 5 / 12, "feet")
  29261. },
  29262. {
  29263. name: "Normal",
  29264. height: math.unit(3 + 5 / 12, "feet"),
  29265. default: true
  29266. },
  29267. {
  29268. name: "Minimacro",
  29269. height: math.unit(125, "feet")
  29270. },
  29271. {
  29272. name: "Macro",
  29273. height: math.unit(0.5, "miles")
  29274. },
  29275. {
  29276. name: "Megamacro",
  29277. height: math.unit(50, "miles")
  29278. },
  29279. {
  29280. name: "Gigantic",
  29281. height: math.unit(750, "miles")
  29282. },
  29283. {
  29284. name: "Planetary",
  29285. height: math.unit(15000, "miles")
  29286. },
  29287. ]
  29288. ))
  29289. characterMakers.push(() => makeCharacter(
  29290. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29291. {
  29292. front: {
  29293. height: math.unit(14, "feet"),
  29294. weight: math.unit(959, "lb"),
  29295. name: "Front",
  29296. image: {
  29297. source: "./media/characters/arsenal/front.svg",
  29298. extra: 2357 / 2157,
  29299. bottom: 93 / 2458
  29300. }
  29301. },
  29302. },
  29303. [
  29304. {
  29305. name: "Normal",
  29306. height: math.unit(14, "feet"),
  29307. default: true
  29308. },
  29309. ]
  29310. ))
  29311. characterMakers.push(() => makeCharacter(
  29312. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29313. {
  29314. front: {
  29315. height: math.unit(6, "feet"),
  29316. weight: math.unit(150, "lb"),
  29317. name: "Front",
  29318. image: {
  29319. source: "./media/characters/adira/front.svg",
  29320. extra: 1078 / 1029,
  29321. bottom: 87 / 1166
  29322. }
  29323. },
  29324. },
  29325. [
  29326. {
  29327. name: "Micro",
  29328. height: math.unit(4, "inches"),
  29329. default: true
  29330. },
  29331. {
  29332. name: "Macro",
  29333. height: math.unit(50, "feet")
  29334. },
  29335. ]
  29336. ))
  29337. characterMakers.push(() => makeCharacter(
  29338. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29339. {
  29340. front: {
  29341. height: math.unit(16, "feet"),
  29342. weight: math.unit(1000, "lb"),
  29343. name: "Front",
  29344. image: {
  29345. source: "./media/characters/grim/front.svg",
  29346. extra: 622 / 614,
  29347. bottom: 18.1 / 642
  29348. }
  29349. },
  29350. back: {
  29351. height: math.unit(16, "feet"),
  29352. weight: math.unit(1000, "lb"),
  29353. name: "Back",
  29354. image: {
  29355. source: "./media/characters/grim/back.svg",
  29356. extra: 610.6 / 602,
  29357. bottom: 40.8 / 652
  29358. }
  29359. },
  29360. hunched: {
  29361. height: math.unit(9.75, "feet"),
  29362. weight: math.unit(1000, "lb"),
  29363. name: "Hunched",
  29364. image: {
  29365. source: "./media/characters/grim/hunched.svg",
  29366. extra: 304 / 297,
  29367. bottom: 35.4 / 394
  29368. }
  29369. },
  29370. },
  29371. [
  29372. {
  29373. name: "Normal",
  29374. height: math.unit(16, "feet"),
  29375. default: true
  29376. },
  29377. ]
  29378. ))
  29379. characterMakers.push(() => makeCharacter(
  29380. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29381. {
  29382. front: {
  29383. height: math.unit(2.3, "meters"),
  29384. weight: math.unit(300, "lb"),
  29385. name: "Front",
  29386. image: {
  29387. source: "./media/characters/sinja/front-sfw.svg",
  29388. extra: 1393 / 1294,
  29389. bottom: 70 / 1463
  29390. }
  29391. },
  29392. frontNsfw: {
  29393. height: math.unit(2.3, "meters"),
  29394. weight: math.unit(300, "lb"),
  29395. name: "Front (NSFW)",
  29396. image: {
  29397. source: "./media/characters/sinja/front-nsfw.svg",
  29398. extra: 1393 / 1294,
  29399. bottom: 70 / 1463
  29400. }
  29401. },
  29402. back: {
  29403. height: math.unit(2.3, "meters"),
  29404. weight: math.unit(300, "lb"),
  29405. name: "Back",
  29406. image: {
  29407. source: "./media/characters/sinja/back.svg",
  29408. extra: 1393 / 1294,
  29409. bottom: 70 / 1463
  29410. }
  29411. },
  29412. head: {
  29413. height: math.unit(1.771, "feet"),
  29414. name: "Head",
  29415. image: {
  29416. source: "./media/characters/sinja/head.svg"
  29417. }
  29418. },
  29419. slit: {
  29420. height: math.unit(0.8, "feet"),
  29421. name: "Slit",
  29422. image: {
  29423. source: "./media/characters/sinja/slit.svg"
  29424. }
  29425. },
  29426. },
  29427. [
  29428. {
  29429. name: "Normal",
  29430. height: math.unit(2.3, "meters")
  29431. },
  29432. {
  29433. name: "Macro",
  29434. height: math.unit(91, "meters"),
  29435. default: true
  29436. },
  29437. {
  29438. name: "Megamacro",
  29439. height: math.unit(91440, "meters")
  29440. },
  29441. {
  29442. name: "Gigamacro",
  29443. height: math.unit(60960000, "meters")
  29444. },
  29445. {
  29446. name: "Teramacro",
  29447. height: math.unit(9144000000, "meters")
  29448. },
  29449. ]
  29450. ))
  29451. characterMakers.push(() => makeCharacter(
  29452. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29453. {
  29454. front: {
  29455. height: math.unit(1.7, "meters"),
  29456. weight: math.unit(130, "lb"),
  29457. name: "Front",
  29458. image: {
  29459. source: "./media/characters/kyu/front.svg",
  29460. extra: 415 / 395,
  29461. bottom: 5 / 420
  29462. }
  29463. },
  29464. head: {
  29465. height: math.unit(1.75, "feet"),
  29466. name: "Head",
  29467. image: {
  29468. source: "./media/characters/kyu/head.svg"
  29469. }
  29470. },
  29471. foot: {
  29472. height: math.unit(0.81, "feet"),
  29473. name: "Foot",
  29474. image: {
  29475. source: "./media/characters/kyu/foot.svg"
  29476. }
  29477. },
  29478. },
  29479. [
  29480. {
  29481. name: "Normal",
  29482. height: math.unit(1.7, "meters")
  29483. },
  29484. {
  29485. name: "Macro",
  29486. height: math.unit(131, "feet"),
  29487. default: true
  29488. },
  29489. {
  29490. name: "Megamacro",
  29491. height: math.unit(91440, "meters")
  29492. },
  29493. {
  29494. name: "Gigamacro",
  29495. height: math.unit(60960000, "meters")
  29496. },
  29497. {
  29498. name: "Teramacro",
  29499. height: math.unit(9144000000, "meters")
  29500. },
  29501. ]
  29502. ))
  29503. characterMakers.push(() => makeCharacter(
  29504. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29505. {
  29506. front: {
  29507. height: math.unit(7 + 1 / 12, "feet"),
  29508. weight: math.unit(250, "lb"),
  29509. name: "Front",
  29510. image: {
  29511. source: "./media/characters/joey/front.svg",
  29512. extra: 1791 / 1537,
  29513. bottom: 28 / 1816
  29514. }
  29515. },
  29516. },
  29517. [
  29518. {
  29519. name: "Micro",
  29520. height: math.unit(3, "inches")
  29521. },
  29522. {
  29523. name: "Normal",
  29524. height: math.unit(7 + 1 / 12, "feet"),
  29525. default: true
  29526. },
  29527. ]
  29528. ))
  29529. characterMakers.push(() => makeCharacter(
  29530. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29531. {
  29532. front: {
  29533. height: math.unit(165, "cm"),
  29534. weight: math.unit(140, "lb"),
  29535. name: "Front",
  29536. image: {
  29537. source: "./media/characters/sam-evans/front.svg",
  29538. extra: 3417 / 3230,
  29539. bottom: 41.3 / 3417
  29540. }
  29541. },
  29542. frontSixTails: {
  29543. height: math.unit(165, "cm"),
  29544. weight: math.unit(140, "lb"),
  29545. name: "Front-six-tails",
  29546. image: {
  29547. source: "./media/characters/sam-evans/front-six-tails.svg",
  29548. extra: 3417 / 3230,
  29549. bottom: 41.3 / 3417
  29550. }
  29551. },
  29552. back: {
  29553. height: math.unit(165, "cm"),
  29554. weight: math.unit(140, "lb"),
  29555. name: "Back",
  29556. image: {
  29557. source: "./media/characters/sam-evans/back.svg",
  29558. extra: 3227 / 3032,
  29559. bottom: 6.8 / 3234
  29560. }
  29561. },
  29562. face: {
  29563. height: math.unit(0.68, "feet"),
  29564. name: "Face",
  29565. image: {
  29566. source: "./media/characters/sam-evans/face.svg"
  29567. }
  29568. },
  29569. },
  29570. [
  29571. {
  29572. name: "Normal",
  29573. height: math.unit(165, "cm"),
  29574. default: true
  29575. },
  29576. {
  29577. name: "Macro",
  29578. height: math.unit(100, "meters")
  29579. },
  29580. {
  29581. name: "Macro+",
  29582. height: math.unit(800, "meters")
  29583. },
  29584. {
  29585. name: "Macro++",
  29586. height: math.unit(3, "km")
  29587. },
  29588. {
  29589. name: "Macro+++",
  29590. height: math.unit(30, "km")
  29591. },
  29592. ]
  29593. ))
  29594. characterMakers.push(() => makeCharacter(
  29595. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29596. {
  29597. front: {
  29598. height: math.unit(10, "feet"),
  29599. weight: math.unit(750, "lb"),
  29600. name: "Front",
  29601. image: {
  29602. source: "./media/characters/juliet-a/front.svg",
  29603. extra: 1766 / 1720,
  29604. bottom: 43 / 1809
  29605. }
  29606. },
  29607. back: {
  29608. height: math.unit(10, "feet"),
  29609. weight: math.unit(750, "lb"),
  29610. name: "Back",
  29611. image: {
  29612. source: "./media/characters/juliet-a/back.svg",
  29613. extra: 1781 / 1734,
  29614. bottom: 35 / 1810,
  29615. }
  29616. },
  29617. },
  29618. [
  29619. {
  29620. name: "Normal",
  29621. height: math.unit(10, "feet"),
  29622. default: true
  29623. },
  29624. {
  29625. name: "Dragon Form",
  29626. height: math.unit(250, "feet")
  29627. },
  29628. {
  29629. name: "Macro",
  29630. height: math.unit(1000, "feet")
  29631. },
  29632. {
  29633. name: "Megamacro",
  29634. height: math.unit(10000, "feet")
  29635. }
  29636. ]
  29637. ))
  29638. characterMakers.push(() => makeCharacter(
  29639. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29640. {
  29641. regular: {
  29642. height: math.unit(7 + 3 / 12, "feet"),
  29643. weight: math.unit(260, "lb"),
  29644. name: "Regular",
  29645. image: {
  29646. source: "./media/characters/wild/regular.svg",
  29647. extra: 97.45 / 92,
  29648. bottom: 6.8 / 104.3
  29649. }
  29650. },
  29651. biggums: {
  29652. height: math.unit(8 + 6 / 12, "feet"),
  29653. weight: math.unit(425, "lb"),
  29654. name: "Biggums",
  29655. image: {
  29656. source: "./media/characters/wild/biggums.svg",
  29657. extra: 97.45 / 92,
  29658. bottom: 7.5 / 132.34
  29659. }
  29660. },
  29661. mawRegular: {
  29662. height: math.unit(1.24, "feet"),
  29663. name: "Maw (Regular)",
  29664. image: {
  29665. source: "./media/characters/wild/maw.svg"
  29666. }
  29667. },
  29668. mawBiggums: {
  29669. height: math.unit(1.47, "feet"),
  29670. name: "Maw (Biggums)",
  29671. image: {
  29672. source: "./media/characters/wild/maw.svg"
  29673. }
  29674. },
  29675. },
  29676. [
  29677. {
  29678. name: "Normal",
  29679. height: math.unit(7 + 3 / 12, "feet"),
  29680. default: true
  29681. },
  29682. ]
  29683. ))
  29684. characterMakers.push(() => makeCharacter(
  29685. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29686. {
  29687. front: {
  29688. height: math.unit(2.5, "meters"),
  29689. weight: math.unit(200, "kg"),
  29690. name: "Front",
  29691. image: {
  29692. source: "./media/characters/vidar/front.svg",
  29693. extra: 2994 / 2795,
  29694. bottom: 56 / 3061
  29695. }
  29696. },
  29697. back: {
  29698. height: math.unit(2.5, "meters"),
  29699. weight: math.unit(200, "kg"),
  29700. name: "Back",
  29701. image: {
  29702. source: "./media/characters/vidar/back.svg",
  29703. extra: 3131 / 2928,
  29704. bottom: 13.5 / 3141.5
  29705. }
  29706. },
  29707. feral: {
  29708. height: math.unit(2.5, "meters"),
  29709. weight: math.unit(2000, "kg"),
  29710. name: "Feral",
  29711. image: {
  29712. source: "./media/characters/vidar/feral.svg",
  29713. extra: 2790 / 1765,
  29714. bottom: 6 / 2796
  29715. }
  29716. },
  29717. },
  29718. [
  29719. {
  29720. name: "Normal",
  29721. height: math.unit(2.5, "meters"),
  29722. default: true
  29723. },
  29724. {
  29725. name: "Macro",
  29726. height: math.unit(100, "meters")
  29727. },
  29728. ]
  29729. ))
  29730. characterMakers.push(() => makeCharacter(
  29731. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29732. {
  29733. front: {
  29734. height: math.unit(5 + 9 / 12, "feet"),
  29735. weight: math.unit(120, "lb"),
  29736. name: "Front",
  29737. image: {
  29738. source: "./media/characters/ash/front.svg",
  29739. extra: 2189 / 1961,
  29740. bottom: 5.2 / 2194
  29741. }
  29742. },
  29743. },
  29744. [
  29745. {
  29746. name: "Normal",
  29747. height: math.unit(5 + 9 / 12, "feet"),
  29748. default: true
  29749. },
  29750. ]
  29751. ))
  29752. characterMakers.push(() => makeCharacter(
  29753. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29754. {
  29755. front: {
  29756. height: math.unit(9, "feet"),
  29757. weight: math.unit(10000, "lb"),
  29758. name: "Front",
  29759. image: {
  29760. source: "./media/characters/gygabite/front.svg",
  29761. bottom: 31.7 / 537.8,
  29762. extra: 505 / 370
  29763. }
  29764. },
  29765. },
  29766. [
  29767. {
  29768. name: "Normal",
  29769. height: math.unit(9, "feet"),
  29770. default: true
  29771. },
  29772. ]
  29773. ))
  29774. characterMakers.push(() => makeCharacter(
  29775. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29776. {
  29777. front: {
  29778. height: math.unit(12, "feet"),
  29779. weight: math.unit(4000, "lb"),
  29780. name: "Front",
  29781. image: {
  29782. source: "./media/characters/p0tat0/front.svg",
  29783. extra: 1065 / 921,
  29784. bottom: 55.7 / 1121.25
  29785. }
  29786. },
  29787. },
  29788. [
  29789. {
  29790. name: "Normal",
  29791. height: math.unit(12, "feet"),
  29792. default: true
  29793. },
  29794. ]
  29795. ))
  29796. characterMakers.push(() => makeCharacter(
  29797. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29798. {
  29799. side: {
  29800. height: math.unit(6.5, "feet"),
  29801. weight: math.unit(800, "lb"),
  29802. name: "Side",
  29803. image: {
  29804. source: "./media/characters/dusk/side.svg",
  29805. extra: 615 / 373,
  29806. bottom: 53 / 664
  29807. }
  29808. },
  29809. sitting: {
  29810. height: math.unit(7, "feet"),
  29811. weight: math.unit(800, "lb"),
  29812. name: "Sitting",
  29813. image: {
  29814. source: "./media/characters/dusk/sitting.svg",
  29815. extra: 753 / 425,
  29816. bottom: 33 / 774
  29817. }
  29818. },
  29819. head: {
  29820. height: math.unit(6.1, "feet"),
  29821. name: "Head",
  29822. image: {
  29823. source: "./media/characters/dusk/head.svg"
  29824. }
  29825. },
  29826. },
  29827. [
  29828. {
  29829. name: "Normal",
  29830. height: math.unit(7, "feet"),
  29831. default: true
  29832. },
  29833. ]
  29834. ))
  29835. characterMakers.push(() => makeCharacter(
  29836. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29837. {
  29838. front: {
  29839. height: math.unit(15, "feet"),
  29840. weight: math.unit(7000, "lb"),
  29841. name: "Front",
  29842. image: {
  29843. source: "./media/characters/jay-direwolf/front.svg",
  29844. extra: 1810 / 1732,
  29845. bottom: 66 / 1892
  29846. }
  29847. },
  29848. },
  29849. [
  29850. {
  29851. name: "Normal",
  29852. height: math.unit(15, "feet"),
  29853. default: true
  29854. },
  29855. ]
  29856. ))
  29857. characterMakers.push(() => makeCharacter(
  29858. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29859. {
  29860. front: {
  29861. height: math.unit(4 + 9 / 12, "feet"),
  29862. weight: math.unit(130, "lb"),
  29863. name: "Front",
  29864. image: {
  29865. source: "./media/characters/anchovie/front.svg",
  29866. extra: 382 / 350,
  29867. bottom: 25 / 409
  29868. }
  29869. },
  29870. back: {
  29871. height: math.unit(4 + 9 / 12, "feet"),
  29872. weight: math.unit(130, "lb"),
  29873. name: "Back",
  29874. image: {
  29875. source: "./media/characters/anchovie/back.svg",
  29876. extra: 385 / 352,
  29877. bottom: 16.6 / 402
  29878. }
  29879. },
  29880. frontDressed: {
  29881. height: math.unit(4 + 9 / 12, "feet"),
  29882. weight: math.unit(130, "lb"),
  29883. name: "Front (Dressed)",
  29884. image: {
  29885. source: "./media/characters/anchovie/front-dressed.svg",
  29886. extra: 382 / 350,
  29887. bottom: 25 / 409
  29888. }
  29889. },
  29890. backDressed: {
  29891. height: math.unit(4 + 9 / 12, "feet"),
  29892. weight: math.unit(130, "lb"),
  29893. name: "Back (Dressed)",
  29894. image: {
  29895. source: "./media/characters/anchovie/back-dressed.svg",
  29896. extra: 385 / 352,
  29897. bottom: 16.6 / 402
  29898. }
  29899. },
  29900. },
  29901. [
  29902. {
  29903. name: "Micro",
  29904. height: math.unit(6.4, "inches")
  29905. },
  29906. {
  29907. name: "Normal",
  29908. height: math.unit(4 + 9 / 12, "feet"),
  29909. default: true
  29910. },
  29911. ]
  29912. ))
  29913. characterMakers.push(() => makeCharacter(
  29914. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29915. {
  29916. front: {
  29917. height: math.unit(2, "meters"),
  29918. weight: math.unit(180, "lb"),
  29919. name: "Front",
  29920. image: {
  29921. source: "./media/characters/acidrenamon/front.svg",
  29922. extra: 987 / 890,
  29923. bottom: 22.8 / 1009
  29924. }
  29925. },
  29926. back: {
  29927. height: math.unit(2, "meters"),
  29928. weight: math.unit(180, "lb"),
  29929. name: "Back",
  29930. image: {
  29931. source: "./media/characters/acidrenamon/back.svg",
  29932. extra: 983 / 891,
  29933. bottom: 8.4 / 992
  29934. }
  29935. },
  29936. head: {
  29937. height: math.unit(1.92, "feet"),
  29938. name: "Head",
  29939. image: {
  29940. source: "./media/characters/acidrenamon/head.svg"
  29941. }
  29942. },
  29943. rump: {
  29944. height: math.unit(1.72, "feet"),
  29945. name: "Rump",
  29946. image: {
  29947. source: "./media/characters/acidrenamon/rump.svg"
  29948. }
  29949. },
  29950. tail: {
  29951. height: math.unit(4.2, "feet"),
  29952. name: "Tail",
  29953. image: {
  29954. source: "./media/characters/acidrenamon/tail.svg"
  29955. }
  29956. },
  29957. },
  29958. [
  29959. {
  29960. name: "Normal",
  29961. height: math.unit(2, "meters"),
  29962. default: true
  29963. },
  29964. {
  29965. name: "Minimacro",
  29966. height: math.unit(7, "meters")
  29967. },
  29968. {
  29969. name: "Macro",
  29970. height: math.unit(200, "meters")
  29971. },
  29972. {
  29973. name: "Gigamacro",
  29974. height: math.unit(0.2, "earths")
  29975. },
  29976. ]
  29977. ))
  29978. characterMakers.push(() => makeCharacter(
  29979. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29980. {
  29981. front: {
  29982. height: math.unit(152, "feet"),
  29983. name: "Front",
  29984. image: {
  29985. source: "./media/characters/kenzie-lee/front.svg",
  29986. extra: 1869/1774,
  29987. bottom: 128/1997
  29988. }
  29989. },
  29990. side: {
  29991. height: math.unit(86, "feet"),
  29992. name: "Side",
  29993. image: {
  29994. source: "./media/characters/kenzie-lee/side.svg",
  29995. extra: 930/815,
  29996. bottom: 177/1107
  29997. }
  29998. },
  29999. paw: {
  30000. height: math.unit(15, "feet"),
  30001. name: "Paw",
  30002. image: {
  30003. source: "./media/characters/kenzie-lee/paw.svg"
  30004. }
  30005. },
  30006. },
  30007. [
  30008. {
  30009. name: "Kenzie Flea",
  30010. height: math.unit(2, "mm"),
  30011. default: true
  30012. },
  30013. {
  30014. name: "Micro",
  30015. height: math.unit(2, "inches")
  30016. },
  30017. {
  30018. name: "Normal",
  30019. height: math.unit(152, "feet")
  30020. },
  30021. {
  30022. name: "Megamacro",
  30023. height: math.unit(7, "miles")
  30024. },
  30025. {
  30026. name: "Gigamacro",
  30027. height: math.unit(8000, "miles")
  30028. },
  30029. ]
  30030. ))
  30031. characterMakers.push(() => makeCharacter(
  30032. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30033. {
  30034. front: {
  30035. height: math.unit(6, "feet"),
  30036. name: "Front",
  30037. image: {
  30038. source: "./media/characters/withers/front.svg",
  30039. extra: 1935/1760,
  30040. bottom: 72/2007
  30041. }
  30042. },
  30043. back: {
  30044. height: math.unit(6, "feet"),
  30045. name: "Back",
  30046. image: {
  30047. source: "./media/characters/withers/back.svg",
  30048. extra: 1944/1792,
  30049. bottom: 12/1956
  30050. }
  30051. },
  30052. dressed: {
  30053. height: math.unit(6, "feet"),
  30054. name: "Dressed",
  30055. image: {
  30056. source: "./media/characters/withers/dressed.svg",
  30057. extra: 1937/1765,
  30058. bottom: 73/2010
  30059. }
  30060. },
  30061. phase1: {
  30062. height: math.unit(1.1, "feet"),
  30063. name: "Phase 1",
  30064. image: {
  30065. source: "./media/characters/withers/phase-1.svg",
  30066. extra: 1885/1232,
  30067. bottom: 0/1885
  30068. }
  30069. },
  30070. phase2: {
  30071. height: math.unit(1.05, "feet"),
  30072. name: "Phase 2",
  30073. image: {
  30074. source: "./media/characters/withers/phase-2.svg",
  30075. extra: 1792/1090,
  30076. bottom: 0/1792
  30077. }
  30078. },
  30079. partyWipe: {
  30080. height: math.unit(1.1, "feet"),
  30081. name: "Party Wipe",
  30082. image: {
  30083. source: "./media/characters/withers/party-wipe.svg",
  30084. extra: 1864/1207,
  30085. bottom: 0/1864
  30086. }
  30087. },
  30088. },
  30089. [
  30090. {
  30091. name: "Macro",
  30092. height: math.unit(167, "feet"),
  30093. default: true
  30094. },
  30095. {
  30096. name: "Megamacro",
  30097. height: math.unit(15, "miles")
  30098. }
  30099. ]
  30100. ))
  30101. characterMakers.push(() => makeCharacter(
  30102. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30103. {
  30104. front: {
  30105. height: math.unit(6 + 7 / 12, "feet"),
  30106. weight: math.unit(250, "lb"),
  30107. name: "Front",
  30108. image: {
  30109. source: "./media/characters/nemoskii/front.svg",
  30110. extra: 2270 / 1734,
  30111. bottom: 86 / 2354
  30112. }
  30113. },
  30114. back: {
  30115. height: math.unit(6 + 7 / 12, "feet"),
  30116. weight: math.unit(250, "lb"),
  30117. name: "Back",
  30118. image: {
  30119. source: "./media/characters/nemoskii/back.svg",
  30120. extra: 1845 / 1788,
  30121. bottom: 10.5 / 1852
  30122. }
  30123. },
  30124. head: {
  30125. height: math.unit(1.31, "feet"),
  30126. name: "Head",
  30127. image: {
  30128. source: "./media/characters/nemoskii/head.svg"
  30129. }
  30130. },
  30131. },
  30132. [
  30133. {
  30134. name: "Micro",
  30135. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30136. },
  30137. {
  30138. name: "Normal",
  30139. height: math.unit(6 + 7 / 12, "feet"),
  30140. default: true
  30141. },
  30142. {
  30143. name: "Macro",
  30144. height: math.unit((6 + 7 / 12) * 150, "feet")
  30145. },
  30146. {
  30147. name: "Macro+",
  30148. height: math.unit((6 + 7 / 12) * 500, "feet")
  30149. },
  30150. {
  30151. name: "Megamacro",
  30152. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30153. },
  30154. ]
  30155. ))
  30156. characterMakers.push(() => makeCharacter(
  30157. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30158. {
  30159. front: {
  30160. height: math.unit(1, "mile"),
  30161. weight: math.unit(265261.9, "lb"),
  30162. name: "Front",
  30163. image: {
  30164. source: "./media/characters/shui/front.svg",
  30165. extra: 1633 / 1564,
  30166. bottom: 91.5 / 1726
  30167. }
  30168. },
  30169. },
  30170. [
  30171. {
  30172. name: "Macro",
  30173. height: math.unit(1, "mile"),
  30174. default: true
  30175. },
  30176. ]
  30177. ))
  30178. characterMakers.push(() => makeCharacter(
  30179. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30180. {
  30181. front: {
  30182. height: math.unit(12 + 6 / 12, "feet"),
  30183. weight: math.unit(1342, "lb"),
  30184. name: "Front",
  30185. image: {
  30186. source: "./media/characters/arokh-takakura/front.svg",
  30187. extra: 1089 / 1043,
  30188. bottom: 77.4 / 1176.7
  30189. }
  30190. },
  30191. back: {
  30192. height: math.unit(12 + 6 / 12, "feet"),
  30193. weight: math.unit(1342, "lb"),
  30194. name: "Back",
  30195. image: {
  30196. source: "./media/characters/arokh-takakura/back.svg",
  30197. extra: 1046 / 1019,
  30198. bottom: 102 / 1150
  30199. }
  30200. },
  30201. },
  30202. [
  30203. {
  30204. name: "Big",
  30205. height: math.unit(12 + 6 / 12, "feet"),
  30206. default: true
  30207. },
  30208. ]
  30209. ))
  30210. characterMakers.push(() => makeCharacter(
  30211. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30212. {
  30213. front: {
  30214. height: math.unit(5 + 6 / 12, "feet"),
  30215. weight: math.unit(150, "lb"),
  30216. name: "Front",
  30217. image: {
  30218. source: "./media/characters/theo/front.svg",
  30219. extra: 1184 / 1131,
  30220. bottom: 7.4 / 1191
  30221. }
  30222. },
  30223. },
  30224. [
  30225. {
  30226. name: "Micro",
  30227. height: math.unit(5, "inches")
  30228. },
  30229. {
  30230. name: "Normal",
  30231. height: math.unit(5 + 6 / 12, "feet"),
  30232. default: true
  30233. },
  30234. ]
  30235. ))
  30236. characterMakers.push(() => makeCharacter(
  30237. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30238. {
  30239. front: {
  30240. height: math.unit(5 + 9 / 12, "feet"),
  30241. weight: math.unit(130, "lb"),
  30242. name: "Front",
  30243. image: {
  30244. source: "./media/characters/cecelia-swift/front.svg",
  30245. extra: 502 / 484,
  30246. bottom: 23 / 523
  30247. }
  30248. },
  30249. back: {
  30250. height: math.unit(5 + 9 / 12, "feet"),
  30251. weight: math.unit(130, "lb"),
  30252. name: "Back",
  30253. image: {
  30254. source: "./media/characters/cecelia-swift/back.svg",
  30255. extra: 499 / 485,
  30256. bottom: 12 / 511
  30257. }
  30258. },
  30259. head: {
  30260. height: math.unit(0.90, "feet"),
  30261. name: "Head",
  30262. image: {
  30263. source: "./media/characters/cecelia-swift/head.svg"
  30264. }
  30265. },
  30266. rump: {
  30267. height: math.unit(1.75, "feet"),
  30268. name: "Rump",
  30269. image: {
  30270. source: "./media/characters/cecelia-swift/rump.svg"
  30271. }
  30272. },
  30273. },
  30274. [
  30275. {
  30276. name: "Normal",
  30277. height: math.unit(5 + 9 / 12, "feet"),
  30278. default: true
  30279. },
  30280. {
  30281. name: "Big",
  30282. height: math.unit(50, "feet")
  30283. },
  30284. {
  30285. name: "Macro",
  30286. height: math.unit(100, "feet")
  30287. },
  30288. {
  30289. name: "Macro+",
  30290. height: math.unit(500, "feet")
  30291. },
  30292. {
  30293. name: "Macro++",
  30294. height: math.unit(1000, "feet")
  30295. },
  30296. ]
  30297. ))
  30298. characterMakers.push(() => makeCharacter(
  30299. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30300. {
  30301. front: {
  30302. height: math.unit(6, "feet"),
  30303. weight: math.unit(150, "lb"),
  30304. name: "Front",
  30305. image: {
  30306. source: "./media/characters/kaunan/front.svg",
  30307. extra: 2890 / 2523,
  30308. bottom: 49 / 2939
  30309. }
  30310. },
  30311. },
  30312. [
  30313. {
  30314. name: "Macro",
  30315. height: math.unit(150, "feet"),
  30316. default: true
  30317. },
  30318. ]
  30319. ))
  30320. characterMakers.push(() => makeCharacter(
  30321. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30322. {
  30323. dressed: {
  30324. height: math.unit(175, "cm"),
  30325. weight: math.unit(60, "kg"),
  30326. name: "Dressed",
  30327. image: {
  30328. source: "./media/characters/fei/dressed.svg",
  30329. extra: 1402/1278,
  30330. bottom: 27/1429
  30331. }
  30332. },
  30333. nude: {
  30334. height: math.unit(175, "cm"),
  30335. weight: math.unit(60, "kg"),
  30336. name: "Nude",
  30337. image: {
  30338. source: "./media/characters/fei/nude.svg",
  30339. extra: 1402/1278,
  30340. bottom: 27/1429
  30341. }
  30342. },
  30343. heels: {
  30344. height: math.unit(0.466, "feet"),
  30345. name: "Heels",
  30346. image: {
  30347. source: "./media/characters/fei/heels.svg",
  30348. extra: 156/152,
  30349. bottom: 28/184
  30350. }
  30351. },
  30352. },
  30353. [
  30354. {
  30355. name: "Mortal",
  30356. height: math.unit(175, "cm")
  30357. },
  30358. {
  30359. name: "Normal",
  30360. height: math.unit(3500, "m")
  30361. },
  30362. {
  30363. name: "Stroll",
  30364. height: math.unit(18.4, "km"),
  30365. default: true
  30366. },
  30367. {
  30368. name: "Showoff",
  30369. height: math.unit(175, "km")
  30370. },
  30371. ]
  30372. ))
  30373. characterMakers.push(() => makeCharacter(
  30374. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30375. {
  30376. front: {
  30377. height: math.unit(7, "feet"),
  30378. weight: math.unit(1000, "kg"),
  30379. name: "Front",
  30380. image: {
  30381. source: "./media/characters/edrax/front.svg",
  30382. extra: 2838 / 2550,
  30383. bottom: 130 / 2968
  30384. }
  30385. },
  30386. },
  30387. [
  30388. {
  30389. name: "Small",
  30390. height: math.unit(7, "feet")
  30391. },
  30392. {
  30393. name: "Normal",
  30394. height: math.unit(1500, "meters")
  30395. },
  30396. {
  30397. name: "Mega",
  30398. height: math.unit(12000000, "km"),
  30399. default: true
  30400. },
  30401. {
  30402. name: "Megamacro",
  30403. height: math.unit(10600000, "lightyears")
  30404. },
  30405. {
  30406. name: "Hypermacro",
  30407. height: math.unit(256, "yottameters")
  30408. },
  30409. ]
  30410. ))
  30411. characterMakers.push(() => makeCharacter(
  30412. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30413. {
  30414. front: {
  30415. height: math.unit(10, "feet"),
  30416. weight: math.unit(750, "lb"),
  30417. name: "Front",
  30418. image: {
  30419. source: "./media/characters/clove/front.svg",
  30420. extra: 1918/1751,
  30421. bottom: 52/1970
  30422. }
  30423. },
  30424. back: {
  30425. height: math.unit(10, "feet"),
  30426. weight: math.unit(750, "lb"),
  30427. name: "Back",
  30428. image: {
  30429. source: "./media/characters/clove/back.svg",
  30430. extra: 1912/1747,
  30431. bottom: 50/1962
  30432. }
  30433. },
  30434. },
  30435. [
  30436. {
  30437. name: "Normal",
  30438. height: math.unit(10, "feet"),
  30439. default: true
  30440. },
  30441. ]
  30442. ))
  30443. characterMakers.push(() => makeCharacter(
  30444. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30445. {
  30446. front: {
  30447. height: math.unit(4, "feet"),
  30448. weight: math.unit(50, "lb"),
  30449. name: "Front",
  30450. image: {
  30451. source: "./media/characters/alex-rabbit/front.svg",
  30452. extra: 507 / 458,
  30453. bottom: 18.5 / 527
  30454. }
  30455. },
  30456. back: {
  30457. height: math.unit(4, "feet"),
  30458. weight: math.unit(50, "lb"),
  30459. name: "Back",
  30460. image: {
  30461. source: "./media/characters/alex-rabbit/back.svg",
  30462. extra: 502 / 460,
  30463. bottom: 18.9 / 521
  30464. }
  30465. },
  30466. },
  30467. [
  30468. {
  30469. name: "Normal",
  30470. height: math.unit(4, "feet"),
  30471. default: true
  30472. },
  30473. ]
  30474. ))
  30475. characterMakers.push(() => makeCharacter(
  30476. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30477. {
  30478. front: {
  30479. height: math.unit(1 + 3 / 12, "feet"),
  30480. weight: math.unit(80, "lb"),
  30481. name: "Front",
  30482. image: {
  30483. source: "./media/characters/zander-rose/front.svg",
  30484. extra: 916 / 797,
  30485. bottom: 17 / 933
  30486. }
  30487. },
  30488. back: {
  30489. height: math.unit(1 + 3 / 12, "feet"),
  30490. weight: math.unit(80, "lb"),
  30491. name: "Back",
  30492. image: {
  30493. source: "./media/characters/zander-rose/back.svg",
  30494. extra: 903 / 779,
  30495. bottom: 31 / 934
  30496. }
  30497. },
  30498. },
  30499. [
  30500. {
  30501. name: "Normal",
  30502. height: math.unit(1 + 3 / 12, "feet"),
  30503. default: true
  30504. },
  30505. ]
  30506. ))
  30507. characterMakers.push(() => makeCharacter(
  30508. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30509. {
  30510. anthro: {
  30511. height: math.unit(6, "feet"),
  30512. weight: math.unit(150, "lb"),
  30513. name: "Anthro",
  30514. image: {
  30515. source: "./media/characters/razz/anthro.svg",
  30516. extra: 1437 / 1343,
  30517. bottom: 48 / 1485
  30518. }
  30519. },
  30520. feral: {
  30521. height: math.unit(6, "feet"),
  30522. weight: math.unit(150, "lb"),
  30523. name: "Feral",
  30524. image: {
  30525. source: "./media/characters/razz/feral.svg",
  30526. extra: 2569 / 1385,
  30527. bottom: 95 / 2664
  30528. }
  30529. },
  30530. },
  30531. [
  30532. {
  30533. name: "Normal",
  30534. height: math.unit(6, "feet"),
  30535. default: true
  30536. },
  30537. ]
  30538. ))
  30539. characterMakers.push(() => makeCharacter(
  30540. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30541. {
  30542. front: {
  30543. height: math.unit(9 + 4 / 12, "feet"),
  30544. weight: math.unit(500, "lb"),
  30545. name: "Front",
  30546. image: {
  30547. source: "./media/characters/morrigan/front.svg",
  30548. extra: 2707 / 2579,
  30549. bottom: 156 / 2863
  30550. }
  30551. },
  30552. },
  30553. [
  30554. {
  30555. name: "Normal",
  30556. height: math.unit(9 + 4 / 12, "feet"),
  30557. default: true
  30558. },
  30559. ]
  30560. ))
  30561. characterMakers.push(() => makeCharacter(
  30562. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30563. {
  30564. front: {
  30565. height: math.unit(5, "stories"),
  30566. weight: math.unit(4000, "lb"),
  30567. name: "Front",
  30568. image: {
  30569. source: "./media/characters/jenene/front.svg",
  30570. extra: 1780 / 1710,
  30571. bottom: 57 / 1837
  30572. }
  30573. },
  30574. },
  30575. [
  30576. {
  30577. name: "Normal",
  30578. height: math.unit(5, "stories"),
  30579. default: true
  30580. },
  30581. ]
  30582. ))
  30583. characterMakers.push(() => makeCharacter(
  30584. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30585. {
  30586. taurSfw: {
  30587. height: math.unit(10, "meters"),
  30588. weight: math.unit(17500, "kg"),
  30589. name: "Taur",
  30590. image: {
  30591. source: "./media/characters/faey/taur-sfw.svg",
  30592. extra: 1200 / 968,
  30593. bottom: 41 / 1241
  30594. }
  30595. },
  30596. chestmaw: {
  30597. height: math.unit(2.01, "meters"),
  30598. name: "Chestmaw",
  30599. image: {
  30600. source: "./media/characters/faey/chestmaw.svg"
  30601. }
  30602. },
  30603. foot: {
  30604. height: math.unit(2.43, "meters"),
  30605. name: "Foot",
  30606. image: {
  30607. source: "./media/characters/faey/foot.svg"
  30608. }
  30609. },
  30610. jaws: {
  30611. height: math.unit(1.66, "meters"),
  30612. name: "Jaws",
  30613. image: {
  30614. source: "./media/characters/faey/jaws.svg"
  30615. }
  30616. },
  30617. tongues: {
  30618. height: math.unit(2.01, "meters"),
  30619. name: "Tongues",
  30620. image: {
  30621. source: "./media/characters/faey/tongues.svg"
  30622. }
  30623. },
  30624. },
  30625. [
  30626. {
  30627. name: "Small",
  30628. height: math.unit(10, "meters"),
  30629. default: true
  30630. },
  30631. {
  30632. name: "Big",
  30633. height: math.unit(500000, "km")
  30634. },
  30635. ]
  30636. ))
  30637. characterMakers.push(() => makeCharacter(
  30638. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30639. {
  30640. front: {
  30641. height: math.unit(7, "feet"),
  30642. weight: math.unit(275, "lb"),
  30643. name: "Front",
  30644. image: {
  30645. source: "./media/characters/roku/front.svg",
  30646. extra: 903 / 878,
  30647. bottom: 37 / 940
  30648. }
  30649. },
  30650. },
  30651. [
  30652. {
  30653. name: "Normal",
  30654. height: math.unit(7, "feet"),
  30655. default: true
  30656. },
  30657. {
  30658. name: "Macro",
  30659. height: math.unit(500, "feet")
  30660. },
  30661. {
  30662. name: "Megamacro",
  30663. height: math.unit(200, "miles")
  30664. },
  30665. ]
  30666. ))
  30667. characterMakers.push(() => makeCharacter(
  30668. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30669. {
  30670. front: {
  30671. height: math.unit(6 + 2 / 12, "feet"),
  30672. weight: math.unit(150, "lb"),
  30673. name: "Front",
  30674. image: {
  30675. source: "./media/characters/lira/front.svg",
  30676. extra: 1727 / 1605,
  30677. bottom: 26 / 1753
  30678. }
  30679. },
  30680. back: {
  30681. height: math.unit(6 + 2 / 12, "feet"),
  30682. weight: math.unit(150, "lb"),
  30683. name: "Back",
  30684. image: {
  30685. source: "./media/characters/lira/back.svg",
  30686. extra: 1713/1621,
  30687. bottom: 20/1733
  30688. }
  30689. },
  30690. hand: {
  30691. height: math.unit(0.75, "feet"),
  30692. name: "Hand",
  30693. image: {
  30694. source: "./media/characters/lira/hand.svg"
  30695. }
  30696. },
  30697. maw: {
  30698. height: math.unit(0.65, "feet"),
  30699. name: "Maw",
  30700. image: {
  30701. source: "./media/characters/lira/maw.svg"
  30702. }
  30703. },
  30704. pawDigi: {
  30705. height: math.unit(1.6, "feet"),
  30706. name: "Paw Digi",
  30707. image: {
  30708. source: "./media/characters/lira/paw-digi.svg"
  30709. }
  30710. },
  30711. pawPlanti: {
  30712. height: math.unit(1.4, "feet"),
  30713. name: "Paw Planti",
  30714. image: {
  30715. source: "./media/characters/lira/paw-planti.svg"
  30716. }
  30717. },
  30718. },
  30719. [
  30720. {
  30721. name: "Normal",
  30722. height: math.unit(6 + 2 / 12, "feet"),
  30723. default: true
  30724. },
  30725. {
  30726. name: "Macro",
  30727. height: math.unit(100, "feet")
  30728. },
  30729. {
  30730. name: "Macro²",
  30731. height: math.unit(1600, "feet")
  30732. },
  30733. {
  30734. name: "Planetary",
  30735. height: math.unit(20, "earths")
  30736. },
  30737. ]
  30738. ))
  30739. characterMakers.push(() => makeCharacter(
  30740. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30741. {
  30742. front: {
  30743. height: math.unit(6, "feet"),
  30744. weight: math.unit(150, "lb"),
  30745. name: "Front",
  30746. image: {
  30747. source: "./media/characters/hadjet/front.svg",
  30748. extra: 1480 / 1346,
  30749. bottom: 26 / 1506
  30750. }
  30751. },
  30752. frontNsfw: {
  30753. height: math.unit(6, "feet"),
  30754. weight: math.unit(150, "lb"),
  30755. name: "Front (NSFW)",
  30756. image: {
  30757. source: "./media/characters/hadjet/front-nsfw.svg",
  30758. extra: 1440 / 1358,
  30759. bottom: 52 / 1492
  30760. }
  30761. },
  30762. },
  30763. [
  30764. {
  30765. name: "Macro",
  30766. height: math.unit(10, "stories"),
  30767. default: true
  30768. },
  30769. {
  30770. name: "Megamacro",
  30771. height: math.unit(1.5, "miles")
  30772. },
  30773. {
  30774. name: "Megamacro+",
  30775. height: math.unit(5, "miles")
  30776. },
  30777. ]
  30778. ))
  30779. characterMakers.push(() => makeCharacter(
  30780. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30781. {
  30782. side: {
  30783. height: math.unit(106, "feet"),
  30784. weight: math.unit(500, "tonnes"),
  30785. name: "Side",
  30786. image: {
  30787. source: "./media/characters/kodran/side.svg",
  30788. extra: 553 / 480,
  30789. bottom: 33 / 586
  30790. }
  30791. },
  30792. front: {
  30793. height: math.unit(132, "feet"),
  30794. weight: math.unit(500, "tonnes"),
  30795. name: "Front",
  30796. image: {
  30797. source: "./media/characters/kodran/front.svg",
  30798. extra: 667 / 643,
  30799. bottom: 42 / 709
  30800. }
  30801. },
  30802. flying: {
  30803. height: math.unit(350, "feet"),
  30804. weight: math.unit(500, "tonnes"),
  30805. name: "Flying",
  30806. image: {
  30807. source: "./media/characters/kodran/flying.svg"
  30808. }
  30809. },
  30810. foot: {
  30811. height: math.unit(33, "feet"),
  30812. name: "Foot",
  30813. image: {
  30814. source: "./media/characters/kodran/foot.svg"
  30815. }
  30816. },
  30817. footFront: {
  30818. height: math.unit(19, "feet"),
  30819. name: "Foot (Front)",
  30820. image: {
  30821. source: "./media/characters/kodran/foot-front.svg",
  30822. extra: 261 / 261,
  30823. bottom: 91 / 352
  30824. }
  30825. },
  30826. headFront: {
  30827. height: math.unit(53, "feet"),
  30828. name: "Head (Front)",
  30829. image: {
  30830. source: "./media/characters/kodran/head-front.svg"
  30831. }
  30832. },
  30833. headSide: {
  30834. height: math.unit(65, "feet"),
  30835. name: "Head (Side)",
  30836. image: {
  30837. source: "./media/characters/kodran/head-side.svg"
  30838. }
  30839. },
  30840. throat: {
  30841. height: math.unit(79, "feet"),
  30842. name: "Throat",
  30843. image: {
  30844. source: "./media/characters/kodran/throat.svg"
  30845. }
  30846. },
  30847. },
  30848. [
  30849. {
  30850. name: "Large",
  30851. height: math.unit(106, "feet"),
  30852. default: true
  30853. },
  30854. ]
  30855. ))
  30856. characterMakers.push(() => makeCharacter(
  30857. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30858. {
  30859. side: {
  30860. height: math.unit(11, "feet"),
  30861. weight: math.unit(150, "lb"),
  30862. name: "Side",
  30863. image: {
  30864. source: "./media/characters/pyxaron/side.svg",
  30865. extra: 305 / 195,
  30866. bottom: 17 / 322
  30867. }
  30868. },
  30869. },
  30870. [
  30871. {
  30872. name: "Normal",
  30873. height: math.unit(11, "feet"),
  30874. default: true
  30875. },
  30876. ]
  30877. ))
  30878. characterMakers.push(() => makeCharacter(
  30879. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30880. {
  30881. front: {
  30882. height: math.unit(6, "feet"),
  30883. weight: math.unit(150, "lb"),
  30884. name: "Front",
  30885. image: {
  30886. source: "./media/characters/meep/front.svg",
  30887. extra: 88 / 80,
  30888. bottom: 6 / 94
  30889. }
  30890. },
  30891. },
  30892. [
  30893. {
  30894. name: "Fun Sized",
  30895. height: math.unit(2, "inches"),
  30896. default: true
  30897. },
  30898. {
  30899. name: "Friend Sized",
  30900. height: math.unit(8, "inches")
  30901. },
  30902. ]
  30903. ))
  30904. characterMakers.push(() => makeCharacter(
  30905. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30906. {
  30907. front: {
  30908. height: math.unit(15, "feet"),
  30909. weight: math.unit(2500, "lb"),
  30910. name: "Front",
  30911. image: {
  30912. source: "./media/characters/holly-rabbit/front.svg",
  30913. extra: 1433 / 1233,
  30914. bottom: 125 / 1558
  30915. }
  30916. },
  30917. dick: {
  30918. height: math.unit(4.6, "feet"),
  30919. name: "Dick",
  30920. image: {
  30921. source: "./media/characters/holly-rabbit/dick.svg"
  30922. }
  30923. },
  30924. },
  30925. [
  30926. {
  30927. name: "Normal",
  30928. height: math.unit(15, "feet"),
  30929. default: true
  30930. },
  30931. {
  30932. name: "Macro",
  30933. height: math.unit(250, "feet")
  30934. },
  30935. {
  30936. name: "Macro+",
  30937. height: math.unit(2500, "feet")
  30938. },
  30939. ]
  30940. ))
  30941. characterMakers.push(() => makeCharacter(
  30942. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30943. {
  30944. front: {
  30945. height: math.unit(3.02, "meters"),
  30946. weight: math.unit(500, "kg"),
  30947. name: "Front",
  30948. image: {
  30949. source: "./media/characters/drena/front.svg",
  30950. extra: 282 / 243,
  30951. bottom: 8 / 290
  30952. }
  30953. },
  30954. side: {
  30955. height: math.unit(3.02, "meters"),
  30956. weight: math.unit(500, "kg"),
  30957. name: "Side",
  30958. image: {
  30959. source: "./media/characters/drena/side.svg",
  30960. extra: 280 / 245,
  30961. bottom: 10 / 290
  30962. }
  30963. },
  30964. back: {
  30965. height: math.unit(3.02, "meters"),
  30966. weight: math.unit(500, "kg"),
  30967. name: "Back",
  30968. image: {
  30969. source: "./media/characters/drena/back.svg",
  30970. extra: 278 / 243,
  30971. bottom: 2 / 280
  30972. }
  30973. },
  30974. foot: {
  30975. height: math.unit(0.75, "meters"),
  30976. name: "Foot",
  30977. image: {
  30978. source: "./media/characters/drena/foot.svg"
  30979. }
  30980. },
  30981. maw: {
  30982. height: math.unit(0.82, "meters"),
  30983. name: "Maw",
  30984. image: {
  30985. source: "./media/characters/drena/maw.svg"
  30986. }
  30987. },
  30988. eating: {
  30989. height: math.unit(0.75, "meters"),
  30990. name: "Eating",
  30991. image: {
  30992. source: "./media/characters/drena/eating.svg"
  30993. }
  30994. },
  30995. rump: {
  30996. height: math.unit(0.93, "meters"),
  30997. name: "Rump",
  30998. image: {
  30999. source: "./media/characters/drena/rump.svg"
  31000. }
  31001. },
  31002. },
  31003. [
  31004. {
  31005. name: "Normal",
  31006. height: math.unit(3.02, "meters"),
  31007. default: true
  31008. },
  31009. ]
  31010. ))
  31011. characterMakers.push(() => makeCharacter(
  31012. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31013. {
  31014. front: {
  31015. height: math.unit(6 + 4 / 12, "feet"),
  31016. weight: math.unit(250, "lb"),
  31017. name: "Front",
  31018. image: {
  31019. source: "./media/characters/remmyzilla/front.svg",
  31020. extra: 4033 / 3588,
  31021. bottom: 123 / 4156
  31022. }
  31023. },
  31024. back: {
  31025. height: math.unit(6 + 4 / 12, "feet"),
  31026. weight: math.unit(250, "lb"),
  31027. name: "Back",
  31028. image: {
  31029. source: "./media/characters/remmyzilla/back.svg",
  31030. extra: 1696/1602,
  31031. bottom: 63/1759
  31032. }
  31033. },
  31034. paw: {
  31035. height: math.unit(1.73, "feet"),
  31036. name: "Paw",
  31037. image: {
  31038. source: "./media/characters/remmyzilla/paw.svg"
  31039. },
  31040. extraAttributes: {
  31041. "toeSize": {
  31042. name: "Toe Size",
  31043. power: 2,
  31044. type: "area",
  31045. base: math.unit(0.0035, "m^2")
  31046. },
  31047. "padSize": {
  31048. name: "Pad Size",
  31049. power: 2,
  31050. type: "area",
  31051. base: math.unit(0.015, "m^2")
  31052. },
  31053. "pawsize": {
  31054. name: "Paw Size",
  31055. power: 2,
  31056. type: "area",
  31057. base: math.unit(0.072, "m^2")
  31058. },
  31059. }
  31060. },
  31061. maw: {
  31062. height: math.unit(1.73, "feet"),
  31063. name: "Maw",
  31064. image: {
  31065. source: "./media/characters/remmyzilla/maw.svg"
  31066. }
  31067. },
  31068. },
  31069. [
  31070. {
  31071. name: "Normal",
  31072. height: math.unit(6 + 4 / 12, "feet")
  31073. },
  31074. {
  31075. name: "Minimacro",
  31076. height: math.unit(12 + 8 / 12, "feet")
  31077. },
  31078. {
  31079. name: "Normal",
  31080. height: math.unit(640, "feet"),
  31081. default: true
  31082. },
  31083. {
  31084. name: "Megamacro",
  31085. height: math.unit(6400, "feet")
  31086. },
  31087. {
  31088. name: "Gigamacro",
  31089. height: math.unit(64000, "miles")
  31090. },
  31091. ]
  31092. ))
  31093. characterMakers.push(() => makeCharacter(
  31094. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31095. {
  31096. front: {
  31097. height: math.unit(2.5, "meters"),
  31098. weight: math.unit(300, "lb"),
  31099. name: "Front",
  31100. image: {
  31101. source: "./media/characters/lawrence/front.svg",
  31102. extra: 357 / 335,
  31103. bottom: 30 / 387
  31104. }
  31105. },
  31106. back: {
  31107. height: math.unit(2.5, "meters"),
  31108. weight: math.unit(300, "lb"),
  31109. name: "Back",
  31110. image: {
  31111. source: "./media/characters/lawrence/back.svg",
  31112. extra: 357 / 338,
  31113. bottom: 16 / 373
  31114. }
  31115. },
  31116. head: {
  31117. height: math.unit(0.9, "meter"),
  31118. name: "Head",
  31119. image: {
  31120. source: "./media/characters/lawrence/head.svg"
  31121. }
  31122. },
  31123. maw: {
  31124. height: math.unit(0.7, "meter"),
  31125. name: "Maw",
  31126. image: {
  31127. source: "./media/characters/lawrence/maw.svg"
  31128. }
  31129. },
  31130. footBottom: {
  31131. height: math.unit(0.5, "meter"),
  31132. name: "Foot (Bottom)",
  31133. image: {
  31134. source: "./media/characters/lawrence/foot-bottom.svg"
  31135. }
  31136. },
  31137. footTop: {
  31138. height: math.unit(0.5, "meter"),
  31139. name: "Foot (Top)",
  31140. image: {
  31141. source: "./media/characters/lawrence/foot-top.svg"
  31142. }
  31143. },
  31144. },
  31145. [
  31146. {
  31147. name: "Normal",
  31148. height: math.unit(2.5, "meters"),
  31149. default: true
  31150. },
  31151. {
  31152. name: "Macro",
  31153. height: math.unit(95, "meters")
  31154. },
  31155. {
  31156. name: "Megamacro",
  31157. height: math.unit(150, "km")
  31158. },
  31159. ]
  31160. ))
  31161. characterMakers.push(() => makeCharacter(
  31162. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31163. {
  31164. front: {
  31165. height: math.unit(4.2, "meters"),
  31166. preyCapacity: math.unit(50, "m^3"),
  31167. weight: math.unit(30, "tonnes"),
  31168. name: "Front",
  31169. image: {
  31170. source: "./media/characters/sydney/front.svg",
  31171. extra: 1177/1129,
  31172. bottom: 197/1374
  31173. },
  31174. extraAttributes: {
  31175. "length": {
  31176. name: "Length",
  31177. power: 1,
  31178. type: "length",
  31179. base: math.unit(21, "meters")
  31180. },
  31181. }
  31182. },
  31183. },
  31184. [
  31185. {
  31186. name: "Normal",
  31187. height: math.unit(4.2, "meters"),
  31188. default: true
  31189. },
  31190. ]
  31191. ))
  31192. characterMakers.push(() => makeCharacter(
  31193. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31194. {
  31195. back: {
  31196. height: math.unit(201, "feet"),
  31197. name: "Back",
  31198. image: {
  31199. source: "./media/characters/jessica/back.svg",
  31200. extra: 273 / 259,
  31201. bottom: 7 / 280
  31202. }
  31203. },
  31204. },
  31205. [
  31206. {
  31207. name: "Normal",
  31208. height: math.unit(201, "feet"),
  31209. default: true
  31210. },
  31211. {
  31212. name: "Megamacro",
  31213. height: math.unit(8, "miles")
  31214. },
  31215. ]
  31216. ))
  31217. characterMakers.push(() => makeCharacter(
  31218. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31219. {
  31220. side: {
  31221. height: math.unit(5.6, "m"),
  31222. weight: math.unit(8000, "kg"),
  31223. name: "Side",
  31224. image: {
  31225. source: "./media/characters/victoria/side.svg",
  31226. extra: 1542/1229,
  31227. bottom: 124/1666
  31228. }
  31229. },
  31230. maw: {
  31231. height: math.unit(7.14, "feet"),
  31232. name: "Maw",
  31233. image: {
  31234. source: "./media/characters/victoria/maw.svg"
  31235. }
  31236. },
  31237. },
  31238. [
  31239. {
  31240. name: "Normal",
  31241. height: math.unit(5.6, "m"),
  31242. default: true
  31243. },
  31244. ]
  31245. ))
  31246. characterMakers.push(() => makeCharacter(
  31247. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31248. {
  31249. front: {
  31250. height: math.unit(5 + 6 / 12, "feet"),
  31251. name: "Front",
  31252. image: {
  31253. source: "./media/characters/cat/front.svg",
  31254. extra: 1449/1295,
  31255. bottom: 34/1483
  31256. },
  31257. form: "cat",
  31258. default: true
  31259. },
  31260. back: {
  31261. height: math.unit(5 + 6 / 12, "feet"),
  31262. name: "Back",
  31263. image: {
  31264. source: "./media/characters/cat/back.svg",
  31265. extra: 1466/1301,
  31266. bottom: 19/1485
  31267. },
  31268. form: "cat"
  31269. },
  31270. taur: {
  31271. height: math.unit(7, "feet"),
  31272. name: "Taur",
  31273. image: {
  31274. source: "./media/characters/cat/taur.svg",
  31275. extra: 1389/1233,
  31276. bottom: 83/1472
  31277. },
  31278. form: "taur",
  31279. default: true
  31280. },
  31281. lucarioFront: {
  31282. height: math.unit(4, "feet"),
  31283. name: "Lucario (Front)",
  31284. image: {
  31285. source: "./media/characters/cat/lucario-front.svg",
  31286. extra: 1149/1019,
  31287. bottom: 84/1233
  31288. },
  31289. form: "lucario",
  31290. default: true
  31291. },
  31292. lucarioBack: {
  31293. height: math.unit(4, "feet"),
  31294. name: "Lucario (Back)",
  31295. image: {
  31296. source: "./media/characters/cat/lucario-back.svg",
  31297. extra: 1190/1059,
  31298. bottom: 33/1223
  31299. },
  31300. form: "lucario"
  31301. },
  31302. megaLucario: {
  31303. height: math.unit(4, "feet"),
  31304. name: "Mega Lucario",
  31305. image: {
  31306. source: "./media/characters/cat/mega-lucario.svg",
  31307. extra: 1515 / 1319,
  31308. bottom: 63 / 1578
  31309. },
  31310. form: "lucario"
  31311. },
  31312. nickit: {
  31313. height: math.unit(2, "feet"),
  31314. name: "Nickit",
  31315. image: {
  31316. source: "./media/characters/cat/nickit.svg",
  31317. extra: 1980 / 1585,
  31318. bottom: 102 / 2082
  31319. },
  31320. form: "nickit",
  31321. default: true
  31322. },
  31323. lopunnyFront: {
  31324. height: math.unit(5, "feet"),
  31325. name: "Lopunny (Front)",
  31326. image: {
  31327. source: "./media/characters/cat/lopunny-front.svg",
  31328. extra: 1782 / 1469,
  31329. bottom: 38 / 1820
  31330. },
  31331. form: "lopunny",
  31332. default: true
  31333. },
  31334. lopunnyBack: {
  31335. height: math.unit(5, "feet"),
  31336. name: "Lopunny (Back)",
  31337. image: {
  31338. source: "./media/characters/cat/lopunny-back.svg",
  31339. extra: 1660 / 1490,
  31340. bottom: 25 / 1685
  31341. },
  31342. form: "lopunny"
  31343. },
  31344. },
  31345. [
  31346. {
  31347. name: "Really small",
  31348. height: math.unit(1, "nm"),
  31349. allForms: true
  31350. },
  31351. {
  31352. name: "Micro",
  31353. height: math.unit(5, "inches"),
  31354. allForms: true
  31355. },
  31356. {
  31357. name: "Normal",
  31358. height: math.unit(5 + 6 / 12, "feet"),
  31359. default: true,
  31360. form: "cat"
  31361. },
  31362. {
  31363. name: "Normal",
  31364. height: math.unit(7, "feet"),
  31365. default: true,
  31366. form: "taur"
  31367. },
  31368. {
  31369. name: "Normal",
  31370. height: math.unit(4, "feet"),
  31371. default: true,
  31372. form: "lucario"
  31373. },
  31374. {
  31375. name: "Normal",
  31376. height: math.unit(2, "feet"),
  31377. default: true,
  31378. form: "nickit"
  31379. },
  31380. {
  31381. name: "Normal",
  31382. height: math.unit(5, "feet"),
  31383. default: true,
  31384. form: "lopunny"
  31385. },
  31386. {
  31387. name: "Macro",
  31388. height: math.unit(50, "feet"),
  31389. allForms: true
  31390. },
  31391. {
  31392. name: "Macro+",
  31393. height: math.unit(150, "feet"),
  31394. allForms: true
  31395. },
  31396. {
  31397. name: "Megamacro",
  31398. height: math.unit(100, "miles"),
  31399. allForms: true
  31400. },
  31401. ],
  31402. {
  31403. "cat": {
  31404. name: "Cat",
  31405. default: true
  31406. },
  31407. "taur": {
  31408. name: "Taur",
  31409. },
  31410. "lucario": {
  31411. name: "Lucario",
  31412. },
  31413. "nickit": {
  31414. name: "Nickit",
  31415. },
  31416. "lopunny": {
  31417. name: "Lopunny",
  31418. }
  31419. }
  31420. ))
  31421. characterMakers.push(() => makeCharacter(
  31422. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31423. {
  31424. front: {
  31425. height: math.unit(63.4, "meters"),
  31426. weight: math.unit(3.28349e+6, "kilograms"),
  31427. name: "Front",
  31428. image: {
  31429. source: "./media/characters/kirina-violet/front.svg",
  31430. extra: 2812 / 2725,
  31431. bottom: 0 / 2812
  31432. }
  31433. },
  31434. back: {
  31435. height: math.unit(63.4, "meters"),
  31436. weight: math.unit(3.28349e+6, "kilograms"),
  31437. name: "Back",
  31438. image: {
  31439. source: "./media/characters/kirina-violet/back.svg",
  31440. extra: 2812 / 2725,
  31441. bottom: 0 / 2812
  31442. }
  31443. },
  31444. mouth: {
  31445. height: math.unit(4.35, "meters"),
  31446. name: "Mouth",
  31447. image: {
  31448. source: "./media/characters/kirina-violet/mouth.svg"
  31449. }
  31450. },
  31451. paw: {
  31452. height: math.unit(5.6, "meters"),
  31453. name: "Paw",
  31454. image: {
  31455. source: "./media/characters/kirina-violet/paw.svg"
  31456. }
  31457. },
  31458. tail: {
  31459. height: math.unit(18, "meters"),
  31460. name: "Tail",
  31461. image: {
  31462. source: "./media/characters/kirina-violet/tail.svg"
  31463. }
  31464. },
  31465. },
  31466. [
  31467. {
  31468. name: "Macro",
  31469. height: math.unit(63.4, "meters"),
  31470. default: true
  31471. },
  31472. ]
  31473. ))
  31474. characterMakers.push(() => makeCharacter(
  31475. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31476. {
  31477. front: {
  31478. height: math.unit(75, "feet"),
  31479. name: "Front",
  31480. image: {
  31481. source: "./media/characters/cat-gigachu/front.svg",
  31482. extra: 1239/1027,
  31483. bottom: 32/1271
  31484. }
  31485. },
  31486. back: {
  31487. height: math.unit(75, "feet"),
  31488. name: "Back",
  31489. image: {
  31490. source: "./media/characters/cat-gigachu/back.svg",
  31491. extra: 1229/1030,
  31492. bottom: 9/1238
  31493. }
  31494. },
  31495. },
  31496. [
  31497. {
  31498. name: "Dynamax",
  31499. height: math.unit(75, "feet"),
  31500. default: true
  31501. },
  31502. ]
  31503. ))
  31504. characterMakers.push(() => makeCharacter(
  31505. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31506. {
  31507. front: {
  31508. height: math.unit(6, "feet"),
  31509. weight: math.unit(150, "lb"),
  31510. name: "Front",
  31511. image: {
  31512. source: "./media/characters/sfaiyan/front.svg",
  31513. extra: 999 / 978,
  31514. bottom: 5 / 1004
  31515. }
  31516. },
  31517. },
  31518. [
  31519. {
  31520. name: "Normal",
  31521. height: math.unit(1.82, "meters")
  31522. },
  31523. {
  31524. name: "Giant",
  31525. height: math.unit(2.27, "km"),
  31526. default: true
  31527. },
  31528. ]
  31529. ))
  31530. characterMakers.push(() => makeCharacter(
  31531. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31532. {
  31533. front: {
  31534. height: math.unit(179, "cm"),
  31535. weight: math.unit(100, "kg"),
  31536. name: "Front",
  31537. image: {
  31538. source: "./media/characters/raunehkeli/front.svg",
  31539. extra: 1934 / 1926,
  31540. bottom: 0 / 1934
  31541. }
  31542. },
  31543. },
  31544. [
  31545. {
  31546. name: "Normal",
  31547. height: math.unit(179, "cm")
  31548. },
  31549. {
  31550. name: "Maximum",
  31551. height: math.unit(575, "meters"),
  31552. default: true
  31553. },
  31554. ]
  31555. ))
  31556. characterMakers.push(() => makeCharacter(
  31557. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31558. {
  31559. front: {
  31560. height: math.unit(6, "feet"),
  31561. weight: math.unit(150, "lb"),
  31562. name: "Front",
  31563. image: {
  31564. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31565. extra: 2625 / 2518,
  31566. bottom: 60 / 2685
  31567. }
  31568. },
  31569. },
  31570. [
  31571. {
  31572. name: "Normal",
  31573. height: math.unit(6 + 2 / 12, "feet")
  31574. },
  31575. {
  31576. name: "Macro",
  31577. height: math.unit(1180, "feet"),
  31578. default: true
  31579. },
  31580. ]
  31581. ))
  31582. characterMakers.push(() => makeCharacter(
  31583. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31584. {
  31585. front: {
  31586. height: math.unit(5 + 6 / 12, "feet"),
  31587. weight: math.unit(108, "lb"),
  31588. name: "Front",
  31589. image: {
  31590. source: "./media/characters/lilith-zott/front.svg",
  31591. extra: 2510 / 2238,
  31592. bottom: 100 / 2610
  31593. }
  31594. },
  31595. frontDressed: {
  31596. height: math.unit(5 + 6 / 12, "feet"),
  31597. weight: math.unit(108, "lb"),
  31598. name: "Front (Dressed)",
  31599. image: {
  31600. source: "./media/characters/lilith-zott/front-dressed.svg",
  31601. extra: 2510 / 2238,
  31602. bottom: 100 / 2610
  31603. }
  31604. },
  31605. },
  31606. [
  31607. {
  31608. name: "Normal",
  31609. height: math.unit(5 + 6 / 12, "feet")
  31610. },
  31611. {
  31612. name: "Macro",
  31613. height: math.unit(1030, "feet"),
  31614. default: true
  31615. },
  31616. ]
  31617. ))
  31618. characterMakers.push(() => makeCharacter(
  31619. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31620. {
  31621. front: {
  31622. height: math.unit(6, "feet"),
  31623. weight: math.unit(150, "lb"),
  31624. name: "Front",
  31625. image: {
  31626. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31627. extra: 2567 / 2435,
  31628. bottom: 39 / 2606
  31629. }
  31630. },
  31631. frontSuper: {
  31632. height: math.unit(6, "feet"),
  31633. name: "Front (Super)",
  31634. image: {
  31635. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31636. extra: 2567 / 2435,
  31637. bottom: 39 / 2606
  31638. }
  31639. },
  31640. },
  31641. [
  31642. {
  31643. name: "Normal",
  31644. height: math.unit(5 + 10 / 12, "feet")
  31645. },
  31646. {
  31647. name: "Macro",
  31648. height: math.unit(1100, "feet"),
  31649. default: true
  31650. },
  31651. ]
  31652. ))
  31653. characterMakers.push(() => makeCharacter(
  31654. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31655. {
  31656. front: {
  31657. height: math.unit(100, "miles"),
  31658. name: "Front",
  31659. image: {
  31660. source: "./media/characters/sona/front.svg",
  31661. extra: 2433 / 2201,
  31662. bottom: 53 / 2486
  31663. }
  31664. },
  31665. foot: {
  31666. height: math.unit(16.1, "miles"),
  31667. name: "Foot",
  31668. image: {
  31669. source: "./media/characters/sona/foot.svg"
  31670. }
  31671. },
  31672. },
  31673. [
  31674. {
  31675. name: "Macro",
  31676. height: math.unit(100, "miles"),
  31677. default: true
  31678. },
  31679. ]
  31680. ))
  31681. characterMakers.push(() => makeCharacter(
  31682. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31683. {
  31684. front: {
  31685. height: math.unit(6, "feet"),
  31686. weight: math.unit(150, "lb"),
  31687. name: "Front",
  31688. image: {
  31689. source: "./media/characters/bailey/front.svg",
  31690. extra: 1778 / 1724,
  31691. bottom: 30 / 1808
  31692. }
  31693. },
  31694. },
  31695. [
  31696. {
  31697. name: "Micro",
  31698. height: math.unit(4, "inches")
  31699. },
  31700. {
  31701. name: "Normal",
  31702. height: math.unit(5 + 5 / 12, "feet"),
  31703. default: true
  31704. },
  31705. {
  31706. name: "Macro",
  31707. height: math.unit(250, "feet")
  31708. },
  31709. {
  31710. name: "Megamacro",
  31711. height: math.unit(100, "miles")
  31712. },
  31713. ]
  31714. ))
  31715. characterMakers.push(() => makeCharacter(
  31716. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31717. {
  31718. front: {
  31719. height: math.unit(5 + 2 / 12, "feet"),
  31720. weight: math.unit(120, "lb"),
  31721. name: "Front",
  31722. image: {
  31723. source: "./media/characters/snaps/front.svg",
  31724. extra: 2370 / 2177,
  31725. bottom: 48 / 2418
  31726. }
  31727. },
  31728. back: {
  31729. height: math.unit(5 + 2 / 12, "feet"),
  31730. weight: math.unit(120, "lb"),
  31731. name: "Back",
  31732. image: {
  31733. source: "./media/characters/snaps/back.svg",
  31734. extra: 2408 / 2258,
  31735. bottom: 15 / 2423
  31736. }
  31737. },
  31738. },
  31739. [
  31740. {
  31741. name: "Micro",
  31742. height: math.unit(9, "inches")
  31743. },
  31744. {
  31745. name: "Normal",
  31746. height: math.unit(5 + 2 / 12, "feet"),
  31747. default: true
  31748. },
  31749. {
  31750. name: "Mini Macro",
  31751. height: math.unit(10, "feet")
  31752. },
  31753. ]
  31754. ))
  31755. characterMakers.push(() => makeCharacter(
  31756. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31757. {
  31758. front: {
  31759. height: math.unit(1.8, "meters"),
  31760. weight: math.unit(85, "kg"),
  31761. name: "Front",
  31762. image: {
  31763. source: "./media/characters/azteck/front.svg",
  31764. extra: 2815 / 2625,
  31765. bottom: 89 / 2904
  31766. }
  31767. },
  31768. back: {
  31769. height: math.unit(1.8, "meters"),
  31770. weight: math.unit(85, "kg"),
  31771. name: "Back",
  31772. image: {
  31773. source: "./media/characters/azteck/back.svg",
  31774. extra: 2856 / 2648,
  31775. bottom: 85 / 2941
  31776. }
  31777. },
  31778. frontDressed: {
  31779. height: math.unit(1.8, "meters"),
  31780. weight: math.unit(85, "kg"),
  31781. name: "Front (Dressed)",
  31782. image: {
  31783. source: "./media/characters/azteck/front-dressed.svg",
  31784. extra: 2147 / 2003,
  31785. bottom: 68 / 2215
  31786. }
  31787. },
  31788. head: {
  31789. height: math.unit(0.47, "meters"),
  31790. weight: math.unit(85, "kg"),
  31791. name: "Head",
  31792. image: {
  31793. source: "./media/characters/azteck/head.svg"
  31794. }
  31795. },
  31796. },
  31797. [
  31798. {
  31799. name: "Bite sized",
  31800. height: math.unit(16, "cm")
  31801. },
  31802. {
  31803. name: "Normal",
  31804. height: math.unit(1.8, "meters"),
  31805. default: true
  31806. },
  31807. ]
  31808. ))
  31809. characterMakers.push(() => makeCharacter(
  31810. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31811. {
  31812. front: {
  31813. height: math.unit(6, "feet"),
  31814. weight: math.unit(150, "lb"),
  31815. name: "Front",
  31816. image: {
  31817. source: "./media/characters/pidge/front.svg",
  31818. extra: 1936/1820,
  31819. bottom: 0/1936
  31820. }
  31821. },
  31822. back: {
  31823. height: math.unit(6, "feet"),
  31824. weight: math.unit(150, "lb"),
  31825. name: "Back",
  31826. image: {
  31827. source: "./media/characters/pidge/back.svg",
  31828. extra: 1938/1843,
  31829. bottom: 0/1938
  31830. }
  31831. },
  31832. casual: {
  31833. height: math.unit(6, "feet"),
  31834. weight: math.unit(150, "lb"),
  31835. name: "Casual",
  31836. image: {
  31837. source: "./media/characters/pidge/casual.svg",
  31838. extra: 1936/1820,
  31839. bottom: 0/1936
  31840. }
  31841. },
  31842. tech: {
  31843. height: math.unit(6, "feet"),
  31844. weight: math.unit(150, "lb"),
  31845. name: "Tech",
  31846. image: {
  31847. source: "./media/characters/pidge/tech.svg",
  31848. extra: 1802/1682,
  31849. bottom: 0/1802
  31850. }
  31851. },
  31852. head: {
  31853. height: math.unit(1.61, "feet"),
  31854. name: "Head",
  31855. image: {
  31856. source: "./media/characters/pidge/head.svg"
  31857. }
  31858. },
  31859. collar: {
  31860. height: math.unit(0.82, "feet"),
  31861. name: "Collar",
  31862. image: {
  31863. source: "./media/characters/pidge/collar.svg"
  31864. }
  31865. },
  31866. },
  31867. [
  31868. {
  31869. name: "Macro",
  31870. height: math.unit(2, "mile"),
  31871. default: true
  31872. },
  31873. {
  31874. name: "PUPPY",
  31875. height: math.unit(20, "miles")
  31876. },
  31877. ]
  31878. ))
  31879. characterMakers.push(() => makeCharacter(
  31880. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31881. {
  31882. front: {
  31883. height: math.unit(6, "feet"),
  31884. weight: math.unit(150, "lb"),
  31885. name: "Front",
  31886. image: {
  31887. source: "./media/characters/en/front.svg",
  31888. extra: 1697 / 1563,
  31889. bottom: 103 / 1800
  31890. }
  31891. },
  31892. back: {
  31893. height: math.unit(6, "feet"),
  31894. weight: math.unit(150, "lb"),
  31895. name: "Back",
  31896. image: {
  31897. source: "./media/characters/en/back.svg",
  31898. extra: 1700 / 1570,
  31899. bottom: 51 / 1751
  31900. }
  31901. },
  31902. frontDressed: {
  31903. height: math.unit(6, "feet"),
  31904. weight: math.unit(150, "lb"),
  31905. name: "Front (Dressed)",
  31906. image: {
  31907. source: "./media/characters/en/front-dressed.svg",
  31908. extra: 1697 / 1563,
  31909. bottom: 103 / 1800
  31910. }
  31911. },
  31912. backDressed: {
  31913. height: math.unit(6, "feet"),
  31914. weight: math.unit(150, "lb"),
  31915. name: "Back (Dressed)",
  31916. image: {
  31917. source: "./media/characters/en/back-dressed.svg",
  31918. extra: 1700 / 1570,
  31919. bottom: 51 / 1751
  31920. }
  31921. },
  31922. },
  31923. [
  31924. {
  31925. name: "Macro",
  31926. height: math.unit(210, "feet"),
  31927. default: true
  31928. },
  31929. ]
  31930. ))
  31931. characterMakers.push(() => makeCharacter(
  31932. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31933. {
  31934. front: {
  31935. height: math.unit(6, "feet"),
  31936. weight: math.unit(150, "lb"),
  31937. name: "Front",
  31938. image: {
  31939. source: "./media/characters/haze-orris/front.svg",
  31940. extra: 3975 / 3525,
  31941. bottom: 137 / 4112
  31942. }
  31943. },
  31944. },
  31945. [
  31946. {
  31947. name: "Micro",
  31948. height: math.unit(150, "mm"),
  31949. default: true
  31950. },
  31951. ]
  31952. ))
  31953. characterMakers.push(() => makeCharacter(
  31954. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31955. {
  31956. front: {
  31957. height: math.unit(6, "feet"),
  31958. weight: math.unit(150, "lb"),
  31959. name: "Front",
  31960. image: {
  31961. source: "./media/characters/casselene-yaro/front.svg",
  31962. extra: 4721 / 4541,
  31963. bottom: 82 / 4803
  31964. }
  31965. },
  31966. back: {
  31967. height: math.unit(6, "feet"),
  31968. weight: math.unit(150, "lb"),
  31969. name: "Back",
  31970. image: {
  31971. source: "./media/characters/casselene-yaro/back.svg",
  31972. extra: 4569 / 4377,
  31973. bottom: 69 / 4638
  31974. }
  31975. },
  31976. dressed: {
  31977. height: math.unit(6, "feet"),
  31978. weight: math.unit(150, "lb"),
  31979. name: "Dressed",
  31980. image: {
  31981. source: "./media/characters/casselene-yaro/dressed.svg",
  31982. extra: 4721 / 4541,
  31983. bottom: 82 / 4803
  31984. }
  31985. },
  31986. maw: {
  31987. height: math.unit(1, "feet"),
  31988. name: "Maw",
  31989. image: {
  31990. source: "./media/characters/casselene-yaro/maw.svg"
  31991. }
  31992. },
  31993. },
  31994. [
  31995. {
  31996. name: "Macro",
  31997. height: math.unit(190, "feet"),
  31998. default: true
  31999. },
  32000. ]
  32001. ))
  32002. characterMakers.push(() => makeCharacter(
  32003. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32004. {
  32005. front: {
  32006. height: math.unit(10, "feet"),
  32007. weight: math.unit(15015, "lb"),
  32008. name: "Front",
  32009. image: {
  32010. source: "./media/characters/platine/front.svg",
  32011. extra: 1741/1650,
  32012. bottom: 84/1825
  32013. }
  32014. },
  32015. side: {
  32016. height: math.unit(10, "feet"),
  32017. weight: math.unit(15015, "lb"),
  32018. name: "Side",
  32019. image: {
  32020. source: "./media/characters/platine/side.svg",
  32021. extra: 1790/1705,
  32022. bottom: 29/1819
  32023. }
  32024. },
  32025. },
  32026. [
  32027. {
  32028. name: "Normal",
  32029. height: math.unit(10, "feet"),
  32030. default: true
  32031. },
  32032. {
  32033. name: "Macro",
  32034. height: math.unit(100, "feet")
  32035. },
  32036. {
  32037. name: "Megamacro",
  32038. height: math.unit(1000, "feet")
  32039. },
  32040. ]
  32041. ))
  32042. characterMakers.push(() => makeCharacter(
  32043. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32044. {
  32045. front: {
  32046. height: math.unit(15 + 5 / 12, "feet"),
  32047. weight: math.unit(4600, "lb"),
  32048. name: "Front",
  32049. image: {
  32050. source: "./media/characters/neapolitan-ananassa/front.svg",
  32051. extra: 2903 / 2736,
  32052. bottom: 0 / 2903
  32053. }
  32054. },
  32055. side: {
  32056. height: math.unit(15 + 5 / 12, "feet"),
  32057. weight: math.unit(4600, "lb"),
  32058. name: "Side",
  32059. image: {
  32060. source: "./media/characters/neapolitan-ananassa/side.svg",
  32061. extra: 2925 / 2719,
  32062. bottom: 0 / 2925
  32063. }
  32064. },
  32065. back: {
  32066. height: math.unit(15 + 5 / 12, "feet"),
  32067. weight: math.unit(4600, "lb"),
  32068. name: "Back",
  32069. image: {
  32070. source: "./media/characters/neapolitan-ananassa/back.svg",
  32071. extra: 2903 / 2736,
  32072. bottom: 0 / 2903
  32073. }
  32074. },
  32075. },
  32076. [
  32077. {
  32078. name: "Normal",
  32079. height: math.unit(15 + 5 / 12, "feet"),
  32080. default: true
  32081. },
  32082. {
  32083. name: "Post-Millenium",
  32084. height: math.unit(35 + 5 / 12, "feet")
  32085. },
  32086. {
  32087. name: "Post-Era",
  32088. height: math.unit(450 + 5 / 12, "feet")
  32089. },
  32090. ]
  32091. ))
  32092. characterMakers.push(() => makeCharacter(
  32093. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32094. {
  32095. front: {
  32096. height: math.unit(300, "meters"),
  32097. weight: math.unit(125000, "tonnes"),
  32098. name: "Front",
  32099. image: {
  32100. source: "./media/characters/pazuzu/front.svg",
  32101. extra: 877 / 794,
  32102. bottom: 47 / 924
  32103. }
  32104. },
  32105. },
  32106. [
  32107. {
  32108. name: "Macro",
  32109. height: math.unit(300, "meters"),
  32110. default: true
  32111. },
  32112. ]
  32113. ))
  32114. characterMakers.push(() => makeCharacter(
  32115. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32116. {
  32117. side: {
  32118. height: math.unit(10 + 7 / 12, "feet"),
  32119. weight: math.unit(2.5, "tons"),
  32120. name: "Side",
  32121. image: {
  32122. source: "./media/characters/aasha/side.svg",
  32123. extra: 1345 / 1245,
  32124. bottom: 111 / 1456
  32125. }
  32126. },
  32127. back: {
  32128. height: math.unit(10 + 7 / 12, "feet"),
  32129. weight: math.unit(2.5, "tons"),
  32130. name: "Back",
  32131. image: {
  32132. source: "./media/characters/aasha/back.svg",
  32133. extra: 1133 / 1057,
  32134. bottom: 257 / 1390
  32135. }
  32136. },
  32137. },
  32138. [
  32139. {
  32140. name: "Normal",
  32141. height: math.unit(10 + 7 / 12, "feet"),
  32142. default: true
  32143. },
  32144. ]
  32145. ))
  32146. characterMakers.push(() => makeCharacter(
  32147. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32148. {
  32149. front: {
  32150. height: math.unit(6 + 3 / 12, "feet"),
  32151. name: "Front",
  32152. image: {
  32153. source: "./media/characters/nevan/front.svg",
  32154. extra: 704 / 704,
  32155. bottom: 28 / 732
  32156. }
  32157. },
  32158. back: {
  32159. height: math.unit(6 + 3 / 12, "feet"),
  32160. name: "Back",
  32161. image: {
  32162. source: "./media/characters/nevan/back.svg",
  32163. extra: 714 / 714,
  32164. bottom: 21 / 735
  32165. }
  32166. },
  32167. frontFlaccid: {
  32168. height: math.unit(6 + 3 / 12, "feet"),
  32169. name: "Front (Flaccid)",
  32170. image: {
  32171. source: "./media/characters/nevan/front-flaccid.svg",
  32172. extra: 704 / 704,
  32173. bottom: 28 / 732
  32174. }
  32175. },
  32176. frontErect: {
  32177. height: math.unit(6 + 3 / 12, "feet"),
  32178. name: "Front (Erect)",
  32179. image: {
  32180. source: "./media/characters/nevan/front-erect.svg",
  32181. extra: 704 / 704,
  32182. bottom: 28 / 732
  32183. }
  32184. },
  32185. backFlaccid: {
  32186. height: math.unit(6 + 3 / 12, "feet"),
  32187. name: "Back (Flaccid)",
  32188. image: {
  32189. source: "./media/characters/nevan/back-flaccid.svg",
  32190. extra: 714 / 714,
  32191. bottom: 21 / 735
  32192. }
  32193. },
  32194. },
  32195. [
  32196. {
  32197. name: "Normal",
  32198. height: math.unit(6 + 3 / 12, "feet"),
  32199. default: true
  32200. },
  32201. ]
  32202. ))
  32203. characterMakers.push(() => makeCharacter(
  32204. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32205. {
  32206. front: {
  32207. height: math.unit(4, "feet"),
  32208. name: "Front",
  32209. image: {
  32210. source: "./media/characters/arhan/front.svg",
  32211. extra: 3368 / 3133,
  32212. bottom: 0 / 3368
  32213. }
  32214. },
  32215. side: {
  32216. height: math.unit(4, "feet"),
  32217. name: "Side",
  32218. image: {
  32219. source: "./media/characters/arhan/side.svg",
  32220. extra: 3347 / 3105,
  32221. bottom: 0 / 3347
  32222. }
  32223. },
  32224. tongue: {
  32225. height: math.unit(1.42, "feet"),
  32226. name: "Tongue",
  32227. image: {
  32228. source: "./media/characters/arhan/tongue.svg"
  32229. }
  32230. },
  32231. head: {
  32232. height: math.unit(0.85, "feet"),
  32233. name: "Head",
  32234. image: {
  32235. source: "./media/characters/arhan/head.svg"
  32236. }
  32237. },
  32238. },
  32239. [
  32240. {
  32241. name: "Normal",
  32242. height: math.unit(4, "feet"),
  32243. default: true
  32244. },
  32245. ]
  32246. ))
  32247. characterMakers.push(() => makeCharacter(
  32248. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32249. {
  32250. front: {
  32251. height: math.unit(5 + 7.5 / 12, "feet"),
  32252. weight: math.unit(120, "lb"),
  32253. name: "Front",
  32254. image: {
  32255. source: "./media/characters/digi-duncan/front.svg",
  32256. extra: 330 / 326,
  32257. bottom: 16 / 346
  32258. }
  32259. },
  32260. side: {
  32261. height: math.unit(5 + 7.5 / 12, "feet"),
  32262. weight: math.unit(120, "lb"),
  32263. name: "Side",
  32264. image: {
  32265. source: "./media/characters/digi-duncan/side.svg",
  32266. extra: 341 / 337,
  32267. bottom: 1 / 342
  32268. }
  32269. },
  32270. back: {
  32271. height: math.unit(5 + 7.5 / 12, "feet"),
  32272. weight: math.unit(120, "lb"),
  32273. name: "Back",
  32274. image: {
  32275. source: "./media/characters/digi-duncan/back.svg",
  32276. extra: 330 / 326,
  32277. bottom: 12 / 342
  32278. }
  32279. },
  32280. },
  32281. [
  32282. {
  32283. name: "Speck",
  32284. height: math.unit(0.25, "mm")
  32285. },
  32286. {
  32287. name: "Micro",
  32288. height: math.unit(5, "mm")
  32289. },
  32290. {
  32291. name: "Tiny",
  32292. height: math.unit(0.5, "inches"),
  32293. default: true
  32294. },
  32295. {
  32296. name: "Human",
  32297. height: math.unit(5 + 7.5 / 12, "feet")
  32298. },
  32299. {
  32300. name: "Minigiant",
  32301. height: math.unit(8 + 5.25, "feet")
  32302. },
  32303. {
  32304. name: "Giant",
  32305. height: math.unit(2000, "feet")
  32306. },
  32307. {
  32308. name: "Mega",
  32309. height: math.unit(371.1, "miles")
  32310. },
  32311. ]
  32312. ))
  32313. characterMakers.push(() => makeCharacter(
  32314. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32315. {
  32316. front: {
  32317. height: math.unit(2, "meters"),
  32318. weight: math.unit(350, "kg"),
  32319. name: "Front",
  32320. image: {
  32321. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32322. extra: 898 / 838,
  32323. bottom: 9 / 907
  32324. }
  32325. },
  32326. },
  32327. [
  32328. {
  32329. name: "Micro",
  32330. height: math.unit(8, "meters")
  32331. },
  32332. {
  32333. name: "Normal",
  32334. height: math.unit(50, "meters"),
  32335. default: true
  32336. },
  32337. {
  32338. name: "Macro",
  32339. height: math.unit(500, "meters")
  32340. },
  32341. ]
  32342. ))
  32343. characterMakers.push(() => makeCharacter(
  32344. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32345. {
  32346. front: {
  32347. height: math.unit(6 + 6 / 12, "feet"),
  32348. name: "Front",
  32349. image: {
  32350. source: "./media/characters/khardesh/front.svg",
  32351. extra: 1788/1596,
  32352. bottom: 66/1854
  32353. }
  32354. },
  32355. back: {
  32356. height: math.unit(6 + 6 / 12, "feet"),
  32357. name: "Back",
  32358. image: {
  32359. source: "./media/characters/khardesh/back.svg",
  32360. extra: 1781/1584,
  32361. bottom: 68/1849
  32362. }
  32363. },
  32364. },
  32365. [
  32366. {
  32367. name: "Normal",
  32368. height: math.unit(6 + 6 / 12, "feet"),
  32369. default: true
  32370. },
  32371. {
  32372. name: "Normal+",
  32373. height: math.unit(4, "meters")
  32374. },
  32375. {
  32376. name: "Macro",
  32377. height: math.unit(50, "meters")
  32378. },
  32379. {
  32380. name: "Macro+",
  32381. height: math.unit(100, "meters")
  32382. },
  32383. {
  32384. name: "Megamacro",
  32385. height: math.unit(20, "km")
  32386. },
  32387. ]
  32388. ))
  32389. characterMakers.push(() => makeCharacter(
  32390. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32391. {
  32392. front: {
  32393. height: math.unit(6, "feet"),
  32394. weight: math.unit(150, "lb"),
  32395. name: "Front",
  32396. image: {
  32397. source: "./media/characters/kosho/front.svg",
  32398. extra: 1847 / 1847,
  32399. bottom: 86 / 1933
  32400. }
  32401. },
  32402. },
  32403. [
  32404. {
  32405. name: "Second-stage micro",
  32406. height: math.unit(0.5, "inches")
  32407. },
  32408. {
  32409. name: "First-stage micro",
  32410. height: math.unit(6, "inches")
  32411. },
  32412. {
  32413. name: "Normal",
  32414. height: math.unit(6, "feet"),
  32415. default: true
  32416. },
  32417. {
  32418. name: "First-stage macro",
  32419. height: math.unit(72, "feet")
  32420. },
  32421. {
  32422. name: "Second-stage macro",
  32423. height: math.unit(864, "feet")
  32424. },
  32425. ]
  32426. ))
  32427. characterMakers.push(() => makeCharacter(
  32428. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32429. {
  32430. normal: {
  32431. height: math.unit(4 + 6 / 12, "feet"),
  32432. name: "Normal",
  32433. image: {
  32434. source: "./media/characters/hydra/normal.svg",
  32435. extra: 2833 / 2634,
  32436. bottom: 68 / 2901
  32437. }
  32438. },
  32439. smol: {
  32440. height: math.unit(0.705, "inches"),
  32441. name: "Smol",
  32442. image: {
  32443. source: "./media/characters/hydra/smol.svg",
  32444. extra: 2715 / 2540,
  32445. bottom: 0 / 2715
  32446. }
  32447. },
  32448. },
  32449. [
  32450. {
  32451. name: "Normal",
  32452. height: math.unit(4 + 6 / 12, "feet"),
  32453. default: true
  32454. }
  32455. ]
  32456. ))
  32457. characterMakers.push(() => makeCharacter(
  32458. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32459. {
  32460. front: {
  32461. height: math.unit(0.6, "cm"),
  32462. name: "Front",
  32463. image: {
  32464. source: "./media/characters/daz/front.svg",
  32465. extra: 1682 / 1164,
  32466. bottom: 42 / 1724
  32467. }
  32468. },
  32469. },
  32470. [
  32471. {
  32472. name: "Normal",
  32473. height: math.unit(0.6, "cm"),
  32474. default: true
  32475. },
  32476. ]
  32477. ))
  32478. characterMakers.push(() => makeCharacter(
  32479. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32480. {
  32481. front: {
  32482. height: math.unit(6, "feet"),
  32483. weight: math.unit(235, "lb"),
  32484. name: "Front",
  32485. image: {
  32486. source: "./media/characters/theo-pangolin/front.svg",
  32487. extra: 1996 / 1969,
  32488. bottom: 115 / 2111
  32489. }
  32490. },
  32491. back: {
  32492. height: math.unit(6, "feet"),
  32493. weight: math.unit(235, "lb"),
  32494. name: "Back",
  32495. image: {
  32496. source: "./media/characters/theo-pangolin/back.svg",
  32497. extra: 1979 / 1979,
  32498. bottom: 40 / 2019
  32499. }
  32500. },
  32501. feral: {
  32502. height: math.unit(2, "feet"),
  32503. weight: math.unit(30, "lb"),
  32504. name: "Feral",
  32505. image: {
  32506. source: "./media/characters/theo-pangolin/feral.svg",
  32507. extra: 803 / 791,
  32508. bottom: 181 / 984
  32509. }
  32510. },
  32511. footFive: {
  32512. height: math.unit(1.43, "feet"),
  32513. name: "Foot (Five Toes)",
  32514. image: {
  32515. source: "./media/characters/theo-pangolin/foot-five.svg"
  32516. }
  32517. },
  32518. footFour: {
  32519. height: math.unit(1.43, "feet"),
  32520. name: "Foot (Four Toes)",
  32521. image: {
  32522. source: "./media/characters/theo-pangolin/foot-four.svg"
  32523. }
  32524. },
  32525. handFour: {
  32526. height: math.unit(0.81, "feet"),
  32527. name: "Hand (Four Fingers)",
  32528. image: {
  32529. source: "./media/characters/theo-pangolin/hand-four.svg"
  32530. }
  32531. },
  32532. handThree: {
  32533. height: math.unit(0.81, "feet"),
  32534. name: "Hand (Three Fingers)",
  32535. image: {
  32536. source: "./media/characters/theo-pangolin/hand-three.svg"
  32537. }
  32538. },
  32539. headFront: {
  32540. height: math.unit(1.37, "feet"),
  32541. name: "Head (Front)",
  32542. image: {
  32543. source: "./media/characters/theo-pangolin/head-front.svg"
  32544. }
  32545. },
  32546. headSide: {
  32547. height: math.unit(1.43, "feet"),
  32548. name: "Head (Side)",
  32549. image: {
  32550. source: "./media/characters/theo-pangolin/head-side.svg"
  32551. }
  32552. },
  32553. tongue: {
  32554. height: math.unit(2.29, "feet"),
  32555. name: "Tongue",
  32556. image: {
  32557. source: "./media/characters/theo-pangolin/tongue.svg"
  32558. }
  32559. },
  32560. },
  32561. [
  32562. {
  32563. name: "Normal",
  32564. height: math.unit(6, "feet")
  32565. },
  32566. {
  32567. name: "Macro",
  32568. height: math.unit(400, "feet"),
  32569. default: true
  32570. },
  32571. ]
  32572. ))
  32573. characterMakers.push(() => makeCharacter(
  32574. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32575. {
  32576. front: {
  32577. height: math.unit(6, "inches"),
  32578. weight: math.unit(0.036, "kg"),
  32579. name: "Front",
  32580. image: {
  32581. source: "./media/characters/renée/front.svg",
  32582. extra: 900 / 886,
  32583. bottom: 8 / 908
  32584. }
  32585. },
  32586. },
  32587. [
  32588. {
  32589. name: "Nano",
  32590. height: math.unit(1, "nm")
  32591. },
  32592. {
  32593. name: "Micro",
  32594. height: math.unit(1, "mm")
  32595. },
  32596. {
  32597. name: "Normal",
  32598. height: math.unit(6, "inches")
  32599. },
  32600. {
  32601. name: "Macro",
  32602. height: math.unit(2000, "feet"),
  32603. default: true
  32604. },
  32605. {
  32606. name: "Megamacro",
  32607. height: math.unit(2, "km")
  32608. },
  32609. {
  32610. name: "Gigamacro",
  32611. height: math.unit(2000, "km")
  32612. },
  32613. {
  32614. name: "Teramacro",
  32615. height: math.unit(250000, "km")
  32616. },
  32617. ]
  32618. ))
  32619. characterMakers.push(() => makeCharacter(
  32620. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32621. {
  32622. front: {
  32623. height: math.unit(4, "meters"),
  32624. weight: math.unit(150, "kg"),
  32625. name: "Front",
  32626. image: {
  32627. source: "./media/characters/caledvwlch/front.svg",
  32628. extra: 1757/1537,
  32629. bottom: 31/1788
  32630. }
  32631. },
  32632. side: {
  32633. height: math.unit(4, "meters"),
  32634. weight: math.unit(150, "kg"),
  32635. name: "Side",
  32636. image: {
  32637. source: "./media/characters/caledvwlch/side.svg",
  32638. extra: 1605 / 1536,
  32639. bottom: 31 / 1636
  32640. }
  32641. },
  32642. back: {
  32643. height: math.unit(4, "meters"),
  32644. weight: math.unit(150, "kg"),
  32645. name: "Back",
  32646. image: {
  32647. source: "./media/characters/caledvwlch/back.svg",
  32648. extra: 1635 / 1565,
  32649. bottom: 27 / 1662
  32650. }
  32651. },
  32652. },
  32653. [
  32654. {
  32655. name: "\"Incognito\"",
  32656. height: math.unit(4, "meters")
  32657. },
  32658. {
  32659. name: "Small rampage",
  32660. height: math.unit(600, "meters")
  32661. },
  32662. {
  32663. name: "Mega",
  32664. height: math.unit(30, "km")
  32665. },
  32666. {
  32667. name: "Home-size",
  32668. height: math.unit(50, "km"),
  32669. default: true
  32670. },
  32671. {
  32672. name: "Giga",
  32673. height: math.unit(300, "km")
  32674. },
  32675. {
  32676. name: "Lounging",
  32677. height: math.unit(11000, "km")
  32678. },
  32679. {
  32680. name: "Planet snacking",
  32681. height: math.unit(2000000, "km")
  32682. },
  32683. ]
  32684. ))
  32685. characterMakers.push(() => makeCharacter(
  32686. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32687. {
  32688. front: {
  32689. height: math.unit(6, "feet"),
  32690. weight: math.unit(215, "lb"),
  32691. name: "Front",
  32692. image: {
  32693. source: "./media/characters/sapphire-svell/front.svg",
  32694. extra: 495 / 455,
  32695. bottom: 20 / 515
  32696. }
  32697. },
  32698. back: {
  32699. height: math.unit(6, "feet"),
  32700. weight: math.unit(216, "lb"),
  32701. name: "Back",
  32702. image: {
  32703. source: "./media/characters/sapphire-svell/back.svg",
  32704. extra: 497 / 477,
  32705. bottom: 7 / 504
  32706. }
  32707. },
  32708. maw: {
  32709. height: math.unit(1.57, "feet"),
  32710. name: "Maw",
  32711. image: {
  32712. source: "./media/characters/sapphire-svell/maw.svg"
  32713. }
  32714. },
  32715. foot: {
  32716. height: math.unit(1.07, "feet"),
  32717. name: "Foot",
  32718. image: {
  32719. source: "./media/characters/sapphire-svell/foot.svg"
  32720. }
  32721. },
  32722. toering: {
  32723. height: math.unit(1.7, "inch"),
  32724. name: "Toering",
  32725. image: {
  32726. source: "./media/characters/sapphire-svell/toering.svg"
  32727. }
  32728. },
  32729. },
  32730. [
  32731. {
  32732. name: "Normal",
  32733. height: math.unit(300, "feet"),
  32734. default: true
  32735. },
  32736. {
  32737. name: "Augmented",
  32738. height: math.unit(1250, "feet")
  32739. },
  32740. {
  32741. name: "Unleashed",
  32742. height: math.unit(3000, "feet")
  32743. },
  32744. ]
  32745. ))
  32746. characterMakers.push(() => makeCharacter(
  32747. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32748. {
  32749. side: {
  32750. height: math.unit(2 + 3 / 12, "feet"),
  32751. weight: math.unit(110, "lb"),
  32752. name: "Side",
  32753. image: {
  32754. source: "./media/characters/glitch-flux/side.svg",
  32755. extra: 997 / 805,
  32756. bottom: 20 / 1017
  32757. }
  32758. },
  32759. },
  32760. [
  32761. {
  32762. name: "Normal",
  32763. height: math.unit(2 + 3 / 12, "feet"),
  32764. default: true
  32765. },
  32766. ]
  32767. ))
  32768. characterMakers.push(() => makeCharacter(
  32769. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32770. {
  32771. front: {
  32772. height: math.unit(4, "meters"),
  32773. name: "Front",
  32774. image: {
  32775. source: "./media/characters/mid/front.svg",
  32776. extra: 507 / 476,
  32777. bottom: 17 / 524
  32778. }
  32779. },
  32780. back: {
  32781. height: math.unit(4, "meters"),
  32782. name: "Back",
  32783. image: {
  32784. source: "./media/characters/mid/back.svg",
  32785. extra: 519 / 487,
  32786. bottom: 7 / 526
  32787. }
  32788. },
  32789. stuck: {
  32790. height: math.unit(2.2, "meters"),
  32791. name: "Stuck",
  32792. image: {
  32793. source: "./media/characters/mid/stuck.svg",
  32794. extra: 1951 / 1869,
  32795. bottom: 88 / 2039
  32796. }
  32797. }
  32798. },
  32799. [
  32800. {
  32801. name: "Normal",
  32802. height: math.unit(4, "meters"),
  32803. default: true
  32804. },
  32805. {
  32806. name: "Big",
  32807. height: math.unit(10, "meters")
  32808. },
  32809. {
  32810. name: "Macro",
  32811. height: math.unit(800, "meters")
  32812. },
  32813. {
  32814. name: "Megamacro",
  32815. height: math.unit(100, "km")
  32816. },
  32817. {
  32818. name: "Overgrown",
  32819. height: math.unit(1, "parsec")
  32820. },
  32821. ]
  32822. ))
  32823. characterMakers.push(() => makeCharacter(
  32824. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32825. {
  32826. front: {
  32827. height: math.unit(2.5, "meters"),
  32828. weight: math.unit(225, "kg"),
  32829. name: "Front",
  32830. image: {
  32831. source: "./media/characters/iris/front.svg",
  32832. extra: 3348 / 3251,
  32833. bottom: 205 / 3553
  32834. }
  32835. },
  32836. maw: {
  32837. height: math.unit(0.56, "meter"),
  32838. name: "Maw",
  32839. image: {
  32840. source: "./media/characters/iris/maw.svg"
  32841. }
  32842. },
  32843. },
  32844. [
  32845. {
  32846. name: "Mewter cat",
  32847. height: math.unit(1.2, "meters")
  32848. },
  32849. {
  32850. name: "Normal",
  32851. height: math.unit(2.5, "meters"),
  32852. default: true
  32853. },
  32854. {
  32855. name: "Minimacro",
  32856. height: math.unit(18, "feet")
  32857. },
  32858. {
  32859. name: "Macro",
  32860. height: math.unit(140, "feet")
  32861. },
  32862. {
  32863. name: "Macro+",
  32864. height: math.unit(180, "meters")
  32865. },
  32866. {
  32867. name: "Megamacro",
  32868. height: math.unit(2746, "meters")
  32869. },
  32870. ]
  32871. ))
  32872. characterMakers.push(() => makeCharacter(
  32873. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32874. {
  32875. front: {
  32876. height: math.unit(6, "feet"),
  32877. weight: math.unit(135, "lb"),
  32878. name: "Front",
  32879. image: {
  32880. source: "./media/characters/axel/front.svg",
  32881. extra: 908 / 908,
  32882. bottom: 58 / 966
  32883. }
  32884. },
  32885. side: {
  32886. height: math.unit(6, "feet"),
  32887. weight: math.unit(135, "lb"),
  32888. name: "Side",
  32889. image: {
  32890. source: "./media/characters/axel/side.svg",
  32891. extra: 958 / 958,
  32892. bottom: 11 / 969
  32893. }
  32894. },
  32895. back: {
  32896. height: math.unit(6, "feet"),
  32897. weight: math.unit(135, "lb"),
  32898. name: "Back",
  32899. image: {
  32900. source: "./media/characters/axel/back.svg",
  32901. extra: 887 / 887,
  32902. bottom: 34 / 921
  32903. }
  32904. },
  32905. head: {
  32906. height: math.unit(1.07, "feet"),
  32907. name: "Head",
  32908. image: {
  32909. source: "./media/characters/axel/head.svg"
  32910. }
  32911. },
  32912. beak: {
  32913. height: math.unit(1.4, "feet"),
  32914. name: "Beak",
  32915. image: {
  32916. source: "./media/characters/axel/beak.svg"
  32917. }
  32918. },
  32919. beakSide: {
  32920. height: math.unit(1.4, "feet"),
  32921. name: "Beak Side",
  32922. image: {
  32923. source: "./media/characters/axel/beak-side.svg"
  32924. }
  32925. },
  32926. sheath: {
  32927. height: math.unit(0.5, "feet"),
  32928. name: "Sheath",
  32929. image: {
  32930. source: "./media/characters/axel/sheath.svg"
  32931. }
  32932. },
  32933. dick: {
  32934. height: math.unit(0.98, "feet"),
  32935. name: "Dick",
  32936. image: {
  32937. source: "./media/characters/axel/dick.svg"
  32938. }
  32939. },
  32940. },
  32941. [
  32942. {
  32943. name: "Macro",
  32944. height: math.unit(68, "meters"),
  32945. default: true
  32946. },
  32947. ]
  32948. ))
  32949. characterMakers.push(() => makeCharacter(
  32950. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32951. {
  32952. front: {
  32953. height: math.unit(3.5, "meters"),
  32954. weight: math.unit(1200, "kg"),
  32955. name: "Front",
  32956. image: {
  32957. source: "./media/characters/joanna/front.svg",
  32958. extra: 1596 / 1488,
  32959. bottom: 29 / 1625
  32960. }
  32961. },
  32962. back: {
  32963. height: math.unit(3.5, "meters"),
  32964. weight: math.unit(1200, "kg"),
  32965. name: "Back",
  32966. image: {
  32967. source: "./media/characters/joanna/back.svg",
  32968. extra: 1594 / 1495,
  32969. bottom: 26 / 1620
  32970. }
  32971. },
  32972. frontShorts: {
  32973. height: math.unit(3.5, "meters"),
  32974. weight: math.unit(1200, "kg"),
  32975. name: "Front (Shorts)",
  32976. image: {
  32977. source: "./media/characters/joanna/front-shorts.svg",
  32978. extra: 1596 / 1488,
  32979. bottom: 29 / 1625
  32980. }
  32981. },
  32982. frontBiker: {
  32983. height: math.unit(3.5, "meters"),
  32984. weight: math.unit(1200, "kg"),
  32985. name: "Front (Biker)",
  32986. image: {
  32987. source: "./media/characters/joanna/front-biker.svg",
  32988. extra: 1596 / 1488,
  32989. bottom: 29 / 1625
  32990. }
  32991. },
  32992. backBiker: {
  32993. height: math.unit(3.5, "meters"),
  32994. weight: math.unit(1200, "kg"),
  32995. name: "Back (Biker)",
  32996. image: {
  32997. source: "./media/characters/joanna/back-biker.svg",
  32998. extra: 1594 / 1495,
  32999. bottom: 88 / 1682
  33000. }
  33001. },
  33002. bikeLeft: {
  33003. height: math.unit(2.4, "meters"),
  33004. weight: math.unit(1600, "kg"),
  33005. name: "Bike (Left)",
  33006. image: {
  33007. source: "./media/characters/joanna/bike-left.svg",
  33008. extra: 720 / 720,
  33009. bottom: 8 / 728
  33010. }
  33011. },
  33012. bikeRight: {
  33013. height: math.unit(2.4, "meters"),
  33014. weight: math.unit(1600, "kg"),
  33015. name: "Bike (Right)",
  33016. image: {
  33017. source: "./media/characters/joanna/bike-right.svg",
  33018. extra: 720 / 720,
  33019. bottom: 8 / 728
  33020. }
  33021. },
  33022. },
  33023. [
  33024. {
  33025. name: "Incognito",
  33026. height: math.unit(3.5, "meters")
  33027. },
  33028. {
  33029. name: "Casual Big",
  33030. height: math.unit(200, "meters")
  33031. },
  33032. {
  33033. name: "Macro",
  33034. height: math.unit(600, "meters")
  33035. },
  33036. {
  33037. name: "Original",
  33038. height: math.unit(20, "km"),
  33039. default: true
  33040. },
  33041. {
  33042. name: "Giga",
  33043. height: math.unit(400, "km")
  33044. },
  33045. {
  33046. name: "Lounging",
  33047. height: math.unit(1500, "km")
  33048. },
  33049. {
  33050. name: "Planetary",
  33051. height: math.unit(200000, "km")
  33052. },
  33053. ]
  33054. ))
  33055. characterMakers.push(() => makeCharacter(
  33056. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33057. {
  33058. front: {
  33059. height: math.unit(6, "feet"),
  33060. weight: math.unit(150, "lb"),
  33061. name: "Front",
  33062. image: {
  33063. source: "./media/characters/hugo-sigil/front.svg",
  33064. extra: 522 / 500,
  33065. bottom: 2 / 524
  33066. }
  33067. },
  33068. back: {
  33069. height: math.unit(6, "feet"),
  33070. weight: math.unit(150, "lb"),
  33071. name: "Back",
  33072. image: {
  33073. source: "./media/characters/hugo-sigil/back.svg",
  33074. extra: 519 / 495,
  33075. bottom: 5 / 524
  33076. }
  33077. },
  33078. maw: {
  33079. height: math.unit(1.4, "feet"),
  33080. weight: math.unit(150, "lb"),
  33081. name: "Maw",
  33082. image: {
  33083. source: "./media/characters/hugo-sigil/maw.svg"
  33084. }
  33085. },
  33086. feet: {
  33087. height: math.unit(1.56, "feet"),
  33088. weight: math.unit(150, "lb"),
  33089. name: "Feet",
  33090. image: {
  33091. source: "./media/characters/hugo-sigil/feet.svg",
  33092. extra: 177 / 177,
  33093. bottom: 12 / 189
  33094. }
  33095. },
  33096. },
  33097. [
  33098. {
  33099. name: "Normal",
  33100. height: math.unit(6, "feet")
  33101. },
  33102. {
  33103. name: "Macro",
  33104. height: math.unit(200, "feet"),
  33105. default: true
  33106. },
  33107. ]
  33108. ))
  33109. characterMakers.push(() => makeCharacter(
  33110. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33111. {
  33112. front: {
  33113. height: math.unit(6, "feet"),
  33114. weight: math.unit(150, "lb"),
  33115. name: "Front",
  33116. image: {
  33117. source: "./media/characters/peri/front.svg",
  33118. extra: 2354 / 2233,
  33119. bottom: 49 / 2403
  33120. }
  33121. },
  33122. },
  33123. [
  33124. {
  33125. name: "Really Small",
  33126. height: math.unit(1, "nm")
  33127. },
  33128. {
  33129. name: "Micro",
  33130. height: math.unit(4, "inches")
  33131. },
  33132. {
  33133. name: "Normal",
  33134. height: math.unit(7, "inches"),
  33135. default: true
  33136. },
  33137. {
  33138. name: "Macro",
  33139. height: math.unit(400, "feet")
  33140. },
  33141. {
  33142. name: "Megamacro",
  33143. height: math.unit(100, "miles")
  33144. },
  33145. ]
  33146. ))
  33147. characterMakers.push(() => makeCharacter(
  33148. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33149. {
  33150. frontSlim: {
  33151. height: math.unit(7, "feet"),
  33152. name: "Front (Slim)",
  33153. image: {
  33154. source: "./media/characters/issilora/front-slim.svg",
  33155. extra: 529 / 449,
  33156. bottom: 53 / 582
  33157. }
  33158. },
  33159. sideSlim: {
  33160. height: math.unit(7, "feet"),
  33161. name: "Side (Slim)",
  33162. image: {
  33163. source: "./media/characters/issilora/side-slim.svg",
  33164. extra: 570 / 480,
  33165. bottom: 30 / 600
  33166. }
  33167. },
  33168. backSlim: {
  33169. height: math.unit(7, "feet"),
  33170. name: "Back (Slim)",
  33171. image: {
  33172. source: "./media/characters/issilora/back-slim.svg",
  33173. extra: 537 / 455,
  33174. bottom: 46 / 583
  33175. }
  33176. },
  33177. frontBuff: {
  33178. height: math.unit(7, "feet"),
  33179. name: "Front (Buff)",
  33180. image: {
  33181. source: "./media/characters/issilora/front-buff.svg",
  33182. extra: 2310 / 2035,
  33183. bottom: 335 / 2645
  33184. }
  33185. },
  33186. head: {
  33187. height: math.unit(1.94, "feet"),
  33188. name: "Head",
  33189. image: {
  33190. source: "./media/characters/issilora/head.svg"
  33191. }
  33192. },
  33193. },
  33194. [
  33195. {
  33196. name: "Minimum",
  33197. height: math.unit(7, "feet")
  33198. },
  33199. {
  33200. name: "Comfortable",
  33201. height: math.unit(17, "feet")
  33202. },
  33203. {
  33204. name: "Fun Size",
  33205. height: math.unit(47, "feet")
  33206. },
  33207. {
  33208. name: "Natural Macro",
  33209. height: math.unit(137, "feet"),
  33210. default: true
  33211. },
  33212. {
  33213. name: "Maximum Kaiju",
  33214. height: math.unit(397, "feet")
  33215. },
  33216. ]
  33217. ))
  33218. characterMakers.push(() => makeCharacter(
  33219. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33220. {
  33221. front: {
  33222. height: math.unit(50 + 9/12, "feet"),
  33223. weight: math.unit(32.8, "tons"),
  33224. name: "Front",
  33225. image: {
  33226. source: "./media/characters/irb'iiritaahn/front.svg",
  33227. extra: 1878/1826,
  33228. bottom: 326/2204
  33229. }
  33230. },
  33231. back: {
  33232. height: math.unit(50 + 9/12, "feet"),
  33233. weight: math.unit(32.8, "tons"),
  33234. name: "Back",
  33235. image: {
  33236. source: "./media/characters/irb'iiritaahn/back.svg",
  33237. extra: 2052/2018,
  33238. bottom: 152/2204
  33239. }
  33240. },
  33241. head: {
  33242. height: math.unit(12.86, "feet"),
  33243. name: "Head",
  33244. image: {
  33245. source: "./media/characters/irb'iiritaahn/head.svg"
  33246. }
  33247. },
  33248. maw: {
  33249. height: math.unit(9.66, "feet"),
  33250. name: "Maw",
  33251. image: {
  33252. source: "./media/characters/irb'iiritaahn/maw.svg"
  33253. }
  33254. },
  33255. frontDick: {
  33256. height: math.unit(8.78461, "feet"),
  33257. name: "Front Dick",
  33258. image: {
  33259. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33260. }
  33261. },
  33262. rearDick: {
  33263. height: math.unit(8.78461, "feet"),
  33264. name: "Rear Dick",
  33265. image: {
  33266. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33267. }
  33268. },
  33269. rearDickUnfolded: {
  33270. height: math.unit(8.78, "feet"),
  33271. name: "Rear Dick (Unfolded)",
  33272. image: {
  33273. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33274. }
  33275. },
  33276. wings: {
  33277. height: math.unit(43, "feet"),
  33278. name: "Wings",
  33279. image: {
  33280. source: "./media/characters/irb'iiritaahn/wings.svg"
  33281. }
  33282. },
  33283. },
  33284. [
  33285. {
  33286. name: "Macro",
  33287. height: math.unit(50 + 9/12, "feet"),
  33288. default: true
  33289. },
  33290. ]
  33291. ))
  33292. characterMakers.push(() => makeCharacter(
  33293. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33294. {
  33295. front: {
  33296. height: math.unit(205, "cm"),
  33297. weight: math.unit(102, "kg"),
  33298. name: "Front",
  33299. image: {
  33300. source: "./media/characters/irbisgreif/front.svg",
  33301. extra: 785/706,
  33302. bottom: 13/798
  33303. }
  33304. },
  33305. back: {
  33306. height: math.unit(205, "cm"),
  33307. weight: math.unit(102, "kg"),
  33308. name: "Back",
  33309. image: {
  33310. source: "./media/characters/irbisgreif/back.svg",
  33311. extra: 713/701,
  33312. bottom: 26/739
  33313. }
  33314. },
  33315. frontDressed: {
  33316. height: math.unit(216, "cm"),
  33317. weight: math.unit(102, "kg"),
  33318. name: "Front-dressed",
  33319. image: {
  33320. source: "./media/characters/irbisgreif/front-dressed.svg",
  33321. extra: 902/776,
  33322. bottom: 14/916
  33323. }
  33324. },
  33325. sideDressed: {
  33326. height: math.unit(195, "cm"),
  33327. weight: math.unit(102, "kg"),
  33328. name: "Side-dressed",
  33329. image: {
  33330. source: "./media/characters/irbisgreif/side-dressed.svg",
  33331. extra: 788/688,
  33332. bottom: 21/809
  33333. }
  33334. },
  33335. backDressed: {
  33336. height: math.unit(216, "cm"),
  33337. weight: math.unit(102, "kg"),
  33338. name: "Back-dressed",
  33339. image: {
  33340. source: "./media/characters/irbisgreif/back-dressed.svg",
  33341. extra: 901/783,
  33342. bottom: 10/911
  33343. }
  33344. },
  33345. dick: {
  33346. height: math.unit(0.49, "feet"),
  33347. name: "Dick",
  33348. image: {
  33349. source: "./media/characters/irbisgreif/dick.svg"
  33350. }
  33351. },
  33352. wingTop: {
  33353. height: math.unit(1.93 , "feet"),
  33354. name: "Wing-top",
  33355. image: {
  33356. source: "./media/characters/irbisgreif/wing-top.svg"
  33357. }
  33358. },
  33359. wingBottom: {
  33360. height: math.unit(1.93 , "feet"),
  33361. name: "Wing-bottom",
  33362. image: {
  33363. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33364. }
  33365. },
  33366. },
  33367. [
  33368. {
  33369. name: "Normal",
  33370. height: math.unit(216, "cm"),
  33371. default: true
  33372. },
  33373. ]
  33374. ))
  33375. characterMakers.push(() => makeCharacter(
  33376. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33377. {
  33378. front: {
  33379. height: math.unit(6, "feet"),
  33380. weight: math.unit(150, "lb"),
  33381. name: "Front",
  33382. image: {
  33383. source: "./media/characters/pride/front.svg",
  33384. extra: 1299/1230,
  33385. bottom: 18/1317
  33386. }
  33387. },
  33388. },
  33389. [
  33390. {
  33391. name: "Normal",
  33392. height: math.unit(7, "feet")
  33393. },
  33394. {
  33395. name: "Mini-macro",
  33396. height: math.unit(11, "feet")
  33397. },
  33398. {
  33399. name: "Macro",
  33400. height: math.unit(15, "meters"),
  33401. default: true
  33402. },
  33403. {
  33404. name: "Macro+",
  33405. height: math.unit(40, "meters")
  33406. },
  33407. ]
  33408. ))
  33409. characterMakers.push(() => makeCharacter(
  33410. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33411. {
  33412. front: {
  33413. height: math.unit(4 + 2 / 12, "feet"),
  33414. weight: math.unit(95, "lb"),
  33415. name: "Front",
  33416. image: {
  33417. source: "./media/characters/vaelophis-nyx/front.svg",
  33418. extra: 2532/2330,
  33419. bottom: 0/2532
  33420. }
  33421. },
  33422. back: {
  33423. height: math.unit(4 + 2 / 12, "feet"),
  33424. weight: math.unit(95, "lb"),
  33425. name: "Back",
  33426. image: {
  33427. source: "./media/characters/vaelophis-nyx/back.svg",
  33428. extra: 2484/2361,
  33429. bottom: 0/2484
  33430. }
  33431. },
  33432. feralSide: {
  33433. height: math.unit(2 + 1/12, "feet"),
  33434. weight: math.unit(20, "lb"),
  33435. name: "Feral (Side)",
  33436. image: {
  33437. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33438. extra: 1721/1581,
  33439. bottom: 70/1791
  33440. }
  33441. },
  33442. feralLazing: {
  33443. height: math.unit(1.08, "feet"),
  33444. weight: math.unit(20, "lb"),
  33445. name: "Feral (Lazing)",
  33446. image: {
  33447. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33448. extra: 822/822,
  33449. bottom: 248/1070
  33450. }
  33451. },
  33452. ear: {
  33453. height: math.unit(0.416, "feet"),
  33454. name: "Ear",
  33455. image: {
  33456. source: "./media/characters/vaelophis-nyx/ear.svg"
  33457. }
  33458. },
  33459. eye: {
  33460. height: math.unit(0.0748, "feet"),
  33461. name: "Eye",
  33462. image: {
  33463. source: "./media/characters/vaelophis-nyx/eye.svg"
  33464. }
  33465. },
  33466. mouth: {
  33467. height: math.unit(0.378, "feet"),
  33468. name: "Mouth",
  33469. image: {
  33470. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33471. }
  33472. },
  33473. spade: {
  33474. height: math.unit(0.55, "feet"),
  33475. name: "Spade",
  33476. image: {
  33477. source: "./media/characters/vaelophis-nyx/spade.svg"
  33478. }
  33479. },
  33480. },
  33481. [
  33482. {
  33483. name: "Normal",
  33484. height: math.unit(4 + 2/12, "feet"),
  33485. default: true
  33486. },
  33487. ]
  33488. ))
  33489. characterMakers.push(() => makeCharacter(
  33490. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33491. {
  33492. front: {
  33493. height: math.unit(7, "feet"),
  33494. weight: math.unit(231, "lb"),
  33495. name: "Front",
  33496. image: {
  33497. source: "./media/characters/flux/front.svg",
  33498. extra: 919/871,
  33499. bottom: 0/919
  33500. }
  33501. },
  33502. back: {
  33503. height: math.unit(7, "feet"),
  33504. weight: math.unit(231, "lb"),
  33505. name: "Back",
  33506. image: {
  33507. source: "./media/characters/flux/back.svg",
  33508. extra: 1040/992,
  33509. bottom: 0/1040
  33510. }
  33511. },
  33512. frontDressed: {
  33513. height: math.unit(7, "feet"),
  33514. weight: math.unit(231, "lb"),
  33515. name: "Front (Dressed)",
  33516. image: {
  33517. source: "./media/characters/flux/front-dressed.svg",
  33518. extra: 919/871,
  33519. bottom: 0/919
  33520. }
  33521. },
  33522. feralSide: {
  33523. height: math.unit(5, "feet"),
  33524. weight: math.unit(150, "lb"),
  33525. name: "Feral (Side)",
  33526. image: {
  33527. source: "./media/characters/flux/feral-side.svg",
  33528. extra: 598/528,
  33529. bottom: 28/626
  33530. }
  33531. },
  33532. head: {
  33533. height: math.unit(1.585, "feet"),
  33534. name: "Head",
  33535. image: {
  33536. source: "./media/characters/flux/head.svg"
  33537. }
  33538. },
  33539. headSide: {
  33540. height: math.unit(1.74, "feet"),
  33541. name: "Head (Side)",
  33542. image: {
  33543. source: "./media/characters/flux/head-side.svg"
  33544. }
  33545. },
  33546. headSideFire: {
  33547. height: math.unit(1.76, "feet"),
  33548. name: "Head (Side, Fire)",
  33549. image: {
  33550. source: "./media/characters/flux/head-side-fire.svg"
  33551. }
  33552. },
  33553. },
  33554. [
  33555. {
  33556. name: "Normal",
  33557. height: math.unit(7, "feet"),
  33558. default: true
  33559. },
  33560. ]
  33561. ))
  33562. characterMakers.push(() => makeCharacter(
  33563. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33564. {
  33565. front: {
  33566. height: math.unit(9, "feet"),
  33567. weight: math.unit(1012, "lb"),
  33568. name: "Front",
  33569. image: {
  33570. source: "./media/characters/ulfra-lupae/front.svg",
  33571. extra: 1083/1011,
  33572. bottom: 67/1150
  33573. }
  33574. },
  33575. },
  33576. [
  33577. {
  33578. name: "Micro",
  33579. height: math.unit(6, "inches")
  33580. },
  33581. {
  33582. name: "Socializing",
  33583. height: math.unit(6 + 5/12, "feet")
  33584. },
  33585. {
  33586. name: "Normal",
  33587. height: math.unit(9, "feet"),
  33588. default: true
  33589. },
  33590. {
  33591. name: "Macro",
  33592. height: math.unit(150, "feet")
  33593. },
  33594. ]
  33595. ))
  33596. characterMakers.push(() => makeCharacter(
  33597. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33598. {
  33599. front: {
  33600. height: math.unit(5 + 2/12, "feet"),
  33601. weight: math.unit(120, "lb"),
  33602. name: "Front",
  33603. image: {
  33604. source: "./media/characters/timber/front.svg",
  33605. extra: 2814/2705,
  33606. bottom: 181/2995
  33607. }
  33608. },
  33609. },
  33610. [
  33611. {
  33612. name: "Normal",
  33613. height: math.unit(5 + 2/12, "feet"),
  33614. default: true
  33615. },
  33616. ]
  33617. ))
  33618. characterMakers.push(() => makeCharacter(
  33619. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33620. {
  33621. front: {
  33622. height: math.unit(9, "feet"),
  33623. name: "Front",
  33624. image: {
  33625. source: "./media/characters/nicki/front.svg",
  33626. extra: 1240/990,
  33627. bottom: 45/1285
  33628. },
  33629. form: "anthro",
  33630. default: true
  33631. },
  33632. side: {
  33633. height: math.unit(9, "feet"),
  33634. name: "Side",
  33635. image: {
  33636. source: "./media/characters/nicki/side.svg",
  33637. extra: 1047/973,
  33638. bottom: 61/1108
  33639. },
  33640. form: "anthro"
  33641. },
  33642. back: {
  33643. height: math.unit(9, "feet"),
  33644. name: "Back",
  33645. image: {
  33646. source: "./media/characters/nicki/back.svg",
  33647. extra: 1006/965,
  33648. bottom: 39/1045
  33649. },
  33650. form: "anthro"
  33651. },
  33652. taur: {
  33653. height: math.unit(15, "feet"),
  33654. name: "Taur",
  33655. image: {
  33656. source: "./media/characters/nicki/taur.svg",
  33657. extra: 1592/1347,
  33658. bottom: 0/1592
  33659. },
  33660. form: "taur",
  33661. default: true
  33662. },
  33663. },
  33664. [
  33665. {
  33666. name: "Normal",
  33667. height: math.unit(9, "feet"),
  33668. form: "anthro",
  33669. default: true
  33670. },
  33671. {
  33672. name: "Normal",
  33673. height: math.unit(15, "feet"),
  33674. form: "taur",
  33675. default: true
  33676. }
  33677. ],
  33678. {
  33679. "anthro": {
  33680. name: "Anthro",
  33681. default: true
  33682. },
  33683. "taur": {
  33684. name: "Taur"
  33685. }
  33686. }
  33687. ))
  33688. characterMakers.push(() => makeCharacter(
  33689. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33690. {
  33691. front: {
  33692. height: math.unit(7 + 10/12, "feet"),
  33693. weight: math.unit(3.5, "tons"),
  33694. name: "Front",
  33695. image: {
  33696. source: "./media/characters/lee/front.svg",
  33697. extra: 1773/1615,
  33698. bottom: 86/1859
  33699. }
  33700. },
  33701. hand: {
  33702. height: math.unit(1.78, "feet"),
  33703. name: "Hand",
  33704. image: {
  33705. source: "./media/characters/lee/hand.svg"
  33706. }
  33707. },
  33708. maw: {
  33709. height: math.unit(1.18, "feet"),
  33710. name: "Maw",
  33711. image: {
  33712. source: "./media/characters/lee/maw.svg"
  33713. }
  33714. },
  33715. },
  33716. [
  33717. {
  33718. name: "Normal",
  33719. height: math.unit(7 + 10/12, "feet"),
  33720. default: true
  33721. },
  33722. ]
  33723. ))
  33724. characterMakers.push(() => makeCharacter(
  33725. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33726. {
  33727. front: {
  33728. height: math.unit(9, "feet"),
  33729. name: "Front",
  33730. image: {
  33731. source: "./media/characters/guti/front.svg",
  33732. extra: 4551/4355,
  33733. bottom: 123/4674
  33734. }
  33735. },
  33736. tongue: {
  33737. height: math.unit(1, "feet"),
  33738. name: "Tongue",
  33739. image: {
  33740. source: "./media/characters/guti/tongue.svg"
  33741. }
  33742. },
  33743. paw: {
  33744. height: math.unit(1.18, "feet"),
  33745. name: "Paw",
  33746. image: {
  33747. source: "./media/characters/guti/paw.svg"
  33748. }
  33749. },
  33750. },
  33751. [
  33752. {
  33753. name: "Normal",
  33754. height: math.unit(9, "feet"),
  33755. default: true
  33756. },
  33757. ]
  33758. ))
  33759. characterMakers.push(() => makeCharacter(
  33760. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33761. {
  33762. side: {
  33763. height: math.unit(5, "meters"),
  33764. name: "Side",
  33765. image: {
  33766. source: "./media/characters/vesper/side.svg",
  33767. extra: 1605/1518,
  33768. bottom: 0/1605
  33769. }
  33770. },
  33771. },
  33772. [
  33773. {
  33774. name: "Small",
  33775. height: math.unit(5, "meters")
  33776. },
  33777. {
  33778. name: "Sage",
  33779. height: math.unit(100, "meters"),
  33780. default: true
  33781. },
  33782. {
  33783. name: "Fun Size",
  33784. height: math.unit(600, "meters")
  33785. },
  33786. {
  33787. name: "Goddess",
  33788. height: math.unit(20000, "km")
  33789. },
  33790. {
  33791. name: "Maximum",
  33792. height: math.unit(5, "galaxies")
  33793. },
  33794. ]
  33795. ))
  33796. characterMakers.push(() => makeCharacter(
  33797. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33798. {
  33799. front: {
  33800. height: math.unit(6 + 3/12, "feet"),
  33801. weight: math.unit(190, "lb"),
  33802. name: "Front",
  33803. image: {
  33804. source: "./media/characters/gawain/front.svg",
  33805. extra: 2222/2139,
  33806. bottom: 90/2312
  33807. }
  33808. },
  33809. back: {
  33810. height: math.unit(6 + 3/12, "feet"),
  33811. weight: math.unit(190, "lb"),
  33812. name: "Back",
  33813. image: {
  33814. source: "./media/characters/gawain/back.svg",
  33815. extra: 2199/2111,
  33816. bottom: 73/2272
  33817. }
  33818. },
  33819. },
  33820. [
  33821. {
  33822. name: "Normal",
  33823. height: math.unit(6 + 3/12, "feet"),
  33824. default: true
  33825. },
  33826. ]
  33827. ))
  33828. characterMakers.push(() => makeCharacter(
  33829. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33830. {
  33831. side: {
  33832. height: math.unit(3.5, "meters"),
  33833. weight: math.unit(16000, "lb"),
  33834. name: "Side",
  33835. image: {
  33836. source: "./media/characters/dascalti/side.svg",
  33837. extra: 392/273,
  33838. bottom: 47/439
  33839. }
  33840. },
  33841. breath: {
  33842. height: math.unit(7.4, "feet"),
  33843. name: "Breath",
  33844. image: {
  33845. source: "./media/characters/dascalti/breath.svg"
  33846. }
  33847. },
  33848. fed: {
  33849. height: math.unit(3.6, "meters"),
  33850. weight: math.unit(16000, "lb"),
  33851. name: "Fed",
  33852. image: {
  33853. source: "./media/characters/dascalti/fed.svg",
  33854. extra: 1419/820,
  33855. bottom: 95/1514
  33856. }
  33857. },
  33858. },
  33859. [
  33860. {
  33861. name: "Normal",
  33862. height: math.unit(3.5, "meters"),
  33863. default: true
  33864. },
  33865. ]
  33866. ))
  33867. characterMakers.push(() => makeCharacter(
  33868. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33869. {
  33870. front: {
  33871. height: math.unit(3 + 5/12, "feet"),
  33872. name: "Front",
  33873. image: {
  33874. source: "./media/characters/mauve/front.svg",
  33875. extra: 1126/1033,
  33876. bottom: 65/1191
  33877. }
  33878. },
  33879. side: {
  33880. height: math.unit(3 + 5/12, "feet"),
  33881. name: "Side",
  33882. image: {
  33883. source: "./media/characters/mauve/side.svg",
  33884. extra: 1089/1001,
  33885. bottom: 29/1118
  33886. }
  33887. },
  33888. back: {
  33889. height: math.unit(3 + 5/12, "feet"),
  33890. name: "Back",
  33891. image: {
  33892. source: "./media/characters/mauve/back.svg",
  33893. extra: 1173/1053,
  33894. bottom: 109/1282
  33895. }
  33896. },
  33897. },
  33898. [
  33899. {
  33900. name: "Normal",
  33901. height: math.unit(3 + 5/12, "feet"),
  33902. default: true
  33903. },
  33904. ]
  33905. ))
  33906. characterMakers.push(() => makeCharacter(
  33907. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33908. {
  33909. front: {
  33910. height: math.unit(6 + 3/12, "feet"),
  33911. weight: math.unit(430, "lb"),
  33912. name: "Front",
  33913. image: {
  33914. source: "./media/characters/carlos/front.svg",
  33915. extra: 1964/1913,
  33916. bottom: 70/2034
  33917. }
  33918. },
  33919. },
  33920. [
  33921. {
  33922. name: "Normal",
  33923. height: math.unit(6 + 3/12, "feet"),
  33924. default: true
  33925. },
  33926. ]
  33927. ))
  33928. characterMakers.push(() => makeCharacter(
  33929. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33930. {
  33931. back: {
  33932. height: math.unit(5 + 10/12, "feet"),
  33933. weight: math.unit(200, "lb"),
  33934. name: "Back",
  33935. image: {
  33936. source: "./media/characters/jax/back.svg",
  33937. extra: 764/739,
  33938. bottom: 25/789
  33939. }
  33940. },
  33941. },
  33942. [
  33943. {
  33944. name: "Normal",
  33945. height: math.unit(5 + 10/12, "feet"),
  33946. default: true
  33947. },
  33948. ]
  33949. ))
  33950. characterMakers.push(() => makeCharacter(
  33951. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33952. {
  33953. front: {
  33954. height: math.unit(8, "feet"),
  33955. weight: math.unit(250, "lb"),
  33956. name: "Front",
  33957. image: {
  33958. source: "./media/characters/eikthynir/front.svg",
  33959. extra: 1332/1166,
  33960. bottom: 82/1414
  33961. }
  33962. },
  33963. back: {
  33964. height: math.unit(8, "feet"),
  33965. weight: math.unit(250, "lb"),
  33966. name: "Back",
  33967. image: {
  33968. source: "./media/characters/eikthynir/back.svg",
  33969. extra: 1342/1190,
  33970. bottom: 19/1361
  33971. }
  33972. },
  33973. dick: {
  33974. height: math.unit(2.35, "feet"),
  33975. name: "Dick",
  33976. image: {
  33977. source: "./media/characters/eikthynir/dick.svg"
  33978. }
  33979. },
  33980. },
  33981. [
  33982. {
  33983. name: "Normal",
  33984. height: math.unit(8, "feet"),
  33985. default: true
  33986. },
  33987. ]
  33988. ))
  33989. characterMakers.push(() => makeCharacter(
  33990. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33991. {
  33992. front: {
  33993. height: math.unit(99, "meters"),
  33994. weight: math.unit(13000, "tons"),
  33995. name: "Front",
  33996. image: {
  33997. source: "./media/characters/zlmos/front.svg",
  33998. extra: 2202/1992,
  33999. bottom: 315/2517
  34000. }
  34001. },
  34002. },
  34003. [
  34004. {
  34005. name: "Macro",
  34006. height: math.unit(99, "meters"),
  34007. default: true
  34008. },
  34009. ]
  34010. ))
  34011. characterMakers.push(() => makeCharacter(
  34012. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34013. {
  34014. front: {
  34015. height: math.unit(6 + 5/12, "feet"),
  34016. name: "Front",
  34017. image: {
  34018. source: "./media/characters/purri/front.svg",
  34019. extra: 1698/1610,
  34020. bottom: 32/1730
  34021. }
  34022. },
  34023. frontAlt: {
  34024. height: math.unit(6 + 5/12, "feet"),
  34025. name: "Front (Alt)",
  34026. image: {
  34027. source: "./media/characters/purri/front-alt.svg",
  34028. extra: 450/420,
  34029. bottom: 26/476
  34030. }
  34031. },
  34032. boots: {
  34033. height: math.unit(5.5, "feet"),
  34034. name: "Boots",
  34035. image: {
  34036. source: "./media/characters/purri/boots.svg",
  34037. extra: 905/853,
  34038. bottom: 18/923
  34039. },
  34040. extraAttributes: {
  34041. "shoeSize": {
  34042. name: "Shoe Size",
  34043. power: 1,
  34044. type: "length",
  34045. base: math.unit(12, "ShoeSizeMensUS")
  34046. },
  34047. "platformHeight": {
  34048. name: "Platform Height",
  34049. power: 1,
  34050. type: "length",
  34051. base: math.unit(2, "inches")
  34052. },
  34053. }
  34054. },
  34055. lying: {
  34056. height: math.unit(2, "feet"),
  34057. name: "Lying",
  34058. image: {
  34059. source: "./media/characters/purri/lying.svg",
  34060. extra: 940/843,
  34061. bottom: 146/1086
  34062. }
  34063. },
  34064. devious: {
  34065. height: math.unit(1.77, "feet"),
  34066. name: "Devious",
  34067. image: {
  34068. source: "./media/characters/purri/devious.svg",
  34069. extra: 1440/1155,
  34070. bottom: 147/1587
  34071. }
  34072. },
  34073. bean: {
  34074. height: math.unit(1.94, "feet"),
  34075. name: "Bean",
  34076. image: {
  34077. source: "./media/characters/purri/bean.svg"
  34078. }
  34079. },
  34080. },
  34081. [
  34082. {
  34083. name: "Micro",
  34084. height: math.unit(1, "mm")
  34085. },
  34086. {
  34087. name: "Normal",
  34088. height: math.unit(6 + 5/12, "feet"),
  34089. default: true
  34090. },
  34091. {
  34092. name: "Macro :3c",
  34093. height: math.unit(2, "miles")
  34094. },
  34095. ]
  34096. ))
  34097. characterMakers.push(() => makeCharacter(
  34098. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34099. {
  34100. front: {
  34101. height: math.unit(6 + 2/12, "feet"),
  34102. weight: math.unit(250, "lb"),
  34103. name: "Front",
  34104. image: {
  34105. source: "./media/characters/moonlight/front.svg",
  34106. extra: 1044/908,
  34107. bottom: 56/1100
  34108. }
  34109. },
  34110. feral: {
  34111. height: math.unit(3 + 1/12, "feet"),
  34112. weight: math.unit(50, "kg"),
  34113. name: "Feral",
  34114. image: {
  34115. source: "./media/characters/moonlight/feral.svg",
  34116. extra: 3705/2791,
  34117. bottom: 145/3850
  34118. }
  34119. },
  34120. paw: {
  34121. height: math.unit(1, "feet"),
  34122. name: "Paw",
  34123. image: {
  34124. source: "./media/characters/moonlight/paw.svg"
  34125. }
  34126. },
  34127. paws: {
  34128. height: math.unit(0.98, "feet"),
  34129. name: "Paws",
  34130. image: {
  34131. source: "./media/characters/moonlight/paws.svg",
  34132. extra: 939/939,
  34133. bottom: 50/989
  34134. }
  34135. },
  34136. mouth: {
  34137. height: math.unit(0.48, "feet"),
  34138. name: "Mouth",
  34139. image: {
  34140. source: "./media/characters/moonlight/mouth.svg"
  34141. }
  34142. },
  34143. dick: {
  34144. height: math.unit(1.46, "feet"),
  34145. name: "Dick",
  34146. image: {
  34147. source: "./media/characters/moonlight/dick.svg"
  34148. }
  34149. },
  34150. },
  34151. [
  34152. {
  34153. name: "Normal",
  34154. height: math.unit(6 + 2/12, "feet"),
  34155. default: true
  34156. },
  34157. {
  34158. name: "Macro",
  34159. height: math.unit(300, "feet")
  34160. },
  34161. {
  34162. name: "Macro+",
  34163. height: math.unit(1, "mile")
  34164. },
  34165. {
  34166. name: "Mt. Moon",
  34167. height: math.unit(5, "miles")
  34168. },
  34169. {
  34170. name: "Megamacro",
  34171. height: math.unit(15, "miles")
  34172. },
  34173. ]
  34174. ))
  34175. characterMakers.push(() => makeCharacter(
  34176. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34177. {
  34178. back: {
  34179. height: math.unit(6, "feet"),
  34180. weight: math.unit(150, "lb"),
  34181. name: "Back",
  34182. image: {
  34183. source: "./media/characters/sylen/back.svg",
  34184. extra: 1335/1273,
  34185. bottom: 107/1442
  34186. }
  34187. },
  34188. },
  34189. [
  34190. {
  34191. name: "Normal",
  34192. height: math.unit(5 + 5/12, "feet")
  34193. },
  34194. {
  34195. name: "Megamacro",
  34196. height: math.unit(3, "miles"),
  34197. default: true
  34198. },
  34199. ]
  34200. ))
  34201. characterMakers.push(() => makeCharacter(
  34202. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34203. {
  34204. front: {
  34205. height: math.unit(6, "feet"),
  34206. weight: math.unit(190, "lb"),
  34207. name: "Front",
  34208. image: {
  34209. source: "./media/characters/huttser/front.svg",
  34210. extra: 1152/1058,
  34211. bottom: 23/1175
  34212. }
  34213. },
  34214. side: {
  34215. height: math.unit(6, "feet"),
  34216. weight: math.unit(190, "lb"),
  34217. name: "Side",
  34218. image: {
  34219. source: "./media/characters/huttser/side.svg",
  34220. extra: 1174/1065,
  34221. bottom: 18/1192
  34222. }
  34223. },
  34224. back: {
  34225. height: math.unit(6, "feet"),
  34226. weight: math.unit(190, "lb"),
  34227. name: "Back",
  34228. image: {
  34229. source: "./media/characters/huttser/back.svg",
  34230. extra: 1158/1056,
  34231. bottom: 12/1170
  34232. }
  34233. },
  34234. },
  34235. [
  34236. ]
  34237. ))
  34238. characterMakers.push(() => makeCharacter(
  34239. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34240. {
  34241. side: {
  34242. height: math.unit(12 + 9/12, "feet"),
  34243. weight: math.unit(15000, "lb"),
  34244. name: "Side",
  34245. image: {
  34246. source: "./media/characters/faan/side.svg",
  34247. extra: 2747/2697,
  34248. bottom: 0/2747
  34249. }
  34250. },
  34251. front: {
  34252. height: math.unit(12 + 9/12, "feet"),
  34253. weight: math.unit(15000, "lb"),
  34254. name: "Front",
  34255. image: {
  34256. source: "./media/characters/faan/front.svg",
  34257. extra: 607/571,
  34258. bottom: 24/631
  34259. }
  34260. },
  34261. head: {
  34262. height: math.unit(2.85, "feet"),
  34263. name: "Head",
  34264. image: {
  34265. source: "./media/characters/faan/head.svg"
  34266. }
  34267. },
  34268. headAlt: {
  34269. height: math.unit(3.13, "feet"),
  34270. name: "Head-alt",
  34271. image: {
  34272. source: "./media/characters/faan/head-alt.svg"
  34273. }
  34274. },
  34275. },
  34276. [
  34277. {
  34278. name: "Normal",
  34279. height: math.unit(12 + 9/12, "feet"),
  34280. default: true
  34281. },
  34282. ]
  34283. ))
  34284. characterMakers.push(() => makeCharacter(
  34285. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34286. {
  34287. front: {
  34288. height: math.unit(6, "feet"),
  34289. weight: math.unit(300, "lb"),
  34290. name: "Front",
  34291. image: {
  34292. source: "./media/characters/tanio/front.svg",
  34293. extra: 711/673,
  34294. bottom: 25/736
  34295. }
  34296. },
  34297. },
  34298. [
  34299. {
  34300. name: "Normal",
  34301. height: math.unit(6, "feet"),
  34302. default: true
  34303. },
  34304. ]
  34305. ))
  34306. characterMakers.push(() => makeCharacter(
  34307. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34308. {
  34309. front: {
  34310. height: math.unit(3, "inches"),
  34311. name: "Front",
  34312. image: {
  34313. source: "./media/characters/noboru/front.svg",
  34314. extra: 1039/932,
  34315. bottom: 18/1057
  34316. }
  34317. },
  34318. },
  34319. [
  34320. {
  34321. name: "Micro",
  34322. height: math.unit(3, "inches"),
  34323. default: true
  34324. },
  34325. ]
  34326. ))
  34327. characterMakers.push(() => makeCharacter(
  34328. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34329. {
  34330. front: {
  34331. height: math.unit(1.85, "meters"),
  34332. weight: math.unit(80, "kg"),
  34333. name: "Front",
  34334. image: {
  34335. source: "./media/characters/daniel-barrett/front.svg",
  34336. extra: 355/337,
  34337. bottom: 9/364
  34338. }
  34339. },
  34340. },
  34341. [
  34342. {
  34343. name: "Pico",
  34344. height: math.unit(0.0433, "mm")
  34345. },
  34346. {
  34347. name: "Nano",
  34348. height: math.unit(1.5, "mm")
  34349. },
  34350. {
  34351. name: "Micro",
  34352. height: math.unit(5.3, "cm"),
  34353. default: true
  34354. },
  34355. {
  34356. name: "Normal",
  34357. height: math.unit(1.85, "meters")
  34358. },
  34359. {
  34360. name: "Macro",
  34361. height: math.unit(64.7, "meters")
  34362. },
  34363. {
  34364. name: "Megamacro",
  34365. height: math.unit(2.26, "km")
  34366. },
  34367. {
  34368. name: "Gigamacro",
  34369. height: math.unit(79, "km")
  34370. },
  34371. {
  34372. name: "Teramacro",
  34373. height: math.unit(2765, "km")
  34374. },
  34375. {
  34376. name: "Petamacro",
  34377. height: math.unit(96678, "km")
  34378. },
  34379. ]
  34380. ))
  34381. characterMakers.push(() => makeCharacter(
  34382. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34383. {
  34384. front: {
  34385. height: math.unit(30, "meters"),
  34386. weight: math.unit(400, "tons"),
  34387. name: "Front",
  34388. image: {
  34389. source: "./media/characters/zeel/front.svg",
  34390. extra: 2599/2599,
  34391. bottom: 226/2825
  34392. }
  34393. },
  34394. },
  34395. [
  34396. {
  34397. name: "Macro",
  34398. height: math.unit(30, "meters"),
  34399. default: true
  34400. },
  34401. ]
  34402. ))
  34403. characterMakers.push(() => makeCharacter(
  34404. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34405. {
  34406. front: {
  34407. height: math.unit(6 + 7/12, "feet"),
  34408. weight: math.unit(210, "lb"),
  34409. name: "Front",
  34410. image: {
  34411. source: "./media/characters/tarn/front.svg",
  34412. extra: 3517/3220,
  34413. bottom: 91/3608
  34414. }
  34415. },
  34416. back: {
  34417. height: math.unit(6 + 7/12, "feet"),
  34418. weight: math.unit(210, "lb"),
  34419. name: "Back",
  34420. image: {
  34421. source: "./media/characters/tarn/back.svg",
  34422. extra: 3566/3241,
  34423. bottom: 34/3600
  34424. }
  34425. },
  34426. dick: {
  34427. height: math.unit(1.65, "feet"),
  34428. name: "Dick",
  34429. image: {
  34430. source: "./media/characters/tarn/dick.svg"
  34431. }
  34432. },
  34433. paw: {
  34434. height: math.unit(1.80, "feet"),
  34435. name: "Paw",
  34436. image: {
  34437. source: "./media/characters/tarn/paw.svg"
  34438. }
  34439. },
  34440. tongue: {
  34441. height: math.unit(0.97, "feet"),
  34442. name: "Tongue",
  34443. image: {
  34444. source: "./media/characters/tarn/tongue.svg"
  34445. }
  34446. },
  34447. },
  34448. [
  34449. {
  34450. name: "Micro",
  34451. height: math.unit(4, "inches")
  34452. },
  34453. {
  34454. name: "Normal",
  34455. height: math.unit(6 + 7/12, "feet"),
  34456. default: true
  34457. },
  34458. {
  34459. name: "Macro",
  34460. height: math.unit(300, "feet")
  34461. },
  34462. ]
  34463. ))
  34464. characterMakers.push(() => makeCharacter(
  34465. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34466. {
  34467. front: {
  34468. height: math.unit(5 + 7/12, "feet"),
  34469. weight: math.unit(80, "kg"),
  34470. name: "Front",
  34471. image: {
  34472. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34473. extra: 3023/2865,
  34474. bottom: 33/3056
  34475. }
  34476. },
  34477. back: {
  34478. height: math.unit(5 + 7/12, "feet"),
  34479. weight: math.unit(80, "kg"),
  34480. name: "Back",
  34481. image: {
  34482. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34483. extra: 3020/2886,
  34484. bottom: 30/3050
  34485. }
  34486. },
  34487. dick: {
  34488. height: math.unit(0.98, "feet"),
  34489. name: "Dick",
  34490. image: {
  34491. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34492. }
  34493. },
  34494. anatomy: {
  34495. height: math.unit(2.86, "feet"),
  34496. name: "Anatomy",
  34497. image: {
  34498. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34499. }
  34500. },
  34501. },
  34502. [
  34503. {
  34504. name: "Really Small",
  34505. height: math.unit(2, "inches")
  34506. },
  34507. {
  34508. name: "Micro",
  34509. height: math.unit(5.583, "inches")
  34510. },
  34511. {
  34512. name: "Normal",
  34513. height: math.unit(5 + 7/12, "feet"),
  34514. default: true
  34515. },
  34516. {
  34517. name: "Macro",
  34518. height: math.unit(67, "feet")
  34519. },
  34520. {
  34521. name: "Megamacro",
  34522. height: math.unit(134, "feet")
  34523. },
  34524. ]
  34525. ))
  34526. characterMakers.push(() => makeCharacter(
  34527. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34528. {
  34529. front: {
  34530. height: math.unit(9, "feet"),
  34531. weight: math.unit(120, "lb"),
  34532. name: "Front",
  34533. image: {
  34534. source: "./media/characters/sally/front.svg",
  34535. extra: 1506/1349,
  34536. bottom: 66/1572
  34537. }
  34538. },
  34539. },
  34540. [
  34541. {
  34542. name: "Normal",
  34543. height: math.unit(9, "feet"),
  34544. default: true
  34545. },
  34546. ]
  34547. ))
  34548. characterMakers.push(() => makeCharacter(
  34549. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34550. {
  34551. front: {
  34552. height: math.unit(8, "feet"),
  34553. weight: math.unit(900, "lb"),
  34554. name: "Front",
  34555. image: {
  34556. source: "./media/characters/owen/front.svg",
  34557. extra: 1761/1657,
  34558. bottom: 74/1835
  34559. }
  34560. },
  34561. side: {
  34562. height: math.unit(8, "feet"),
  34563. weight: math.unit(900, "lb"),
  34564. name: "Side",
  34565. image: {
  34566. source: "./media/characters/owen/side.svg",
  34567. extra: 1797/1734,
  34568. bottom: 30/1827
  34569. }
  34570. },
  34571. back: {
  34572. height: math.unit(8, "feet"),
  34573. weight: math.unit(900, "lb"),
  34574. name: "Back",
  34575. image: {
  34576. source: "./media/characters/owen/back.svg",
  34577. extra: 1796/1706,
  34578. bottom: 59/1855
  34579. }
  34580. },
  34581. maw: {
  34582. height: math.unit(1.76, "feet"),
  34583. name: "Maw",
  34584. image: {
  34585. source: "./media/characters/owen/maw.svg"
  34586. }
  34587. },
  34588. },
  34589. [
  34590. {
  34591. name: "Normal",
  34592. height: math.unit(8, "feet"),
  34593. default: true
  34594. },
  34595. ]
  34596. ))
  34597. characterMakers.push(() => makeCharacter(
  34598. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34599. {
  34600. front: {
  34601. height: math.unit(4, "feet"),
  34602. weight: math.unit(400, "lb"),
  34603. name: "Front",
  34604. image: {
  34605. source: "./media/characters/ryth/front.svg",
  34606. extra: 1920/1748,
  34607. bottom: 42/1962
  34608. }
  34609. },
  34610. back: {
  34611. height: math.unit(4, "feet"),
  34612. weight: math.unit(400, "lb"),
  34613. name: "Back",
  34614. image: {
  34615. source: "./media/characters/ryth/back.svg",
  34616. extra: 1897/1690,
  34617. bottom: 89/1986
  34618. }
  34619. },
  34620. mouth: {
  34621. height: math.unit(1.39, "feet"),
  34622. name: "Mouth",
  34623. image: {
  34624. source: "./media/characters/ryth/mouth.svg"
  34625. }
  34626. },
  34627. tailmaw: {
  34628. height: math.unit(1.23, "feet"),
  34629. name: "Tailmaw",
  34630. image: {
  34631. source: "./media/characters/ryth/tailmaw.svg"
  34632. }
  34633. },
  34634. goia: {
  34635. height: math.unit(4, "meters"),
  34636. weight: math.unit(10800, "lb"),
  34637. name: "Goia",
  34638. image: {
  34639. source: "./media/characters/ryth/goia.svg",
  34640. extra: 745/640,
  34641. bottom: 107/852
  34642. }
  34643. },
  34644. goiaFront: {
  34645. height: math.unit(4, "meters"),
  34646. weight: math.unit(10800, "lb"),
  34647. name: "Goia (Front)",
  34648. image: {
  34649. source: "./media/characters/ryth/goia-front.svg",
  34650. extra: 750/586,
  34651. bottom: 114/864
  34652. }
  34653. },
  34654. goiaMaw: {
  34655. height: math.unit(5.55, "feet"),
  34656. name: "Goia Maw",
  34657. image: {
  34658. source: "./media/characters/ryth/goia-maw.svg"
  34659. }
  34660. },
  34661. goiaForepaw: {
  34662. height: math.unit(3.5, "feet"),
  34663. name: "Goia Forepaw",
  34664. image: {
  34665. source: "./media/characters/ryth/goia-forepaw.svg"
  34666. }
  34667. },
  34668. goiaHindpaw: {
  34669. height: math.unit(5.55, "feet"),
  34670. name: "Goia Hindpaw",
  34671. image: {
  34672. source: "./media/characters/ryth/goia-hindpaw.svg"
  34673. }
  34674. },
  34675. },
  34676. [
  34677. {
  34678. name: "Normal",
  34679. height: math.unit(4, "feet"),
  34680. default: true
  34681. },
  34682. ]
  34683. ))
  34684. characterMakers.push(() => makeCharacter(
  34685. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34686. {
  34687. front: {
  34688. height: math.unit(7, "feet"),
  34689. weight: math.unit(180, "lb"),
  34690. name: "Front",
  34691. image: {
  34692. source: "./media/characters/necrolance/front.svg",
  34693. extra: 1062/947,
  34694. bottom: 41/1103
  34695. }
  34696. },
  34697. back: {
  34698. height: math.unit(7, "feet"),
  34699. weight: math.unit(180, "lb"),
  34700. name: "Back",
  34701. image: {
  34702. source: "./media/characters/necrolance/back.svg",
  34703. extra: 1045/984,
  34704. bottom: 14/1059
  34705. }
  34706. },
  34707. wing: {
  34708. height: math.unit(2.67, "feet"),
  34709. name: "Wing",
  34710. image: {
  34711. source: "./media/characters/necrolance/wing.svg"
  34712. }
  34713. },
  34714. },
  34715. [
  34716. {
  34717. name: "Normal",
  34718. height: math.unit(7, "feet"),
  34719. default: true
  34720. },
  34721. ]
  34722. ))
  34723. characterMakers.push(() => makeCharacter(
  34724. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34725. {
  34726. front: {
  34727. height: math.unit(76, "meters"),
  34728. weight: math.unit(30000, "tons"),
  34729. name: "Front",
  34730. image: {
  34731. source: "./media/characters/tyler/front.svg",
  34732. extra: 1640/1640,
  34733. bottom: 114/1754
  34734. }
  34735. },
  34736. },
  34737. [
  34738. {
  34739. name: "Macro",
  34740. height: math.unit(76, "meters"),
  34741. default: true
  34742. },
  34743. ]
  34744. ))
  34745. characterMakers.push(() => makeCharacter(
  34746. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34747. {
  34748. front: {
  34749. height: math.unit(4 + 11/12, "feet"),
  34750. weight: math.unit(132, "lb"),
  34751. name: "Front",
  34752. image: {
  34753. source: "./media/characters/icey/front.svg",
  34754. extra: 2750/2550,
  34755. bottom: 33/2783
  34756. }
  34757. },
  34758. back: {
  34759. height: math.unit(4 + 11/12, "feet"),
  34760. weight: math.unit(132, "lb"),
  34761. name: "Back",
  34762. image: {
  34763. source: "./media/characters/icey/back.svg",
  34764. extra: 2624/2481,
  34765. bottom: 35/2659
  34766. }
  34767. },
  34768. },
  34769. [
  34770. {
  34771. name: "Normal",
  34772. height: math.unit(4 + 11/12, "feet"),
  34773. default: true
  34774. },
  34775. ]
  34776. ))
  34777. characterMakers.push(() => makeCharacter(
  34778. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34779. {
  34780. front: {
  34781. height: math.unit(100, "feet"),
  34782. weight: math.unit(0, "lb"),
  34783. name: "Front",
  34784. image: {
  34785. source: "./media/characters/smile/front.svg",
  34786. extra: 2983/2912,
  34787. bottom: 162/3145
  34788. }
  34789. },
  34790. back: {
  34791. height: math.unit(100, "feet"),
  34792. weight: math.unit(0, "lb"),
  34793. name: "Back",
  34794. image: {
  34795. source: "./media/characters/smile/back.svg",
  34796. extra: 3143/3031,
  34797. bottom: 91/3234
  34798. }
  34799. },
  34800. head: {
  34801. height: math.unit(26.3, "feet"),
  34802. weight: math.unit(0, "lb"),
  34803. name: "Head",
  34804. image: {
  34805. source: "./media/characters/smile/head.svg"
  34806. }
  34807. },
  34808. collar: {
  34809. height: math.unit(5.3, "feet"),
  34810. weight: math.unit(0, "lb"),
  34811. name: "Collar",
  34812. image: {
  34813. source: "./media/characters/smile/collar.svg"
  34814. }
  34815. },
  34816. },
  34817. [
  34818. {
  34819. name: "Macro",
  34820. height: math.unit(100, "feet"),
  34821. default: true
  34822. },
  34823. ]
  34824. ))
  34825. characterMakers.push(() => makeCharacter(
  34826. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34827. {
  34828. dragon: {
  34829. height: math.unit(26, "feet"),
  34830. weight: math.unit(36, "tons"),
  34831. name: "Dragon",
  34832. image: {
  34833. source: "./media/characters/arimphae/dragon.svg",
  34834. extra: 1574/983,
  34835. bottom: 357/1931
  34836. }
  34837. },
  34838. drake: {
  34839. height: math.unit(9, "feet"),
  34840. weight: math.unit(1.5, "tons"),
  34841. name: "Drake",
  34842. image: {
  34843. source: "./media/characters/arimphae/drake.svg",
  34844. extra: 1120/925,
  34845. bottom: 435/1555
  34846. }
  34847. },
  34848. },
  34849. [
  34850. {
  34851. name: "Small",
  34852. height: math.unit(26*5/9, "feet")
  34853. },
  34854. {
  34855. name: "Normal",
  34856. height: math.unit(26, "feet"),
  34857. default: true
  34858. },
  34859. ]
  34860. ))
  34861. characterMakers.push(() => makeCharacter(
  34862. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34863. {
  34864. front: {
  34865. height: math.unit(8 + 9/12, "feet"),
  34866. name: "Front",
  34867. image: {
  34868. source: "./media/characters/xander/front.svg",
  34869. extra: 1237/974,
  34870. bottom: 94/1331
  34871. }
  34872. },
  34873. },
  34874. [
  34875. {
  34876. name: "Normal",
  34877. height: math.unit(8 + 9/12, "feet"),
  34878. default: true
  34879. },
  34880. {
  34881. name: "Gaze Grabber",
  34882. height: math.unit(13 + 8/12, "feet")
  34883. },
  34884. {
  34885. name: "Jaw Dropper",
  34886. height: math.unit(27, "feet")
  34887. },
  34888. {
  34889. name: "Show Stopper",
  34890. height: math.unit(136, "feet")
  34891. },
  34892. {
  34893. name: "Superstar",
  34894. height: math.unit(1.9e6, "miles")
  34895. },
  34896. ]
  34897. ))
  34898. characterMakers.push(() => makeCharacter(
  34899. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34900. {
  34901. side: {
  34902. height: math.unit(2100, "feet"),
  34903. name: "Side",
  34904. image: {
  34905. source: "./media/characters/osiris/side.svg",
  34906. extra: 1105/939,
  34907. bottom: 167/1272
  34908. }
  34909. },
  34910. },
  34911. [
  34912. {
  34913. name: "Macro",
  34914. height: math.unit(2100, "feet"),
  34915. default: true
  34916. },
  34917. ]
  34918. ))
  34919. characterMakers.push(() => makeCharacter(
  34920. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34921. {
  34922. front: {
  34923. height: math.unit(6 + 8/12, "feet"),
  34924. weight: math.unit(225, "lb"),
  34925. name: "Front",
  34926. image: {
  34927. source: "./media/characters/rhys-londe/front.svg",
  34928. extra: 2258/2141,
  34929. bottom: 188/2446
  34930. }
  34931. },
  34932. back: {
  34933. height: math.unit(6 + 8/12, "feet"),
  34934. weight: math.unit(225, "lb"),
  34935. name: "Back",
  34936. image: {
  34937. source: "./media/characters/rhys-londe/back.svg",
  34938. extra: 2237/2137,
  34939. bottom: 63/2300
  34940. }
  34941. },
  34942. frontNsfw: {
  34943. height: math.unit(6 + 8/12, "feet"),
  34944. weight: math.unit(225, "lb"),
  34945. name: "Front (NSFW)",
  34946. image: {
  34947. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34948. extra: 2258/2141,
  34949. bottom: 188/2446
  34950. }
  34951. },
  34952. backNsfw: {
  34953. height: math.unit(6 + 8/12, "feet"),
  34954. weight: math.unit(225, "lb"),
  34955. name: "Back (NSFW)",
  34956. image: {
  34957. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34958. extra: 2237/2137,
  34959. bottom: 63/2300
  34960. }
  34961. },
  34962. dick: {
  34963. height: math.unit(30, "inches"),
  34964. name: "Dick",
  34965. image: {
  34966. source: "./media/characters/rhys-londe/dick.svg"
  34967. }
  34968. },
  34969. maw: {
  34970. height: math.unit(1.6, "feet"),
  34971. name: "Maw",
  34972. image: {
  34973. source: "./media/characters/rhys-londe/maw.svg"
  34974. }
  34975. },
  34976. },
  34977. [
  34978. {
  34979. name: "Normal",
  34980. height: math.unit(6 + 8/12, "feet"),
  34981. default: true
  34982. },
  34983. ]
  34984. ))
  34985. characterMakers.push(() => makeCharacter(
  34986. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34987. {
  34988. front: {
  34989. height: math.unit(3 + 10/12, "feet"),
  34990. weight: math.unit(90, "lb"),
  34991. name: "Front",
  34992. image: {
  34993. source: "./media/characters/taivas-ensim/front.svg",
  34994. extra: 1327/1216,
  34995. bottom: 96/1423
  34996. }
  34997. },
  34998. back: {
  34999. height: math.unit(3 + 10/12, "feet"),
  35000. weight: math.unit(90, "lb"),
  35001. name: "Back",
  35002. image: {
  35003. source: "./media/characters/taivas-ensim/back.svg",
  35004. extra: 1355/1247,
  35005. bottom: 11/1366
  35006. }
  35007. },
  35008. frontNsfw: {
  35009. height: math.unit(3 + 10/12, "feet"),
  35010. weight: math.unit(90, "lb"),
  35011. name: "Front (NSFW)",
  35012. image: {
  35013. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35014. extra: 1327/1216,
  35015. bottom: 96/1423
  35016. }
  35017. },
  35018. backNsfw: {
  35019. height: math.unit(3 + 10/12, "feet"),
  35020. weight: math.unit(90, "lb"),
  35021. name: "Back (NSFW)",
  35022. image: {
  35023. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35024. extra: 1355/1247,
  35025. bottom: 11/1366
  35026. }
  35027. },
  35028. },
  35029. [
  35030. {
  35031. name: "Normal",
  35032. height: math.unit(3 + 10/12, "feet"),
  35033. default: true
  35034. },
  35035. ]
  35036. ))
  35037. characterMakers.push(() => makeCharacter(
  35038. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35039. {
  35040. front: {
  35041. height: math.unit(9 + 6/12, "feet"),
  35042. weight: math.unit(940, "lb"),
  35043. name: "Front",
  35044. image: {
  35045. source: "./media/characters/byliss/front.svg",
  35046. extra: 1327/1290,
  35047. bottom: 82/1409
  35048. }
  35049. },
  35050. back: {
  35051. height: math.unit(9 + 6/12, "feet"),
  35052. weight: math.unit(940, "lb"),
  35053. name: "Back",
  35054. image: {
  35055. source: "./media/characters/byliss/back.svg",
  35056. extra: 1376/1349,
  35057. bottom: 9/1385
  35058. }
  35059. },
  35060. frontNsfw: {
  35061. height: math.unit(9 + 6/12, "feet"),
  35062. weight: math.unit(940, "lb"),
  35063. name: "Front (NSFW)",
  35064. image: {
  35065. source: "./media/characters/byliss/front-nsfw.svg",
  35066. extra: 1327/1290,
  35067. bottom: 82/1409
  35068. }
  35069. },
  35070. backNsfw: {
  35071. height: math.unit(9 + 6/12, "feet"),
  35072. weight: math.unit(940, "lb"),
  35073. name: "Back (NSFW)",
  35074. image: {
  35075. source: "./media/characters/byliss/back-nsfw.svg",
  35076. extra: 1376/1349,
  35077. bottom: 9/1385
  35078. }
  35079. },
  35080. },
  35081. [
  35082. {
  35083. name: "Normal",
  35084. height: math.unit(9 + 6/12, "feet"),
  35085. default: true
  35086. },
  35087. ]
  35088. ))
  35089. characterMakers.push(() => makeCharacter(
  35090. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35091. {
  35092. front: {
  35093. height: math.unit(5 + 2/12, "feet"),
  35094. weight: math.unit(200, "lb"),
  35095. name: "Front",
  35096. image: {
  35097. source: "./media/characters/noraly/front.svg",
  35098. extra: 4985/4773,
  35099. bottom: 150/5135
  35100. }
  35101. },
  35102. full: {
  35103. height: math.unit(5 + 2/12, "feet"),
  35104. weight: math.unit(164, "lb"),
  35105. name: "Full",
  35106. image: {
  35107. source: "./media/characters/noraly/full.svg",
  35108. extra: 1114/1059,
  35109. bottom: 35/1149
  35110. }
  35111. },
  35112. fuller: {
  35113. height: math.unit(5 + 2/12, "feet"),
  35114. weight: math.unit(230, "lb"),
  35115. name: "Fuller",
  35116. image: {
  35117. source: "./media/characters/noraly/fuller.svg",
  35118. extra: 1114/1059,
  35119. bottom: 35/1149
  35120. }
  35121. },
  35122. fullest: {
  35123. height: math.unit(5 + 2/12, "feet"),
  35124. weight: math.unit(300, "lb"),
  35125. name: "Fullest",
  35126. image: {
  35127. source: "./media/characters/noraly/fullest.svg",
  35128. extra: 1114/1059,
  35129. bottom: 35/1149
  35130. }
  35131. },
  35132. },
  35133. [
  35134. {
  35135. name: "Normal",
  35136. height: math.unit(5 + 2/12, "feet"),
  35137. default: true
  35138. },
  35139. ]
  35140. ))
  35141. characterMakers.push(() => makeCharacter(
  35142. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35143. {
  35144. front: {
  35145. height: math.unit(5 + 2/12, "feet"),
  35146. weight: math.unit(210, "lb"),
  35147. name: "Front",
  35148. image: {
  35149. source: "./media/characters/pera/front.svg",
  35150. extra: 1560/1531,
  35151. bottom: 165/1725
  35152. }
  35153. },
  35154. back: {
  35155. height: math.unit(5 + 2/12, "feet"),
  35156. weight: math.unit(210, "lb"),
  35157. name: "Back",
  35158. image: {
  35159. source: "./media/characters/pera/back.svg",
  35160. extra: 1523/1493,
  35161. bottom: 152/1675
  35162. }
  35163. },
  35164. dick: {
  35165. height: math.unit(2.4, "feet"),
  35166. name: "Dick",
  35167. image: {
  35168. source: "./media/characters/pera/dick.svg"
  35169. }
  35170. },
  35171. },
  35172. [
  35173. {
  35174. name: "Normal",
  35175. height: math.unit(5 + 2/12, "feet"),
  35176. default: true
  35177. },
  35178. ]
  35179. ))
  35180. characterMakers.push(() => makeCharacter(
  35181. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35182. {
  35183. front: {
  35184. height: math.unit(12, "feet"),
  35185. weight: math.unit(3200, "lb"),
  35186. name: "Front",
  35187. image: {
  35188. source: "./media/characters/julian/front.svg",
  35189. extra: 2962/2701,
  35190. bottom: 184/3146
  35191. }
  35192. },
  35193. maw: {
  35194. height: math.unit(5.35, "feet"),
  35195. name: "Maw",
  35196. image: {
  35197. source: "./media/characters/julian/maw.svg"
  35198. }
  35199. },
  35200. paw: {
  35201. height: math.unit(3.07, "feet"),
  35202. name: "Paw",
  35203. image: {
  35204. source: "./media/characters/julian/paw.svg"
  35205. }
  35206. },
  35207. },
  35208. [
  35209. {
  35210. name: "Default",
  35211. height: math.unit(12, "feet"),
  35212. default: true
  35213. },
  35214. {
  35215. name: "Big",
  35216. height: math.unit(50, "feet")
  35217. },
  35218. {
  35219. name: "Really Big",
  35220. height: math.unit(1, "mile")
  35221. },
  35222. {
  35223. name: "Extremely Big",
  35224. height: math.unit(100, "miles")
  35225. },
  35226. {
  35227. name: "Planet Hugger",
  35228. height: math.unit(200, "megameters")
  35229. },
  35230. {
  35231. name: "Unreasonably Big",
  35232. height: math.unit(1e300, "meters")
  35233. },
  35234. ]
  35235. ))
  35236. characterMakers.push(() => makeCharacter(
  35237. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35238. {
  35239. solgooleo: {
  35240. height: math.unit(4, "meters"),
  35241. weight: math.unit(6000*1.5, "kg"),
  35242. volume: math.unit(6000, "liters"),
  35243. name: "Solgooleo",
  35244. image: {
  35245. source: "./media/characters/pi/solgooleo.svg",
  35246. extra: 388/331,
  35247. bottom: 29/417
  35248. }
  35249. },
  35250. },
  35251. [
  35252. {
  35253. name: "Normal",
  35254. height: math.unit(4, "meters"),
  35255. default: true
  35256. },
  35257. ]
  35258. ))
  35259. characterMakers.push(() => makeCharacter(
  35260. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35261. {
  35262. front: {
  35263. height: math.unit(8, "feet"),
  35264. weight: math.unit(4, "tons"),
  35265. name: "Front",
  35266. image: {
  35267. source: "./media/characters/shaun/front.svg",
  35268. extra: 503/495,
  35269. bottom: 20/523
  35270. }
  35271. },
  35272. back: {
  35273. height: math.unit(8, "feet"),
  35274. weight: math.unit(4, "tons"),
  35275. name: "Back",
  35276. image: {
  35277. source: "./media/characters/shaun/back.svg",
  35278. extra: 487/480,
  35279. bottom: 20/507
  35280. }
  35281. },
  35282. },
  35283. [
  35284. {
  35285. name: "Lorg",
  35286. height: math.unit(8, "feet"),
  35287. default: true
  35288. },
  35289. ]
  35290. ))
  35291. characterMakers.push(() => makeCharacter(
  35292. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35293. {
  35294. frontAnthro: {
  35295. height: math.unit(7, "feet"),
  35296. name: "Front",
  35297. image: {
  35298. source: "./media/characters/sini/front-anthro.svg",
  35299. extra: 726/678,
  35300. bottom: 35/761
  35301. },
  35302. form: "anthro",
  35303. default: true
  35304. },
  35305. backAnthro: {
  35306. height: math.unit(7, "feet"),
  35307. name: "Back",
  35308. image: {
  35309. source: "./media/characters/sini/back-anthro.svg",
  35310. extra: 743/701,
  35311. bottom: 12/755
  35312. },
  35313. form: "anthro",
  35314. },
  35315. frontAnthroNsfw: {
  35316. height: math.unit(7, "feet"),
  35317. name: "Front (NSFW)",
  35318. image: {
  35319. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35320. extra: 726/678,
  35321. bottom: 35/761
  35322. },
  35323. form: "anthro"
  35324. },
  35325. backAnthroNsfw: {
  35326. height: math.unit(7, "feet"),
  35327. name: "Back (NSFW)",
  35328. image: {
  35329. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35330. extra: 743/701,
  35331. bottom: 12/755
  35332. },
  35333. form: "anthro",
  35334. },
  35335. mawAnthro: {
  35336. height: math.unit(2.14, "feet"),
  35337. name: "Maw",
  35338. image: {
  35339. source: "./media/characters/sini/maw-anthro.svg"
  35340. },
  35341. form: "anthro"
  35342. },
  35343. dick: {
  35344. height: math.unit(1.45, "feet"),
  35345. name: "Dick",
  35346. image: {
  35347. source: "./media/characters/sini/dick-anthro.svg"
  35348. },
  35349. form: "anthro"
  35350. },
  35351. feral: {
  35352. height: math.unit(16, "feet"),
  35353. name: "Feral",
  35354. image: {
  35355. source: "./media/characters/sini/feral.svg",
  35356. extra: 814/605,
  35357. bottom: 11/825
  35358. },
  35359. form: "feral",
  35360. default: true
  35361. },
  35362. feralNsfw: {
  35363. height: math.unit(16, "feet"),
  35364. name: "Feral (NSFW)",
  35365. image: {
  35366. source: "./media/characters/sini/feral-nsfw.svg",
  35367. extra: 814/605,
  35368. bottom: 11/825
  35369. },
  35370. form: "feral"
  35371. },
  35372. mawFeral: {
  35373. height: math.unit(5.66, "feet"),
  35374. name: "Maw",
  35375. image: {
  35376. source: "./media/characters/sini/maw-feral.svg"
  35377. },
  35378. form: "feral",
  35379. },
  35380. pawFeral: {
  35381. height: math.unit(5.17, "feet"),
  35382. name: "Paw",
  35383. image: {
  35384. source: "./media/characters/sini/paw-feral.svg"
  35385. },
  35386. form: "feral",
  35387. },
  35388. rumpFeral: {
  35389. height: math.unit(13.11, "feet"),
  35390. name: "Rump",
  35391. image: {
  35392. source: "./media/characters/sini/rump-feral.svg"
  35393. },
  35394. form: "feral",
  35395. },
  35396. dickFeral: {
  35397. height: math.unit(1, "feet"),
  35398. name: "Dick",
  35399. image: {
  35400. source: "./media/characters/sini/dick-feral.svg"
  35401. },
  35402. form: "feral",
  35403. },
  35404. eyeFeral: {
  35405. height: math.unit(1.23, "feet"),
  35406. name: "Eye",
  35407. image: {
  35408. source: "./media/characters/sini/eye-feral.svg"
  35409. },
  35410. form: "feral",
  35411. },
  35412. },
  35413. [
  35414. {
  35415. name: "Normal",
  35416. height: math.unit(7, "feet"),
  35417. default: true,
  35418. form: "anthro"
  35419. },
  35420. {
  35421. name: "Normal",
  35422. height: math.unit(16, "feet"),
  35423. default: true,
  35424. form: "feral"
  35425. },
  35426. ],
  35427. {
  35428. "anthro": {
  35429. name: "Anthro",
  35430. default: true
  35431. },
  35432. "feral": {
  35433. name: "Feral",
  35434. }
  35435. }
  35436. ))
  35437. characterMakers.push(() => makeCharacter(
  35438. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35439. {
  35440. side: {
  35441. height: math.unit(47.2, "meters"),
  35442. weight: math.unit(10000, "tons"),
  35443. name: "Side",
  35444. image: {
  35445. source: "./media/characters/raylldo/side.svg",
  35446. extra: 2363/642,
  35447. bottom: 221/2584
  35448. }
  35449. },
  35450. top: {
  35451. height: math.unit(240, "meters"),
  35452. weight: math.unit(10000, "tons"),
  35453. name: "Top",
  35454. image: {
  35455. source: "./media/characters/raylldo/top.svg"
  35456. }
  35457. },
  35458. bottom: {
  35459. height: math.unit(240, "meters"),
  35460. weight: math.unit(10000, "tons"),
  35461. name: "Bottom",
  35462. image: {
  35463. source: "./media/characters/raylldo/bottom.svg"
  35464. }
  35465. },
  35466. head: {
  35467. height: math.unit(38.6, "meters"),
  35468. name: "Head",
  35469. image: {
  35470. source: "./media/characters/raylldo/head.svg",
  35471. extra: 1335/1112,
  35472. bottom: 0/1335
  35473. }
  35474. },
  35475. maw: {
  35476. height: math.unit(16.37, "meters"),
  35477. name: "Maw",
  35478. image: {
  35479. source: "./media/characters/raylldo/maw.svg",
  35480. extra: 883/660,
  35481. bottom: 0/883
  35482. },
  35483. extraAttributes: {
  35484. preyCapacity: {
  35485. name: "Capacity",
  35486. power: 3,
  35487. type: "volume",
  35488. base: math.unit(1000, "people")
  35489. },
  35490. tongueSize: {
  35491. name: "Tongue Size",
  35492. power: 2,
  35493. type: "area",
  35494. base: math.unit(21, "m^2")
  35495. }
  35496. }
  35497. },
  35498. forepaw: {
  35499. height: math.unit(18, "meters"),
  35500. name: "Forepaw",
  35501. image: {
  35502. source: "./media/characters/raylldo/forepaw.svg"
  35503. }
  35504. },
  35505. hindpaw: {
  35506. height: math.unit(23, "meters"),
  35507. name: "Hindpaw",
  35508. image: {
  35509. source: "./media/characters/raylldo/hindpaw.svg"
  35510. }
  35511. },
  35512. genitals: {
  35513. height: math.unit(42, "meters"),
  35514. name: "Genitals",
  35515. image: {
  35516. source: "./media/characters/raylldo/genitals.svg"
  35517. }
  35518. },
  35519. },
  35520. [
  35521. {
  35522. name: "Normal",
  35523. height: math.unit(47.2, "meters"),
  35524. default: true
  35525. },
  35526. ]
  35527. ))
  35528. characterMakers.push(() => makeCharacter(
  35529. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35530. {
  35531. anthroFront: {
  35532. height: math.unit(9, "feet"),
  35533. weight: math.unit(600, "lb"),
  35534. name: "Anthro (Front)",
  35535. image: {
  35536. source: "./media/characters/glint/anthro-front.svg",
  35537. extra: 1097/1018,
  35538. bottom: 28/1125
  35539. }
  35540. },
  35541. anthroBack: {
  35542. height: math.unit(9, "feet"),
  35543. weight: math.unit(600, "lb"),
  35544. name: "Anthro (Back)",
  35545. image: {
  35546. source: "./media/characters/glint/anthro-back.svg",
  35547. extra: 1154/997,
  35548. bottom: 36/1190
  35549. }
  35550. },
  35551. feral: {
  35552. height: math.unit(11, "feet"),
  35553. weight: math.unit(50000, "lb"),
  35554. name: "Feral",
  35555. image: {
  35556. source: "./media/characters/glint/feral.svg",
  35557. extra: 3035/1585,
  35558. bottom: 1169/4204
  35559. }
  35560. },
  35561. dickAnthro: {
  35562. height: math.unit(0.7, "meters"),
  35563. name: "Dick (Anthro)",
  35564. image: {
  35565. source: "./media/characters/glint/dick-anthro.svg"
  35566. }
  35567. },
  35568. dickFeral: {
  35569. height: math.unit(2.65, "meters"),
  35570. name: "Dick (Feral)",
  35571. image: {
  35572. source: "./media/characters/glint/dick-feral.svg"
  35573. }
  35574. },
  35575. slitHidden: {
  35576. height: math.unit(5.85, "meters"),
  35577. name: "Slit (Hidden)",
  35578. image: {
  35579. source: "./media/characters/glint/slit-hidden.svg"
  35580. }
  35581. },
  35582. slitErect: {
  35583. height: math.unit(5.85, "meters"),
  35584. name: "Slit (Erect)",
  35585. image: {
  35586. source: "./media/characters/glint/slit-erect.svg"
  35587. }
  35588. },
  35589. mawAnthro: {
  35590. height: math.unit(0.63, "meters"),
  35591. name: "Maw (Anthro)",
  35592. image: {
  35593. source: "./media/characters/glint/maw.svg"
  35594. }
  35595. },
  35596. mawFeral: {
  35597. height: math.unit(2.89, "meters"),
  35598. name: "Maw (Feral)",
  35599. image: {
  35600. source: "./media/characters/glint/maw.svg"
  35601. }
  35602. },
  35603. },
  35604. [
  35605. {
  35606. name: "Normal",
  35607. height: math.unit(9, "feet"),
  35608. default: true
  35609. },
  35610. ]
  35611. ))
  35612. characterMakers.push(() => makeCharacter(
  35613. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35614. {
  35615. side: {
  35616. height: math.unit(15, "feet"),
  35617. weight: math.unit(5000, "kg"),
  35618. name: "Side",
  35619. image: {
  35620. source: "./media/characters/kairne/side.svg",
  35621. extra: 979/811,
  35622. bottom: 13/992
  35623. }
  35624. },
  35625. front: {
  35626. height: math.unit(15, "feet"),
  35627. weight: math.unit(5000, "kg"),
  35628. name: "Front",
  35629. image: {
  35630. source: "./media/characters/kairne/front.svg",
  35631. extra: 908/814,
  35632. bottom: 26/934
  35633. }
  35634. },
  35635. sideNsfw: {
  35636. height: math.unit(15, "feet"),
  35637. weight: math.unit(5000, "kg"),
  35638. name: "Side (NSFW)",
  35639. image: {
  35640. source: "./media/characters/kairne/side-nsfw.svg",
  35641. extra: 979/811,
  35642. bottom: 13/992
  35643. }
  35644. },
  35645. frontNsfw: {
  35646. height: math.unit(15, "feet"),
  35647. weight: math.unit(5000, "kg"),
  35648. name: "Front (NSFW)",
  35649. image: {
  35650. source: "./media/characters/kairne/front-nsfw.svg",
  35651. extra: 908/814,
  35652. bottom: 26/934
  35653. }
  35654. },
  35655. dickCaged: {
  35656. height: math.unit(0.65, "meters"),
  35657. name: "Dick-caged",
  35658. image: {
  35659. source: "./media/characters/kairne/dick-caged.svg"
  35660. }
  35661. },
  35662. dick: {
  35663. height: math.unit(0.79, "meters"),
  35664. name: "Dick",
  35665. image: {
  35666. source: "./media/characters/kairne/dick.svg"
  35667. }
  35668. },
  35669. genitals: {
  35670. height: math.unit(1.29, "meters"),
  35671. name: "Genitals",
  35672. image: {
  35673. source: "./media/characters/kairne/genitals.svg"
  35674. }
  35675. },
  35676. maw: {
  35677. height: math.unit(1.73, "meters"),
  35678. name: "Maw",
  35679. image: {
  35680. source: "./media/characters/kairne/maw.svg"
  35681. }
  35682. },
  35683. },
  35684. [
  35685. {
  35686. name: "Normal",
  35687. height: math.unit(15, "feet"),
  35688. default: true
  35689. },
  35690. ]
  35691. ))
  35692. characterMakers.push(() => makeCharacter(
  35693. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35694. {
  35695. front: {
  35696. height: math.unit(5 + 8/12, "feet"),
  35697. weight: math.unit(139, "lb"),
  35698. name: "Front",
  35699. image: {
  35700. source: "./media/characters/biscuit-jackal/front.svg",
  35701. extra: 2106/1961,
  35702. bottom: 58/2164
  35703. }
  35704. },
  35705. back: {
  35706. height: math.unit(5 + 8/12, "feet"),
  35707. weight: math.unit(139, "lb"),
  35708. name: "Back",
  35709. image: {
  35710. source: "./media/characters/biscuit-jackal/back.svg",
  35711. extra: 2132/1976,
  35712. bottom: 57/2189
  35713. }
  35714. },
  35715. werejackal: {
  35716. height: math.unit(6 + 3/12, "feet"),
  35717. weight: math.unit(188, "lb"),
  35718. name: "Werejackal",
  35719. image: {
  35720. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35721. extra: 2373/2178,
  35722. bottom: 53/2426
  35723. }
  35724. },
  35725. },
  35726. [
  35727. {
  35728. name: "Normal",
  35729. height: math.unit(5 + 8/12, "feet"),
  35730. default: true
  35731. },
  35732. ]
  35733. ))
  35734. characterMakers.push(() => makeCharacter(
  35735. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35736. {
  35737. front: {
  35738. height: math.unit(140, "cm"),
  35739. weight: math.unit(45, "kg"),
  35740. name: "Front",
  35741. image: {
  35742. source: "./media/characters/tayra-white/front.svg",
  35743. extra: 2229/2192,
  35744. bottom: 75/2304
  35745. }
  35746. },
  35747. },
  35748. [
  35749. {
  35750. name: "Normal",
  35751. height: math.unit(140, "cm"),
  35752. default: true
  35753. },
  35754. ]
  35755. ))
  35756. characterMakers.push(() => makeCharacter(
  35757. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35758. {
  35759. front: {
  35760. height: math.unit(4 + 5/12, "feet"),
  35761. name: "Front",
  35762. image: {
  35763. source: "./media/characters/scoop/front.svg",
  35764. extra: 1257/1136,
  35765. bottom: 69/1326
  35766. }
  35767. },
  35768. back: {
  35769. height: math.unit(4 + 5/12, "feet"),
  35770. name: "Back",
  35771. image: {
  35772. source: "./media/characters/scoop/back.svg",
  35773. extra: 1321/1152,
  35774. bottom: 32/1353
  35775. }
  35776. },
  35777. maw: {
  35778. height: math.unit(0.68, "feet"),
  35779. name: "Maw",
  35780. image: {
  35781. source: "./media/characters/scoop/maw.svg"
  35782. }
  35783. },
  35784. },
  35785. [
  35786. {
  35787. name: "Really Small",
  35788. height: math.unit(1, "mm")
  35789. },
  35790. {
  35791. name: "Micro",
  35792. height: math.unit(1, "inch")
  35793. },
  35794. {
  35795. name: "Normal",
  35796. height: math.unit(4 + 5/12, "feet"),
  35797. default: true
  35798. },
  35799. {
  35800. name: "Macro",
  35801. height: math.unit(200, "feet")
  35802. },
  35803. {
  35804. name: "Megamacro",
  35805. height: math.unit(3240, "feet")
  35806. },
  35807. {
  35808. name: "Teramacro",
  35809. height: math.unit(2500, "miles")
  35810. },
  35811. ]
  35812. ))
  35813. characterMakers.push(() => makeCharacter(
  35814. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35815. {
  35816. front: {
  35817. height: math.unit(15 + 7/12, "feet"),
  35818. weight: math.unit(1150, "tons"),
  35819. name: "Front",
  35820. image: {
  35821. source: "./media/characters/saphinara/front.svg",
  35822. extra: 1837/1643,
  35823. bottom: 84/1921
  35824. },
  35825. form: "normal",
  35826. default: true
  35827. },
  35828. side: {
  35829. height: math.unit(15 + 7/12, "feet"),
  35830. weight: math.unit(1150, "tons"),
  35831. name: "Side",
  35832. image: {
  35833. source: "./media/characters/saphinara/side.svg",
  35834. extra: 605/547,
  35835. bottom: 6/611
  35836. },
  35837. form: "normal"
  35838. },
  35839. back: {
  35840. height: math.unit(15 + 7/12, "feet"),
  35841. weight: math.unit(1150, "tons"),
  35842. name: "Back",
  35843. image: {
  35844. source: "./media/characters/saphinara/back.svg",
  35845. extra: 591/531,
  35846. bottom: 13/604
  35847. },
  35848. form: "normal"
  35849. },
  35850. frontTail: {
  35851. height: math.unit(15 + 7/12, "feet"),
  35852. weight: math.unit(1150, "tons"),
  35853. name: "Front (Full Tail)",
  35854. image: {
  35855. source: "./media/characters/saphinara/front-tail.svg",
  35856. extra: 2256/1630,
  35857. bottom: 261/2517
  35858. },
  35859. form: "normal"
  35860. },
  35861. insides: {
  35862. height: math.unit(11.92, "feet"),
  35863. name: "Insides",
  35864. image: {
  35865. source: "./media/characters/saphinara/insides.svg"
  35866. },
  35867. form: "normal"
  35868. },
  35869. head: {
  35870. height: math.unit(4.17, "feet"),
  35871. name: "Head",
  35872. image: {
  35873. source: "./media/characters/saphinara/head.svg"
  35874. },
  35875. form: "normal"
  35876. },
  35877. tongue: {
  35878. height: math.unit(4.60, "feet"),
  35879. name: "Tongue",
  35880. image: {
  35881. source: "./media/characters/saphinara/tongue.svg"
  35882. },
  35883. form: "normal"
  35884. },
  35885. headEnraged: {
  35886. height: math.unit(5.55, "feet"),
  35887. name: "Head (Enraged)",
  35888. image: {
  35889. source: "./media/characters/saphinara/head-enraged.svg"
  35890. },
  35891. form: "normal"
  35892. },
  35893. wings: {
  35894. height: math.unit(11.95, "feet"),
  35895. name: "Wings",
  35896. image: {
  35897. source: "./media/characters/saphinara/wings.svg"
  35898. },
  35899. form: "normal"
  35900. },
  35901. feathers: {
  35902. height: math.unit(8.92, "feet"),
  35903. name: "Feathers",
  35904. image: {
  35905. source: "./media/characters/saphinara/feathers.svg"
  35906. },
  35907. form: "normal"
  35908. },
  35909. shackles: {
  35910. height: math.unit(2, "feet"),
  35911. name: "Shackles",
  35912. image: {
  35913. source: "./media/characters/saphinara/shackles.svg"
  35914. },
  35915. form: "normal"
  35916. },
  35917. eyes: {
  35918. height: math.unit(1.331, "feet"),
  35919. name: "Eyes",
  35920. image: {
  35921. source: "./media/characters/saphinara/eyes.svg"
  35922. },
  35923. form: "normal"
  35924. },
  35925. eyesEnraged: {
  35926. height: math.unit(1.331, "feet"),
  35927. name: "Eyes (Enraged)",
  35928. image: {
  35929. source: "./media/characters/saphinara/eyes-enraged.svg"
  35930. },
  35931. form: "normal"
  35932. },
  35933. trueFormSide: {
  35934. height: math.unit(200, "feet"),
  35935. weight: math.unit(1e7, "tons"),
  35936. name: "Side",
  35937. image: {
  35938. source: "./media/characters/saphinara/true-form-side.svg",
  35939. extra: 1399/770,
  35940. bottom: 97/1496
  35941. },
  35942. form: "true-form",
  35943. default: true
  35944. },
  35945. trueFormMaw: {
  35946. height: math.unit(71.5, "feet"),
  35947. name: "Maw",
  35948. image: {
  35949. source: "./media/characters/saphinara/true-form-maw.svg",
  35950. extra: 2302/1453,
  35951. bottom: 0/2302
  35952. },
  35953. form: "true-form"
  35954. },
  35955. meowberusSide: {
  35956. height: math.unit(75, "feet"),
  35957. weight: math.unit(180000, "kg"),
  35958. preyCapacity: math.unit(50000, "people"),
  35959. name: "Side",
  35960. image: {
  35961. source: "./media/characters/saphinara/meowberus-side.svg",
  35962. extra: 1400/711,
  35963. bottom: 126/1526
  35964. },
  35965. form: "meowberus",
  35966. extraAttributes: {
  35967. "pawArea": {
  35968. name: "Paw Size",
  35969. power: 2,
  35970. type: "area",
  35971. base: math.unit(35, "m^2")
  35972. }
  35973. }
  35974. },
  35975. },
  35976. [
  35977. {
  35978. name: "Normal",
  35979. height: math.unit(15 + 7/12, "feet"),
  35980. default: true,
  35981. form: "normal"
  35982. },
  35983. {
  35984. name: "Angry",
  35985. height: math.unit(30 + 6/12, "feet"),
  35986. form: "normal"
  35987. },
  35988. {
  35989. name: "Enraged",
  35990. height: math.unit(102 + 1/12, "feet"),
  35991. form: "normal"
  35992. },
  35993. {
  35994. name: "True",
  35995. height: math.unit(200, "feet"),
  35996. default: true,
  35997. form: "true-form"
  35998. },
  35999. {
  36000. name: "Normal",
  36001. height: math.unit(75, "feet"),
  36002. default: true,
  36003. form: "meowberus"
  36004. },
  36005. ],
  36006. {
  36007. "normal": {
  36008. name: "Normal",
  36009. default: true
  36010. },
  36011. "true-form": {
  36012. name: "True Form"
  36013. },
  36014. "meowberus": {
  36015. name: "Meowberus",
  36016. },
  36017. }
  36018. ))
  36019. characterMakers.push(() => makeCharacter(
  36020. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36021. {
  36022. front: {
  36023. height: math.unit(6 + 8/12, "feet"),
  36024. weight: math.unit(300, "lb"),
  36025. name: "Front",
  36026. image: {
  36027. source: "./media/characters/jrain/front.svg",
  36028. extra: 3039/2865,
  36029. bottom: 399/3438
  36030. }
  36031. },
  36032. back: {
  36033. height: math.unit(6 + 8/12, "feet"),
  36034. weight: math.unit(300, "lb"),
  36035. name: "Back",
  36036. image: {
  36037. source: "./media/characters/jrain/back.svg",
  36038. extra: 3089/2938,
  36039. bottom: 172/3261
  36040. }
  36041. },
  36042. head: {
  36043. height: math.unit(2.14, "feet"),
  36044. name: "Head",
  36045. image: {
  36046. source: "./media/characters/jrain/head.svg"
  36047. }
  36048. },
  36049. maw: {
  36050. height: math.unit(1.77, "feet"),
  36051. name: "Maw",
  36052. image: {
  36053. source: "./media/characters/jrain/maw.svg"
  36054. }
  36055. },
  36056. leftHand: {
  36057. height: math.unit(1.1, "feet"),
  36058. name: "Left Hand",
  36059. image: {
  36060. source: "./media/characters/jrain/left-hand.svg"
  36061. }
  36062. },
  36063. rightHand: {
  36064. height: math.unit(1.1, "feet"),
  36065. name: "Right Hand",
  36066. image: {
  36067. source: "./media/characters/jrain/right-hand.svg"
  36068. }
  36069. },
  36070. eye: {
  36071. height: math.unit(0.35, "feet"),
  36072. name: "Eye",
  36073. image: {
  36074. source: "./media/characters/jrain/eye.svg"
  36075. }
  36076. },
  36077. },
  36078. [
  36079. {
  36080. name: "Normal",
  36081. height: math.unit(6 + 8/12, "feet"),
  36082. default: true
  36083. },
  36084. {
  36085. name: "Casually Large",
  36086. height: math.unit(25, "feet")
  36087. },
  36088. {
  36089. name: "Giant",
  36090. height: math.unit(100, "feet")
  36091. },
  36092. {
  36093. name: "Kaiju",
  36094. height: math.unit(300, "feet")
  36095. },
  36096. ]
  36097. ))
  36098. characterMakers.push(() => makeCharacter(
  36099. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36100. {
  36101. dragon: {
  36102. height: math.unit(5, "meters"),
  36103. name: "Dragon",
  36104. image: {
  36105. source: "./media/characters/sabrina/dragon.svg",
  36106. extra: 3670 / 2365,
  36107. bottom: 333 / 4003
  36108. }
  36109. },
  36110. gryphon: {
  36111. height: math.unit(3, "meters"),
  36112. name: "Gryphon",
  36113. image: {
  36114. source: "./media/characters/sabrina/gryphon.svg",
  36115. extra: 1576 / 945,
  36116. bottom: 71 / 1647
  36117. }
  36118. },
  36119. snake: {
  36120. height: math.unit(12, "meters"),
  36121. name: "Snake",
  36122. image: {
  36123. source: "./media/characters/sabrina/snake.svg",
  36124. extra: 1758 / 1320,
  36125. bottom: 186 / 1944
  36126. }
  36127. },
  36128. collar: {
  36129. height: math.unit(1.86, "meters"),
  36130. name: "Collar",
  36131. image: {
  36132. source: "./media/characters/sabrina/collar.svg"
  36133. }
  36134. },
  36135. eye: {
  36136. height: math.unit(0.53, "meters"),
  36137. name: "Eye",
  36138. image: {
  36139. source: "./media/characters/sabrina/eye.svg"
  36140. }
  36141. },
  36142. foot: {
  36143. height: math.unit(1.86, "meters"),
  36144. name: "Foot",
  36145. image: {
  36146. source: "./media/characters/sabrina/foot.svg"
  36147. }
  36148. },
  36149. hand: {
  36150. height: math.unit(1.32, "meters"),
  36151. name: "Hand",
  36152. image: {
  36153. source: "./media/characters/sabrina/hand.svg"
  36154. }
  36155. },
  36156. head: {
  36157. height: math.unit(2.44, "meters"),
  36158. name: "Head",
  36159. image: {
  36160. source: "./media/characters/sabrina/head.svg"
  36161. }
  36162. },
  36163. headAngry: {
  36164. height: math.unit(2.44, "meters"),
  36165. name: "Head (Angry))",
  36166. image: {
  36167. source: "./media/characters/sabrina/head-angry.svg"
  36168. }
  36169. },
  36170. maw: {
  36171. height: math.unit(1.65, "meters"),
  36172. name: "Maw",
  36173. image: {
  36174. source: "./media/characters/sabrina/maw.svg"
  36175. }
  36176. },
  36177. spikes: {
  36178. height: math.unit(1.69, "meters"),
  36179. name: "Spikes",
  36180. image: {
  36181. source: "./media/characters/sabrina/spikes.svg"
  36182. }
  36183. },
  36184. stomach: {
  36185. height: math.unit(1.15, "meters"),
  36186. name: "Stomach",
  36187. image: {
  36188. source: "./media/characters/sabrina/stomach.svg"
  36189. }
  36190. },
  36191. tongue: {
  36192. height: math.unit(1.27, "meters"),
  36193. name: "Tongue",
  36194. image: {
  36195. source: "./media/characters/sabrina/tongue.svg"
  36196. }
  36197. },
  36198. wingDorsal: {
  36199. height: math.unit(4.85, "meters"),
  36200. name: "Wing (Dorsal)",
  36201. image: {
  36202. source: "./media/characters/sabrina/wing-dorsal.svg"
  36203. }
  36204. },
  36205. wingVentral: {
  36206. height: math.unit(4.85, "meters"),
  36207. name: "Wing (Ventral)",
  36208. image: {
  36209. source: "./media/characters/sabrina/wing-ventral.svg"
  36210. }
  36211. },
  36212. },
  36213. [
  36214. {
  36215. name: "Normal",
  36216. height: math.unit(5, "meters"),
  36217. default: true
  36218. },
  36219. ]
  36220. ))
  36221. characterMakers.push(() => makeCharacter(
  36222. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36223. {
  36224. frontMaid: {
  36225. height: math.unit(5 + 5/12, "feet"),
  36226. weight: math.unit(130, "lb"),
  36227. name: "Front (Maid)",
  36228. image: {
  36229. source: "./media/characters/midnight-tales/front-maid.svg",
  36230. extra: 489/454,
  36231. bottom: 61/550
  36232. }
  36233. },
  36234. frontFormal: {
  36235. height: math.unit(5 + 5/12, "feet"),
  36236. weight: math.unit(130, "lb"),
  36237. name: "Front (Formal)",
  36238. image: {
  36239. source: "./media/characters/midnight-tales/front-formal.svg",
  36240. extra: 489/454,
  36241. bottom: 61/550
  36242. }
  36243. },
  36244. back: {
  36245. height: math.unit(5 + 5/12, "feet"),
  36246. weight: math.unit(130, "lb"),
  36247. name: "Back",
  36248. image: {
  36249. source: "./media/characters/midnight-tales/back.svg",
  36250. extra: 498/456,
  36251. bottom: 33/531
  36252. }
  36253. },
  36254. frontBeast: {
  36255. height: math.unit(40, "feet"),
  36256. weight: math.unit(64000, "lb"),
  36257. name: "Front (Beast)",
  36258. image: {
  36259. source: "./media/characters/midnight-tales/front-beast.svg",
  36260. extra: 927/860,
  36261. bottom: 53/980
  36262. }
  36263. },
  36264. backBeast: {
  36265. height: math.unit(40, "feet"),
  36266. weight: math.unit(64000, "lb"),
  36267. name: "Back (Beast)",
  36268. image: {
  36269. source: "./media/characters/midnight-tales/back-beast.svg",
  36270. extra: 929/855,
  36271. bottom: 16/945
  36272. }
  36273. },
  36274. footBeast: {
  36275. height: math.unit(6.7, "feet"),
  36276. name: "Foot (Beast)",
  36277. image: {
  36278. source: "./media/characters/midnight-tales/foot-beast.svg"
  36279. }
  36280. },
  36281. headBeast: {
  36282. height: math.unit(8, "feet"),
  36283. name: "Head (Beast)",
  36284. image: {
  36285. source: "./media/characters/midnight-tales/head-beast.svg"
  36286. }
  36287. },
  36288. },
  36289. [
  36290. {
  36291. name: "Normal",
  36292. height: math.unit(5 + 5 / 12, "feet"),
  36293. default: true
  36294. },
  36295. {
  36296. name: "Macro",
  36297. height: math.unit(25, "feet")
  36298. },
  36299. ]
  36300. ))
  36301. characterMakers.push(() => makeCharacter(
  36302. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36303. {
  36304. front: {
  36305. height: math.unit(5 + 10/12, "feet"),
  36306. name: "Front",
  36307. image: {
  36308. source: "./media/characters/argon/front.svg",
  36309. extra: 2009/1935,
  36310. bottom: 118/2127
  36311. }
  36312. },
  36313. back: {
  36314. height: math.unit(5 + 10/12, "feet"),
  36315. name: "Back",
  36316. image: {
  36317. source: "./media/characters/argon/back.svg",
  36318. extra: 2047/1992,
  36319. bottom: 20/2067
  36320. }
  36321. },
  36322. frontDressed: {
  36323. height: math.unit(5 + 10/12, "feet"),
  36324. name: "Front (Dressed)",
  36325. image: {
  36326. source: "./media/characters/argon/front-dressed.svg",
  36327. extra: 2009/1935,
  36328. bottom: 118/2127
  36329. }
  36330. },
  36331. },
  36332. [
  36333. {
  36334. name: "Normal",
  36335. height: math.unit(5 + 10/12, "feet"),
  36336. default: true
  36337. },
  36338. ]
  36339. ))
  36340. characterMakers.push(() => makeCharacter(
  36341. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36342. {
  36343. front: {
  36344. height: math.unit(8 + 6/12, "feet"),
  36345. weight: math.unit(1150, "lb"),
  36346. name: "Front",
  36347. image: {
  36348. source: "./media/characters/kichi/front.svg",
  36349. extra: 1267/1164,
  36350. bottom: 61/1328
  36351. }
  36352. },
  36353. back: {
  36354. height: math.unit(8 + 6/12, "feet"),
  36355. weight: math.unit(1150, "lb"),
  36356. name: "Back",
  36357. image: {
  36358. source: "./media/characters/kichi/back.svg",
  36359. extra: 1273/1166,
  36360. bottom: 33/1306
  36361. }
  36362. },
  36363. },
  36364. [
  36365. {
  36366. name: "Normal",
  36367. height: math.unit(8 + 6/12, "feet"),
  36368. default: true
  36369. },
  36370. ]
  36371. ))
  36372. characterMakers.push(() => makeCharacter(
  36373. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36374. {
  36375. front: {
  36376. height: math.unit(6, "feet"),
  36377. weight: math.unit(210, "lb"),
  36378. name: "Front",
  36379. image: {
  36380. source: "./media/characters/manetel-greyscale/front.svg",
  36381. extra: 350/312,
  36382. bottom: 8/358
  36383. }
  36384. },
  36385. },
  36386. [
  36387. {
  36388. name: "Micro",
  36389. height: math.unit(2, "inches")
  36390. },
  36391. {
  36392. name: "Normal",
  36393. height: math.unit(6, "feet"),
  36394. default: true
  36395. },
  36396. {
  36397. name: "Minimacro",
  36398. height: math.unit(17, "feet")
  36399. },
  36400. {
  36401. name: "Macro",
  36402. height: math.unit(117, "feet")
  36403. },
  36404. ]
  36405. ))
  36406. characterMakers.push(() => makeCharacter(
  36407. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36408. {
  36409. side: {
  36410. height: math.unit(5 + 1/12, "feet"),
  36411. weight: math.unit(418, "lb"),
  36412. name: "Side",
  36413. image: {
  36414. source: "./media/characters/softpurr/side.svg",
  36415. extra: 1993/1945,
  36416. bottom: 134/2127
  36417. }
  36418. },
  36419. front: {
  36420. height: math.unit(5 + 1/12, "feet"),
  36421. weight: math.unit(418, "lb"),
  36422. name: "Front",
  36423. image: {
  36424. source: "./media/characters/softpurr/front.svg",
  36425. extra: 1950/1856,
  36426. bottom: 174/2124
  36427. }
  36428. },
  36429. paw: {
  36430. height: math.unit(1, "feet"),
  36431. name: "Paw",
  36432. image: {
  36433. source: "./media/characters/softpurr/paw.svg"
  36434. }
  36435. },
  36436. },
  36437. [
  36438. {
  36439. name: "Normal",
  36440. height: math.unit(5 + 1/12, "feet"),
  36441. default: true
  36442. },
  36443. ]
  36444. ))
  36445. characterMakers.push(() => makeCharacter(
  36446. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36447. {
  36448. front: {
  36449. height: math.unit(260, "meters"),
  36450. name: "Front",
  36451. image: {
  36452. source: "./media/characters/anahita/front.svg",
  36453. extra: 665/635,
  36454. bottom: 89/754
  36455. }
  36456. },
  36457. },
  36458. [
  36459. {
  36460. name: "Macro",
  36461. height: math.unit(260, "meters"),
  36462. default: true
  36463. },
  36464. ]
  36465. ))
  36466. characterMakers.push(() => makeCharacter(
  36467. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36468. {
  36469. front: {
  36470. height: math.unit(4 + 10/12, "feet"),
  36471. weight: math.unit(160, "lb"),
  36472. name: "Front",
  36473. image: {
  36474. source: "./media/characters/chip-mouse/front.svg",
  36475. extra: 3528/3408,
  36476. bottom: 0/3528
  36477. }
  36478. },
  36479. frontNsfw: {
  36480. height: math.unit(4 + 10/12, "feet"),
  36481. weight: math.unit(160, "lb"),
  36482. name: "Front (NSFW)",
  36483. image: {
  36484. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36485. extra: 3528/3408,
  36486. bottom: 0/3528
  36487. }
  36488. },
  36489. },
  36490. [
  36491. {
  36492. name: "Normal",
  36493. height: math.unit(4 + 10/12, "feet"),
  36494. default: true
  36495. },
  36496. ]
  36497. ))
  36498. characterMakers.push(() => makeCharacter(
  36499. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36500. {
  36501. side: {
  36502. height: math.unit(10, "feet"),
  36503. weight: math.unit(14000, "lb"),
  36504. name: "Side",
  36505. image: {
  36506. source: "./media/characters/kremm/side.svg",
  36507. extra: 1390/1053,
  36508. bottom: 90/1480
  36509. }
  36510. },
  36511. gut: {
  36512. height: math.unit(5.8, "feet"),
  36513. name: "Gut",
  36514. image: {
  36515. source: "./media/characters/kremm/gut.svg"
  36516. }
  36517. },
  36518. ass: {
  36519. height: math.unit(6.1, "feet"),
  36520. name: "Ass",
  36521. image: {
  36522. source: "./media/characters/kremm/ass.svg"
  36523. }
  36524. },
  36525. jaws: {
  36526. height: math.unit(2.2, "feet"),
  36527. name: "Jaws",
  36528. image: {
  36529. source: "./media/characters/kremm/jaws.svg"
  36530. }
  36531. },
  36532. dick: {
  36533. height: math.unit(4.26, "feet"),
  36534. name: "Dick",
  36535. image: {
  36536. source: "./media/characters/kremm/dick.svg"
  36537. }
  36538. },
  36539. },
  36540. [
  36541. {
  36542. name: "Normal",
  36543. height: math.unit(10, "feet"),
  36544. default: true
  36545. },
  36546. ]
  36547. ))
  36548. characterMakers.push(() => makeCharacter(
  36549. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36550. {
  36551. front: {
  36552. height: math.unit(30, "stories"),
  36553. name: "Front",
  36554. image: {
  36555. source: "./media/characters/kai/front.svg",
  36556. extra: 1892/1718,
  36557. bottom: 162/2054
  36558. }
  36559. },
  36560. },
  36561. [
  36562. {
  36563. name: "Macro",
  36564. height: math.unit(30, "stories"),
  36565. default: true
  36566. },
  36567. ]
  36568. ))
  36569. characterMakers.push(() => makeCharacter(
  36570. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36571. {
  36572. front: {
  36573. height: math.unit(6 + 4/12, "feet"),
  36574. weight: math.unit(145, "lb"),
  36575. name: "Front",
  36576. image: {
  36577. source: "./media/characters/sykes/front.svg",
  36578. extra: 1321 / 1187,
  36579. bottom: 66 / 1387
  36580. }
  36581. },
  36582. back: {
  36583. height: math.unit(6 + 4/12, "feet"),
  36584. weight: math.unit(145, "lb"),
  36585. name: "Back",
  36586. image: {
  36587. source: "./media/characters/sykes/back.svg",
  36588. extra: 1326/1181,
  36589. bottom: 31/1357
  36590. }
  36591. },
  36592. traditionalOutfit: {
  36593. height: math.unit(6 + 4/12, "feet"),
  36594. weight: math.unit(145, "lb"),
  36595. name: "Traditional Outfit",
  36596. image: {
  36597. source: "./media/characters/sykes/traditional-outfit.svg",
  36598. extra: 1321 / 1187,
  36599. bottom: 66 / 1387
  36600. }
  36601. },
  36602. adventureOutfit: {
  36603. height: math.unit(6 + 4/12, "feet"),
  36604. weight: math.unit(145, "lb"),
  36605. name: "Adventure Outfit",
  36606. image: {
  36607. source: "./media/characters/sykes/adventure-outfit.svg",
  36608. extra: 1321 / 1187,
  36609. bottom: 66 / 1387
  36610. }
  36611. },
  36612. handLeft: {
  36613. height: math.unit(0.9, "feet"),
  36614. name: "Hand (Left)",
  36615. image: {
  36616. source: "./media/characters/sykes/hand-left.svg"
  36617. }
  36618. },
  36619. handRight: {
  36620. height: math.unit(0.839, "feet"),
  36621. name: "Hand (Right)",
  36622. image: {
  36623. source: "./media/characters/sykes/hand-right.svg"
  36624. }
  36625. },
  36626. leftFoot: {
  36627. height: math.unit(1.2, "feet"),
  36628. name: "Foot (Left)",
  36629. image: {
  36630. source: "./media/characters/sykes/foot-left.svg"
  36631. }
  36632. },
  36633. rightFoot: {
  36634. height: math.unit(1.2, "feet"),
  36635. name: "Foot (Right)",
  36636. image: {
  36637. source: "./media/characters/sykes/foot-right.svg"
  36638. }
  36639. },
  36640. maw: {
  36641. height: math.unit(1.93, "feet"),
  36642. name: "Maw",
  36643. image: {
  36644. source: "./media/characters/sykes/maw.svg"
  36645. }
  36646. },
  36647. teeth: {
  36648. height: math.unit(0.51, "feet"),
  36649. name: "Teeth",
  36650. image: {
  36651. source: "./media/characters/sykes/teeth.svg"
  36652. }
  36653. },
  36654. tongue: {
  36655. height: math.unit(2.13, "feet"),
  36656. name: "Tongue",
  36657. image: {
  36658. source: "./media/characters/sykes/tongue.svg"
  36659. }
  36660. },
  36661. uvula: {
  36662. height: math.unit(0.16, "feet"),
  36663. name: "Uvula",
  36664. image: {
  36665. source: "./media/characters/sykes/uvula.svg"
  36666. }
  36667. },
  36668. collar: {
  36669. height: math.unit(0.287, "feet"),
  36670. name: "Collar",
  36671. image: {
  36672. source: "./media/characters/sykes/collar.svg"
  36673. }
  36674. },
  36675. tail: {
  36676. height: math.unit(3.8, "feet"),
  36677. name: "Tail",
  36678. image: {
  36679. source: "./media/characters/sykes/tail.svg"
  36680. }
  36681. },
  36682. },
  36683. [
  36684. {
  36685. name: "Shrunken",
  36686. height: math.unit(5, "inches")
  36687. },
  36688. {
  36689. name: "Normal",
  36690. height: math.unit(6 + 4 / 12, "feet"),
  36691. default: true
  36692. },
  36693. {
  36694. name: "Big",
  36695. height: math.unit(15, "feet")
  36696. },
  36697. ]
  36698. ))
  36699. characterMakers.push(() => makeCharacter(
  36700. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36701. {
  36702. front: {
  36703. height: math.unit(5 + 8/12, "feet"),
  36704. weight: math.unit(190, "lb"),
  36705. name: "Front",
  36706. image: {
  36707. source: "./media/characters/oven-otter/front.svg",
  36708. extra: 1809/1740,
  36709. bottom: 181/1990
  36710. }
  36711. },
  36712. back: {
  36713. height: math.unit(5 + 8/12, "feet"),
  36714. weight: math.unit(190, "lb"),
  36715. name: "Back",
  36716. image: {
  36717. source: "./media/characters/oven-otter/back.svg",
  36718. extra: 1709/1635,
  36719. bottom: 118/1827
  36720. }
  36721. },
  36722. hand: {
  36723. height: math.unit(1.07, "feet"),
  36724. name: "Hand",
  36725. image: {
  36726. source: "./media/characters/oven-otter/hand.svg"
  36727. }
  36728. },
  36729. beans: {
  36730. height: math.unit(1.74, "feet"),
  36731. name: "Beans",
  36732. image: {
  36733. source: "./media/characters/oven-otter/beans.svg"
  36734. }
  36735. },
  36736. },
  36737. [
  36738. {
  36739. name: "Micro",
  36740. height: math.unit(0.5, "inches")
  36741. },
  36742. {
  36743. name: "Normal",
  36744. height: math.unit(5 + 8/12, "feet"),
  36745. default: true
  36746. },
  36747. {
  36748. name: "Macro",
  36749. height: math.unit(250, "feet")
  36750. },
  36751. {
  36752. name: "Really High",
  36753. height: math.unit(420, "feet")
  36754. },
  36755. ]
  36756. ))
  36757. characterMakers.push(() => makeCharacter(
  36758. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36759. {
  36760. front: {
  36761. height: math.unit(5, "meters"),
  36762. weight: math.unit(292000000000000, "kg"),
  36763. name: "Front",
  36764. image: {
  36765. source: "./media/characters/devourer/front.svg",
  36766. extra: 1800/1733,
  36767. bottom: 211/2011
  36768. }
  36769. },
  36770. maw: {
  36771. height: math.unit(1.1, "meter"),
  36772. name: "Maw",
  36773. image: {
  36774. source: "./media/characters/devourer/maw.svg"
  36775. }
  36776. },
  36777. },
  36778. [
  36779. {
  36780. name: "Small",
  36781. height: math.unit(3, "meters")
  36782. },
  36783. {
  36784. name: "Large",
  36785. height: math.unit(5, "meters"),
  36786. default: true
  36787. },
  36788. ]
  36789. ))
  36790. characterMakers.push(() => makeCharacter(
  36791. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36792. {
  36793. front: {
  36794. height: math.unit(6, "feet"),
  36795. weight: math.unit(400, "lb"),
  36796. name: "Front",
  36797. image: {
  36798. source: "./media/characters/ellarby/front.svg",
  36799. extra: 1909/1763,
  36800. bottom: 80/1989
  36801. }
  36802. },
  36803. back: {
  36804. height: math.unit(6, "feet"),
  36805. weight: math.unit(400, "lb"),
  36806. name: "Back",
  36807. image: {
  36808. source: "./media/characters/ellarby/back.svg",
  36809. extra: 1914/1784,
  36810. bottom: 172/2086
  36811. }
  36812. },
  36813. },
  36814. [
  36815. {
  36816. name: "Mischief",
  36817. height: math.unit(18, "inches")
  36818. },
  36819. {
  36820. name: "Trouble",
  36821. height: math.unit(12, "feet")
  36822. },
  36823. {
  36824. name: "Havoc",
  36825. height: math.unit(200, "feet"),
  36826. default: true
  36827. },
  36828. {
  36829. name: "Pandemonium",
  36830. height: math.unit(1, "mile")
  36831. },
  36832. {
  36833. name: "Catastrophe",
  36834. height: math.unit(100, "miles")
  36835. },
  36836. ]
  36837. ))
  36838. characterMakers.push(() => makeCharacter(
  36839. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36840. {
  36841. front: {
  36842. height: math.unit(4.7, "meters"),
  36843. weight: math.unit(6500, "kg"),
  36844. name: "Front",
  36845. image: {
  36846. source: "./media/characters/vex/front.svg",
  36847. extra: 1288/1140,
  36848. bottom: 100/1388
  36849. }
  36850. },
  36851. },
  36852. [
  36853. {
  36854. name: "Normal",
  36855. height: math.unit(4.7, "meters"),
  36856. default: true
  36857. },
  36858. ]
  36859. ))
  36860. characterMakers.push(() => makeCharacter(
  36861. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36862. {
  36863. normal: {
  36864. height: math.unit(6, "feet"),
  36865. weight: math.unit(350, "lb"),
  36866. name: "Normal",
  36867. image: {
  36868. source: "./media/characters/teshy/normal.svg",
  36869. extra: 1795/1735,
  36870. bottom: 16/1811
  36871. }
  36872. },
  36873. monsterFront: {
  36874. height: math.unit(12, "feet"),
  36875. weight: math.unit(4700, "lb"),
  36876. name: "Monster (Front)",
  36877. image: {
  36878. source: "./media/characters/teshy/monster-front.svg",
  36879. extra: 2042/2034,
  36880. bottom: 128/2170
  36881. }
  36882. },
  36883. monsterSide: {
  36884. height: math.unit(12, "feet"),
  36885. weight: math.unit(4700, "lb"),
  36886. name: "Monster (Side)",
  36887. image: {
  36888. source: "./media/characters/teshy/monster-side.svg",
  36889. extra: 2067/2056,
  36890. bottom: 70/2137
  36891. }
  36892. },
  36893. monsterBack: {
  36894. height: math.unit(12, "feet"),
  36895. weight: math.unit(4700, "lb"),
  36896. name: "Monster (Back)",
  36897. image: {
  36898. source: "./media/characters/teshy/monster-back.svg",
  36899. extra: 1921/1914,
  36900. bottom: 171/2092
  36901. }
  36902. },
  36903. },
  36904. [
  36905. {
  36906. name: "Normal",
  36907. height: math.unit(6, "feet"),
  36908. default: true
  36909. },
  36910. ]
  36911. ))
  36912. characterMakers.push(() => makeCharacter(
  36913. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36914. {
  36915. front: {
  36916. height: math.unit(6, "feet"),
  36917. name: "Front",
  36918. image: {
  36919. source: "./media/characters/ramey/front.svg",
  36920. extra: 790/787,
  36921. bottom: 27/817
  36922. }
  36923. },
  36924. },
  36925. [
  36926. {
  36927. name: "Normal",
  36928. height: math.unit(6, "feet"),
  36929. default: true
  36930. },
  36931. ]
  36932. ))
  36933. characterMakers.push(() => makeCharacter(
  36934. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36935. {
  36936. front: {
  36937. height: math.unit(5 + 5/12, "feet"),
  36938. weight: math.unit(120, "lb"),
  36939. name: "Front",
  36940. image: {
  36941. source: "./media/characters/phirae/front.svg",
  36942. extra: 2491/2436,
  36943. bottom: 38/2529
  36944. }
  36945. },
  36946. },
  36947. [
  36948. {
  36949. name: "Normal",
  36950. height: math.unit(5 + 5/12, "feet"),
  36951. default: true
  36952. },
  36953. ]
  36954. ))
  36955. characterMakers.push(() => makeCharacter(
  36956. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36957. {
  36958. front: {
  36959. height: math.unit(5 + 3/12, "feet"),
  36960. name: "Front",
  36961. image: {
  36962. source: "./media/characters/stagglas/front.svg",
  36963. extra: 962/882,
  36964. bottom: 53/1015
  36965. }
  36966. },
  36967. feral: {
  36968. height: math.unit(335, "cm"),
  36969. name: "Feral",
  36970. image: {
  36971. source: "./media/characters/stagglas/feral.svg",
  36972. extra: 1732/1090,
  36973. bottom: 48/1780
  36974. }
  36975. },
  36976. },
  36977. [
  36978. {
  36979. name: "Normal",
  36980. height: math.unit(5 + 3/12, "feet"),
  36981. default: true
  36982. },
  36983. ]
  36984. ))
  36985. characterMakers.push(() => makeCharacter(
  36986. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36987. {
  36988. front: {
  36989. height: math.unit(5 + 4/12, "feet"),
  36990. weight: math.unit(145, "lb"),
  36991. name: "Front",
  36992. image: {
  36993. source: "./media/characters/starra/front.svg",
  36994. extra: 1790/1691,
  36995. bottom: 91/1881
  36996. }
  36997. },
  36998. },
  36999. [
  37000. {
  37001. name: "Normal",
  37002. height: math.unit(5 + 4/12, "feet"),
  37003. default: true
  37004. },
  37005. ]
  37006. ))
  37007. characterMakers.push(() => makeCharacter(
  37008. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37009. {
  37010. front: {
  37011. height: math.unit(3.5, "meters"),
  37012. name: "Front",
  37013. image: {
  37014. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37015. extra: 1248/972,
  37016. bottom: 38/1286
  37017. }
  37018. },
  37019. },
  37020. [
  37021. {
  37022. name: "Normal",
  37023. height: math.unit(3.5, "meters"),
  37024. default: true
  37025. },
  37026. ]
  37027. ))
  37028. characterMakers.push(() => makeCharacter(
  37029. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37030. {
  37031. side: {
  37032. height: math.unit(8 + 2/12, "feet"),
  37033. weight: math.unit(1240, "lb"),
  37034. name: "Side",
  37035. image: {
  37036. source: "./media/characters/mika-valentine/side.svg",
  37037. extra: 2670/2501,
  37038. bottom: 250/2920
  37039. }
  37040. },
  37041. },
  37042. [
  37043. {
  37044. name: "Normal",
  37045. height: math.unit(8 + 2/12, "feet"),
  37046. default: true
  37047. },
  37048. ]
  37049. ))
  37050. characterMakers.push(() => makeCharacter(
  37051. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37052. {
  37053. front: {
  37054. height: math.unit(7 + 2/12, "feet"),
  37055. name: "Front",
  37056. image: {
  37057. source: "./media/characters/xoltol/front.svg",
  37058. extra: 2212/2124,
  37059. bottom: 84/2296
  37060. }
  37061. },
  37062. side: {
  37063. height: math.unit(7 + 2/12, "feet"),
  37064. name: "Side",
  37065. image: {
  37066. source: "./media/characters/xoltol/side.svg",
  37067. extra: 2273/2197,
  37068. bottom: 26/2299
  37069. }
  37070. },
  37071. hand: {
  37072. height: math.unit(2.5, "feet"),
  37073. name: "Hand",
  37074. image: {
  37075. source: "./media/characters/xoltol/hand.svg"
  37076. }
  37077. },
  37078. },
  37079. [
  37080. {
  37081. name: "Small-ish",
  37082. height: math.unit(5 + 11/12, "feet")
  37083. },
  37084. {
  37085. name: "Normal",
  37086. height: math.unit(7 + 2/12, "feet")
  37087. },
  37088. {
  37089. name: "\"Macro\"",
  37090. height: math.unit(14 + 9/12, "feet"),
  37091. default: true
  37092. },
  37093. {
  37094. name: "Alternate Height",
  37095. height: math.unit(20, "feet")
  37096. },
  37097. {
  37098. name: "Actually Macro",
  37099. height: math.unit(100, "feet")
  37100. },
  37101. ]
  37102. ))
  37103. characterMakers.push(() => makeCharacter(
  37104. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37105. {
  37106. front: {
  37107. height: math.unit(5 + 2/12, "feet"),
  37108. weight: math.unit(75, "kg"),
  37109. name: "Front",
  37110. image: {
  37111. source: "./media/characters/kotetsu-redwood/front.svg",
  37112. extra: 1053/942,
  37113. bottom: 60/1113
  37114. }
  37115. },
  37116. },
  37117. [
  37118. {
  37119. name: "Normal",
  37120. height: math.unit(5 + 2/12, "feet"),
  37121. default: true
  37122. },
  37123. ]
  37124. ))
  37125. characterMakers.push(() => makeCharacter(
  37126. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37127. {
  37128. front: {
  37129. height: math.unit(2.4, "meters"),
  37130. weight: math.unit(125, "kg"),
  37131. name: "Front",
  37132. image: {
  37133. source: "./media/characters/lilith/front.svg",
  37134. extra: 1590/1513,
  37135. bottom: 203/1793
  37136. }
  37137. },
  37138. },
  37139. [
  37140. {
  37141. name: "Humanoid",
  37142. height: math.unit(2.4, "meters")
  37143. },
  37144. {
  37145. name: "Normal",
  37146. height: math.unit(6, "meters"),
  37147. default: true
  37148. },
  37149. {
  37150. name: "Largest",
  37151. height: math.unit(55, "meters")
  37152. },
  37153. ]
  37154. ))
  37155. characterMakers.push(() => makeCharacter(
  37156. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37157. {
  37158. front: {
  37159. height: math.unit(8 + 4/12, "feet"),
  37160. weight: math.unit(535, "lb"),
  37161. name: "Front",
  37162. image: {
  37163. source: "./media/characters/beh'kah-bolger/front.svg",
  37164. extra: 1660/1603,
  37165. bottom: 37/1697
  37166. }
  37167. },
  37168. },
  37169. [
  37170. {
  37171. name: "Normal",
  37172. height: math.unit(8 + 4/12, "feet"),
  37173. default: true
  37174. },
  37175. {
  37176. name: "Kaiju",
  37177. height: math.unit(250, "feet")
  37178. },
  37179. {
  37180. name: "Still Growing",
  37181. height: math.unit(10, "miles")
  37182. },
  37183. {
  37184. name: "Continental",
  37185. height: math.unit(5000, "miles")
  37186. },
  37187. {
  37188. name: "Final Form",
  37189. height: math.unit(2500000, "miles")
  37190. },
  37191. ]
  37192. ))
  37193. characterMakers.push(() => makeCharacter(
  37194. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37195. {
  37196. front: {
  37197. height: math.unit(7 + 2/12, "feet"),
  37198. weight: math.unit(230, "kg"),
  37199. name: "Front",
  37200. image: {
  37201. source: "./media/characters/tatyana-milewska/front.svg",
  37202. extra: 1199/1150,
  37203. bottom: 86/1285
  37204. }
  37205. },
  37206. },
  37207. [
  37208. {
  37209. name: "Normal",
  37210. height: math.unit(7 + 2/12, "feet"),
  37211. default: true
  37212. },
  37213. {
  37214. name: "Big",
  37215. height: math.unit(12, "feet")
  37216. },
  37217. {
  37218. name: "Minimacro",
  37219. height: math.unit(20, "feet")
  37220. },
  37221. {
  37222. name: "Macro",
  37223. height: math.unit(120, "feet")
  37224. },
  37225. ]
  37226. ))
  37227. characterMakers.push(() => makeCharacter(
  37228. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37229. {
  37230. front: {
  37231. height: math.unit(7 + 8/12, "feet"),
  37232. weight: math.unit(152, "kg"),
  37233. name: "Front",
  37234. image: {
  37235. source: "./media/characters/helen-arri/front.svg",
  37236. extra: 440/423,
  37237. bottom: 14/454
  37238. }
  37239. },
  37240. back: {
  37241. height: math.unit(7 + 8/12, "feet"),
  37242. weight: math.unit(152, "kg"),
  37243. name: "Back",
  37244. image: {
  37245. source: "./media/characters/helen-arri/back.svg",
  37246. extra: 443/426,
  37247. bottom: 8/451
  37248. }
  37249. },
  37250. },
  37251. [
  37252. {
  37253. name: "Normal",
  37254. height: math.unit(7 + 8/12, "feet"),
  37255. default: true
  37256. },
  37257. {
  37258. name: "Big",
  37259. height: math.unit(14, "feet")
  37260. },
  37261. {
  37262. name: "Minimacro",
  37263. height: math.unit(24, "feet")
  37264. },
  37265. {
  37266. name: "Macro",
  37267. height: math.unit(140, "feet")
  37268. },
  37269. ]
  37270. ))
  37271. characterMakers.push(() => makeCharacter(
  37272. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37273. {
  37274. front: {
  37275. height: math.unit(6, "meters"),
  37276. name: "Front",
  37277. image: {
  37278. source: "./media/characters/ehanu-rehu/front.svg",
  37279. extra: 1800/1800,
  37280. bottom: 59/1859
  37281. }
  37282. },
  37283. },
  37284. [
  37285. {
  37286. name: "Normal",
  37287. height: math.unit(6, "meters"),
  37288. default: true
  37289. },
  37290. ]
  37291. ))
  37292. characterMakers.push(() => makeCharacter(
  37293. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37294. {
  37295. front: {
  37296. height: math.unit(7 + 3/12, "feet"),
  37297. name: "Front",
  37298. image: {
  37299. source: "./media/characters/renholder/front.svg",
  37300. extra: 3096/2960,
  37301. bottom: 250/3346
  37302. }
  37303. },
  37304. },
  37305. [
  37306. {
  37307. name: "Normal Bat",
  37308. height: math.unit(7 + 3/12, "feet"),
  37309. default: true
  37310. },
  37311. {
  37312. name: "Slightly Tall Bat",
  37313. height: math.unit(100, "feet")
  37314. },
  37315. {
  37316. name: "Big Bat",
  37317. height: math.unit(1000, "feet")
  37318. },
  37319. {
  37320. name: "City-Sized Bat",
  37321. height: math.unit(200000, "feet")
  37322. },
  37323. {
  37324. name: "Bigger Bat",
  37325. height: math.unit(10000, "miles")
  37326. },
  37327. {
  37328. name: "Solar Sized Bat",
  37329. height: math.unit(100, "AU")
  37330. },
  37331. {
  37332. name: "Galactic Bat",
  37333. height: math.unit(200000, "lightyears")
  37334. },
  37335. {
  37336. name: "Universally Known Bat",
  37337. height: math.unit(1, "universe")
  37338. },
  37339. ]
  37340. ))
  37341. characterMakers.push(() => makeCharacter(
  37342. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37343. {
  37344. front: {
  37345. height: math.unit(6 + 11/12, "feet"),
  37346. weight: math.unit(250, "lb"),
  37347. name: "Front",
  37348. image: {
  37349. source: "./media/characters/cookiecat/front.svg",
  37350. extra: 893/827,
  37351. bottom: 14/907
  37352. }
  37353. },
  37354. },
  37355. [
  37356. {
  37357. name: "Micro",
  37358. height: math.unit(3, "inches")
  37359. },
  37360. {
  37361. name: "Normal",
  37362. height: math.unit(6 + 11/12, "feet"),
  37363. default: true
  37364. },
  37365. {
  37366. name: "Macro",
  37367. height: math.unit(100, "feet")
  37368. },
  37369. {
  37370. name: "Macro+",
  37371. height: math.unit(404, "feet")
  37372. },
  37373. {
  37374. name: "Megamacro",
  37375. height: math.unit(165, "miles")
  37376. },
  37377. {
  37378. name: "Planetary",
  37379. height: math.unit(4600, "miles")
  37380. },
  37381. ]
  37382. ))
  37383. characterMakers.push(() => makeCharacter(
  37384. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37385. {
  37386. front: {
  37387. height: math.unit(10 + 3/12, "feet"),
  37388. weight: math.unit(1500, "lb"),
  37389. name: "Front",
  37390. image: {
  37391. source: "./media/characters/tux-kusanagi/front.svg",
  37392. extra: 944/840,
  37393. bottom: 39/983
  37394. }
  37395. },
  37396. back: {
  37397. height: math.unit(10 + 3/12, "feet"),
  37398. weight: math.unit(1500, "lb"),
  37399. name: "Back",
  37400. image: {
  37401. source: "./media/characters/tux-kusanagi/back.svg",
  37402. extra: 941/842,
  37403. bottom: 28/969
  37404. }
  37405. },
  37406. rump: {
  37407. height: math.unit(5.25, "feet"),
  37408. name: "Rump",
  37409. image: {
  37410. source: "./media/characters/tux-kusanagi/rump.svg"
  37411. }
  37412. },
  37413. beak: {
  37414. height: math.unit(1.54, "feet"),
  37415. name: "Beak",
  37416. image: {
  37417. source: "./media/characters/tux-kusanagi/beak.svg"
  37418. }
  37419. },
  37420. },
  37421. [
  37422. {
  37423. name: "Normal",
  37424. height: math.unit(10 + 3/12, "feet"),
  37425. default: true
  37426. },
  37427. ]
  37428. ))
  37429. characterMakers.push(() => makeCharacter(
  37430. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37431. {
  37432. front: {
  37433. height: math.unit(58, "feet"),
  37434. weight: math.unit(200, "tons"),
  37435. name: "Front",
  37436. image: {
  37437. source: "./media/characters/uzarmazari/front.svg",
  37438. extra: 1575/1455,
  37439. bottom: 152/1727
  37440. }
  37441. },
  37442. back: {
  37443. height: math.unit(58, "feet"),
  37444. weight: math.unit(200, "tons"),
  37445. name: "Back",
  37446. image: {
  37447. source: "./media/characters/uzarmazari/back.svg",
  37448. extra: 1585/1510,
  37449. bottom: 157/1742
  37450. }
  37451. },
  37452. head: {
  37453. height: math.unit(26, "feet"),
  37454. name: "Head",
  37455. image: {
  37456. source: "./media/characters/uzarmazari/head.svg"
  37457. }
  37458. },
  37459. },
  37460. [
  37461. {
  37462. name: "Normal",
  37463. height: math.unit(58, "feet"),
  37464. default: true
  37465. },
  37466. ]
  37467. ))
  37468. characterMakers.push(() => makeCharacter(
  37469. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37470. {
  37471. side: {
  37472. height: math.unit(15, "feet"),
  37473. name: "Side",
  37474. image: {
  37475. source: "./media/characters/akitu/side.svg",
  37476. extra: 1421/1321,
  37477. bottom: 157/1578
  37478. }
  37479. },
  37480. front: {
  37481. height: math.unit(15, "feet"),
  37482. name: "Front",
  37483. image: {
  37484. source: "./media/characters/akitu/front.svg",
  37485. extra: 1435/1326,
  37486. bottom: 232/1667
  37487. }
  37488. },
  37489. },
  37490. [
  37491. {
  37492. name: "Normal",
  37493. height: math.unit(15, "feet"),
  37494. default: true
  37495. },
  37496. ]
  37497. ))
  37498. characterMakers.push(() => makeCharacter(
  37499. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37500. {
  37501. front: {
  37502. height: math.unit(10 + 8/12, "feet"),
  37503. name: "Front",
  37504. image: {
  37505. source: "./media/characters/azalie-croixland/front.svg",
  37506. extra: 1972/1856,
  37507. bottom: 31/2003
  37508. }
  37509. },
  37510. },
  37511. [
  37512. {
  37513. name: "Original Height",
  37514. height: math.unit(5 + 4/12, "feet")
  37515. },
  37516. {
  37517. name: "Normal Height",
  37518. height: math.unit(10 + 8/12, "feet"),
  37519. default: true
  37520. },
  37521. ]
  37522. ))
  37523. characterMakers.push(() => makeCharacter(
  37524. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37525. {
  37526. side: {
  37527. height: math.unit(7 + 1/12, "feet"),
  37528. weight: math.unit(245, "lb"),
  37529. name: "Side",
  37530. image: {
  37531. source: "./media/characters/kavus-kazian/side.svg",
  37532. extra: 349/342,
  37533. bottom: 15/364
  37534. }
  37535. },
  37536. },
  37537. [
  37538. {
  37539. name: "Normal",
  37540. height: math.unit(7 + 1/12, "feet"),
  37541. default: true
  37542. },
  37543. ]
  37544. ))
  37545. characterMakers.push(() => makeCharacter(
  37546. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37547. {
  37548. normalFront: {
  37549. height: math.unit(5 + 11/12, "feet"),
  37550. name: "Front",
  37551. image: {
  37552. source: "./media/characters/moonlight-rose/normal-front.svg",
  37553. extra: 1980/1825,
  37554. bottom: 18/1998
  37555. },
  37556. form: "normal",
  37557. default: true
  37558. },
  37559. normalBack: {
  37560. height: math.unit(5 + 11/12, "feet"),
  37561. name: "Back",
  37562. image: {
  37563. source: "./media/characters/moonlight-rose/normal-back.svg",
  37564. extra: 2010/1839,
  37565. bottom: 10/2020
  37566. },
  37567. form: "normal"
  37568. },
  37569. demonFront: {
  37570. height: math.unit(1.5, "earths"),
  37571. name: "Front",
  37572. image: {
  37573. source: "./media/characters/moonlight-rose/demon.svg",
  37574. extra: 1400/1294,
  37575. bottom: 45/1445
  37576. },
  37577. form: "demon",
  37578. default: true
  37579. },
  37580. terraFront: {
  37581. height: math.unit(1.5, "earths"),
  37582. name: "Front",
  37583. image: {
  37584. source: "./media/characters/moonlight-rose/terra.svg"
  37585. },
  37586. form: "terra",
  37587. default: true
  37588. },
  37589. jupiterFront: {
  37590. height: math.unit(69911*2, "km"),
  37591. name: "Front",
  37592. image: {
  37593. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37594. extra: 1367/1286,
  37595. bottom: 55/1422
  37596. },
  37597. form: "jupiter",
  37598. default: true
  37599. },
  37600. neptuneFront: {
  37601. height: math.unit(24622*2, "feet"),
  37602. name: "Front",
  37603. image: {
  37604. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37605. extra: 1851/1712,
  37606. bottom: 0/1851
  37607. },
  37608. form: "neptune",
  37609. default: true
  37610. },
  37611. },
  37612. [
  37613. {
  37614. name: "\"Natural\" Height",
  37615. height: math.unit(5 + 11/12, "feet"),
  37616. form: "normal"
  37617. },
  37618. {
  37619. name: "Smallest comfortable size",
  37620. height: math.unit(40, "meters"),
  37621. form: "normal"
  37622. },
  37623. {
  37624. name: "Common size",
  37625. height: math.unit(50, "km"),
  37626. form: "normal",
  37627. default: true
  37628. },
  37629. {
  37630. name: "Normal",
  37631. height: math.unit(1.5, "earths"),
  37632. form: "demon",
  37633. default: true
  37634. },
  37635. {
  37636. name: "Universal",
  37637. height: math.unit(15, "universes"),
  37638. form: "demon"
  37639. },
  37640. {
  37641. name: "Earth",
  37642. height: math.unit(1.5, "earths"),
  37643. form: "terra",
  37644. default: true
  37645. },
  37646. {
  37647. name: "Super Earth",
  37648. height: math.unit(67.5, "earths"),
  37649. form: "terra"
  37650. },
  37651. {
  37652. name: "Doesn't fit in a solar system...",
  37653. height: math.unit(1, "galaxy"),
  37654. form: "terra"
  37655. },
  37656. {
  37657. name: "Saturn",
  37658. height: math.unit(58232*2, "km"),
  37659. form: "jupiter"
  37660. },
  37661. {
  37662. name: "Jupiter",
  37663. height: math.unit(69911*2, "km"),
  37664. form: "jupiter",
  37665. default: true
  37666. },
  37667. {
  37668. name: "HD 100546 b",
  37669. height: math.unit(482938, "km"),
  37670. form: "jupiter"
  37671. },
  37672. {
  37673. name: "Enceladus",
  37674. height: math.unit(513*2, "km"),
  37675. form: "neptune"
  37676. },
  37677. {
  37678. name: "Europe",
  37679. height: math.unit(1560*2, "km"),
  37680. form: "neptune"
  37681. },
  37682. {
  37683. name: "Neptune",
  37684. height: math.unit(24622*2, "km"),
  37685. form: "neptune",
  37686. default: true
  37687. },
  37688. {
  37689. name: "CoRoT-9b",
  37690. height: math.unit(75067*2, "km"),
  37691. form: "neptune"
  37692. },
  37693. ],
  37694. {
  37695. "normal": {
  37696. name: "Normal",
  37697. default: true
  37698. },
  37699. "demon": {
  37700. name: "Demon"
  37701. },
  37702. "terra": {
  37703. name: "Terra"
  37704. },
  37705. "jupiter": {
  37706. name: "Jupiter"
  37707. },
  37708. "neptune": {
  37709. name: "Neptune"
  37710. }
  37711. }
  37712. ))
  37713. characterMakers.push(() => makeCharacter(
  37714. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37715. {
  37716. front: {
  37717. height: math.unit(16, "feet"),
  37718. weight: math.unit(610, "kg"),
  37719. name: "Front",
  37720. image: {
  37721. source: "./media/characters/huckle/front.svg",
  37722. extra: 1731/1625,
  37723. bottom: 33/1764
  37724. }
  37725. },
  37726. back: {
  37727. height: math.unit(16, "feet"),
  37728. weight: math.unit(610, "kg"),
  37729. name: "Back",
  37730. image: {
  37731. source: "./media/characters/huckle/back.svg",
  37732. extra: 1738/1651,
  37733. bottom: 37/1775
  37734. }
  37735. },
  37736. laughing: {
  37737. height: math.unit(3.75, "feet"),
  37738. name: "Laughing",
  37739. image: {
  37740. source: "./media/characters/huckle/laughing.svg"
  37741. }
  37742. },
  37743. angry: {
  37744. height: math.unit(4.15, "feet"),
  37745. name: "Angry",
  37746. image: {
  37747. source: "./media/characters/huckle/angry.svg"
  37748. }
  37749. },
  37750. },
  37751. [
  37752. {
  37753. name: "Normal",
  37754. height: math.unit(16, "feet"),
  37755. default: true
  37756. },
  37757. {
  37758. name: "Mini Macro",
  37759. height: math.unit(463, "feet")
  37760. },
  37761. {
  37762. name: "Macro",
  37763. height: math.unit(1680, "meters")
  37764. },
  37765. {
  37766. name: "Mega Macro",
  37767. height: math.unit(175, "km")
  37768. },
  37769. {
  37770. name: "Terra Macro",
  37771. height: math.unit(32, "gigameters")
  37772. },
  37773. {
  37774. name: "Multiverse+",
  37775. height: math.unit(2.56e23, "yottameters")
  37776. },
  37777. ]
  37778. ))
  37779. characterMakers.push(() => makeCharacter(
  37780. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37781. {
  37782. front: {
  37783. height: math.unit(6 + 9/12, "feet"),
  37784. weight: math.unit(280, "lb"),
  37785. name: "Front",
  37786. image: {
  37787. source: "./media/characters/candy/front.svg",
  37788. extra: 234/217,
  37789. bottom: 11/245
  37790. }
  37791. },
  37792. },
  37793. [
  37794. {
  37795. name: "Really Small",
  37796. height: math.unit(0.1, "nm")
  37797. },
  37798. {
  37799. name: "Micro",
  37800. height: math.unit(2, "inches")
  37801. },
  37802. {
  37803. name: "Normal",
  37804. height: math.unit(6 + 9/12, "feet"),
  37805. default: true
  37806. },
  37807. {
  37808. name: "Small Macro",
  37809. height: math.unit(69, "feet")
  37810. },
  37811. {
  37812. name: "Macro",
  37813. height: math.unit(160, "feet")
  37814. },
  37815. {
  37816. name: "Megamacro",
  37817. height: math.unit(22000, "miles")
  37818. },
  37819. {
  37820. name: "Gigamacro",
  37821. height: math.unit(50000, "miles")
  37822. },
  37823. ]
  37824. ))
  37825. characterMakers.push(() => makeCharacter(
  37826. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37827. {
  37828. front: {
  37829. height: math.unit(4, "feet"),
  37830. weight: math.unit(90, "lb"),
  37831. name: "Front",
  37832. image: {
  37833. source: "./media/characters/joey-mcdonald/front.svg",
  37834. extra: 1059/852,
  37835. bottom: 33/1092
  37836. }
  37837. },
  37838. back: {
  37839. height: math.unit(4, "feet"),
  37840. weight: math.unit(90, "lb"),
  37841. name: "Back",
  37842. image: {
  37843. source: "./media/characters/joey-mcdonald/back.svg",
  37844. extra: 1077/879,
  37845. bottom: 5/1082
  37846. }
  37847. },
  37848. frontKobold: {
  37849. height: math.unit(4, "feet"),
  37850. weight: math.unit(100, "lb"),
  37851. name: "Front-kobold",
  37852. image: {
  37853. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37854. extra: 1480/1367,
  37855. bottom: 0/1480
  37856. }
  37857. },
  37858. backKobold: {
  37859. height: math.unit(4, "feet"),
  37860. weight: math.unit(100, "lb"),
  37861. name: "Back-kobold",
  37862. image: {
  37863. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37864. extra: 1449/1361,
  37865. bottom: 0/1449
  37866. }
  37867. },
  37868. },
  37869. [
  37870. {
  37871. name: "Normal",
  37872. height: math.unit(4, "feet"),
  37873. default: true
  37874. },
  37875. ]
  37876. ))
  37877. characterMakers.push(() => makeCharacter(
  37878. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37879. {
  37880. front: {
  37881. height: math.unit(12 + 6/12, "feet"),
  37882. name: "Front",
  37883. image: {
  37884. source: "./media/characters/kass-lockheed/front.svg",
  37885. extra: 354/343,
  37886. bottom: 9/363
  37887. }
  37888. },
  37889. back: {
  37890. height: math.unit(12 + 6/12, "feet"),
  37891. name: "Back",
  37892. image: {
  37893. source: "./media/characters/kass-lockheed/back.svg",
  37894. extra: 364/352,
  37895. bottom: 3/367
  37896. }
  37897. },
  37898. dick: {
  37899. height: math.unit(3.12, "feet"),
  37900. name: "Dick",
  37901. image: {
  37902. source: "./media/characters/kass-lockheed/dick.svg"
  37903. }
  37904. },
  37905. head: {
  37906. height: math.unit(2.6, "feet"),
  37907. name: "Head",
  37908. image: {
  37909. source: "./media/characters/kass-lockheed/head.svg"
  37910. }
  37911. },
  37912. bleh: {
  37913. height: math.unit(2.85, "feet"),
  37914. name: "Bleh",
  37915. image: {
  37916. source: "./media/characters/kass-lockheed/bleh.svg"
  37917. }
  37918. },
  37919. smug: {
  37920. height: math.unit(2.85, "feet"),
  37921. name: "Smug",
  37922. image: {
  37923. source: "./media/characters/kass-lockheed/smug.svg"
  37924. }
  37925. },
  37926. },
  37927. [
  37928. {
  37929. name: "Normal",
  37930. height: math.unit(12 + 6/12, "feet"),
  37931. default: true
  37932. },
  37933. ]
  37934. ))
  37935. characterMakers.push(() => makeCharacter(
  37936. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37937. {
  37938. front: {
  37939. height: math.unit(6 + 2/12, "feet"),
  37940. name: "Front",
  37941. image: {
  37942. source: "./media/characters/taylor/front.svg",
  37943. extra: 639/495,
  37944. bottom: 12/651
  37945. }
  37946. },
  37947. },
  37948. [
  37949. {
  37950. name: "Normal",
  37951. height: math.unit(6 + 2/12, "feet"),
  37952. default: true
  37953. },
  37954. {
  37955. name: "Big",
  37956. height: math.unit(15, "feet")
  37957. },
  37958. {
  37959. name: "Lorg",
  37960. height: math.unit(80, "feet")
  37961. },
  37962. {
  37963. name: "Too Lorg",
  37964. height: math.unit(120, "feet")
  37965. },
  37966. ]
  37967. ))
  37968. characterMakers.push(() => makeCharacter(
  37969. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37970. {
  37971. front: {
  37972. height: math.unit(15, "feet"),
  37973. name: "Front",
  37974. image: {
  37975. source: "./media/characters/kaizer/front.svg",
  37976. extra: 1612/1436,
  37977. bottom: 43/1655
  37978. }
  37979. },
  37980. },
  37981. [
  37982. {
  37983. name: "Normal",
  37984. height: math.unit(15, "feet"),
  37985. default: true
  37986. },
  37987. ]
  37988. ))
  37989. characterMakers.push(() => makeCharacter(
  37990. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37991. {
  37992. front: {
  37993. height: math.unit(2, "feet"),
  37994. weight: math.unit(30, "lb"),
  37995. name: "Front",
  37996. image: {
  37997. source: "./media/characters/sandy/front.svg",
  37998. extra: 1439/1307,
  37999. bottom: 194/1633
  38000. }
  38001. },
  38002. },
  38003. [
  38004. {
  38005. name: "Normal",
  38006. height: math.unit(2, "feet"),
  38007. default: true
  38008. },
  38009. ]
  38010. ))
  38011. characterMakers.push(() => makeCharacter(
  38012. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38013. {
  38014. front: {
  38015. height: math.unit(3, "feet"),
  38016. name: "Front",
  38017. image: {
  38018. source: "./media/characters/mellvi/front.svg",
  38019. extra: 1831/1630,
  38020. bottom: 58/1889
  38021. }
  38022. },
  38023. },
  38024. [
  38025. {
  38026. name: "Normal",
  38027. height: math.unit(3, "feet"),
  38028. default: true
  38029. },
  38030. ]
  38031. ))
  38032. characterMakers.push(() => makeCharacter(
  38033. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38034. {
  38035. front: {
  38036. height: math.unit(5 + 11/12, "feet"),
  38037. weight: math.unit(200, "lb"),
  38038. name: "Front",
  38039. image: {
  38040. source: "./media/characters/shirou/front.svg",
  38041. extra: 2491/2383,
  38042. bottom: 189/2680
  38043. }
  38044. },
  38045. back: {
  38046. height: math.unit(5 + 11/12, "feet"),
  38047. weight: math.unit(200, "lb"),
  38048. name: "Back",
  38049. image: {
  38050. source: "./media/characters/shirou/back.svg",
  38051. extra: 2554/2450,
  38052. bottom: 76/2630
  38053. }
  38054. },
  38055. },
  38056. [
  38057. {
  38058. name: "Normal",
  38059. height: math.unit(5 + 11/12, "feet"),
  38060. default: true
  38061. },
  38062. ]
  38063. ))
  38064. characterMakers.push(() => makeCharacter(
  38065. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38066. {
  38067. front: {
  38068. height: math.unit(6 + 3/12, "feet"),
  38069. weight: math.unit(177, "lb"),
  38070. name: "Front",
  38071. image: {
  38072. source: "./media/characters/noryu/front.svg",
  38073. extra: 973/885,
  38074. bottom: 10/983
  38075. }
  38076. },
  38077. },
  38078. [
  38079. {
  38080. name: "Normal",
  38081. height: math.unit(6 + 3/12, "feet"),
  38082. default: true
  38083. },
  38084. ]
  38085. ))
  38086. characterMakers.push(() => makeCharacter(
  38087. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38088. {
  38089. front: {
  38090. height: math.unit(5 + 6/12, "feet"),
  38091. weight: math.unit(170, "lb"),
  38092. name: "Front",
  38093. image: {
  38094. source: "./media/characters/mevolas-rubenido/front.svg",
  38095. extra: 2109/1901,
  38096. bottom: 96/2205
  38097. }
  38098. },
  38099. },
  38100. [
  38101. {
  38102. name: "Normal",
  38103. height: math.unit(5 + 6/12, "feet"),
  38104. default: true
  38105. },
  38106. ]
  38107. ))
  38108. characterMakers.push(() => makeCharacter(
  38109. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38110. {
  38111. front: {
  38112. height: math.unit(100, "feet"),
  38113. name: "Front",
  38114. image: {
  38115. source: "./media/characters/dee/front.svg",
  38116. extra: 2153/2036,
  38117. bottom: 59/2212
  38118. }
  38119. },
  38120. back: {
  38121. height: math.unit(100, "feet"),
  38122. name: "Back",
  38123. image: {
  38124. source: "./media/characters/dee/back.svg",
  38125. extra: 2183/2058,
  38126. bottom: 75/2258
  38127. }
  38128. },
  38129. foot: {
  38130. height: math.unit(19.43, "feet"),
  38131. name: "Foot",
  38132. image: {
  38133. source: "./media/characters/dee/foot.svg"
  38134. }
  38135. },
  38136. hoof: {
  38137. height: math.unit(20.6, "feet"),
  38138. name: "Hoof",
  38139. image: {
  38140. source: "./media/characters/dee/hoof.svg"
  38141. }
  38142. },
  38143. },
  38144. [
  38145. {
  38146. name: "Macro",
  38147. height: math.unit(100, "feet"),
  38148. default: true
  38149. },
  38150. ]
  38151. ))
  38152. characterMakers.push(() => makeCharacter(
  38153. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38154. {
  38155. front: {
  38156. height: math.unit(5 + 6/12, "feet"),
  38157. name: "Front",
  38158. image: {
  38159. source: "./media/characters/teh/front.svg",
  38160. extra: 1002/847,
  38161. bottom: 62/1064
  38162. }
  38163. },
  38164. },
  38165. [
  38166. {
  38167. name: "Normal",
  38168. height: math.unit(5 + 6/12, "feet"),
  38169. default: true
  38170. },
  38171. ]
  38172. ))
  38173. characterMakers.push(() => makeCharacter(
  38174. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38175. {
  38176. side: {
  38177. height: math.unit(6 + 1/12, "feet"),
  38178. weight: math.unit(204, "lb"),
  38179. name: "Side",
  38180. image: {
  38181. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38182. extra: 974/775,
  38183. bottom: 169/1143
  38184. }
  38185. },
  38186. sitting: {
  38187. height: math.unit(6 + 2/12, "feet"),
  38188. weight: math.unit(204, "lb"),
  38189. name: "Sitting",
  38190. image: {
  38191. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38192. extra: 1175/964,
  38193. bottom: 378/1553
  38194. }
  38195. },
  38196. },
  38197. [
  38198. {
  38199. name: "Normal",
  38200. height: math.unit(6 + 1/12, "feet"),
  38201. default: true
  38202. },
  38203. ]
  38204. ))
  38205. characterMakers.push(() => makeCharacter(
  38206. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38207. {
  38208. front: {
  38209. height: math.unit(6, "inches"),
  38210. name: "Front",
  38211. image: {
  38212. source: "./media/characters/tululi/front.svg",
  38213. extra: 1997/1876,
  38214. bottom: 20/2017
  38215. }
  38216. },
  38217. },
  38218. [
  38219. {
  38220. name: "Normal",
  38221. height: math.unit(6, "inches"),
  38222. default: true
  38223. },
  38224. ]
  38225. ))
  38226. characterMakers.push(() => makeCharacter(
  38227. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38228. {
  38229. front: {
  38230. height: math.unit(4 + 1/12, "feet"),
  38231. name: "Front",
  38232. image: {
  38233. source: "./media/characters/star/front.svg",
  38234. extra: 1493/1189,
  38235. bottom: 48/1541
  38236. }
  38237. },
  38238. },
  38239. [
  38240. {
  38241. name: "Normal",
  38242. height: math.unit(4 + 1/12, "feet"),
  38243. default: true
  38244. },
  38245. ]
  38246. ))
  38247. characterMakers.push(() => makeCharacter(
  38248. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38249. {
  38250. front: {
  38251. height: math.unit(6 + 3/12, "feet"),
  38252. name: "Front",
  38253. image: {
  38254. source: "./media/characters/comet/front.svg",
  38255. extra: 1681/1462,
  38256. bottom: 26/1707
  38257. }
  38258. },
  38259. },
  38260. [
  38261. {
  38262. name: "Normal",
  38263. height: math.unit(6 + 3/12, "feet"),
  38264. default: true
  38265. },
  38266. ]
  38267. ))
  38268. characterMakers.push(() => makeCharacter(
  38269. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38270. {
  38271. front: {
  38272. height: math.unit(950, "feet"),
  38273. name: "Front",
  38274. image: {
  38275. source: "./media/characters/vortex/front.svg",
  38276. extra: 1497/1434,
  38277. bottom: 56/1553
  38278. }
  38279. },
  38280. maw: {
  38281. height: math.unit(285, "feet"),
  38282. name: "Maw",
  38283. image: {
  38284. source: "./media/characters/vortex/maw.svg"
  38285. }
  38286. },
  38287. },
  38288. [
  38289. {
  38290. name: "Macro",
  38291. height: math.unit(950, "feet"),
  38292. default: true
  38293. },
  38294. ]
  38295. ))
  38296. characterMakers.push(() => makeCharacter(
  38297. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38298. {
  38299. front: {
  38300. height: math.unit(600, "feet"),
  38301. weight: math.unit(0.02, "grams"),
  38302. name: "Front",
  38303. image: {
  38304. source: "./media/characters/doodle/front.svg",
  38305. extra: 1578/1413,
  38306. bottom: 37/1615
  38307. }
  38308. },
  38309. },
  38310. [
  38311. {
  38312. name: "Macro",
  38313. height: math.unit(600, "feet"),
  38314. default: true
  38315. },
  38316. ]
  38317. ))
  38318. characterMakers.push(() => makeCharacter(
  38319. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38320. {
  38321. front: {
  38322. height: math.unit(6 + 6/12, "feet"),
  38323. name: "Front",
  38324. image: {
  38325. source: "./media/characters/jai/front.svg",
  38326. extra: 1645/1534,
  38327. bottom: 115/1760
  38328. }
  38329. },
  38330. },
  38331. [
  38332. {
  38333. name: "Normal",
  38334. height: math.unit(6 + 6/12, "feet"),
  38335. default: true
  38336. },
  38337. ]
  38338. ))
  38339. characterMakers.push(() => makeCharacter(
  38340. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38341. {
  38342. front: {
  38343. height: math.unit(6 + 8/12, "feet"),
  38344. name: "Front",
  38345. image: {
  38346. source: "./media/characters/pixel/front.svg",
  38347. extra: 1900/1735,
  38348. bottom: 63/1963
  38349. }
  38350. },
  38351. },
  38352. [
  38353. {
  38354. name: "Normal",
  38355. height: math.unit(6 + 8/12, "feet"),
  38356. default: true
  38357. },
  38358. ]
  38359. ))
  38360. characterMakers.push(() => makeCharacter(
  38361. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38362. {
  38363. back: {
  38364. height: math.unit(4 + 1/12, "feet"),
  38365. weight: math.unit(75, "lb"),
  38366. name: "Back",
  38367. image: {
  38368. source: "./media/characters/rhett/back.svg",
  38369. extra: 930/878,
  38370. bottom: 25/955
  38371. }
  38372. },
  38373. front: {
  38374. height: math.unit(4 + 1/12, "feet"),
  38375. weight: math.unit(75, "lb"),
  38376. name: "Front",
  38377. image: {
  38378. source: "./media/characters/rhett/front.svg",
  38379. extra: 1682/1586,
  38380. bottom: 92/1774
  38381. }
  38382. },
  38383. },
  38384. [
  38385. {
  38386. name: "Micro",
  38387. height: math.unit(8, "inches")
  38388. },
  38389. {
  38390. name: "Tiny",
  38391. height: math.unit(2, "feet")
  38392. },
  38393. {
  38394. name: "Normal",
  38395. height: math.unit(4 + 1/12, "feet"),
  38396. default: true
  38397. },
  38398. ]
  38399. ))
  38400. characterMakers.push(() => makeCharacter(
  38401. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38402. {
  38403. front: {
  38404. height: math.unit(3 + 3/12, "feet"),
  38405. name: "Front",
  38406. image: {
  38407. source: "./media/characters/penny/front.svg",
  38408. extra: 1406/1311,
  38409. bottom: 26/1432
  38410. }
  38411. },
  38412. },
  38413. [
  38414. {
  38415. name: "Normal",
  38416. height: math.unit(3 + 3/12, "feet"),
  38417. default: true
  38418. },
  38419. ]
  38420. ))
  38421. characterMakers.push(() => makeCharacter(
  38422. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38423. {
  38424. front: {
  38425. height: math.unit(4 + 11/12, "feet"),
  38426. name: "Front",
  38427. image: {
  38428. source: "./media/characters/monty/front.svg",
  38429. extra: 1479/1209,
  38430. bottom: 0/1479
  38431. }
  38432. },
  38433. },
  38434. [
  38435. {
  38436. name: "Normal",
  38437. height: math.unit(4 + 11/12, "feet"),
  38438. default: true
  38439. },
  38440. ]
  38441. ))
  38442. characterMakers.push(() => makeCharacter(
  38443. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38444. {
  38445. front: {
  38446. height: math.unit(8 + 4/12, "feet"),
  38447. name: "Front",
  38448. image: {
  38449. source: "./media/characters/sterling/front.svg",
  38450. extra: 1420/1236,
  38451. bottom: 27/1447
  38452. }
  38453. },
  38454. },
  38455. [
  38456. {
  38457. name: "Normal",
  38458. height: math.unit(8 + 4/12, "feet"),
  38459. default: true
  38460. },
  38461. ]
  38462. ))
  38463. characterMakers.push(() => makeCharacter(
  38464. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38465. {
  38466. front: {
  38467. height: math.unit(15, "feet"),
  38468. name: "Front",
  38469. image: {
  38470. source: "./media/characters/marble/front.svg",
  38471. extra: 973/937,
  38472. bottom: 32/1005
  38473. }
  38474. },
  38475. },
  38476. [
  38477. {
  38478. name: "Normal",
  38479. height: math.unit(15, "feet"),
  38480. default: true
  38481. },
  38482. ]
  38483. ))
  38484. characterMakers.push(() => makeCharacter(
  38485. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38486. {
  38487. front: {
  38488. height: math.unit(3, "inches"),
  38489. name: "Front",
  38490. image: {
  38491. source: "./media/characters/powder/front.svg",
  38492. extra: 1504/1334,
  38493. bottom: 518/2022
  38494. }
  38495. },
  38496. },
  38497. [
  38498. {
  38499. name: "Normal",
  38500. height: math.unit(3, "inches"),
  38501. default: true
  38502. },
  38503. ]
  38504. ))
  38505. characterMakers.push(() => makeCharacter(
  38506. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38507. {
  38508. front: {
  38509. height: math.unit(4 + 5/12, "feet"),
  38510. name: "Front",
  38511. image: {
  38512. source: "./media/characters/joey-raccoon/front.svg",
  38513. extra: 1273/1197,
  38514. bottom: 0/1273
  38515. }
  38516. },
  38517. },
  38518. [
  38519. {
  38520. name: "Normal",
  38521. height: math.unit(4 + 5/12, "feet"),
  38522. default: true
  38523. },
  38524. ]
  38525. ))
  38526. characterMakers.push(() => makeCharacter(
  38527. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38528. {
  38529. front: {
  38530. height: math.unit(8 + 4/12, "feet"),
  38531. name: "Front",
  38532. image: {
  38533. source: "./media/characters/vick/front.svg",
  38534. extra: 2187/2118,
  38535. bottom: 47/2234
  38536. }
  38537. },
  38538. },
  38539. [
  38540. {
  38541. name: "Normal",
  38542. height: math.unit(8 + 4/12, "feet"),
  38543. default: true
  38544. },
  38545. ]
  38546. ))
  38547. characterMakers.push(() => makeCharacter(
  38548. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38549. {
  38550. front: {
  38551. height: math.unit(5 + 5/12, "feet"),
  38552. name: "Front",
  38553. image: {
  38554. source: "./media/characters/mitsy/front.svg",
  38555. extra: 1842/1695,
  38556. bottom: 0/1842
  38557. }
  38558. },
  38559. },
  38560. [
  38561. {
  38562. name: "Normal",
  38563. height: math.unit(5 + 5/12, "feet"),
  38564. default: true
  38565. },
  38566. ]
  38567. ))
  38568. characterMakers.push(() => makeCharacter(
  38569. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38570. {
  38571. front: {
  38572. height: math.unit(6 + 3/12, "feet"),
  38573. name: "Front",
  38574. image: {
  38575. source: "./media/characters/silvy/front.svg",
  38576. extra: 1995/1836,
  38577. bottom: 225/2220
  38578. }
  38579. },
  38580. },
  38581. [
  38582. {
  38583. name: "Normal",
  38584. height: math.unit(6 + 3/12, "feet"),
  38585. default: true
  38586. },
  38587. ]
  38588. ))
  38589. characterMakers.push(() => makeCharacter(
  38590. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38591. {
  38592. front: {
  38593. height: math.unit(3 + 8/12, "feet"),
  38594. name: "Front",
  38595. image: {
  38596. source: "./media/characters/rodney/front.svg",
  38597. extra: 1956/1747,
  38598. bottom: 31/1987
  38599. }
  38600. },
  38601. frontDressed: {
  38602. height: math.unit(2.9, "feet"),
  38603. name: "Front (Dressed)",
  38604. image: {
  38605. source: "./media/characters/rodney/front-dressed.svg",
  38606. extra: 1382/1241,
  38607. bottom: 385/1767
  38608. }
  38609. },
  38610. },
  38611. [
  38612. {
  38613. name: "Normal",
  38614. height: math.unit(3 + 8/12, "feet"),
  38615. default: true
  38616. },
  38617. ]
  38618. ))
  38619. characterMakers.push(() => makeCharacter(
  38620. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38621. {
  38622. front: {
  38623. height: math.unit(5 + 9/12, "feet"),
  38624. weight: math.unit(194, "lbs"),
  38625. name: "Front",
  38626. image: {
  38627. source: "./media/characters/zakail-sudekai/front.svg",
  38628. extra: 2696/2533,
  38629. bottom: 248/2944
  38630. }
  38631. },
  38632. maw: {
  38633. height: math.unit(1.35, "feet"),
  38634. name: "Maw",
  38635. image: {
  38636. source: "./media/characters/zakail-sudekai/maw.svg"
  38637. }
  38638. },
  38639. },
  38640. [
  38641. {
  38642. name: "Normal",
  38643. height: math.unit(5 + 9/12, "feet"),
  38644. default: true
  38645. },
  38646. ]
  38647. ))
  38648. characterMakers.push(() => makeCharacter(
  38649. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38650. {
  38651. front: {
  38652. height: math.unit(8 + 4/12, "feet"),
  38653. weight: math.unit(1200, "lb"),
  38654. name: "Front",
  38655. image: {
  38656. source: "./media/characters/eleanor/front.svg",
  38657. extra: 1226/1192,
  38658. bottom: 52/1278
  38659. }
  38660. },
  38661. back: {
  38662. height: math.unit(8 + 4/12, "feet"),
  38663. weight: math.unit(1200, "lb"),
  38664. name: "Back",
  38665. image: {
  38666. source: "./media/characters/eleanor/back.svg",
  38667. extra: 1242/1184,
  38668. bottom: 60/1302
  38669. }
  38670. },
  38671. head: {
  38672. height: math.unit(2.62, "feet"),
  38673. name: "Head",
  38674. image: {
  38675. source: "./media/characters/eleanor/head.svg"
  38676. }
  38677. },
  38678. },
  38679. [
  38680. {
  38681. name: "Normal",
  38682. height: math.unit(8 + 4/12, "feet"),
  38683. default: true
  38684. },
  38685. ]
  38686. ))
  38687. characterMakers.push(() => makeCharacter(
  38688. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38689. {
  38690. front: {
  38691. height: math.unit(8 + 4/12, "feet"),
  38692. weight: math.unit(750, "lb"),
  38693. name: "Front",
  38694. image: {
  38695. source: "./media/characters/tanya/front.svg",
  38696. extra: 1749/1615,
  38697. bottom: 33/1782
  38698. }
  38699. },
  38700. },
  38701. [
  38702. {
  38703. name: "Normal",
  38704. height: math.unit(8 + 4/12, "feet"),
  38705. default: true
  38706. },
  38707. ]
  38708. ))
  38709. characterMakers.push(() => makeCharacter(
  38710. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38711. {
  38712. front: {
  38713. height: math.unit(5, "feet"),
  38714. weight: math.unit(225, "lb"),
  38715. name: "Front",
  38716. image: {
  38717. source: "./media/characters/cindy/front.svg",
  38718. extra: 1320/1250,
  38719. bottom: 42/1362
  38720. }
  38721. },
  38722. frontDressed: {
  38723. height: math.unit(5, "feet"),
  38724. weight: math.unit(225, "lb"),
  38725. name: "Front (Dressed)",
  38726. image: {
  38727. source: "./media/characters/cindy/front-dressed.svg",
  38728. extra: 1320/1250,
  38729. bottom: 42/1362
  38730. }
  38731. },
  38732. back: {
  38733. height: math.unit(5, "feet"),
  38734. weight: math.unit(225, "lb"),
  38735. name: "Back",
  38736. image: {
  38737. source: "./media/characters/cindy/back.svg",
  38738. extra: 1384/1346,
  38739. bottom: 14/1398
  38740. }
  38741. },
  38742. },
  38743. [
  38744. {
  38745. name: "Normal",
  38746. height: math.unit(5, "feet"),
  38747. default: true
  38748. },
  38749. ]
  38750. ))
  38751. characterMakers.push(() => makeCharacter(
  38752. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38753. {
  38754. front: {
  38755. height: math.unit(6 + 9/12, "feet"),
  38756. weight: math.unit(440, "lb"),
  38757. name: "Front",
  38758. image: {
  38759. source: "./media/characters/wilbur-owen/front.svg",
  38760. extra: 1575/1448,
  38761. bottom: 72/1647
  38762. }
  38763. },
  38764. back: {
  38765. height: math.unit(6 + 9/12, "feet"),
  38766. weight: math.unit(440, "lb"),
  38767. name: "Back",
  38768. image: {
  38769. source: "./media/characters/wilbur-owen/back.svg",
  38770. extra: 1578/1445,
  38771. bottom: 36/1614
  38772. }
  38773. },
  38774. },
  38775. [
  38776. {
  38777. name: "Normal",
  38778. height: math.unit(6 + 9/12, "feet"),
  38779. default: true
  38780. },
  38781. ]
  38782. ))
  38783. characterMakers.push(() => makeCharacter(
  38784. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38785. {
  38786. front: {
  38787. height: math.unit(6 + 5/12, "feet"),
  38788. weight: math.unit(650, "lb"),
  38789. name: "Front",
  38790. image: {
  38791. source: "./media/characters/keegan/front.svg",
  38792. extra: 2387/2198,
  38793. bottom: 33/2420
  38794. }
  38795. },
  38796. side: {
  38797. height: math.unit(6 + 5/12, "feet"),
  38798. weight: math.unit(650, "lb"),
  38799. name: "Side",
  38800. image: {
  38801. source: "./media/characters/keegan/side.svg",
  38802. extra: 2390/2202,
  38803. bottom: 47/2437
  38804. }
  38805. },
  38806. back: {
  38807. height: math.unit(6 + 5/12, "feet"),
  38808. weight: math.unit(650, "lb"),
  38809. name: "Back",
  38810. image: {
  38811. source: "./media/characters/keegan/back.svg",
  38812. extra: 2418/2268,
  38813. bottom: 15/2433
  38814. }
  38815. },
  38816. frontSfw: {
  38817. height: math.unit(6 + 5/12, "feet"),
  38818. weight: math.unit(650, "lb"),
  38819. name: "Front (SFW)",
  38820. image: {
  38821. source: "./media/characters/keegan/front-sfw.svg",
  38822. extra: 2387/2198,
  38823. bottom: 33/2420
  38824. }
  38825. },
  38826. beans: {
  38827. height: math.unit(1.85, "feet"),
  38828. name: "Beans",
  38829. image: {
  38830. source: "./media/characters/keegan/beans.svg"
  38831. }
  38832. },
  38833. },
  38834. [
  38835. {
  38836. name: "Normal",
  38837. height: math.unit(6 + 5/12, "feet"),
  38838. default: true
  38839. },
  38840. ]
  38841. ))
  38842. characterMakers.push(() => makeCharacter(
  38843. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38844. {
  38845. front: {
  38846. height: math.unit(9, "feet"),
  38847. name: "Front",
  38848. image: {
  38849. source: "./media/characters/colton/front.svg",
  38850. extra: 1589/1326,
  38851. bottom: 139/1728
  38852. }
  38853. },
  38854. },
  38855. [
  38856. {
  38857. name: "Normal",
  38858. height: math.unit(9, "feet"),
  38859. default: true
  38860. },
  38861. ]
  38862. ))
  38863. characterMakers.push(() => makeCharacter(
  38864. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38865. {
  38866. front: {
  38867. height: math.unit(2 + 9/12, "feet"),
  38868. name: "Front",
  38869. image: {
  38870. source: "./media/characters/bora/front.svg",
  38871. extra: 1265/1250,
  38872. bottom: 24/1289
  38873. }
  38874. },
  38875. },
  38876. [
  38877. {
  38878. name: "Normal",
  38879. height: math.unit(2 + 9/12, "feet"),
  38880. default: true
  38881. },
  38882. ]
  38883. ))
  38884. characterMakers.push(() => makeCharacter(
  38885. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38886. {
  38887. front: {
  38888. height: math.unit(8, "feet"),
  38889. name: "Front",
  38890. image: {
  38891. source: "./media/characters/myu-myu/front.svg",
  38892. extra: 1949/1857,
  38893. bottom: 90/2039
  38894. }
  38895. },
  38896. },
  38897. [
  38898. {
  38899. name: "Normal",
  38900. height: math.unit(8, "feet"),
  38901. default: true
  38902. },
  38903. {
  38904. name: "Big",
  38905. height: math.unit(15, "feet")
  38906. },
  38907. {
  38908. name: "BIG",
  38909. height: math.unit(25, "feet")
  38910. },
  38911. ]
  38912. ))
  38913. characterMakers.push(() => makeCharacter(
  38914. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38915. {
  38916. side: {
  38917. height: math.unit(7 + 5/12, "feet"),
  38918. weight: math.unit(2800, "lb"),
  38919. name: "Side",
  38920. image: {
  38921. source: "./media/characters/haloren/side.svg",
  38922. extra: 1793/409,
  38923. bottom: 59/1852
  38924. }
  38925. },
  38926. frontPaw: {
  38927. height: math.unit(2.36, "feet"),
  38928. name: "Front paw",
  38929. image: {
  38930. source: "./media/characters/haloren/front-paw.svg"
  38931. }
  38932. },
  38933. hindPaw: {
  38934. height: math.unit(3.18, "feet"),
  38935. name: "Hind paw",
  38936. image: {
  38937. source: "./media/characters/haloren/hind-paw.svg"
  38938. }
  38939. },
  38940. maw: {
  38941. height: math.unit(5.05, "feet"),
  38942. name: "Maw",
  38943. image: {
  38944. source: "./media/characters/haloren/maw.svg"
  38945. }
  38946. },
  38947. dick: {
  38948. height: math.unit(2.90, "feet"),
  38949. name: "Dick",
  38950. image: {
  38951. source: "./media/characters/haloren/dick.svg"
  38952. }
  38953. },
  38954. },
  38955. [
  38956. {
  38957. name: "Normal",
  38958. height: math.unit(7 + 5/12, "feet"),
  38959. default: true
  38960. },
  38961. {
  38962. name: "Enhanced",
  38963. height: math.unit(14 + 3/12, "feet")
  38964. },
  38965. ]
  38966. ))
  38967. characterMakers.push(() => makeCharacter(
  38968. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38969. {
  38970. front: {
  38971. height: math.unit(171, "cm"),
  38972. name: "Front",
  38973. image: {
  38974. source: "./media/characters/kimmy/front.svg",
  38975. extra: 1491/1435,
  38976. bottom: 53/1544
  38977. }
  38978. },
  38979. },
  38980. [
  38981. {
  38982. name: "Small",
  38983. height: math.unit(9, "cm")
  38984. },
  38985. {
  38986. name: "Normal",
  38987. height: math.unit(171, "cm"),
  38988. default: true
  38989. },
  38990. ]
  38991. ))
  38992. characterMakers.push(() => makeCharacter(
  38993. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38994. {
  38995. front: {
  38996. height: math.unit(8, "feet"),
  38997. weight: math.unit(300, "lb"),
  38998. name: "Front",
  38999. image: {
  39000. source: "./media/characters/galeboomer/front.svg",
  39001. extra: 4651/4415,
  39002. bottom: 162/4813
  39003. }
  39004. },
  39005. back: {
  39006. height: math.unit(8, "feet"),
  39007. weight: math.unit(300, "lb"),
  39008. name: "Back",
  39009. image: {
  39010. source: "./media/characters/galeboomer/back.svg",
  39011. extra: 4544/4314,
  39012. bottom: 16/4560
  39013. }
  39014. },
  39015. frontAlt: {
  39016. height: math.unit(8, "feet"),
  39017. weight: math.unit(300, "lb"),
  39018. name: "Front (Alt)",
  39019. image: {
  39020. source: "./media/characters/galeboomer/front-alt.svg",
  39021. extra: 4458/4228,
  39022. bottom: 68/4526
  39023. }
  39024. },
  39025. maw: {
  39026. height: math.unit(1.2, "feet"),
  39027. name: "Maw",
  39028. image: {
  39029. source: "./media/characters/galeboomer/maw.svg"
  39030. }
  39031. },
  39032. },
  39033. [
  39034. {
  39035. name: "Normal",
  39036. height: math.unit(8, "feet"),
  39037. default: true
  39038. },
  39039. ]
  39040. ))
  39041. characterMakers.push(() => makeCharacter(
  39042. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39043. {
  39044. front: {
  39045. height: math.unit(5 + 9/12, "feet"),
  39046. weight: math.unit(120, "lb"),
  39047. name: "Front",
  39048. image: {
  39049. source: "./media/characters/chyr/front.svg",
  39050. extra: 1323/1254,
  39051. bottom: 63/1386
  39052. }
  39053. },
  39054. back: {
  39055. height: math.unit(5 + 9/12, "feet"),
  39056. weight: math.unit(120, "lb"),
  39057. name: "Back",
  39058. image: {
  39059. source: "./media/characters/chyr/back.svg",
  39060. extra: 1323/1252,
  39061. bottom: 48/1371
  39062. }
  39063. },
  39064. },
  39065. [
  39066. {
  39067. name: "Normal",
  39068. height: math.unit(5 + 9/12, "feet"),
  39069. default: true
  39070. },
  39071. ]
  39072. ))
  39073. characterMakers.push(() => makeCharacter(
  39074. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39075. {
  39076. front: {
  39077. height: math.unit(7, "feet"),
  39078. weight: math.unit(310, "lb"),
  39079. name: "Front",
  39080. image: {
  39081. source: "./media/characters/solarus/front.svg",
  39082. extra: 2415/2021,
  39083. bottom: 103/2518
  39084. }
  39085. },
  39086. back: {
  39087. height: math.unit(7, "feet"),
  39088. weight: math.unit(310, "lb"),
  39089. name: "Back",
  39090. image: {
  39091. source: "./media/characters/solarus/back.svg",
  39092. extra: 2463/2089,
  39093. bottom: 79/2542
  39094. }
  39095. },
  39096. },
  39097. [
  39098. {
  39099. name: "Normal",
  39100. height: math.unit(7, "feet"),
  39101. default: true
  39102. },
  39103. ]
  39104. ))
  39105. characterMakers.push(() => makeCharacter(
  39106. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39107. {
  39108. front: {
  39109. height: math.unit(16, "feet"),
  39110. name: "Front",
  39111. image: {
  39112. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39113. extra: 1844/1780,
  39114. bottom: 58/1902
  39115. }
  39116. },
  39117. winterCoat: {
  39118. height: math.unit(16, "feet"),
  39119. name: "Winter Coat",
  39120. image: {
  39121. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39122. extra: 1807/1775,
  39123. bottom: 69/1876
  39124. }
  39125. },
  39126. },
  39127. [
  39128. {
  39129. name: "Normal",
  39130. height: math.unit(16, "feet"),
  39131. default: true
  39132. },
  39133. {
  39134. name: "Chicago Size",
  39135. height: math.unit(560, "feet")
  39136. },
  39137. ]
  39138. ))
  39139. characterMakers.push(() => makeCharacter(
  39140. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39141. {
  39142. front: {
  39143. height: math.unit(11 + 6/12, "feet"),
  39144. weight: math.unit(1366, "lb"),
  39145. name: "Front",
  39146. image: {
  39147. source: "./media/characters/lexor/front.svg",
  39148. extra: 1560/1481,
  39149. bottom: 211/1771
  39150. }
  39151. },
  39152. back: {
  39153. height: math.unit(11 + 6/12, "feet"),
  39154. weight: math.unit(1366, "lb"),
  39155. name: "Back",
  39156. image: {
  39157. source: "./media/characters/lexor/back.svg",
  39158. extra: 1614/1533,
  39159. bottom: 76/1690
  39160. }
  39161. },
  39162. maw: {
  39163. height: math.unit(3, "feet"),
  39164. name: "Maw",
  39165. image: {
  39166. source: "./media/characters/lexor/maw.svg"
  39167. }
  39168. },
  39169. dick: {
  39170. height: math.unit(2.59, "feet"),
  39171. name: "Dick",
  39172. image: {
  39173. source: "./media/characters/lexor/dick.svg"
  39174. }
  39175. },
  39176. },
  39177. [
  39178. {
  39179. name: "Normal",
  39180. height: math.unit(11 + 6/12, "feet"),
  39181. default: true
  39182. },
  39183. ]
  39184. ))
  39185. characterMakers.push(() => makeCharacter(
  39186. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39187. {
  39188. front: {
  39189. height: math.unit(5 + 8/12, "feet"),
  39190. name: "Front",
  39191. image: {
  39192. source: "./media/characters/magnum/front.svg",
  39193. extra: 942/855,
  39194. bottom: 26/968
  39195. }
  39196. },
  39197. },
  39198. [
  39199. {
  39200. name: "Normal",
  39201. height: math.unit(5 + 8/12, "feet"),
  39202. default: true
  39203. },
  39204. ]
  39205. ))
  39206. characterMakers.push(() => makeCharacter(
  39207. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39208. {
  39209. front: {
  39210. height: math.unit(18 + 4/12, "feet"),
  39211. weight: math.unit(1500, "kg"),
  39212. name: "Front",
  39213. image: {
  39214. source: "./media/characters/solas-sharpsman/front.svg",
  39215. extra: 1698/1589,
  39216. bottom: 0/1698
  39217. }
  39218. },
  39219. },
  39220. [
  39221. {
  39222. name: "Normal",
  39223. height: math.unit(18 + 4/12, "feet"),
  39224. default: true
  39225. },
  39226. ]
  39227. ))
  39228. characterMakers.push(() => makeCharacter(
  39229. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39230. {
  39231. front: {
  39232. height: math.unit(5 + 5/12, "feet"),
  39233. weight: math.unit(180, "lb"),
  39234. name: "Front",
  39235. image: {
  39236. source: "./media/characters/october/front.svg",
  39237. extra: 1800/1650,
  39238. bottom: 0/1800
  39239. }
  39240. },
  39241. frontNsfw: {
  39242. height: math.unit(5 + 5/12, "feet"),
  39243. weight: math.unit(180, "lb"),
  39244. name: "Front (NSFW)",
  39245. image: {
  39246. source: "./media/characters/october/front-nsfw.svg",
  39247. extra: 1392/1307,
  39248. bottom: 42/1434
  39249. }
  39250. },
  39251. },
  39252. [
  39253. {
  39254. name: "Normal",
  39255. height: math.unit(5 + 5/12, "feet"),
  39256. default: true
  39257. },
  39258. ]
  39259. ))
  39260. characterMakers.push(() => makeCharacter(
  39261. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39262. {
  39263. front: {
  39264. height: math.unit(8 + 6/12, "feet"),
  39265. name: "Front",
  39266. image: {
  39267. source: "./media/characters/essynkardi/front.svg",
  39268. extra: 1541/1457,
  39269. bottom: 47/1588
  39270. }
  39271. },
  39272. },
  39273. [
  39274. {
  39275. name: "Normal",
  39276. height: math.unit(8 + 6/12, "feet"),
  39277. default: true
  39278. },
  39279. ]
  39280. ))
  39281. characterMakers.push(() => makeCharacter(
  39282. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39283. {
  39284. front: {
  39285. height: math.unit(6 + 6/12, "feet"),
  39286. weight: math.unit(7, "lb"),
  39287. name: "Front",
  39288. image: {
  39289. source: "./media/characters/icky/front.svg",
  39290. extra: 813/782,
  39291. bottom: 66/879
  39292. }
  39293. },
  39294. back: {
  39295. height: math.unit(6 + 6/12, "feet"),
  39296. weight: math.unit(7, "lb"),
  39297. name: "Back",
  39298. image: {
  39299. source: "./media/characters/icky/back.svg",
  39300. extra: 754/735,
  39301. bottom: 56/810
  39302. }
  39303. },
  39304. },
  39305. [
  39306. {
  39307. name: "Normal",
  39308. height: math.unit(6 + 6/12, "feet"),
  39309. default: true
  39310. },
  39311. ]
  39312. ))
  39313. characterMakers.push(() => makeCharacter(
  39314. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39315. {
  39316. front: {
  39317. height: math.unit(15, "feet"),
  39318. name: "Front",
  39319. image: {
  39320. source: "./media/characters/rojas/front.svg",
  39321. extra: 1462/1408,
  39322. bottom: 95/1557
  39323. }
  39324. },
  39325. back: {
  39326. height: math.unit(15, "feet"),
  39327. name: "Back",
  39328. image: {
  39329. source: "./media/characters/rojas/back.svg",
  39330. extra: 1023/954,
  39331. bottom: 28/1051
  39332. }
  39333. },
  39334. },
  39335. [
  39336. {
  39337. name: "Normal",
  39338. height: math.unit(15, "feet"),
  39339. default: true
  39340. },
  39341. ]
  39342. ))
  39343. characterMakers.push(() => makeCharacter(
  39344. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39345. {
  39346. frontHuman: {
  39347. height: math.unit(5 + 7/12, "feet"),
  39348. name: "Front (Human)",
  39349. image: {
  39350. source: "./media/characters/alek-dryagan/front-human.svg",
  39351. extra: 1687/1667,
  39352. bottom: 69/1756
  39353. }
  39354. },
  39355. backHuman: {
  39356. height: math.unit(5 + 7/12, "feet"),
  39357. name: "Back (Human)",
  39358. image: {
  39359. source: "./media/characters/alek-dryagan/back-human.svg",
  39360. extra: 1670/1649,
  39361. bottom: 65/1735
  39362. }
  39363. },
  39364. frontDemi: {
  39365. height: math.unit(65, "feet"),
  39366. name: "Front (Demi)",
  39367. image: {
  39368. source: "./media/characters/alek-dryagan/front-demi.svg",
  39369. extra: 1669/1642,
  39370. bottom: 49/1718
  39371. }
  39372. },
  39373. backDemi: {
  39374. height: math.unit(65, "feet"),
  39375. name: "Back (Demi)",
  39376. image: {
  39377. source: "./media/characters/alek-dryagan/back-demi.svg",
  39378. extra: 1658/1637,
  39379. bottom: 40/1698
  39380. }
  39381. },
  39382. mawHuman: {
  39383. height: math.unit(0.3, "feet"),
  39384. name: "Maw (Human)",
  39385. image: {
  39386. source: "./media/characters/alek-dryagan/maw-human.svg"
  39387. }
  39388. },
  39389. mawDemi: {
  39390. height: math.unit(3.8, "feet"),
  39391. name: "Maw (Demi)",
  39392. image: {
  39393. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39394. }
  39395. },
  39396. },
  39397. [
  39398. {
  39399. name: "Normal",
  39400. height: math.unit(5 + 7/12, "feet"),
  39401. default: true
  39402. },
  39403. ]
  39404. ))
  39405. characterMakers.push(() => makeCharacter(
  39406. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39407. {
  39408. frontHuman: {
  39409. height: math.unit(5 + 2/12, "feet"),
  39410. name: "Front (Human)",
  39411. image: {
  39412. source: "./media/characters/gen/front-human.svg",
  39413. extra: 1627/1538,
  39414. bottom: 71/1698
  39415. }
  39416. },
  39417. backHuman: {
  39418. height: math.unit(5 + 2/12, "feet"),
  39419. name: "Back (Human)",
  39420. image: {
  39421. source: "./media/characters/gen/back-human.svg",
  39422. extra: 1638/1548,
  39423. bottom: 69/1707
  39424. }
  39425. },
  39426. frontDemi: {
  39427. height: math.unit(5 + 2/12, "feet"),
  39428. name: "Front (Demi)",
  39429. image: {
  39430. source: "./media/characters/gen/front-demi.svg",
  39431. extra: 1627/1538,
  39432. bottom: 71/1698
  39433. }
  39434. },
  39435. backDemi: {
  39436. height: math.unit(5 + 2/12, "feet"),
  39437. name: "Back (Demi)",
  39438. image: {
  39439. source: "./media/characters/gen/back-demi.svg",
  39440. extra: 1638/1548,
  39441. bottom: 69/1707
  39442. }
  39443. },
  39444. },
  39445. [
  39446. {
  39447. name: "Normal",
  39448. height: math.unit(5 + 2/12, "feet"),
  39449. default: true
  39450. },
  39451. ]
  39452. ))
  39453. characterMakers.push(() => makeCharacter(
  39454. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39455. {
  39456. frontImp: {
  39457. height: math.unit(1 + 11/12, "feet"),
  39458. name: "Front (Imp)",
  39459. image: {
  39460. source: "./media/characters/max-kobold/front-imp.svg",
  39461. extra: 1238/1134,
  39462. bottom: 81/1319
  39463. }
  39464. },
  39465. backImp: {
  39466. height: math.unit(1 + 11/12, "feet"),
  39467. name: "Back (Imp)",
  39468. image: {
  39469. source: "./media/characters/max-kobold/back-imp.svg",
  39470. extra: 1334/1175,
  39471. bottom: 34/1368
  39472. }
  39473. },
  39474. frontDemi: {
  39475. height: math.unit(5 + 9/12, "feet"),
  39476. name: "Front (Demi)",
  39477. image: {
  39478. source: "./media/characters/max-kobold/front-demi.svg",
  39479. extra: 1715/1685,
  39480. bottom: 54/1769
  39481. }
  39482. },
  39483. backDemi: {
  39484. height: math.unit(5 + 9/12, "feet"),
  39485. name: "Back (Demi)",
  39486. image: {
  39487. source: "./media/characters/max-kobold/back-demi.svg",
  39488. extra: 1752/1729,
  39489. bottom: 41/1793
  39490. }
  39491. },
  39492. handImp: {
  39493. height: math.unit(0.45, "feet"),
  39494. name: "Hand (Imp)",
  39495. image: {
  39496. source: "./media/characters/max-kobold/hand.svg"
  39497. }
  39498. },
  39499. pawImp: {
  39500. height: math.unit(0.46, "feet"),
  39501. name: "Paw (Imp)",
  39502. image: {
  39503. source: "./media/characters/max-kobold/paw.svg"
  39504. }
  39505. },
  39506. handDemi: {
  39507. height: math.unit(0.80, "feet"),
  39508. name: "Hand (Demi)",
  39509. image: {
  39510. source: "./media/characters/max-kobold/hand.svg"
  39511. }
  39512. },
  39513. pawDemi: {
  39514. height: math.unit(1.1, "feet"),
  39515. name: "Paw (Demi)",
  39516. image: {
  39517. source: "./media/characters/max-kobold/paw.svg"
  39518. }
  39519. },
  39520. headImp: {
  39521. height: math.unit(1.33, "feet"),
  39522. name: "Head (Imp)",
  39523. image: {
  39524. source: "./media/characters/max-kobold/head-imp.svg"
  39525. }
  39526. },
  39527. mawImp: {
  39528. height: math.unit(0.75, "feet"),
  39529. name: "Maw (Imp)",
  39530. image: {
  39531. source: "./media/characters/max-kobold/maw-imp.svg"
  39532. }
  39533. },
  39534. mawDemi: {
  39535. height: math.unit(0.42, "feet"),
  39536. name: "Maw (Demi)",
  39537. image: {
  39538. source: "./media/characters/max-kobold/maw-demi.svg"
  39539. }
  39540. },
  39541. },
  39542. [
  39543. {
  39544. name: "Normal",
  39545. height: math.unit(1 + 11/12, "feet"),
  39546. default: true
  39547. },
  39548. ]
  39549. ))
  39550. characterMakers.push(() => makeCharacter(
  39551. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39552. {
  39553. front: {
  39554. height: math.unit(7 + 5/12, "feet"),
  39555. name: "Front",
  39556. image: {
  39557. source: "./media/characters/carbon/front.svg",
  39558. extra: 1754/1689,
  39559. bottom: 65/1819
  39560. }
  39561. },
  39562. back: {
  39563. height: math.unit(7 + 5/12, "feet"),
  39564. name: "Back",
  39565. image: {
  39566. source: "./media/characters/carbon/back.svg",
  39567. extra: 1762/1695,
  39568. bottom: 24/1786
  39569. }
  39570. },
  39571. frontGigantamax: {
  39572. height: math.unit(150, "feet"),
  39573. name: "Front (Gigantamax)",
  39574. image: {
  39575. source: "./media/characters/carbon/front-gigantamax.svg",
  39576. extra: 1826/1669,
  39577. bottom: 59/1885
  39578. }
  39579. },
  39580. backGigantamax: {
  39581. height: math.unit(150, "feet"),
  39582. name: "Back (Gigantamax)",
  39583. image: {
  39584. source: "./media/characters/carbon/back-gigantamax.svg",
  39585. extra: 1796/1653,
  39586. bottom: 53/1849
  39587. }
  39588. },
  39589. maw: {
  39590. height: math.unit(0.48, "feet"),
  39591. name: "Maw",
  39592. image: {
  39593. source: "./media/characters/carbon/maw.svg"
  39594. }
  39595. },
  39596. mawGigantamax: {
  39597. height: math.unit(7.5, "feet"),
  39598. name: "Maw (Gigantamax)",
  39599. image: {
  39600. source: "./media/characters/carbon/maw-gigantamax.svg"
  39601. }
  39602. },
  39603. },
  39604. [
  39605. {
  39606. name: "Normal",
  39607. height: math.unit(7 + 5/12, "feet"),
  39608. default: true
  39609. },
  39610. ]
  39611. ))
  39612. characterMakers.push(() => makeCharacter(
  39613. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39614. {
  39615. front: {
  39616. height: math.unit(6, "feet"),
  39617. name: "Front",
  39618. image: {
  39619. source: "./media/characters/maverick/front.svg",
  39620. extra: 1672/1661,
  39621. bottom: 85/1757
  39622. }
  39623. },
  39624. back: {
  39625. height: math.unit(6, "feet"),
  39626. name: "Back",
  39627. image: {
  39628. source: "./media/characters/maverick/back.svg",
  39629. extra: 1642/1631,
  39630. bottom: 38/1680
  39631. }
  39632. },
  39633. },
  39634. [
  39635. {
  39636. name: "Normal",
  39637. height: math.unit(6, "feet"),
  39638. default: true
  39639. },
  39640. ]
  39641. ))
  39642. characterMakers.push(() => makeCharacter(
  39643. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39644. {
  39645. front: {
  39646. height: math.unit(15, "feet"),
  39647. weight: math.unit(615, "lb"),
  39648. name: "Front",
  39649. image: {
  39650. source: "./media/characters/grockle/front.svg",
  39651. extra: 1535/1427,
  39652. bottom: 56/1591
  39653. }
  39654. },
  39655. },
  39656. [
  39657. {
  39658. name: "Normal",
  39659. height: math.unit(15, "feet"),
  39660. default: true
  39661. },
  39662. {
  39663. name: "Large",
  39664. height: math.unit(150, "feet")
  39665. },
  39666. {
  39667. name: "Macro",
  39668. height: math.unit(1876, "feet")
  39669. },
  39670. {
  39671. name: "Mega Macro",
  39672. height: math.unit(121940, "feet")
  39673. },
  39674. {
  39675. name: "Giga Macro",
  39676. height: math.unit(750, "km")
  39677. },
  39678. {
  39679. name: "Tera Macro",
  39680. height: math.unit(750000, "km")
  39681. },
  39682. {
  39683. name: "Galactic",
  39684. height: math.unit(1.4e5, "km")
  39685. },
  39686. {
  39687. name: "Godlike",
  39688. height: math.unit(9.8e280, "galaxies")
  39689. },
  39690. ]
  39691. ))
  39692. characterMakers.push(() => makeCharacter(
  39693. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39694. {
  39695. front: {
  39696. height: math.unit(11, "meters"),
  39697. weight: math.unit(20, "tonnes"),
  39698. name: "Front",
  39699. image: {
  39700. source: "./media/characters/alistair/front.svg",
  39701. extra: 1265/1009,
  39702. bottom: 93/1358
  39703. }
  39704. },
  39705. },
  39706. [
  39707. {
  39708. name: "Normal",
  39709. height: math.unit(11, "meters"),
  39710. default: true
  39711. },
  39712. ]
  39713. ))
  39714. characterMakers.push(() => makeCharacter(
  39715. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39716. {
  39717. front: {
  39718. height: math.unit(5 + 8/12, "feet"),
  39719. name: "Front",
  39720. image: {
  39721. source: "./media/characters/haruka/front.svg",
  39722. extra: 2012/1952,
  39723. bottom: 0/2012
  39724. }
  39725. },
  39726. },
  39727. [
  39728. {
  39729. name: "Normal",
  39730. height: math.unit(5 + 8/12, "feet"),
  39731. default: true
  39732. },
  39733. ]
  39734. ))
  39735. characterMakers.push(() => makeCharacter(
  39736. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39737. {
  39738. back: {
  39739. height: math.unit(9, "feet"),
  39740. name: "Back",
  39741. image: {
  39742. source: "./media/characters/vivian-sylveon/back.svg",
  39743. extra: 1853/1714,
  39744. bottom: 0/1853
  39745. }
  39746. },
  39747. hyper: {
  39748. height: math.unit(5.58, "feet"),
  39749. name: "Hyper",
  39750. preyCapacity: math.unit(2.80616218797, "m^3"),
  39751. image: {
  39752. source: "./media/characters/vivian-sylveon/hyper.svg",
  39753. extra: 999/676,
  39754. bottom: 697/1696
  39755. },
  39756. },
  39757. paw: {
  39758. height: math.unit(1.8, "feet"),
  39759. name: "Paw",
  39760. image: {
  39761. source: "./media/characters/vivian-sylveon/paw.svg"
  39762. }
  39763. },
  39764. danger: {
  39765. height: math.unit(7.5, "feet"),
  39766. name: "DANGER",
  39767. image: {
  39768. source: "./media/characters/vivian-sylveon/danger.svg"
  39769. }
  39770. },
  39771. },
  39772. [
  39773. {
  39774. name: "Normal",
  39775. height: math.unit(9, "feet"),
  39776. default: true
  39777. },
  39778. {
  39779. name: "Macro",
  39780. height: math.unit(500, "feet")
  39781. },
  39782. {
  39783. name: "Megamacro",
  39784. height: math.unit(600, "miles")
  39785. },
  39786. {
  39787. name: "Gigamacro",
  39788. height: math.unit(30000, "miles")
  39789. },
  39790. ]
  39791. ))
  39792. characterMakers.push(() => makeCharacter(
  39793. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39794. {
  39795. anthro: {
  39796. height: math.unit(5 + 10/12, "feet"),
  39797. weight: math.unit(100, "lb"),
  39798. name: "Anthro",
  39799. image: {
  39800. source: "./media/characters/daiki/anthro.svg",
  39801. extra: 1115/1027,
  39802. bottom: 69/1184
  39803. }
  39804. },
  39805. feral: {
  39806. height: math.unit(200, "feet"),
  39807. name: "Feral",
  39808. image: {
  39809. source: "./media/characters/daiki/feral.svg",
  39810. extra: 1256/313,
  39811. bottom: 39/1295
  39812. }
  39813. },
  39814. feralHead: {
  39815. height: math.unit(171, "feet"),
  39816. name: "Feral Head",
  39817. image: {
  39818. source: "./media/characters/daiki/feral-head.svg"
  39819. }
  39820. },
  39821. manaDragon: {
  39822. height: math.unit(170, "meters"),
  39823. name: "Mana-dragon",
  39824. image: {
  39825. source: "./media/characters/daiki/mana-dragon.svg",
  39826. extra: 763/420,
  39827. bottom: 97/860
  39828. }
  39829. },
  39830. },
  39831. [
  39832. {
  39833. name: "Normal",
  39834. height: math.unit(5 + 10/12, "feet"),
  39835. default: true
  39836. },
  39837. ]
  39838. ))
  39839. characterMakers.push(() => makeCharacter(
  39840. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39841. {
  39842. fullyEquippedFront: {
  39843. height: math.unit(3 + 1/12, "feet"),
  39844. weight: math.unit(24, "lb"),
  39845. name: "Fully Equipped (Front)",
  39846. image: {
  39847. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39848. extra: 687/605,
  39849. bottom: 18/705
  39850. }
  39851. },
  39852. fullyEquippedBack: {
  39853. height: math.unit(3 + 1/12, "feet"),
  39854. weight: math.unit(24, "lb"),
  39855. name: "Fully Equipped (Back)",
  39856. image: {
  39857. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39858. extra: 689/590,
  39859. bottom: 18/707
  39860. }
  39861. },
  39862. dailyWear: {
  39863. height: math.unit(3 + 1/12, "feet"),
  39864. weight: math.unit(24, "lb"),
  39865. name: "Daily Wear",
  39866. image: {
  39867. source: "./media/characters/tea-spot/daily-wear.svg",
  39868. extra: 701/620,
  39869. bottom: 21/722
  39870. }
  39871. },
  39872. maidWork: {
  39873. height: math.unit(3 + 1/12, "feet"),
  39874. weight: math.unit(24, "lb"),
  39875. name: "Maid Work",
  39876. image: {
  39877. source: "./media/characters/tea-spot/maid-work.svg",
  39878. extra: 693/609,
  39879. bottom: 15/708
  39880. }
  39881. },
  39882. },
  39883. [
  39884. {
  39885. name: "Normal",
  39886. height: math.unit(3 + 1/12, "feet"),
  39887. default: true
  39888. },
  39889. ]
  39890. ))
  39891. characterMakers.push(() => makeCharacter(
  39892. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39893. {
  39894. front: {
  39895. height: math.unit(175, "cm"),
  39896. weight: math.unit(75, "kg"),
  39897. name: "Front",
  39898. image: {
  39899. source: "./media/characters/chee/front.svg",
  39900. extra: 1796/1740,
  39901. bottom: 40/1836
  39902. }
  39903. },
  39904. },
  39905. [
  39906. {
  39907. name: "Micro-Micro",
  39908. height: math.unit(1, "nm")
  39909. },
  39910. {
  39911. name: "Micro-erst",
  39912. height: math.unit(1, "micrometer")
  39913. },
  39914. {
  39915. name: "Micro-er",
  39916. height: math.unit(1, "cm")
  39917. },
  39918. {
  39919. name: "Normal",
  39920. height: math.unit(175, "cm"),
  39921. default: true
  39922. },
  39923. {
  39924. name: "Macro",
  39925. height: math.unit(100, "m")
  39926. },
  39927. {
  39928. name: "Macro-er",
  39929. height: math.unit(1, "km")
  39930. },
  39931. {
  39932. name: "Macro-erst",
  39933. height: math.unit(10, "km")
  39934. },
  39935. {
  39936. name: "Macro-Macro",
  39937. height: math.unit(100, "km")
  39938. },
  39939. ]
  39940. ))
  39941. characterMakers.push(() => makeCharacter(
  39942. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39943. {
  39944. front: {
  39945. height: math.unit(11 + 9/12, "feet"),
  39946. weight: math.unit(935, "lb"),
  39947. name: "Front",
  39948. image: {
  39949. source: "./media/characters/kingsley/front.svg",
  39950. extra: 1803/1674,
  39951. bottom: 127/1930
  39952. }
  39953. },
  39954. frontNude: {
  39955. height: math.unit(11 + 9/12, "feet"),
  39956. weight: math.unit(935, "lb"),
  39957. name: "Front (Nude)",
  39958. image: {
  39959. source: "./media/characters/kingsley/front-nude.svg",
  39960. extra: 1803/1674,
  39961. bottom: 127/1930
  39962. }
  39963. },
  39964. },
  39965. [
  39966. {
  39967. name: "Normal",
  39968. height: math.unit(11 + 9/12, "feet"),
  39969. default: true
  39970. },
  39971. ]
  39972. ))
  39973. characterMakers.push(() => makeCharacter(
  39974. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39975. {
  39976. side: {
  39977. height: math.unit(9, "feet"),
  39978. name: "Side",
  39979. image: {
  39980. source: "./media/characters/rymel/side.svg",
  39981. extra: 792/469,
  39982. bottom: 121/913
  39983. }
  39984. },
  39985. maw: {
  39986. height: math.unit(2.4, "meters"),
  39987. name: "Maw",
  39988. image: {
  39989. source: "./media/characters/rymel/maw.svg"
  39990. }
  39991. },
  39992. },
  39993. [
  39994. {
  39995. name: "House Drake",
  39996. height: math.unit(2, "feet")
  39997. },
  39998. {
  39999. name: "Reduced",
  40000. height: math.unit(4.5, "feet")
  40001. },
  40002. {
  40003. name: "Normal",
  40004. height: math.unit(9, "feet"),
  40005. default: true
  40006. },
  40007. ]
  40008. ))
  40009. characterMakers.push(() => makeCharacter(
  40010. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40011. {
  40012. front: {
  40013. height: math.unit(1.74, "meters"),
  40014. weight: math.unit(55, "kg"),
  40015. name: "Front",
  40016. image: {
  40017. source: "./media/characters/rubus/front.svg",
  40018. extra: 1894/1742,
  40019. bottom: 44/1938
  40020. }
  40021. },
  40022. },
  40023. [
  40024. {
  40025. name: "Normal",
  40026. height: math.unit(1.74, "meters"),
  40027. default: true
  40028. },
  40029. ]
  40030. ))
  40031. characterMakers.push(() => makeCharacter(
  40032. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40033. {
  40034. front: {
  40035. height: math.unit(5 + 2/12, "feet"),
  40036. weight: math.unit(112, "lb"),
  40037. name: "Front",
  40038. image: {
  40039. source: "./media/characters/cassie-kingston/front.svg",
  40040. extra: 1438/1390,
  40041. bottom: 47/1485
  40042. }
  40043. },
  40044. },
  40045. [
  40046. {
  40047. name: "Normal",
  40048. height: math.unit(5 + 2/12, "feet"),
  40049. default: true
  40050. },
  40051. {
  40052. name: "Macro",
  40053. height: math.unit(128, "feet")
  40054. },
  40055. {
  40056. name: "Megamacro",
  40057. height: math.unit(2.56, "miles")
  40058. },
  40059. ]
  40060. ))
  40061. characterMakers.push(() => makeCharacter(
  40062. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40063. {
  40064. front: {
  40065. height: math.unit(7, "feet"),
  40066. name: "Front",
  40067. image: {
  40068. source: "./media/characters/fox/front.svg",
  40069. extra: 1798/1703,
  40070. bottom: 55/1853
  40071. }
  40072. },
  40073. back: {
  40074. height: math.unit(7, "feet"),
  40075. name: "Back",
  40076. image: {
  40077. source: "./media/characters/fox/back.svg",
  40078. extra: 1748/1649,
  40079. bottom: 32/1780
  40080. }
  40081. },
  40082. head: {
  40083. height: math.unit(1.95, "feet"),
  40084. name: "Head",
  40085. image: {
  40086. source: "./media/characters/fox/head.svg"
  40087. }
  40088. },
  40089. dick: {
  40090. height: math.unit(1.33, "feet"),
  40091. name: "Dick",
  40092. image: {
  40093. source: "./media/characters/fox/dick.svg"
  40094. }
  40095. },
  40096. foot: {
  40097. height: math.unit(1, "feet"),
  40098. name: "Foot",
  40099. image: {
  40100. source: "./media/characters/fox/foot.svg"
  40101. }
  40102. },
  40103. paw: {
  40104. height: math.unit(0.92, "feet"),
  40105. name: "Paw",
  40106. image: {
  40107. source: "./media/characters/fox/paw.svg"
  40108. }
  40109. },
  40110. },
  40111. [
  40112. {
  40113. name: "Small",
  40114. height: math.unit(3, "inches")
  40115. },
  40116. {
  40117. name: "\"Realistic\"",
  40118. height: math.unit(7, "feet")
  40119. },
  40120. {
  40121. name: "Normal",
  40122. height: math.unit(150, "feet"),
  40123. default: true
  40124. },
  40125. {
  40126. name: "BIG",
  40127. height: math.unit(1200, "feet")
  40128. },
  40129. {
  40130. name: "👀",
  40131. height: math.unit(5, "miles")
  40132. },
  40133. {
  40134. name: "👀👀👀",
  40135. height: math.unit(64, "miles")
  40136. },
  40137. ]
  40138. ))
  40139. characterMakers.push(() => makeCharacter(
  40140. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40141. {
  40142. front: {
  40143. height: math.unit(625, "feet"),
  40144. name: "Front",
  40145. image: {
  40146. source: "./media/characters/asonja-rossa/front.svg",
  40147. extra: 1833/1686,
  40148. bottom: 24/1857
  40149. }
  40150. },
  40151. back: {
  40152. height: math.unit(625, "feet"),
  40153. name: "Back",
  40154. image: {
  40155. source: "./media/characters/asonja-rossa/back.svg",
  40156. extra: 1852/1753,
  40157. bottom: 26/1878
  40158. }
  40159. },
  40160. },
  40161. [
  40162. {
  40163. name: "Macro",
  40164. height: math.unit(625, "feet"),
  40165. default: true
  40166. },
  40167. ]
  40168. ))
  40169. characterMakers.push(() => makeCharacter(
  40170. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40171. {
  40172. side: {
  40173. height: math.unit(8, "feet"),
  40174. name: "Side",
  40175. image: {
  40176. source: "./media/characters/rezukii/side.svg",
  40177. extra: 979/542,
  40178. bottom: 87/1066
  40179. }
  40180. },
  40181. sitting: {
  40182. height: math.unit(14.6, "feet"),
  40183. name: "Sitting",
  40184. image: {
  40185. source: "./media/characters/rezukii/sitting.svg",
  40186. extra: 1023/813,
  40187. bottom: 45/1068
  40188. }
  40189. },
  40190. },
  40191. [
  40192. {
  40193. name: "Tiny",
  40194. height: math.unit(2, "feet")
  40195. },
  40196. {
  40197. name: "Smol",
  40198. height: math.unit(4, "feet")
  40199. },
  40200. {
  40201. name: "Normal",
  40202. height: math.unit(8, "feet"),
  40203. default: true
  40204. },
  40205. {
  40206. name: "Big",
  40207. height: math.unit(12, "feet")
  40208. },
  40209. {
  40210. name: "Macro",
  40211. height: math.unit(30, "feet")
  40212. },
  40213. ]
  40214. ))
  40215. characterMakers.push(() => makeCharacter(
  40216. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40217. {
  40218. front: {
  40219. height: math.unit(14, "feet"),
  40220. weight: math.unit(9.5, "tonnes"),
  40221. name: "Front",
  40222. image: {
  40223. source: "./media/characters/dawnheart/front.svg",
  40224. extra: 2792/2675,
  40225. bottom: 64/2856
  40226. }
  40227. },
  40228. },
  40229. [
  40230. {
  40231. name: "Normal",
  40232. height: math.unit(14, "feet"),
  40233. default: true
  40234. },
  40235. ]
  40236. ))
  40237. characterMakers.push(() => makeCharacter(
  40238. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40239. {
  40240. front: {
  40241. height: math.unit(1.7, "m"),
  40242. name: "Front",
  40243. image: {
  40244. source: "./media/characters/gladi/front.svg",
  40245. extra: 1460/1362,
  40246. bottom: 19/1479
  40247. }
  40248. },
  40249. back: {
  40250. height: math.unit(1.7, "m"),
  40251. name: "Back",
  40252. image: {
  40253. source: "./media/characters/gladi/back.svg",
  40254. extra: 1459/1357,
  40255. bottom: 12/1471
  40256. }
  40257. },
  40258. feral: {
  40259. height: math.unit(2.05, "m"),
  40260. name: "Feral",
  40261. image: {
  40262. source: "./media/characters/gladi/feral.svg",
  40263. extra: 821/557,
  40264. bottom: 91/912
  40265. }
  40266. },
  40267. },
  40268. [
  40269. {
  40270. name: "Shortest",
  40271. height: math.unit(70, "cm")
  40272. },
  40273. {
  40274. name: "Normal",
  40275. height: math.unit(1.7, "m")
  40276. },
  40277. {
  40278. name: "Macro",
  40279. height: math.unit(10, "m"),
  40280. default: true
  40281. },
  40282. {
  40283. name: "Tallest",
  40284. height: math.unit(200, "m")
  40285. },
  40286. ]
  40287. ))
  40288. characterMakers.push(() => makeCharacter(
  40289. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40290. {
  40291. front: {
  40292. height: math.unit(5 + 7/12, "feet"),
  40293. weight: math.unit(2, "tons"),
  40294. name: "Front",
  40295. image: {
  40296. source: "./media/characters/erdno/front.svg",
  40297. extra: 1234/1129,
  40298. bottom: 35/1269
  40299. }
  40300. },
  40301. angled: {
  40302. height: math.unit(5 + 7/12, "feet"),
  40303. weight: math.unit(2, "tons"),
  40304. name: "Angled",
  40305. image: {
  40306. source: "./media/characters/erdno/angled.svg",
  40307. extra: 1185/1139,
  40308. bottom: 36/1221
  40309. }
  40310. },
  40311. side: {
  40312. height: math.unit(5 + 7/12, "feet"),
  40313. weight: math.unit(2, "tons"),
  40314. name: "Side",
  40315. image: {
  40316. source: "./media/characters/erdno/side.svg",
  40317. extra: 1191/1144,
  40318. bottom: 40/1231
  40319. }
  40320. },
  40321. back: {
  40322. height: math.unit(5 + 7/12, "feet"),
  40323. weight: math.unit(2, "tons"),
  40324. name: "Back",
  40325. image: {
  40326. source: "./media/characters/erdno/back.svg",
  40327. extra: 1202/1146,
  40328. bottom: 17/1219
  40329. }
  40330. },
  40331. frontNsfw: {
  40332. height: math.unit(5 + 7/12, "feet"),
  40333. weight: math.unit(2, "tons"),
  40334. name: "Front (NSFW)",
  40335. image: {
  40336. source: "./media/characters/erdno/front-nsfw.svg",
  40337. extra: 1234/1129,
  40338. bottom: 35/1269
  40339. }
  40340. },
  40341. angledNsfw: {
  40342. height: math.unit(5 + 7/12, "feet"),
  40343. weight: math.unit(2, "tons"),
  40344. name: "Angled (NSFW)",
  40345. image: {
  40346. source: "./media/characters/erdno/angled-nsfw.svg",
  40347. extra: 1185/1139,
  40348. bottom: 36/1221
  40349. }
  40350. },
  40351. sideNsfw: {
  40352. height: math.unit(5 + 7/12, "feet"),
  40353. weight: math.unit(2, "tons"),
  40354. name: "Side (NSFW)",
  40355. image: {
  40356. source: "./media/characters/erdno/side-nsfw.svg",
  40357. extra: 1191/1144,
  40358. bottom: 40/1231
  40359. }
  40360. },
  40361. backNsfw: {
  40362. height: math.unit(5 + 7/12, "feet"),
  40363. weight: math.unit(2, "tons"),
  40364. name: "Back (NSFW)",
  40365. image: {
  40366. source: "./media/characters/erdno/back-nsfw.svg",
  40367. extra: 1202/1146,
  40368. bottom: 17/1219
  40369. }
  40370. },
  40371. frontHyper: {
  40372. height: math.unit(5 + 7/12, "feet"),
  40373. weight: math.unit(2, "tons"),
  40374. name: "Front (Hyper)",
  40375. image: {
  40376. source: "./media/characters/erdno/front-hyper.svg",
  40377. extra: 1298/1136,
  40378. bottom: 35/1333
  40379. }
  40380. },
  40381. },
  40382. [
  40383. {
  40384. name: "Normal",
  40385. height: math.unit(5 + 7/12, "feet"),
  40386. default: true
  40387. },
  40388. {
  40389. name: "Big",
  40390. height: math.unit(5.7, "meters")
  40391. },
  40392. {
  40393. name: "Macro",
  40394. height: math.unit(5.7, "kilometers")
  40395. },
  40396. {
  40397. name: "Megamacro",
  40398. height: math.unit(5.7, "earths")
  40399. },
  40400. ]
  40401. ))
  40402. characterMakers.push(() => makeCharacter(
  40403. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40404. {
  40405. front: {
  40406. height: math.unit(5 + 10/12, "feet"),
  40407. weight: math.unit(150, "lb"),
  40408. name: "Front",
  40409. image: {
  40410. source: "./media/characters/jamie/front.svg",
  40411. extra: 1908/1768,
  40412. bottom: 19/1927
  40413. }
  40414. },
  40415. },
  40416. [
  40417. {
  40418. name: "Minimum",
  40419. height: math.unit(2, "cm")
  40420. },
  40421. {
  40422. name: "Micro",
  40423. height: math.unit(3, "inches")
  40424. },
  40425. {
  40426. name: "Normal",
  40427. height: math.unit(5 + 10/12, "feet"),
  40428. default: true
  40429. },
  40430. {
  40431. name: "Macro",
  40432. height: math.unit(150, "feet")
  40433. },
  40434. {
  40435. name: "Megamacro",
  40436. height: math.unit(10000, "m")
  40437. },
  40438. ]
  40439. ))
  40440. characterMakers.push(() => makeCharacter(
  40441. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40442. {
  40443. front: {
  40444. height: math.unit(2, "meters"),
  40445. weight: math.unit(100, "kg"),
  40446. name: "Front",
  40447. image: {
  40448. source: "./media/characters/shiron/front.svg",
  40449. extra: 2103/1985,
  40450. bottom: 98/2201
  40451. }
  40452. },
  40453. back: {
  40454. height: math.unit(2, "meters"),
  40455. weight: math.unit(100, "kg"),
  40456. name: "Back",
  40457. image: {
  40458. source: "./media/characters/shiron/back.svg",
  40459. extra: 2110/2015,
  40460. bottom: 89/2199
  40461. }
  40462. },
  40463. hand: {
  40464. height: math.unit(0.96, "feet"),
  40465. name: "Hand",
  40466. image: {
  40467. source: "./media/characters/shiron/hand.svg"
  40468. }
  40469. },
  40470. foot: {
  40471. height: math.unit(1.464, "feet"),
  40472. name: "Foot",
  40473. image: {
  40474. source: "./media/characters/shiron/foot.svg"
  40475. }
  40476. },
  40477. },
  40478. [
  40479. {
  40480. name: "Normal",
  40481. height: math.unit(2, "meters")
  40482. },
  40483. {
  40484. name: "Macro",
  40485. height: math.unit(500, "meters"),
  40486. default: true
  40487. },
  40488. {
  40489. name: "Megamacro",
  40490. height: math.unit(20, "km")
  40491. },
  40492. ]
  40493. ))
  40494. characterMakers.push(() => makeCharacter(
  40495. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40496. {
  40497. front: {
  40498. height: math.unit(6, "feet"),
  40499. name: "Front",
  40500. image: {
  40501. source: "./media/characters/sam/front.svg",
  40502. extra: 849/826,
  40503. bottom: 19/868
  40504. }
  40505. },
  40506. },
  40507. [
  40508. {
  40509. name: "Normal",
  40510. height: math.unit(6, "feet"),
  40511. default: true
  40512. },
  40513. ]
  40514. ))
  40515. characterMakers.push(() => makeCharacter(
  40516. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40517. {
  40518. front: {
  40519. height: math.unit(8 + 4/12, "feet"),
  40520. weight: math.unit(122, "kg"),
  40521. name: "Front",
  40522. image: {
  40523. source: "./media/characters/namori-kurogawa/front.svg",
  40524. extra: 1894/1576,
  40525. bottom: 34/1928
  40526. }
  40527. },
  40528. },
  40529. [
  40530. {
  40531. name: "Normal",
  40532. height: math.unit(8 + 4/12, "feet"),
  40533. default: true
  40534. },
  40535. ]
  40536. ))
  40537. characterMakers.push(() => makeCharacter(
  40538. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40539. {
  40540. front: {
  40541. height: math.unit(9, "feet"),
  40542. weight: math.unit(621, "lb"),
  40543. name: "Front",
  40544. image: {
  40545. source: "./media/characters/unmru/front.svg",
  40546. extra: 1853/1747,
  40547. bottom: 73/1926
  40548. }
  40549. },
  40550. side: {
  40551. height: math.unit(9, "feet"),
  40552. weight: math.unit(621, "lb"),
  40553. name: "Side",
  40554. image: {
  40555. source: "./media/characters/unmru/side.svg",
  40556. extra: 1781/1671,
  40557. bottom: 127/1908
  40558. }
  40559. },
  40560. back: {
  40561. height: math.unit(9, "feet"),
  40562. weight: math.unit(621, "lb"),
  40563. name: "Back",
  40564. image: {
  40565. source: "./media/characters/unmru/back.svg",
  40566. extra: 1894/1765,
  40567. bottom: 75/1969
  40568. }
  40569. },
  40570. dick: {
  40571. height: math.unit(3, "feet"),
  40572. weight: math.unit(35, "lb"),
  40573. name: "Dick",
  40574. image: {
  40575. source: "./media/characters/unmru/dick.svg"
  40576. }
  40577. },
  40578. },
  40579. [
  40580. {
  40581. name: "Normal",
  40582. height: math.unit(9, "feet")
  40583. },
  40584. {
  40585. name: "Natural",
  40586. height: math.unit(27, "feet"),
  40587. default: true
  40588. },
  40589. {
  40590. name: "Giant",
  40591. height: math.unit(90, "feet")
  40592. },
  40593. {
  40594. name: "Kaiju",
  40595. height: math.unit(270, "feet")
  40596. },
  40597. {
  40598. name: "Macro",
  40599. height: math.unit(900, "feet")
  40600. },
  40601. {
  40602. name: "Macro+",
  40603. height: math.unit(2700, "feet")
  40604. },
  40605. {
  40606. name: "Megamacro",
  40607. height: math.unit(9000, "feet")
  40608. },
  40609. {
  40610. name: "City-Crushing",
  40611. height: math.unit(27000, "feet")
  40612. },
  40613. {
  40614. name: "Mountain-Mashing",
  40615. height: math.unit(90000, "feet")
  40616. },
  40617. {
  40618. name: "Earth-Eclipsing",
  40619. height: math.unit(2.7e8, "feet")
  40620. },
  40621. {
  40622. name: "Sol-Swallowing",
  40623. height: math.unit(9e10, "feet")
  40624. },
  40625. {
  40626. name: "Majoris-Munching",
  40627. height: math.unit(2.7e13, "feet")
  40628. },
  40629. ]
  40630. ))
  40631. characterMakers.push(() => makeCharacter(
  40632. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40633. {
  40634. front: {
  40635. height: math.unit(1, "inch"),
  40636. name: "Front",
  40637. image: {
  40638. source: "./media/characters/squeaks-mouse/front.svg",
  40639. extra: 352/308,
  40640. bottom: 25/377
  40641. }
  40642. },
  40643. },
  40644. [
  40645. {
  40646. name: "Micro",
  40647. height: math.unit(1, "inch"),
  40648. default: true
  40649. },
  40650. ]
  40651. ))
  40652. characterMakers.push(() => makeCharacter(
  40653. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40654. {
  40655. side: {
  40656. height: math.unit(35, "feet"),
  40657. name: "Side",
  40658. image: {
  40659. source: "./media/characters/sayko/side.svg",
  40660. extra: 1697/1021,
  40661. bottom: 82/1779
  40662. }
  40663. },
  40664. head: {
  40665. height: math.unit(16, "feet"),
  40666. name: "Head",
  40667. image: {
  40668. source: "./media/characters/sayko/head.svg"
  40669. }
  40670. },
  40671. forepaw: {
  40672. height: math.unit(7.85, "feet"),
  40673. name: "Forepaw",
  40674. image: {
  40675. source: "./media/characters/sayko/forepaw.svg"
  40676. }
  40677. },
  40678. hindpaw: {
  40679. height: math.unit(8.8, "feet"),
  40680. name: "Hindpaw",
  40681. image: {
  40682. source: "./media/characters/sayko/hindpaw.svg"
  40683. }
  40684. },
  40685. },
  40686. [
  40687. {
  40688. name: "Normal",
  40689. height: math.unit(35, "feet"),
  40690. default: true
  40691. },
  40692. {
  40693. name: "Colossus",
  40694. height: math.unit(100, "meters")
  40695. },
  40696. {
  40697. name: "\"Small\" Deity",
  40698. height: math.unit(1, "km")
  40699. },
  40700. {
  40701. name: "\"Large\" Deity",
  40702. height: math.unit(15, "km")
  40703. },
  40704. ]
  40705. ))
  40706. characterMakers.push(() => makeCharacter(
  40707. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40708. {
  40709. front: {
  40710. height: math.unit(6, "feet"),
  40711. weight: math.unit(250, "lb"),
  40712. name: "Front",
  40713. image: {
  40714. source: "./media/characters/mukiro/front.svg",
  40715. extra: 1368/1310,
  40716. bottom: 34/1402
  40717. }
  40718. },
  40719. },
  40720. [
  40721. {
  40722. name: "Normal",
  40723. height: math.unit(6, "feet"),
  40724. default: true
  40725. },
  40726. ]
  40727. ))
  40728. characterMakers.push(() => makeCharacter(
  40729. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40730. {
  40731. front: {
  40732. height: math.unit(12 + 4/12, "feet"),
  40733. name: "Front",
  40734. image: {
  40735. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40736. extra: 1346/1311,
  40737. bottom: 65/1411
  40738. }
  40739. },
  40740. },
  40741. [
  40742. {
  40743. name: "Base",
  40744. height: math.unit(12 + 4/12, "feet"),
  40745. default: true
  40746. },
  40747. {
  40748. name: "Macro",
  40749. height: math.unit(150, "feet")
  40750. },
  40751. {
  40752. name: "Mega",
  40753. height: math.unit(2, "miles")
  40754. },
  40755. {
  40756. name: "Demi God",
  40757. height: math.unit(4, "AU")
  40758. },
  40759. {
  40760. name: "God Size",
  40761. height: math.unit(1, "universe")
  40762. },
  40763. ]
  40764. ))
  40765. characterMakers.push(() => makeCharacter(
  40766. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40767. {
  40768. front: {
  40769. height: math.unit(3 + 3/12, "feet"),
  40770. weight: math.unit(88, "lb"),
  40771. name: "Front",
  40772. image: {
  40773. source: "./media/characters/trey/front.svg",
  40774. extra: 1815/1509,
  40775. bottom: 60/1875
  40776. }
  40777. },
  40778. },
  40779. [
  40780. {
  40781. name: "Normal",
  40782. height: math.unit(3 + 3/12, "feet"),
  40783. default: true
  40784. },
  40785. ]
  40786. ))
  40787. characterMakers.push(() => makeCharacter(
  40788. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40789. {
  40790. front: {
  40791. height: math.unit(4, "meters"),
  40792. name: "Front",
  40793. image: {
  40794. source: "./media/characters/adelonda/front.svg",
  40795. extra: 1077/982,
  40796. bottom: 39/1116
  40797. }
  40798. },
  40799. back: {
  40800. height: math.unit(4, "meters"),
  40801. name: "Back",
  40802. image: {
  40803. source: "./media/characters/adelonda/back.svg",
  40804. extra: 1105/1003,
  40805. bottom: 25/1130
  40806. }
  40807. },
  40808. feral: {
  40809. height: math.unit(40/1.5, "meters"),
  40810. name: "Feral",
  40811. image: {
  40812. source: "./media/characters/adelonda/feral.svg",
  40813. extra: 597/271,
  40814. bottom: 387/984
  40815. }
  40816. },
  40817. },
  40818. [
  40819. {
  40820. name: "Normal",
  40821. height: math.unit(4, "meters"),
  40822. default: true
  40823. },
  40824. ]
  40825. ))
  40826. characterMakers.push(() => makeCharacter(
  40827. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40828. {
  40829. front: {
  40830. height: math.unit(8 + 4/12, "feet"),
  40831. weight: math.unit(670, "lb"),
  40832. name: "Front",
  40833. image: {
  40834. source: "./media/characters/acadiel/front.svg",
  40835. extra: 1901/1595,
  40836. bottom: 142/2043
  40837. }
  40838. },
  40839. },
  40840. [
  40841. {
  40842. name: "Normal",
  40843. height: math.unit(8 + 4/12, "feet"),
  40844. default: true
  40845. },
  40846. {
  40847. name: "Macro",
  40848. height: math.unit(200, "feet")
  40849. },
  40850. ]
  40851. ))
  40852. characterMakers.push(() => makeCharacter(
  40853. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40854. {
  40855. front: {
  40856. height: math.unit(6 + 2/12, "feet"),
  40857. weight: math.unit(185, "lb"),
  40858. name: "Front",
  40859. image: {
  40860. source: "./media/characters/kayne-ein/front.svg",
  40861. extra: 1780/1560,
  40862. bottom: 81/1861
  40863. }
  40864. },
  40865. },
  40866. [
  40867. {
  40868. name: "Normal",
  40869. height: math.unit(6 + 2/12, "feet"),
  40870. default: true
  40871. },
  40872. {
  40873. name: "Transformation Stage",
  40874. height: math.unit(15, "feet")
  40875. },
  40876. {
  40877. name: "Macro",
  40878. height: math.unit(150, "feet")
  40879. },
  40880. {
  40881. name: "Earth's Shadow",
  40882. height: math.unit(6200, "miles")
  40883. },
  40884. {
  40885. name: "Universal Demon",
  40886. height: math.unit(28e9, "parsecs")
  40887. },
  40888. {
  40889. name: "Multiverse God",
  40890. height: math.unit(3, "multiverses")
  40891. },
  40892. ]
  40893. ))
  40894. characterMakers.push(() => makeCharacter(
  40895. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40896. {
  40897. front: {
  40898. height: math.unit(5 + 5/12, "feet"),
  40899. name: "Front",
  40900. image: {
  40901. source: "./media/characters/fawn/front.svg",
  40902. extra: 1873/1731,
  40903. bottom: 95/1968
  40904. }
  40905. },
  40906. back: {
  40907. height: math.unit(5 + 5/12, "feet"),
  40908. name: "Back",
  40909. image: {
  40910. source: "./media/characters/fawn/back.svg",
  40911. extra: 1813/1700,
  40912. bottom: 14/1827
  40913. }
  40914. },
  40915. hoof: {
  40916. height: math.unit(1.45, "feet"),
  40917. name: "Hoof",
  40918. image: {
  40919. source: "./media/characters/fawn/hoof.svg"
  40920. }
  40921. },
  40922. },
  40923. [
  40924. {
  40925. name: "Normal",
  40926. height: math.unit(5 + 5/12, "feet"),
  40927. default: true
  40928. },
  40929. ]
  40930. ))
  40931. characterMakers.push(() => makeCharacter(
  40932. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40933. {
  40934. front: {
  40935. height: math.unit(2 + 5/12, "feet"),
  40936. name: "Front",
  40937. image: {
  40938. source: "./media/characters/orion/front.svg",
  40939. extra: 1366/1304,
  40940. bottom: 43/1409
  40941. }
  40942. },
  40943. paw: {
  40944. height: math.unit(0.52, "feet"),
  40945. name: "Paw",
  40946. image: {
  40947. source: "./media/characters/orion/paw.svg"
  40948. }
  40949. },
  40950. },
  40951. [
  40952. {
  40953. name: "Normal",
  40954. height: math.unit(2 + 5/12, "feet"),
  40955. default: true
  40956. },
  40957. ]
  40958. ))
  40959. characterMakers.push(() => makeCharacter(
  40960. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40961. {
  40962. front: {
  40963. height: math.unit(5 + 10/12, "feet"),
  40964. name: "Front",
  40965. image: {
  40966. source: "./media/characters/vera/front.svg",
  40967. extra: 1680/1575,
  40968. bottom: 49/1729
  40969. }
  40970. },
  40971. back: {
  40972. height: math.unit(5 + 10/12, "feet"),
  40973. name: "Back",
  40974. image: {
  40975. source: "./media/characters/vera/back.svg",
  40976. extra: 1700/1588,
  40977. bottom: 18/1718
  40978. }
  40979. },
  40980. arcanine: {
  40981. height: math.unit(6 + 8/12, "feet"),
  40982. name: "Arcanine",
  40983. image: {
  40984. source: "./media/characters/vera/arcanine.svg",
  40985. extra: 1590/1511,
  40986. bottom: 71/1661
  40987. }
  40988. },
  40989. maw: {
  40990. height: math.unit(0.82, "feet"),
  40991. name: "Maw",
  40992. image: {
  40993. source: "./media/characters/vera/maw.svg"
  40994. }
  40995. },
  40996. mawArcanine: {
  40997. height: math.unit(0.97, "feet"),
  40998. name: "Maw (Arcanine)",
  40999. image: {
  41000. source: "./media/characters/vera/maw-arcanine.svg"
  41001. }
  41002. },
  41003. paw: {
  41004. height: math.unit(0.75, "feet"),
  41005. name: "Paw",
  41006. image: {
  41007. source: "./media/characters/vera/paw.svg"
  41008. }
  41009. },
  41010. pawprint: {
  41011. height: math.unit(0.52, "feet"),
  41012. name: "Pawprint",
  41013. image: {
  41014. source: "./media/characters/vera/pawprint.svg"
  41015. }
  41016. },
  41017. },
  41018. [
  41019. {
  41020. name: "Normal",
  41021. height: math.unit(5 + 10/12, "feet"),
  41022. default: true
  41023. },
  41024. {
  41025. name: "Macro",
  41026. height: math.unit(75, "feet")
  41027. },
  41028. ]
  41029. ))
  41030. characterMakers.push(() => makeCharacter(
  41031. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41032. {
  41033. front: {
  41034. height: math.unit(4, "feet"),
  41035. weight: math.unit(40, "lb"),
  41036. name: "Front",
  41037. image: {
  41038. source: "./media/characters/orvan-rabbit/front.svg",
  41039. extra: 1896/1642,
  41040. bottom: 29/1925
  41041. }
  41042. },
  41043. },
  41044. [
  41045. {
  41046. name: "Normal",
  41047. height: math.unit(4, "feet"),
  41048. default: true
  41049. },
  41050. ]
  41051. ))
  41052. characterMakers.push(() => makeCharacter(
  41053. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41054. {
  41055. front: {
  41056. height: math.unit(6, "feet"),
  41057. weight: math.unit(168, "lb"),
  41058. name: "Front",
  41059. image: {
  41060. source: "./media/characters/lisa/front.svg",
  41061. extra: 2065/1867,
  41062. bottom: 46/2111
  41063. }
  41064. },
  41065. back: {
  41066. height: math.unit(6, "feet"),
  41067. weight: math.unit(168, "lb"),
  41068. name: "Back",
  41069. image: {
  41070. source: "./media/characters/lisa/back.svg",
  41071. extra: 1982/1838,
  41072. bottom: 29/2011
  41073. }
  41074. },
  41075. maw: {
  41076. height: math.unit(0.81, "feet"),
  41077. name: "Maw",
  41078. image: {
  41079. source: "./media/characters/lisa/maw.svg"
  41080. }
  41081. },
  41082. paw: {
  41083. height: math.unit(0.9, "feet"),
  41084. name: "Paw",
  41085. image: {
  41086. source: "./media/characters/lisa/paw.svg"
  41087. }
  41088. },
  41089. caribousune: {
  41090. height: math.unit(7 + 2/12, "feet"),
  41091. weight: math.unit(268, "lb"),
  41092. name: "Caribousune",
  41093. image: {
  41094. source: "./media/characters/lisa/caribousune.svg",
  41095. extra: 1843/1633,
  41096. bottom: 29/1872
  41097. }
  41098. },
  41099. frontCaribousune: {
  41100. height: math.unit(7 + 2/12, "feet"),
  41101. weight: math.unit(268, "lb"),
  41102. name: "Front (Caribousune)",
  41103. image: {
  41104. source: "./media/characters/lisa/front-caribousune.svg",
  41105. extra: 1818/1638,
  41106. bottom: 52/1870
  41107. }
  41108. },
  41109. sideCaribousune: {
  41110. height: math.unit(7 + 2/12, "feet"),
  41111. weight: math.unit(268, "lb"),
  41112. name: "Side (Caribousune)",
  41113. image: {
  41114. source: "./media/characters/lisa/side-caribousune.svg",
  41115. extra: 1851/1635,
  41116. bottom: 16/1867
  41117. }
  41118. },
  41119. backCaribousune: {
  41120. height: math.unit(7 + 2/12, "feet"),
  41121. weight: math.unit(268, "lb"),
  41122. name: "Back (Caribousune)",
  41123. image: {
  41124. source: "./media/characters/lisa/back-caribousune.svg",
  41125. extra: 1801/1604,
  41126. bottom: 44/1845
  41127. }
  41128. },
  41129. caribou: {
  41130. height: math.unit(7 + 2/12, "feet"),
  41131. weight: math.unit(268, "lb"),
  41132. name: "Caribou",
  41133. image: {
  41134. source: "./media/characters/lisa/caribou.svg",
  41135. extra: 1843/1633,
  41136. bottom: 29/1872
  41137. }
  41138. },
  41139. frontCaribou: {
  41140. height: math.unit(7 + 2/12, "feet"),
  41141. weight: math.unit(268, "lb"),
  41142. name: "Front (Caribou)",
  41143. image: {
  41144. source: "./media/characters/lisa/front-caribou.svg",
  41145. extra: 1818/1638,
  41146. bottom: 52/1870
  41147. }
  41148. },
  41149. sideCaribou: {
  41150. height: math.unit(7 + 2/12, "feet"),
  41151. weight: math.unit(268, "lb"),
  41152. name: "Side (Caribou)",
  41153. image: {
  41154. source: "./media/characters/lisa/side-caribou.svg",
  41155. extra: 1851/1635,
  41156. bottom: 16/1867
  41157. }
  41158. },
  41159. backCaribou: {
  41160. height: math.unit(7 + 2/12, "feet"),
  41161. weight: math.unit(268, "lb"),
  41162. name: "Back (Caribou)",
  41163. image: {
  41164. source: "./media/characters/lisa/back-caribou.svg",
  41165. extra: 1801/1604,
  41166. bottom: 44/1845
  41167. }
  41168. },
  41169. mawCaribou: {
  41170. height: math.unit(1.45, "feet"),
  41171. name: "Maw (Caribou)",
  41172. image: {
  41173. source: "./media/characters/lisa/maw-caribou.svg"
  41174. }
  41175. },
  41176. mawCaribousune: {
  41177. height: math.unit(1.45, "feet"),
  41178. name: "Maw (Caribousune)",
  41179. image: {
  41180. source: "./media/characters/lisa/maw-caribousune.svg"
  41181. }
  41182. },
  41183. pawCaribousune: {
  41184. height: math.unit(1.61, "feet"),
  41185. name: "Paw (Caribou)",
  41186. image: {
  41187. source: "./media/characters/lisa/paw-caribousune.svg"
  41188. }
  41189. },
  41190. },
  41191. [
  41192. {
  41193. name: "Normal",
  41194. height: math.unit(6, "feet")
  41195. },
  41196. {
  41197. name: "God Size",
  41198. height: math.unit(72, "feet"),
  41199. default: true
  41200. },
  41201. {
  41202. name: "Towering",
  41203. height: math.unit(288, "feet")
  41204. },
  41205. {
  41206. name: "City Size",
  41207. height: math.unit(48384, "feet")
  41208. },
  41209. {
  41210. name: "Continental",
  41211. height: math.unit(4200, "miles")
  41212. },
  41213. {
  41214. name: "Planet Eater",
  41215. height: math.unit(42, "earths")
  41216. },
  41217. {
  41218. name: "Star Swallower",
  41219. height: math.unit(42, "solarradii")
  41220. },
  41221. {
  41222. name: "System Swallower",
  41223. height: math.unit(84000, "AU")
  41224. },
  41225. {
  41226. name: "Galaxy Gobbler",
  41227. height: math.unit(42, "galaxies")
  41228. },
  41229. {
  41230. name: "Universe Devourer",
  41231. height: math.unit(42, "universes")
  41232. },
  41233. {
  41234. name: "Multiverse Muncher",
  41235. height: math.unit(42, "multiverses")
  41236. },
  41237. ]
  41238. ))
  41239. characterMakers.push(() => makeCharacter(
  41240. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41241. {
  41242. front: {
  41243. height: math.unit(36, "feet"),
  41244. name: "Front",
  41245. image: {
  41246. source: "./media/characters/shadow-rat/front.svg",
  41247. extra: 1845/1758,
  41248. bottom: 83/1928
  41249. }
  41250. },
  41251. },
  41252. [
  41253. {
  41254. name: "Macro",
  41255. height: math.unit(36, "feet"),
  41256. default: true
  41257. },
  41258. ]
  41259. ))
  41260. characterMakers.push(() => makeCharacter(
  41261. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41262. {
  41263. side: {
  41264. height: math.unit(8, "feet"),
  41265. weight: math.unit(2630, "lb"),
  41266. name: "Side",
  41267. image: {
  41268. source: "./media/characters/torallia/side.svg",
  41269. extra: 2164/2021,
  41270. bottom: 371/2535
  41271. }
  41272. },
  41273. },
  41274. [
  41275. {
  41276. name: "Mortal Interaction",
  41277. height: math.unit(8, "feet")
  41278. },
  41279. {
  41280. name: "Natural",
  41281. height: math.unit(24, "feet"),
  41282. default: true
  41283. },
  41284. {
  41285. name: "Giant",
  41286. height: math.unit(80, "feet")
  41287. },
  41288. {
  41289. name: "Kaiju",
  41290. height: math.unit(240, "feet")
  41291. },
  41292. {
  41293. name: "Macro",
  41294. height: math.unit(800, "feet")
  41295. },
  41296. {
  41297. name: "Macro+",
  41298. height: math.unit(2400, "feet")
  41299. },
  41300. {
  41301. name: "Macro++",
  41302. height: math.unit(8000, "feet")
  41303. },
  41304. {
  41305. name: "City-Crushing",
  41306. height: math.unit(24000, "feet")
  41307. },
  41308. {
  41309. name: "Mountain-Mashing",
  41310. height: math.unit(80000, "feet")
  41311. },
  41312. {
  41313. name: "District Demolisher",
  41314. height: math.unit(240000, "feet")
  41315. },
  41316. {
  41317. name: "Tri-County Terror",
  41318. height: math.unit(800000, "feet")
  41319. },
  41320. {
  41321. name: "State Smasher",
  41322. height: math.unit(2.4e6, "feet")
  41323. },
  41324. {
  41325. name: "Nation Nemesis",
  41326. height: math.unit(8e6, "feet")
  41327. },
  41328. {
  41329. name: "Continent Cracker",
  41330. height: math.unit(2.4e7, "feet")
  41331. },
  41332. {
  41333. name: "Planet-Pillaging",
  41334. height: math.unit(8e7, "feet")
  41335. },
  41336. {
  41337. name: "Earth-Eclipsing",
  41338. height: math.unit(2.4e8, "feet")
  41339. },
  41340. {
  41341. name: "Jovian-Jostling",
  41342. height: math.unit(8e8, "feet")
  41343. },
  41344. {
  41345. name: "Gas Giant Gulper",
  41346. height: math.unit(2.4e9, "feet")
  41347. },
  41348. {
  41349. name: "Astral Annihilator",
  41350. height: math.unit(8e9, "feet")
  41351. },
  41352. {
  41353. name: "Celestial Conqueror",
  41354. height: math.unit(2.4e10, "feet")
  41355. },
  41356. {
  41357. name: "Sol-Swallowing",
  41358. height: math.unit(8e10, "feet")
  41359. },
  41360. {
  41361. name: "Hunter of the Heavens",
  41362. height: math.unit(2.4e13, "feet")
  41363. },
  41364. ]
  41365. ))
  41366. characterMakers.push(() => makeCharacter(
  41367. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41368. {
  41369. front: {
  41370. height: math.unit(6 + 8/12, "feet"),
  41371. weight: math.unit(250, "kilograms"),
  41372. volume: math.unit(28, "liters"),
  41373. name: "Front",
  41374. image: {
  41375. source: "./media/characters/rebecca-pawlson/front.svg",
  41376. extra: 1737/1596,
  41377. bottom: 107/1844
  41378. }
  41379. },
  41380. back: {
  41381. height: math.unit(6 + 8/12, "feet"),
  41382. weight: math.unit(250, "kilograms"),
  41383. volume: math.unit(28, "liters"),
  41384. name: "Back",
  41385. image: {
  41386. source: "./media/characters/rebecca-pawlson/back.svg",
  41387. extra: 1702/1523,
  41388. bottom: 86/1788
  41389. }
  41390. },
  41391. },
  41392. [
  41393. {
  41394. name: "Normal",
  41395. height: math.unit(6 + 8/12, "feet")
  41396. },
  41397. {
  41398. name: "Mini Macro",
  41399. height: math.unit(10, "feet"),
  41400. default: true
  41401. },
  41402. {
  41403. name: "Macro",
  41404. height: math.unit(100, "feet")
  41405. },
  41406. {
  41407. name: "Mega Macro",
  41408. height: math.unit(2500, "feet")
  41409. },
  41410. {
  41411. name: "Giga Macro",
  41412. height: math.unit(50, "miles")
  41413. },
  41414. ]
  41415. ))
  41416. characterMakers.push(() => makeCharacter(
  41417. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41418. {
  41419. front: {
  41420. height: math.unit(7 + 6/12, "feet"),
  41421. weight: math.unit(600, "lb"),
  41422. name: "Front",
  41423. image: {
  41424. source: "./media/characters/moxie-nova/front.svg",
  41425. extra: 1734/1652,
  41426. bottom: 41/1775
  41427. }
  41428. },
  41429. },
  41430. [
  41431. {
  41432. name: "Normal",
  41433. height: math.unit(7 + 6/12, "feet"),
  41434. default: true
  41435. },
  41436. ]
  41437. ))
  41438. characterMakers.push(() => makeCharacter(
  41439. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41440. {
  41441. goat: {
  41442. height: math.unit(4, "feet"),
  41443. weight: math.unit(180, "lb"),
  41444. name: "Goat",
  41445. image: {
  41446. source: "./media/characters/tiffany/goat.svg",
  41447. extra: 1845/1595,
  41448. bottom: 106/1951
  41449. }
  41450. },
  41451. front: {
  41452. height: math.unit(5, "feet"),
  41453. weight: math.unit(150, "lb"),
  41454. name: "Foxcoon",
  41455. image: {
  41456. source: "./media/characters/tiffany/foxcoon.svg",
  41457. extra: 1941/1845,
  41458. bottom: 58/1999
  41459. }
  41460. },
  41461. },
  41462. [
  41463. {
  41464. name: "Normal",
  41465. height: math.unit(5, "feet"),
  41466. default: true
  41467. },
  41468. ]
  41469. ))
  41470. characterMakers.push(() => makeCharacter(
  41471. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41472. {
  41473. front: {
  41474. height: math.unit(8, "feet"),
  41475. weight: math.unit(300, "lb"),
  41476. name: "Front",
  41477. image: {
  41478. source: "./media/characters/raxinath/front.svg",
  41479. extra: 1407/1309,
  41480. bottom: 39/1446
  41481. }
  41482. },
  41483. back: {
  41484. height: math.unit(8, "feet"),
  41485. weight: math.unit(300, "lb"),
  41486. name: "Back",
  41487. image: {
  41488. source: "./media/characters/raxinath/back.svg",
  41489. extra: 1405/1315,
  41490. bottom: 9/1414
  41491. }
  41492. },
  41493. },
  41494. [
  41495. {
  41496. name: "Speck",
  41497. height: math.unit(0.5, "nm")
  41498. },
  41499. {
  41500. name: "Micro",
  41501. height: math.unit(3, "inches")
  41502. },
  41503. {
  41504. name: "Kobold",
  41505. height: math.unit(3, "feet")
  41506. },
  41507. {
  41508. name: "Normal",
  41509. height: math.unit(8, "feet"),
  41510. default: true
  41511. },
  41512. {
  41513. name: "Giant",
  41514. height: math.unit(50, "feet")
  41515. },
  41516. {
  41517. name: "Macro",
  41518. height: math.unit(1000, "feet")
  41519. },
  41520. {
  41521. name: "Megamacro",
  41522. height: math.unit(1, "mile")
  41523. },
  41524. ]
  41525. ))
  41526. characterMakers.push(() => makeCharacter(
  41527. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41528. {
  41529. front: {
  41530. height: math.unit(10, "feet"),
  41531. weight: math.unit(1442, "lb"),
  41532. name: "Front",
  41533. image: {
  41534. source: "./media/characters/mal-dragon/front.svg",
  41535. extra: 1515/1444,
  41536. bottom: 113/1628
  41537. }
  41538. },
  41539. back: {
  41540. height: math.unit(10, "feet"),
  41541. weight: math.unit(1442, "lb"),
  41542. name: "Back",
  41543. image: {
  41544. source: "./media/characters/mal-dragon/back.svg",
  41545. extra: 1527/1434,
  41546. bottom: 25/1552
  41547. }
  41548. },
  41549. },
  41550. [
  41551. {
  41552. name: "Mortal Interaction",
  41553. height: math.unit(10, "feet"),
  41554. default: true
  41555. },
  41556. {
  41557. name: "Large",
  41558. height: math.unit(30, "feet")
  41559. },
  41560. {
  41561. name: "Kaiju",
  41562. height: math.unit(300, "feet")
  41563. },
  41564. {
  41565. name: "Megamacro",
  41566. height: math.unit(10000, "feet")
  41567. },
  41568. {
  41569. name: "Continent Cracker",
  41570. height: math.unit(30000000, "feet")
  41571. },
  41572. {
  41573. name: "Sol-Swallowing",
  41574. height: math.unit(1e11, "feet")
  41575. },
  41576. {
  41577. name: "Light Universal",
  41578. height: math.unit(5, "universes")
  41579. },
  41580. {
  41581. name: "Universe Atoms",
  41582. height: math.unit(1.829e9, "universes")
  41583. },
  41584. {
  41585. name: "Light Multiversal",
  41586. height: math.unit(5, "multiverses")
  41587. },
  41588. {
  41589. name: "Multiverse Atoms",
  41590. height: math.unit(1.829e9, "multiverses")
  41591. },
  41592. {
  41593. name: "Fabric of Time",
  41594. height: math.unit(1e262, "multiverses")
  41595. },
  41596. ]
  41597. ))
  41598. characterMakers.push(() => makeCharacter(
  41599. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41600. {
  41601. front: {
  41602. height: math.unit(9, "feet"),
  41603. weight: math.unit(1050, "lb"),
  41604. name: "Front",
  41605. image: {
  41606. source: "./media/characters/tabitha/front.svg",
  41607. extra: 2083/1994,
  41608. bottom: 68/2151
  41609. }
  41610. },
  41611. },
  41612. [
  41613. {
  41614. name: "Baseline",
  41615. height: math.unit(9, "feet"),
  41616. default: true
  41617. },
  41618. {
  41619. name: "Giant",
  41620. height: math.unit(90, "feet")
  41621. },
  41622. {
  41623. name: "Macro",
  41624. height: math.unit(900, "feet")
  41625. },
  41626. {
  41627. name: "Megamacro",
  41628. height: math.unit(9000, "feet")
  41629. },
  41630. {
  41631. name: "City-Crushing",
  41632. height: math.unit(27000, "feet")
  41633. },
  41634. {
  41635. name: "Mountain-Mashing",
  41636. height: math.unit(90000, "feet")
  41637. },
  41638. {
  41639. name: "Nation Nemesis",
  41640. height: math.unit(9e6, "feet")
  41641. },
  41642. {
  41643. name: "Continent Cracker",
  41644. height: math.unit(27e6, "feet")
  41645. },
  41646. {
  41647. name: "Earth-Eclipsing",
  41648. height: math.unit(2.7e8, "feet")
  41649. },
  41650. {
  41651. name: "Gas Giant Gulper",
  41652. height: math.unit(2.7e9, "feet")
  41653. },
  41654. {
  41655. name: "Sol-Swallowing",
  41656. height: math.unit(9e10, "feet")
  41657. },
  41658. {
  41659. name: "Galaxy Gulper",
  41660. height: math.unit(9, "galaxies")
  41661. },
  41662. {
  41663. name: "Cosmos Churner",
  41664. height: math.unit(9, "universes")
  41665. },
  41666. ]
  41667. ))
  41668. characterMakers.push(() => makeCharacter(
  41669. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41670. {
  41671. front: {
  41672. height: math.unit(160, "cm"),
  41673. weight: math.unit(55, "kg"),
  41674. name: "Front",
  41675. image: {
  41676. source: "./media/characters/tow/front.svg",
  41677. extra: 1751/1722,
  41678. bottom: 74/1825
  41679. }
  41680. },
  41681. },
  41682. [
  41683. {
  41684. name: "Norm",
  41685. height: math.unit(160, "cm")
  41686. },
  41687. {
  41688. name: "Casual",
  41689. height: math.unit(3200, "m"),
  41690. default: true
  41691. },
  41692. {
  41693. name: "Show-Off",
  41694. height: math.unit(160, "km")
  41695. },
  41696. ]
  41697. ))
  41698. characterMakers.push(() => makeCharacter(
  41699. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41700. {
  41701. front: {
  41702. height: math.unit(7 + 11/12, "feet"),
  41703. weight: math.unit(342.8, "lb"),
  41704. name: "Front",
  41705. image: {
  41706. source: "./media/characters/vivian-orca-dragon/front.svg",
  41707. extra: 1890/1865,
  41708. bottom: 28/1918
  41709. }
  41710. },
  41711. },
  41712. [
  41713. {
  41714. name: "Micro",
  41715. height: math.unit(5, "inches")
  41716. },
  41717. {
  41718. name: "Normal",
  41719. height: math.unit(7 + 11/12, "feet"),
  41720. default: true
  41721. },
  41722. {
  41723. name: "Macro",
  41724. height: math.unit(395 + 7/12, "feet")
  41725. },
  41726. ]
  41727. ))
  41728. characterMakers.push(() => makeCharacter(
  41729. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41730. {
  41731. side: {
  41732. height: math.unit(10, "feet"),
  41733. weight: math.unit(1442, "lb"),
  41734. name: "Side",
  41735. image: {
  41736. source: "./media/characters/lotherakon/side.svg",
  41737. extra: 1604/1497,
  41738. bottom: 89/1693
  41739. }
  41740. },
  41741. },
  41742. [
  41743. {
  41744. name: "Mortal Interaction",
  41745. height: math.unit(10, "feet")
  41746. },
  41747. {
  41748. name: "Large",
  41749. height: math.unit(30, "feet"),
  41750. default: true
  41751. },
  41752. {
  41753. name: "Giant",
  41754. height: math.unit(100, "feet")
  41755. },
  41756. {
  41757. name: "Kaiju",
  41758. height: math.unit(300, "feet")
  41759. },
  41760. {
  41761. name: "Macro",
  41762. height: math.unit(1000, "feet")
  41763. },
  41764. {
  41765. name: "Macro+",
  41766. height: math.unit(3000, "feet")
  41767. },
  41768. {
  41769. name: "Megamacro",
  41770. height: math.unit(10000, "feet")
  41771. },
  41772. {
  41773. name: "City-Crushing",
  41774. height: math.unit(30000, "feet")
  41775. },
  41776. {
  41777. name: "Continent Cracker",
  41778. height: math.unit(30e6, "feet")
  41779. },
  41780. {
  41781. name: "Earth Eclipsing",
  41782. height: math.unit(3e8, "feet")
  41783. },
  41784. {
  41785. name: "Gas Giant Gulper",
  41786. height: math.unit(3e9, "feet")
  41787. },
  41788. {
  41789. name: "Sol-Swallowing",
  41790. height: math.unit(1e11, "feet")
  41791. },
  41792. {
  41793. name: "System Swallower",
  41794. height: math.unit(3e14, "feet")
  41795. },
  41796. {
  41797. name: "Galaxy Gulper",
  41798. height: math.unit(10, "galaxies")
  41799. },
  41800. {
  41801. name: "Light Universal",
  41802. height: math.unit(5, "universes")
  41803. },
  41804. {
  41805. name: "Universe Palm",
  41806. height: math.unit(20, "universes")
  41807. },
  41808. {
  41809. name: "Light Multiversal",
  41810. height: math.unit(5, "multiverses")
  41811. },
  41812. {
  41813. name: "Multiverse Palm",
  41814. height: math.unit(20, "multiverses")
  41815. },
  41816. {
  41817. name: "Inferno Incarnate",
  41818. height: math.unit(1e7, "multiverses")
  41819. },
  41820. ]
  41821. ))
  41822. characterMakers.push(() => makeCharacter(
  41823. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41824. {
  41825. front: {
  41826. height: math.unit(8, "feet"),
  41827. weight: math.unit(1200, "lb"),
  41828. name: "Front",
  41829. image: {
  41830. source: "./media/characters/malithee/front.svg",
  41831. extra: 1675/1640,
  41832. bottom: 162/1837
  41833. }
  41834. },
  41835. },
  41836. [
  41837. {
  41838. name: "Mortal Interaction",
  41839. height: math.unit(8, "feet"),
  41840. default: true
  41841. },
  41842. {
  41843. name: "Large",
  41844. height: math.unit(24, "feet")
  41845. },
  41846. {
  41847. name: "Kaiju",
  41848. height: math.unit(240, "feet")
  41849. },
  41850. {
  41851. name: "Megamacro",
  41852. height: math.unit(8000, "feet")
  41853. },
  41854. {
  41855. name: "Continent Cracker",
  41856. height: math.unit(24e6, "feet")
  41857. },
  41858. {
  41859. name: "Earth-Eclipsing",
  41860. height: math.unit(2.4e8, "feet")
  41861. },
  41862. {
  41863. name: "Sol-Swallowing",
  41864. height: math.unit(8e10, "feet")
  41865. },
  41866. {
  41867. name: "Galaxy Gulper",
  41868. height: math.unit(8, "galaxies")
  41869. },
  41870. {
  41871. name: "Light Universal",
  41872. height: math.unit(4, "universes")
  41873. },
  41874. {
  41875. name: "Universe Atoms",
  41876. height: math.unit(1.829e9, "universes")
  41877. },
  41878. {
  41879. name: "Light Multiversal",
  41880. height: math.unit(4, "multiverses")
  41881. },
  41882. {
  41883. name: "Multiverse Atoms",
  41884. height: math.unit(1.829e9, "multiverses")
  41885. },
  41886. {
  41887. name: "Nigh-Omnipresence",
  41888. height: math.unit(8e261, "multiverses")
  41889. },
  41890. ]
  41891. ))
  41892. characterMakers.push(() => makeCharacter(
  41893. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41894. {
  41895. front: {
  41896. height: math.unit(10, "feet"),
  41897. weight: math.unit(1500, "lb"),
  41898. name: "Front",
  41899. image: {
  41900. source: "./media/characters/miles-thestia/front.svg",
  41901. extra: 1812/1727,
  41902. bottom: 86/1898
  41903. }
  41904. },
  41905. back: {
  41906. height: math.unit(10, "feet"),
  41907. weight: math.unit(1500, "lb"),
  41908. name: "Back",
  41909. image: {
  41910. source: "./media/characters/miles-thestia/back.svg",
  41911. extra: 1799/1690,
  41912. bottom: 47/1846
  41913. }
  41914. },
  41915. frontNsfw: {
  41916. height: math.unit(10, "feet"),
  41917. weight: math.unit(1500, "lb"),
  41918. name: "Front (NSFW)",
  41919. image: {
  41920. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41921. extra: 1812/1727,
  41922. bottom: 86/1898
  41923. }
  41924. },
  41925. },
  41926. [
  41927. {
  41928. name: "Mini-Macro",
  41929. height: math.unit(10, "feet"),
  41930. default: true
  41931. },
  41932. ]
  41933. ))
  41934. characterMakers.push(() => makeCharacter(
  41935. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41936. {
  41937. front: {
  41938. height: math.unit(25, "feet"),
  41939. name: "Front",
  41940. image: {
  41941. source: "./media/characters/titan-s-wulf/front.svg",
  41942. extra: 1560/1484,
  41943. bottom: 76/1636
  41944. }
  41945. },
  41946. },
  41947. [
  41948. {
  41949. name: "Smallest",
  41950. height: math.unit(25, "feet"),
  41951. default: true
  41952. },
  41953. {
  41954. name: "Normal",
  41955. height: math.unit(200, "feet")
  41956. },
  41957. {
  41958. name: "Macro",
  41959. height: math.unit(200000, "feet")
  41960. },
  41961. {
  41962. name: "Multiversal Original",
  41963. height: math.unit(10000, "multiverses")
  41964. },
  41965. ]
  41966. ))
  41967. characterMakers.push(() => makeCharacter(
  41968. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41969. {
  41970. front: {
  41971. height: math.unit(8, "feet"),
  41972. weight: math.unit(553, "lb"),
  41973. name: "Front",
  41974. image: {
  41975. source: "./media/characters/tawendeh/front.svg",
  41976. extra: 2365/2268,
  41977. bottom: 83/2448
  41978. }
  41979. },
  41980. frontClothed: {
  41981. height: math.unit(8, "feet"),
  41982. weight: math.unit(553, "lb"),
  41983. name: "Front (Clothed)",
  41984. image: {
  41985. source: "./media/characters/tawendeh/front-clothed.svg",
  41986. extra: 2365/2268,
  41987. bottom: 83/2448
  41988. }
  41989. },
  41990. back: {
  41991. height: math.unit(8, "feet"),
  41992. weight: math.unit(553, "lb"),
  41993. name: "Back",
  41994. image: {
  41995. source: "./media/characters/tawendeh/back.svg",
  41996. extra: 2397/2294,
  41997. bottom: 42/2439
  41998. }
  41999. },
  42000. },
  42001. [
  42002. {
  42003. name: "Mortal Interaction",
  42004. height: math.unit(8, "feet"),
  42005. default: true
  42006. },
  42007. {
  42008. name: "Giant",
  42009. height: math.unit(80, "feet")
  42010. },
  42011. {
  42012. name: "Macro",
  42013. height: math.unit(800, "feet")
  42014. },
  42015. {
  42016. name: "Megamacro",
  42017. height: math.unit(8000, "feet")
  42018. },
  42019. {
  42020. name: "City-Crushing",
  42021. height: math.unit(24000, "feet")
  42022. },
  42023. {
  42024. name: "Mountain-Mashing",
  42025. height: math.unit(80000, "feet")
  42026. },
  42027. {
  42028. name: "Nation Nemesis",
  42029. height: math.unit(8e6, "feet")
  42030. },
  42031. {
  42032. name: "Continent Cracker",
  42033. height: math.unit(24e6, "feet")
  42034. },
  42035. {
  42036. name: "Earth-Eclipsing",
  42037. height: math.unit(2.4e8, "feet")
  42038. },
  42039. {
  42040. name: "Gas Giant Gulper",
  42041. height: math.unit(2.4e9, "feet")
  42042. },
  42043. {
  42044. name: "Sol-Swallowing",
  42045. height: math.unit(8e10, "feet")
  42046. },
  42047. {
  42048. name: "Galaxy Gulper",
  42049. height: math.unit(8, "galaxies")
  42050. },
  42051. {
  42052. name: "Cosmos Churner",
  42053. height: math.unit(8, "universes")
  42054. },
  42055. {
  42056. name: "Omnipotent Otter",
  42057. height: math.unit(80, "universes")
  42058. },
  42059. ]
  42060. ))
  42061. characterMakers.push(() => makeCharacter(
  42062. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42063. {
  42064. front: {
  42065. height: math.unit(2.6, "meters"),
  42066. weight: math.unit(900, "kg"),
  42067. name: "Front",
  42068. image: {
  42069. source: "./media/characters/neesha/front.svg",
  42070. extra: 1803/1653,
  42071. bottom: 128/1931
  42072. }
  42073. },
  42074. },
  42075. [
  42076. {
  42077. name: "Normal",
  42078. height: math.unit(2.6, "meters"),
  42079. default: true
  42080. },
  42081. {
  42082. name: "Macro",
  42083. height: math.unit(50, "meters")
  42084. },
  42085. ]
  42086. ))
  42087. characterMakers.push(() => makeCharacter(
  42088. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42089. {
  42090. front: {
  42091. height: math.unit(5, "feet"),
  42092. weight: math.unit(185, "lb"),
  42093. name: "Front",
  42094. image: {
  42095. source: "./media/characters/kyera/front.svg",
  42096. extra: 1875/1790,
  42097. bottom: 96/1971
  42098. }
  42099. },
  42100. },
  42101. [
  42102. {
  42103. name: "Normal",
  42104. height: math.unit(5, "feet"),
  42105. default: true
  42106. },
  42107. ]
  42108. ))
  42109. characterMakers.push(() => makeCharacter(
  42110. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42111. {
  42112. front: {
  42113. height: math.unit(7 + 6/12, "feet"),
  42114. weight: math.unit(540, "lb"),
  42115. name: "Front",
  42116. image: {
  42117. source: "./media/characters/yuko/front.svg",
  42118. extra: 1282/1222,
  42119. bottom: 101/1383
  42120. }
  42121. },
  42122. frontClothed: {
  42123. height: math.unit(7 + 6/12, "feet"),
  42124. weight: math.unit(540, "lb"),
  42125. name: "Front (Clothed)",
  42126. image: {
  42127. source: "./media/characters/yuko/front-clothed.svg",
  42128. extra: 1282/1222,
  42129. bottom: 101/1383
  42130. }
  42131. },
  42132. },
  42133. [
  42134. {
  42135. name: "Normal",
  42136. height: math.unit(7 + 6/12, "feet"),
  42137. default: true
  42138. },
  42139. {
  42140. name: "Macro",
  42141. height: math.unit(26 + 9/12, "feet")
  42142. },
  42143. {
  42144. name: "Megamacro",
  42145. height: math.unit(300, "feet")
  42146. },
  42147. {
  42148. name: "Gigamacro",
  42149. height: math.unit(5000, "feet")
  42150. },
  42151. {
  42152. name: "Planetary",
  42153. height: math.unit(10000, "miles")
  42154. },
  42155. ]
  42156. ))
  42157. characterMakers.push(() => makeCharacter(
  42158. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42159. {
  42160. front: {
  42161. height: math.unit(8 + 2/12, "feet"),
  42162. weight: math.unit(600, "lb"),
  42163. name: "Front",
  42164. image: {
  42165. source: "./media/characters/deam-nitrel/front.svg",
  42166. extra: 1308/1234,
  42167. bottom: 125/1433
  42168. }
  42169. },
  42170. },
  42171. [
  42172. {
  42173. name: "Normal",
  42174. height: math.unit(8 + 2/12, "feet"),
  42175. default: true
  42176. },
  42177. ]
  42178. ))
  42179. characterMakers.push(() => makeCharacter(
  42180. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42181. {
  42182. front: {
  42183. height: math.unit(6.1, "feet"),
  42184. weight: math.unit(180, "lb"),
  42185. name: "Front",
  42186. image: {
  42187. source: "./media/characters/skyress/front.svg",
  42188. extra: 1045/915,
  42189. bottom: 28/1073
  42190. }
  42191. },
  42192. maw: {
  42193. height: math.unit(1, "feet"),
  42194. name: "Maw",
  42195. image: {
  42196. source: "./media/characters/skyress/maw.svg"
  42197. }
  42198. },
  42199. },
  42200. [
  42201. {
  42202. name: "Normal",
  42203. height: math.unit(6.1, "feet"),
  42204. default: true
  42205. },
  42206. {
  42207. name: "Macro",
  42208. height: math.unit(200, "feet")
  42209. },
  42210. ]
  42211. ))
  42212. characterMakers.push(() => makeCharacter(
  42213. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42214. {
  42215. front: {
  42216. height: math.unit(4 + 2/12, "feet"),
  42217. weight: math.unit(40, "kg"),
  42218. name: "Front",
  42219. image: {
  42220. source: "./media/characters/amethyst-jones/front.svg",
  42221. extra: 1220/1150,
  42222. bottom: 101/1321
  42223. }
  42224. },
  42225. },
  42226. [
  42227. {
  42228. name: "Normal",
  42229. height: math.unit(4 + 2/12, "feet"),
  42230. default: true
  42231. },
  42232. ]
  42233. ))
  42234. characterMakers.push(() => makeCharacter(
  42235. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42236. {
  42237. front: {
  42238. height: math.unit(1.7, "m"),
  42239. weight: math.unit(135, "lb"),
  42240. name: "Front",
  42241. image: {
  42242. source: "./media/characters/jade/front.svg",
  42243. extra: 1818/1767,
  42244. bottom: 32/1850
  42245. }
  42246. },
  42247. back: {
  42248. height: math.unit(1.7, "m"),
  42249. weight: math.unit(135, "lb"),
  42250. name: "Back",
  42251. image: {
  42252. source: "./media/characters/jade/back.svg",
  42253. extra: 1869/1809,
  42254. bottom: 35/1904
  42255. }
  42256. },
  42257. hand: {
  42258. height: math.unit(0.24, "m"),
  42259. name: "Hand",
  42260. image: {
  42261. source: "./media/characters/jade/hand.svg"
  42262. }
  42263. },
  42264. foot: {
  42265. height: math.unit(0.263, "m"),
  42266. name: "Foot",
  42267. image: {
  42268. source: "./media/characters/jade/foot.svg"
  42269. }
  42270. },
  42271. dick: {
  42272. height: math.unit(0.47, "m"),
  42273. name: "Dick",
  42274. image: {
  42275. source: "./media/characters/jade/dick.svg"
  42276. }
  42277. },
  42278. },
  42279. [
  42280. {
  42281. name: "Micro",
  42282. height: math.unit(22, "cm")
  42283. },
  42284. {
  42285. name: "Normal",
  42286. height: math.unit(1.7, "m"),
  42287. default: true
  42288. },
  42289. {
  42290. name: "Macro",
  42291. height: math.unit(152, "m")
  42292. },
  42293. ]
  42294. ))
  42295. characterMakers.push(() => makeCharacter(
  42296. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42297. {
  42298. front: {
  42299. height: math.unit(100, "miles"),
  42300. weight: math.unit(20000, "tons"),
  42301. name: "Front",
  42302. image: {
  42303. source: "./media/characters/cookie/front.svg",
  42304. extra: 1125/1070,
  42305. bottom: 30/1155
  42306. }
  42307. },
  42308. },
  42309. [
  42310. {
  42311. name: "Big",
  42312. height: math.unit(50, "feet")
  42313. },
  42314. {
  42315. name: "Macro",
  42316. height: math.unit(100, "miles"),
  42317. default: true
  42318. },
  42319. {
  42320. name: "Megamacro",
  42321. height: math.unit(90000, "miles")
  42322. },
  42323. ]
  42324. ))
  42325. characterMakers.push(() => makeCharacter(
  42326. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42327. {
  42328. front: {
  42329. height: math.unit(6, "feet"),
  42330. weight: math.unit(145, "lb"),
  42331. name: "Front",
  42332. image: {
  42333. source: "./media/characters/farzian/front.svg",
  42334. extra: 1902/1693,
  42335. bottom: 108/2010
  42336. }
  42337. },
  42338. },
  42339. [
  42340. {
  42341. name: "Macro",
  42342. height: math.unit(500, "feet"),
  42343. default: true
  42344. },
  42345. ]
  42346. ))
  42347. characterMakers.push(() => makeCharacter(
  42348. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42349. {
  42350. front: {
  42351. height: math.unit(3 + 6/12, "feet"),
  42352. weight: math.unit(50, "lb"),
  42353. name: "Front",
  42354. image: {
  42355. source: "./media/characters/kimberly-tilson/front.svg",
  42356. extra: 1400/1322,
  42357. bottom: 36/1436
  42358. }
  42359. },
  42360. back: {
  42361. height: math.unit(3 + 6/12, "feet"),
  42362. weight: math.unit(50, "lb"),
  42363. name: "Back",
  42364. image: {
  42365. source: "./media/characters/kimberly-tilson/back.svg",
  42366. extra: 1370/1307,
  42367. bottom: 20/1390
  42368. }
  42369. },
  42370. },
  42371. [
  42372. {
  42373. name: "Normal",
  42374. height: math.unit(3 + 6/12, "feet"),
  42375. default: true
  42376. },
  42377. ]
  42378. ))
  42379. characterMakers.push(() => makeCharacter(
  42380. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  42381. {
  42382. front: {
  42383. height: math.unit(350, "meters"),
  42384. weight: math.unit(7.57059e+8, "lb"),
  42385. name: "Front",
  42386. image: {
  42387. source: "./media/characters/harthos/front.svg",
  42388. extra: 455/446,
  42389. bottom: 15/470
  42390. },
  42391. form: "peacekeeper",
  42392. default: true
  42393. },
  42394. allusus_front: {
  42395. height: math.unit(270, "meters"),
  42396. weight: math.unit(3.47550e+8, "lb"),
  42397. name: "Front",
  42398. image: {
  42399. source: "./media/characters/harthos/allusus-front.svg",
  42400. extra: 455/446,
  42401. bottom: 15/470
  42402. },
  42403. form: "allusus",
  42404. },
  42405. },
  42406. [
  42407. {
  42408. name: "Macro",
  42409. height: math.unit(350, "meters"),
  42410. default: true,
  42411. form: "peacekeeper"
  42412. },
  42413. {
  42414. name: "Macro",
  42415. height: math.unit(270, "meters"),
  42416. default: true,
  42417. form: "allusus"
  42418. },
  42419. ],
  42420. {
  42421. "peacekeeper": {
  42422. name: "Peacekeeper",
  42423. default: true
  42424. },
  42425. "allusus": {
  42426. name: "Allusus",
  42427. },
  42428. }
  42429. ))
  42430. characterMakers.push(() => makeCharacter(
  42431. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42432. {
  42433. front: {
  42434. height: math.unit(15, "feet"),
  42435. name: "Front",
  42436. image: {
  42437. source: "./media/characters/hypatia/front.svg",
  42438. extra: 1653/1591,
  42439. bottom: 79/1732
  42440. }
  42441. },
  42442. },
  42443. [
  42444. {
  42445. name: "Normal",
  42446. height: math.unit(15, "feet")
  42447. },
  42448. {
  42449. name: "Small",
  42450. height: math.unit(300, "feet")
  42451. },
  42452. {
  42453. name: "Macro",
  42454. height: math.unit(2500, "feet"),
  42455. default: true
  42456. },
  42457. {
  42458. name: "Mega Macro",
  42459. height: math.unit(1500, "miles")
  42460. },
  42461. {
  42462. name: "Giga Macro",
  42463. height: math.unit(1.5e6, "miles")
  42464. },
  42465. ]
  42466. ))
  42467. characterMakers.push(() => makeCharacter(
  42468. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42469. {
  42470. front: {
  42471. height: math.unit(6, "feet"),
  42472. weight: math.unit(200, "lb"),
  42473. name: "Front",
  42474. image: {
  42475. source: "./media/characters/wulver/front.svg",
  42476. extra: 1724/1632,
  42477. bottom: 130/1854
  42478. }
  42479. },
  42480. frontNsfw: {
  42481. height: math.unit(6, "feet"),
  42482. weight: math.unit(200, "lb"),
  42483. name: "Front (NSFW)",
  42484. image: {
  42485. source: "./media/characters/wulver/front-nsfw.svg",
  42486. extra: 1724/1632,
  42487. bottom: 130/1854
  42488. }
  42489. },
  42490. },
  42491. [
  42492. {
  42493. name: "Human-Sized",
  42494. height: math.unit(6, "feet")
  42495. },
  42496. {
  42497. name: "Normal",
  42498. height: math.unit(4, "meters"),
  42499. default: true
  42500. },
  42501. {
  42502. name: "Large",
  42503. height: math.unit(6, "m")
  42504. },
  42505. ]
  42506. ))
  42507. characterMakers.push(() => makeCharacter(
  42508. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42509. {
  42510. front: {
  42511. height: math.unit(7, "feet"),
  42512. name: "Front",
  42513. image: {
  42514. source: "./media/characters/maru/front.svg",
  42515. extra: 1595/1570,
  42516. bottom: 0/1595
  42517. }
  42518. },
  42519. },
  42520. [
  42521. {
  42522. name: "Normal",
  42523. height: math.unit(7, "feet"),
  42524. default: true
  42525. },
  42526. {
  42527. name: "Macro",
  42528. height: math.unit(700, "feet")
  42529. },
  42530. {
  42531. name: "Mega Macro",
  42532. height: math.unit(25, "miles")
  42533. },
  42534. ]
  42535. ))
  42536. characterMakers.push(() => makeCharacter(
  42537. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42538. {
  42539. front: {
  42540. height: math.unit(6, "feet"),
  42541. weight: math.unit(170, "lb"),
  42542. name: "Front",
  42543. image: {
  42544. source: "./media/characters/xenon/front.svg",
  42545. extra: 1376/1305,
  42546. bottom: 56/1432
  42547. }
  42548. },
  42549. back: {
  42550. height: math.unit(6, "feet"),
  42551. weight: math.unit(170, "lb"),
  42552. name: "Back",
  42553. image: {
  42554. source: "./media/characters/xenon/back.svg",
  42555. extra: 1328/1259,
  42556. bottom: 95/1423
  42557. }
  42558. },
  42559. maw: {
  42560. height: math.unit(0.52, "feet"),
  42561. name: "Maw",
  42562. image: {
  42563. source: "./media/characters/xenon/maw.svg"
  42564. }
  42565. },
  42566. handLeft: {
  42567. height: math.unit(0.82 * 169 / 153, "feet"),
  42568. name: "Hand (Left)",
  42569. image: {
  42570. source: "./media/characters/xenon/hand-left.svg"
  42571. }
  42572. },
  42573. handRight: {
  42574. height: math.unit(0.82, "feet"),
  42575. name: "Hand (Right)",
  42576. image: {
  42577. source: "./media/characters/xenon/hand-right.svg"
  42578. }
  42579. },
  42580. footLeft: {
  42581. height: math.unit(1.13, "feet"),
  42582. name: "Foot (Left)",
  42583. image: {
  42584. source: "./media/characters/xenon/foot-left.svg"
  42585. }
  42586. },
  42587. footRight: {
  42588. height: math.unit(1.13 * 194 / 196, "feet"),
  42589. name: "Foot (Right)",
  42590. image: {
  42591. source: "./media/characters/xenon/foot-right.svg"
  42592. }
  42593. },
  42594. },
  42595. [
  42596. {
  42597. name: "Micro",
  42598. height: math.unit(0.8, "inches")
  42599. },
  42600. {
  42601. name: "Normal",
  42602. height: math.unit(6, "feet")
  42603. },
  42604. {
  42605. name: "Macro",
  42606. height: math.unit(50, "feet"),
  42607. default: true
  42608. },
  42609. {
  42610. name: "Macro+",
  42611. height: math.unit(250, "feet")
  42612. },
  42613. {
  42614. name: "Megamacro",
  42615. height: math.unit(1500, "feet")
  42616. },
  42617. ]
  42618. ))
  42619. characterMakers.push(() => makeCharacter(
  42620. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42621. {
  42622. front: {
  42623. height: math.unit(7 + 5/12, "feet"),
  42624. name: "Front",
  42625. image: {
  42626. source: "./media/characters/zane/front.svg",
  42627. extra: 1260/1203,
  42628. bottom: 94/1354
  42629. }
  42630. },
  42631. back: {
  42632. height: math.unit(5.05, "feet"),
  42633. name: "Back",
  42634. image: {
  42635. source: "./media/characters/zane/back.svg",
  42636. extra: 893/829,
  42637. bottom: 30/923
  42638. }
  42639. },
  42640. werewolf: {
  42641. height: math.unit(11, "feet"),
  42642. name: "Werewolf",
  42643. image: {
  42644. source: "./media/characters/zane/werewolf.svg",
  42645. extra: 1383/1323,
  42646. bottom: 89/1472
  42647. }
  42648. },
  42649. foot: {
  42650. height: math.unit(1.46, "feet"),
  42651. name: "Foot",
  42652. image: {
  42653. source: "./media/characters/zane/foot.svg"
  42654. }
  42655. },
  42656. footFront: {
  42657. height: math.unit(0.784, "feet"),
  42658. name: "Foot (Front)",
  42659. image: {
  42660. source: "./media/characters/zane/foot-front.svg"
  42661. }
  42662. },
  42663. dick: {
  42664. height: math.unit(1.95, "feet"),
  42665. name: "Dick",
  42666. image: {
  42667. source: "./media/characters/zane/dick.svg"
  42668. }
  42669. },
  42670. dickWerewolf: {
  42671. height: math.unit(3.77, "feet"),
  42672. name: "Dick (Werewolf)",
  42673. image: {
  42674. source: "./media/characters/zane/dick.svg"
  42675. }
  42676. },
  42677. },
  42678. [
  42679. {
  42680. name: "Normal",
  42681. height: math.unit(7 + 5/12, "feet"),
  42682. default: true
  42683. },
  42684. ]
  42685. ))
  42686. characterMakers.push(() => makeCharacter(
  42687. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42688. {
  42689. front: {
  42690. height: math.unit(6 + 2/12, "feet"),
  42691. weight: math.unit(284, "lb"),
  42692. name: "Front",
  42693. image: {
  42694. source: "./media/characters/benni-desparque/front.svg",
  42695. extra: 1353/1126,
  42696. bottom: 69/1422
  42697. }
  42698. },
  42699. },
  42700. [
  42701. {
  42702. name: "Civilian",
  42703. height: math.unit(6 + 2/12, "feet")
  42704. },
  42705. {
  42706. name: "Normal",
  42707. height: math.unit(98, "feet"),
  42708. default: true
  42709. },
  42710. {
  42711. name: "Kaiju Fighter",
  42712. height: math.unit(268, "feet")
  42713. },
  42714. ]
  42715. ))
  42716. characterMakers.push(() => makeCharacter(
  42717. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42718. {
  42719. front: {
  42720. height: math.unit(5, "feet"),
  42721. weight: math.unit(105, "lb"),
  42722. name: "Front",
  42723. image: {
  42724. source: "./media/characters/maxine/front.svg",
  42725. extra: 1386/1250,
  42726. bottom: 71/1457
  42727. }
  42728. },
  42729. },
  42730. [
  42731. {
  42732. name: "Normal",
  42733. height: math.unit(5, "feet"),
  42734. default: true
  42735. },
  42736. ]
  42737. ))
  42738. characterMakers.push(() => makeCharacter(
  42739. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42740. {
  42741. front: {
  42742. height: math.unit(11 + 7/12, "feet"),
  42743. weight: math.unit(9576, "lb"),
  42744. name: "Front",
  42745. image: {
  42746. source: "./media/characters/scaly/front.svg",
  42747. extra: 888/867,
  42748. bottom: 36/924
  42749. }
  42750. },
  42751. },
  42752. [
  42753. {
  42754. name: "Normal",
  42755. height: math.unit(11 + 7/12, "feet"),
  42756. default: true
  42757. },
  42758. ]
  42759. ))
  42760. characterMakers.push(() => makeCharacter(
  42761. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42762. {
  42763. front: {
  42764. height: math.unit(6 + 3/12, "feet"),
  42765. name: "Front",
  42766. image: {
  42767. source: "./media/characters/saelria/front.svg",
  42768. extra: 1243/1138,
  42769. bottom: 46/1289
  42770. }
  42771. },
  42772. },
  42773. [
  42774. {
  42775. name: "Micro",
  42776. height: math.unit(6, "inches"),
  42777. },
  42778. {
  42779. name: "Normal",
  42780. height: math.unit(6 + 3/12, "feet"),
  42781. default: true
  42782. },
  42783. {
  42784. name: "Macro",
  42785. height: math.unit(25, "feet")
  42786. },
  42787. ]
  42788. ))
  42789. characterMakers.push(() => makeCharacter(
  42790. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42791. {
  42792. front: {
  42793. height: math.unit(80, "meters"),
  42794. weight: math.unit(7000, "tonnes"),
  42795. name: "Front",
  42796. image: {
  42797. source: "./media/characters/tef/front.svg",
  42798. extra: 2036/1991,
  42799. bottom: 54/2090
  42800. }
  42801. },
  42802. back: {
  42803. height: math.unit(80, "meters"),
  42804. weight: math.unit(7000, "tonnes"),
  42805. name: "Back",
  42806. image: {
  42807. source: "./media/characters/tef/back.svg",
  42808. extra: 2036/1991,
  42809. bottom: 54/2090
  42810. }
  42811. },
  42812. },
  42813. [
  42814. {
  42815. name: "Macro",
  42816. height: math.unit(80, "meters"),
  42817. default: true
  42818. },
  42819. ]
  42820. ))
  42821. characterMakers.push(() => makeCharacter(
  42822. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42823. {
  42824. front: {
  42825. height: math.unit(13, "feet"),
  42826. weight: math.unit(6, "tons"),
  42827. name: "Front",
  42828. image: {
  42829. source: "./media/characters/rover/front.svg",
  42830. extra: 1233/1156,
  42831. bottom: 50/1283
  42832. }
  42833. },
  42834. back: {
  42835. height: math.unit(13, "feet"),
  42836. weight: math.unit(6, "tons"),
  42837. name: "Back",
  42838. image: {
  42839. source: "./media/characters/rover/back.svg",
  42840. extra: 1327/1258,
  42841. bottom: 39/1366
  42842. }
  42843. },
  42844. },
  42845. [
  42846. {
  42847. name: "Normal",
  42848. height: math.unit(13, "feet"),
  42849. default: true
  42850. },
  42851. {
  42852. name: "Macro",
  42853. height: math.unit(1300, "feet")
  42854. },
  42855. {
  42856. name: "Megamacro",
  42857. height: math.unit(1300, "miles")
  42858. },
  42859. {
  42860. name: "Gigamacro",
  42861. height: math.unit(1300000, "miles")
  42862. },
  42863. ]
  42864. ))
  42865. characterMakers.push(() => makeCharacter(
  42866. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42867. {
  42868. front: {
  42869. height: math.unit(10, "feet"),
  42870. weight: math.unit(500, "lb"),
  42871. name: "Front",
  42872. image: {
  42873. source: "./media/characters/ariz/front.svg",
  42874. extra: 461/450,
  42875. bottom: 16/477
  42876. }
  42877. },
  42878. },
  42879. [
  42880. {
  42881. name: "MiniMacro",
  42882. height: math.unit(10, "feet"),
  42883. default: true
  42884. },
  42885. ]
  42886. ))
  42887. characterMakers.push(() => makeCharacter(
  42888. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42889. {
  42890. front: {
  42891. height: math.unit(6, "feet"),
  42892. weight: math.unit(140, "lb"),
  42893. name: "Front",
  42894. image: {
  42895. source: "./media/characters/sigrun/front.svg",
  42896. extra: 1418/1359,
  42897. bottom: 27/1445
  42898. }
  42899. },
  42900. },
  42901. [
  42902. {
  42903. name: "Macro",
  42904. height: math.unit(35, "feet"),
  42905. default: true
  42906. },
  42907. ]
  42908. ))
  42909. characterMakers.push(() => makeCharacter(
  42910. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42911. {
  42912. front: {
  42913. height: math.unit(6, "feet"),
  42914. weight: math.unit(150, "lb"),
  42915. name: "Front",
  42916. image: {
  42917. source: "./media/characters/numin/front.svg",
  42918. extra: 1433/1388,
  42919. bottom: 12/1445
  42920. }
  42921. },
  42922. },
  42923. [
  42924. {
  42925. name: "Macro",
  42926. height: math.unit(21.5, "km"),
  42927. default: true
  42928. },
  42929. ]
  42930. ))
  42931. characterMakers.push(() => makeCharacter(
  42932. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42933. {
  42934. front: {
  42935. height: math.unit(6, "feet"),
  42936. weight: math.unit(463, "lb"),
  42937. name: "Front",
  42938. image: {
  42939. source: "./media/characters/melwa/front.svg",
  42940. extra: 1307/1248,
  42941. bottom: 93/1400
  42942. }
  42943. },
  42944. },
  42945. [
  42946. {
  42947. name: "Macro",
  42948. height: math.unit(50, "meters"),
  42949. default: true
  42950. },
  42951. ]
  42952. ))
  42953. characterMakers.push(() => makeCharacter(
  42954. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42955. {
  42956. front: {
  42957. height: math.unit(325, "feet"),
  42958. name: "Front",
  42959. image: {
  42960. source: "./media/characters/zorkaiju/front.svg",
  42961. extra: 1955/1814,
  42962. bottom: 40/1995
  42963. }
  42964. },
  42965. frontExtended: {
  42966. height: math.unit(325, "feet"),
  42967. name: "Front (Extended)",
  42968. image: {
  42969. source: "./media/characters/zorkaiju/front-extended.svg",
  42970. extra: 1955/1814,
  42971. bottom: 40/1995
  42972. }
  42973. },
  42974. side: {
  42975. height: math.unit(325, "feet"),
  42976. name: "Side",
  42977. image: {
  42978. source: "./media/characters/zorkaiju/side.svg",
  42979. extra: 1495/1396,
  42980. bottom: 17/1512
  42981. }
  42982. },
  42983. sideExtended: {
  42984. height: math.unit(325, "feet"),
  42985. name: "Side (Extended)",
  42986. image: {
  42987. source: "./media/characters/zorkaiju/side-extended.svg",
  42988. extra: 1495/1396,
  42989. bottom: 17/1512
  42990. }
  42991. },
  42992. back: {
  42993. height: math.unit(325, "feet"),
  42994. name: "Back",
  42995. image: {
  42996. source: "./media/characters/zorkaiju/back.svg",
  42997. extra: 1959/1821,
  42998. bottom: 31/1990
  42999. }
  43000. },
  43001. backExtended: {
  43002. height: math.unit(325, "feet"),
  43003. name: "Back (Extended)",
  43004. image: {
  43005. source: "./media/characters/zorkaiju/back-extended.svg",
  43006. extra: 1959/1821,
  43007. bottom: 31/1990
  43008. }
  43009. },
  43010. hand: {
  43011. height: math.unit(58.4, "feet"),
  43012. name: "Hand",
  43013. image: {
  43014. source: "./media/characters/zorkaiju/hand.svg"
  43015. }
  43016. },
  43017. handExtended: {
  43018. height: math.unit(61.4, "feet"),
  43019. name: "Hand (Extended)",
  43020. image: {
  43021. source: "./media/characters/zorkaiju/hand-extended.svg"
  43022. }
  43023. },
  43024. foot: {
  43025. height: math.unit(95, "feet"),
  43026. name: "Foot",
  43027. image: {
  43028. source: "./media/characters/zorkaiju/foot.svg"
  43029. }
  43030. },
  43031. leftArm: {
  43032. height: math.unit(59, "feet"),
  43033. name: "Left Arm",
  43034. image: {
  43035. source: "./media/characters/zorkaiju/left-arm.svg"
  43036. }
  43037. },
  43038. rightArm: {
  43039. height: math.unit(59, "feet"),
  43040. name: "Right Arm",
  43041. image: {
  43042. source: "./media/characters/zorkaiju/right-arm.svg"
  43043. }
  43044. },
  43045. leftArmExtended: {
  43046. height: math.unit(59 * 1.033546, "feet"),
  43047. name: "Left Arm (Extended)",
  43048. image: {
  43049. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43050. }
  43051. },
  43052. rightArmExtended: {
  43053. height: math.unit(59 * 1.0496, "feet"),
  43054. name: "Right Arm (Extended)",
  43055. image: {
  43056. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43057. }
  43058. },
  43059. tail: {
  43060. height: math.unit(104, "feet"),
  43061. name: "Tail",
  43062. image: {
  43063. source: "./media/characters/zorkaiju/tail.svg"
  43064. }
  43065. },
  43066. tailExtended: {
  43067. height: math.unit(104, "feet"),
  43068. name: "Tail (Extended)",
  43069. image: {
  43070. source: "./media/characters/zorkaiju/tail-extended.svg"
  43071. }
  43072. },
  43073. tailBottom: {
  43074. height: math.unit(104, "feet"),
  43075. name: "Tail Bottom",
  43076. image: {
  43077. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43078. }
  43079. },
  43080. crystal: {
  43081. height: math.unit(27.54, "feet"),
  43082. name: "Crystal",
  43083. image: {
  43084. source: "./media/characters/zorkaiju/crystal.svg"
  43085. }
  43086. },
  43087. },
  43088. [
  43089. {
  43090. name: "Kaiju",
  43091. height: math.unit(325, "feet"),
  43092. default: true
  43093. },
  43094. ]
  43095. ))
  43096. characterMakers.push(() => makeCharacter(
  43097. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43098. {
  43099. front: {
  43100. height: math.unit(6 + 1/12, "feet"),
  43101. weight: math.unit(115, "lb"),
  43102. name: "Front",
  43103. image: {
  43104. source: "./media/characters/bailey-belfry/front.svg",
  43105. extra: 1240/1121,
  43106. bottom: 101/1341
  43107. }
  43108. },
  43109. },
  43110. [
  43111. {
  43112. name: "Normal",
  43113. height: math.unit(6 + 1/12, "feet"),
  43114. default: true
  43115. },
  43116. ]
  43117. ))
  43118. characterMakers.push(() => makeCharacter(
  43119. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43120. {
  43121. side: {
  43122. height: math.unit(4, "meters"),
  43123. weight: math.unit(250, "kg"),
  43124. name: "Side",
  43125. image: {
  43126. source: "./media/characters/blacky/side.svg",
  43127. extra: 1027/919,
  43128. bottom: 43/1070
  43129. }
  43130. },
  43131. maw: {
  43132. height: math.unit(1, "meters"),
  43133. name: "Maw",
  43134. image: {
  43135. source: "./media/characters/blacky/maw.svg"
  43136. }
  43137. },
  43138. paw: {
  43139. height: math.unit(1, "meters"),
  43140. name: "Paw",
  43141. image: {
  43142. source: "./media/characters/blacky/paw.svg"
  43143. }
  43144. },
  43145. },
  43146. [
  43147. {
  43148. name: "Normal",
  43149. height: math.unit(4, "meters"),
  43150. default: true
  43151. },
  43152. ]
  43153. ))
  43154. characterMakers.push(() => makeCharacter(
  43155. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43156. {
  43157. front: {
  43158. height: math.unit(170, "cm"),
  43159. weight: math.unit(66, "kg"),
  43160. name: "Front",
  43161. image: {
  43162. source: "./media/characters/thux-ei/front.svg",
  43163. extra: 1109/1011,
  43164. bottom: 8/1117
  43165. }
  43166. },
  43167. },
  43168. [
  43169. {
  43170. name: "Normal",
  43171. height: math.unit(170, "cm"),
  43172. default: true
  43173. },
  43174. ]
  43175. ))
  43176. characterMakers.push(() => makeCharacter(
  43177. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43178. {
  43179. front: {
  43180. height: math.unit(5, "feet"),
  43181. weight: math.unit(120, "lb"),
  43182. name: "Front",
  43183. image: {
  43184. source: "./media/characters/roxanne-voltaire/front.svg",
  43185. extra: 1901/1779,
  43186. bottom: 53/1954
  43187. }
  43188. },
  43189. },
  43190. [
  43191. {
  43192. name: "Normal",
  43193. height: math.unit(5, "feet"),
  43194. default: true
  43195. },
  43196. {
  43197. name: "Giant",
  43198. height: math.unit(50, "feet")
  43199. },
  43200. {
  43201. name: "Titan",
  43202. height: math.unit(500, "feet")
  43203. },
  43204. {
  43205. name: "Macro",
  43206. height: math.unit(5000, "feet")
  43207. },
  43208. {
  43209. name: "Megamacro",
  43210. height: math.unit(50000, "feet")
  43211. },
  43212. {
  43213. name: "Gigamacro",
  43214. height: math.unit(500000, "feet")
  43215. },
  43216. {
  43217. name: "Teramacro",
  43218. height: math.unit(5e6, "feet")
  43219. },
  43220. ]
  43221. ))
  43222. characterMakers.push(() => makeCharacter(
  43223. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43224. {
  43225. front: {
  43226. height: math.unit(6 + 2/12, "feet"),
  43227. name: "Front",
  43228. image: {
  43229. source: "./media/characters/squeaks/front.svg",
  43230. extra: 1823/1768,
  43231. bottom: 138/1961
  43232. }
  43233. },
  43234. },
  43235. [
  43236. {
  43237. name: "Micro",
  43238. height: math.unit(0.5, "inches")
  43239. },
  43240. {
  43241. name: "Normal",
  43242. height: math.unit(6 + 2/12, "feet"),
  43243. default: true
  43244. },
  43245. {
  43246. name: "Macro",
  43247. height: math.unit(600, "feet")
  43248. },
  43249. ]
  43250. ))
  43251. characterMakers.push(() => makeCharacter(
  43252. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43253. {
  43254. front: {
  43255. height: math.unit(1.72, "meters"),
  43256. name: "Front",
  43257. image: {
  43258. source: "./media/characters/archinger/front.svg",
  43259. extra: 1861/1675,
  43260. bottom: 125/1986
  43261. }
  43262. },
  43263. back: {
  43264. height: math.unit(1.72, "meters"),
  43265. name: "Back",
  43266. image: {
  43267. source: "./media/characters/archinger/back.svg",
  43268. extra: 1844/1701,
  43269. bottom: 104/1948
  43270. }
  43271. },
  43272. cock: {
  43273. height: math.unit(0.59, "feet"),
  43274. name: "Cock",
  43275. image: {
  43276. source: "./media/characters/archinger/cock.svg"
  43277. }
  43278. },
  43279. },
  43280. [
  43281. {
  43282. name: "Normal",
  43283. height: math.unit(1.72, "meters"),
  43284. default: true
  43285. },
  43286. {
  43287. name: "Macro",
  43288. height: math.unit(84, "meters")
  43289. },
  43290. {
  43291. name: "Macro+",
  43292. height: math.unit(112, "meters")
  43293. },
  43294. {
  43295. name: "Macro++",
  43296. height: math.unit(960, "meters")
  43297. },
  43298. {
  43299. name: "Macro+++",
  43300. height: math.unit(4, "km")
  43301. },
  43302. {
  43303. name: "Macro++++",
  43304. height: math.unit(48, "km")
  43305. },
  43306. {
  43307. name: "Macro+++++",
  43308. height: math.unit(4500, "km")
  43309. },
  43310. ]
  43311. ))
  43312. characterMakers.push(() => makeCharacter(
  43313. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43314. {
  43315. front: {
  43316. height: math.unit(5 + 5/12, "feet"),
  43317. name: "Front",
  43318. image: {
  43319. source: "./media/characters/alsnapz/front.svg",
  43320. extra: 1157/1065,
  43321. bottom: 42/1199
  43322. }
  43323. },
  43324. },
  43325. [
  43326. {
  43327. name: "Normal",
  43328. height: math.unit(5 + 5/12, "feet"),
  43329. default: true
  43330. },
  43331. ]
  43332. ))
  43333. characterMakers.push(() => makeCharacter(
  43334. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43335. {
  43336. side: {
  43337. height: math.unit(3.2, "earths"),
  43338. name: "Side",
  43339. image: {
  43340. source: "./media/characters/mag/side.svg",
  43341. extra: 1331/1008,
  43342. bottom: 52/1383
  43343. }
  43344. },
  43345. wing: {
  43346. height: math.unit(1.94, "earths"),
  43347. name: "Wing",
  43348. image: {
  43349. source: "./media/characters/mag/wing.svg"
  43350. }
  43351. },
  43352. dick: {
  43353. height: math.unit(1.8, "earths"),
  43354. name: "Dick",
  43355. image: {
  43356. source: "./media/characters/mag/dick.svg"
  43357. }
  43358. },
  43359. ass: {
  43360. height: math.unit(1.33, "earths"),
  43361. name: "Ass",
  43362. image: {
  43363. source: "./media/characters/mag/ass.svg"
  43364. }
  43365. },
  43366. head: {
  43367. height: math.unit(1.1, "earths"),
  43368. name: "Head",
  43369. image: {
  43370. source: "./media/characters/mag/head.svg"
  43371. }
  43372. },
  43373. maw: {
  43374. height: math.unit(1.62, "earths"),
  43375. name: "Maw",
  43376. image: {
  43377. source: "./media/characters/mag/maw.svg"
  43378. }
  43379. },
  43380. },
  43381. [
  43382. {
  43383. name: "Small",
  43384. height: math.unit(162, "feet")
  43385. },
  43386. {
  43387. name: "Normal",
  43388. height: math.unit(3.2, "earths"),
  43389. default: true
  43390. },
  43391. ]
  43392. ))
  43393. characterMakers.push(() => makeCharacter(
  43394. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43395. {
  43396. front: {
  43397. height: math.unit(512, "feet"),
  43398. weight: math.unit(63509, "tonnes"),
  43399. name: "Front",
  43400. image: {
  43401. source: "./media/characters/vorrel-harroc/front.svg",
  43402. extra: 1075/1063,
  43403. bottom: 62/1137
  43404. }
  43405. },
  43406. },
  43407. [
  43408. {
  43409. name: "Normal",
  43410. height: math.unit(10, "feet")
  43411. },
  43412. {
  43413. name: "Macro",
  43414. height: math.unit(512, "feet"),
  43415. default: true
  43416. },
  43417. {
  43418. name: "Megamacro",
  43419. height: math.unit(256, "miles")
  43420. },
  43421. {
  43422. name: "Gigamacro",
  43423. height: math.unit(4096, "miles")
  43424. },
  43425. ]
  43426. ))
  43427. characterMakers.push(() => makeCharacter(
  43428. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43429. {
  43430. side: {
  43431. height: math.unit(50, "feet"),
  43432. name: "Side",
  43433. image: {
  43434. source: "./media/characters/froimar/side.svg",
  43435. extra: 855/638,
  43436. bottom: 99/954
  43437. }
  43438. },
  43439. },
  43440. [
  43441. {
  43442. name: "Macro",
  43443. height: math.unit(50, "feet"),
  43444. default: true
  43445. },
  43446. ]
  43447. ))
  43448. characterMakers.push(() => makeCharacter(
  43449. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43450. {
  43451. front: {
  43452. height: math.unit(210, "miles"),
  43453. name: "Front",
  43454. image: {
  43455. source: "./media/characters/timothy/front.svg",
  43456. extra: 1007/943,
  43457. bottom: 62/1069
  43458. }
  43459. },
  43460. frontSkirt: {
  43461. height: math.unit(210, "miles"),
  43462. name: "Front (Skirt)",
  43463. image: {
  43464. source: "./media/characters/timothy/front-skirt.svg",
  43465. extra: 1007/943,
  43466. bottom: 62/1069
  43467. }
  43468. },
  43469. frontCoat: {
  43470. height: math.unit(210, "miles"),
  43471. name: "Front (Coat)",
  43472. image: {
  43473. source: "./media/characters/timothy/front-coat.svg",
  43474. extra: 1007/943,
  43475. bottom: 62/1069
  43476. }
  43477. },
  43478. },
  43479. [
  43480. {
  43481. name: "Macro",
  43482. height: math.unit(210, "miles"),
  43483. default: true
  43484. },
  43485. {
  43486. name: "Megamacro",
  43487. height: math.unit(210000, "miles")
  43488. },
  43489. ]
  43490. ))
  43491. characterMakers.push(() => makeCharacter(
  43492. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43493. {
  43494. front: {
  43495. height: math.unit(188, "feet"),
  43496. name: "Front",
  43497. image: {
  43498. source: "./media/characters/pyotr/front.svg",
  43499. extra: 1912/1826,
  43500. bottom: 18/1930
  43501. }
  43502. },
  43503. },
  43504. [
  43505. {
  43506. name: "Macro",
  43507. height: math.unit(188, "feet"),
  43508. default: true
  43509. },
  43510. {
  43511. name: "Megamacro",
  43512. height: math.unit(8, "miles")
  43513. },
  43514. ]
  43515. ))
  43516. characterMakers.push(() => makeCharacter(
  43517. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43518. {
  43519. side: {
  43520. height: math.unit(10, "feet"),
  43521. weight: math.unit(4500, "lb"),
  43522. name: "Side",
  43523. image: {
  43524. source: "./media/characters/ackart/side.svg",
  43525. extra: 1776/1668,
  43526. bottom: 116/1892
  43527. }
  43528. },
  43529. },
  43530. [
  43531. {
  43532. name: "Normal",
  43533. height: math.unit(10, "feet"),
  43534. default: true
  43535. },
  43536. ]
  43537. ))
  43538. characterMakers.push(() => makeCharacter(
  43539. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43540. {
  43541. side: {
  43542. height: math.unit(21, "feet"),
  43543. name: "Side",
  43544. image: {
  43545. source: "./media/characters/nolow/side.svg",
  43546. extra: 1484/1434,
  43547. bottom: 85/1569
  43548. }
  43549. },
  43550. sideErect: {
  43551. height: math.unit(21, "feet"),
  43552. name: "Side-erect",
  43553. image: {
  43554. source: "./media/characters/nolow/side-erect.svg",
  43555. extra: 1484/1434,
  43556. bottom: 85/1569
  43557. }
  43558. },
  43559. },
  43560. [
  43561. {
  43562. name: "Regular",
  43563. height: math.unit(12, "feet")
  43564. },
  43565. {
  43566. name: "Big Chee",
  43567. height: math.unit(21, "feet"),
  43568. default: true
  43569. },
  43570. ]
  43571. ))
  43572. characterMakers.push(() => makeCharacter(
  43573. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43574. {
  43575. front: {
  43576. height: math.unit(7, "feet"),
  43577. weight: math.unit(250, "lb"),
  43578. name: "Front",
  43579. image: {
  43580. source: "./media/characters/nines/front.svg",
  43581. extra: 1741/1607,
  43582. bottom: 41/1782
  43583. }
  43584. },
  43585. side: {
  43586. height: math.unit(7, "feet"),
  43587. weight: math.unit(250, "lb"),
  43588. name: "Side",
  43589. image: {
  43590. source: "./media/characters/nines/side.svg",
  43591. extra: 1854/1735,
  43592. bottom: 93/1947
  43593. }
  43594. },
  43595. back: {
  43596. height: math.unit(7, "feet"),
  43597. weight: math.unit(250, "lb"),
  43598. name: "Back",
  43599. image: {
  43600. source: "./media/characters/nines/back.svg",
  43601. extra: 1748/1615,
  43602. bottom: 20/1768
  43603. }
  43604. },
  43605. },
  43606. [
  43607. {
  43608. name: "Megamacro",
  43609. height: math.unit(99, "km"),
  43610. default: true
  43611. },
  43612. ]
  43613. ))
  43614. characterMakers.push(() => makeCharacter(
  43615. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43616. {
  43617. front: {
  43618. height: math.unit(5 + 10/12, "feet"),
  43619. weight: math.unit(210, "lb"),
  43620. name: "Front",
  43621. image: {
  43622. source: "./media/characters/zenith/front.svg",
  43623. extra: 1531/1452,
  43624. bottom: 198/1729
  43625. }
  43626. },
  43627. back: {
  43628. height: math.unit(5 + 10/12, "feet"),
  43629. weight: math.unit(210, "lb"),
  43630. name: "Back",
  43631. image: {
  43632. source: "./media/characters/zenith/back.svg",
  43633. extra: 1571/1487,
  43634. bottom: 75/1646
  43635. }
  43636. },
  43637. },
  43638. [
  43639. {
  43640. name: "Normal",
  43641. height: math.unit(5 + 10/12, "feet"),
  43642. default: true
  43643. }
  43644. ]
  43645. ))
  43646. characterMakers.push(() => makeCharacter(
  43647. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43648. {
  43649. front: {
  43650. height: math.unit(4, "feet"),
  43651. weight: math.unit(60, "lb"),
  43652. name: "Front",
  43653. image: {
  43654. source: "./media/characters/jasper/front.svg",
  43655. extra: 1450/1379,
  43656. bottom: 19/1469
  43657. }
  43658. },
  43659. },
  43660. [
  43661. {
  43662. name: "Normal",
  43663. height: math.unit(4, "feet"),
  43664. default: true
  43665. },
  43666. ]
  43667. ))
  43668. characterMakers.push(() => makeCharacter(
  43669. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43670. {
  43671. front: {
  43672. height: math.unit(6 + 5/12, "feet"),
  43673. weight: math.unit(290, "lb"),
  43674. name: "Front",
  43675. image: {
  43676. source: "./media/characters/tiberius-thyben/front.svg",
  43677. extra: 757/739,
  43678. bottom: 39/796
  43679. }
  43680. },
  43681. },
  43682. [
  43683. {
  43684. name: "Micro",
  43685. height: math.unit(1.5, "inches")
  43686. },
  43687. {
  43688. name: "Normal",
  43689. height: math.unit(6 + 5/12, "feet"),
  43690. default: true
  43691. },
  43692. {
  43693. name: "Macro",
  43694. height: math.unit(300, "feet")
  43695. },
  43696. ]
  43697. ))
  43698. characterMakers.push(() => makeCharacter(
  43699. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43700. {
  43701. front: {
  43702. height: math.unit(5 + 6/12, "feet"),
  43703. weight: math.unit(60, "kg"),
  43704. name: "Front",
  43705. image: {
  43706. source: "./media/characters/sabre/front.svg",
  43707. extra: 738/671,
  43708. bottom: 27/765
  43709. }
  43710. },
  43711. },
  43712. [
  43713. {
  43714. name: "Teeny",
  43715. height: math.unit(2, "inches")
  43716. },
  43717. {
  43718. name: "Smol",
  43719. height: math.unit(8, "inches")
  43720. },
  43721. {
  43722. name: "Normal",
  43723. height: math.unit(5 + 6/12, "feet"),
  43724. default: true
  43725. },
  43726. {
  43727. name: "Mini-Macro",
  43728. height: math.unit(15, "feet")
  43729. },
  43730. {
  43731. name: "Macro",
  43732. height: math.unit(50, "feet")
  43733. },
  43734. ]
  43735. ))
  43736. characterMakers.push(() => makeCharacter(
  43737. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43738. {
  43739. front: {
  43740. height: math.unit(6 + 4/12, "feet"),
  43741. weight: math.unit(170, "lb"),
  43742. name: "Front",
  43743. image: {
  43744. source: "./media/characters/charlie/front.svg",
  43745. extra: 1348/1228,
  43746. bottom: 15/1363
  43747. }
  43748. },
  43749. },
  43750. [
  43751. {
  43752. name: "Macro",
  43753. height: math.unit(1700, "meters"),
  43754. default: true
  43755. },
  43756. {
  43757. name: "MegaMacro",
  43758. height: math.unit(20400, "meters")
  43759. },
  43760. ]
  43761. ))
  43762. characterMakers.push(() => makeCharacter(
  43763. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43764. {
  43765. front: {
  43766. height: math.unit(1.96, "meters"),
  43767. weight: math.unit(220, "lb"),
  43768. name: "Front",
  43769. image: {
  43770. source: "./media/characters/susan-grant/front.svg",
  43771. extra: 482/478,
  43772. bottom: 7/489
  43773. }
  43774. },
  43775. },
  43776. [
  43777. {
  43778. name: "Normal",
  43779. height: math.unit(1.96, "meters"),
  43780. default: true
  43781. },
  43782. {
  43783. name: "Macro",
  43784. height: math.unit(76.2, "meters")
  43785. },
  43786. {
  43787. name: "MegaMacro",
  43788. height: math.unit(305, "meters")
  43789. },
  43790. {
  43791. name: "GigaMacro",
  43792. height: math.unit(1220, "meters")
  43793. },
  43794. {
  43795. name: "SuperMacro",
  43796. height: math.unit(4878, "meters")
  43797. },
  43798. ]
  43799. ))
  43800. characterMakers.push(() => makeCharacter(
  43801. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43802. {
  43803. front: {
  43804. height: math.unit(5 + 4/12, "feet"),
  43805. weight: math.unit(110, "lb"),
  43806. name: "Front",
  43807. image: {
  43808. source: "./media/characters/axel-isanov/front.svg",
  43809. extra: 1096/1065,
  43810. bottom: 13/1109
  43811. }
  43812. },
  43813. },
  43814. [
  43815. {
  43816. name: "Normal",
  43817. height: math.unit(5 + 4/12, "feet"),
  43818. default: true
  43819. },
  43820. ]
  43821. ))
  43822. characterMakers.push(() => makeCharacter(
  43823. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43824. {
  43825. front: {
  43826. height: math.unit(9, "feet"),
  43827. weight: math.unit(467, "lb"),
  43828. name: "Front",
  43829. image: {
  43830. source: "./media/characters/necahual/front.svg",
  43831. extra: 920/873,
  43832. bottom: 26/946
  43833. }
  43834. },
  43835. back: {
  43836. height: math.unit(9, "feet"),
  43837. weight: math.unit(467, "lb"),
  43838. name: "Back",
  43839. image: {
  43840. source: "./media/characters/necahual/back.svg",
  43841. extra: 930/884,
  43842. bottom: 16/946
  43843. }
  43844. },
  43845. frontUnderwear: {
  43846. height: math.unit(9, "feet"),
  43847. weight: math.unit(467, "lb"),
  43848. name: "Front (Underwear)",
  43849. image: {
  43850. source: "./media/characters/necahual/front-underwear.svg",
  43851. extra: 920/873,
  43852. bottom: 26/946
  43853. }
  43854. },
  43855. frontDressed: {
  43856. height: math.unit(9, "feet"),
  43857. weight: math.unit(467, "lb"),
  43858. name: "Front (Dressed)",
  43859. image: {
  43860. source: "./media/characters/necahual/front-dressed.svg",
  43861. extra: 920/873,
  43862. bottom: 26/946
  43863. }
  43864. },
  43865. },
  43866. [
  43867. {
  43868. name: "Comprsesed",
  43869. height: math.unit(9, "feet")
  43870. },
  43871. {
  43872. name: "Natural",
  43873. height: math.unit(15, "feet"),
  43874. default: true
  43875. },
  43876. {
  43877. name: "Boosted",
  43878. height: math.unit(50, "feet")
  43879. },
  43880. {
  43881. name: "Boosted+",
  43882. height: math.unit(150, "feet")
  43883. },
  43884. {
  43885. name: "Max",
  43886. height: math.unit(500, "feet")
  43887. },
  43888. ]
  43889. ))
  43890. characterMakers.push(() => makeCharacter(
  43891. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43892. {
  43893. front: {
  43894. height: math.unit(22 + 1/12, "feet"),
  43895. weight: math.unit(3200, "lb"),
  43896. name: "Front",
  43897. image: {
  43898. source: "./media/characters/theo-acacia/front.svg",
  43899. extra: 1796/1741,
  43900. bottom: 83/1879
  43901. }
  43902. },
  43903. frontUnderwear: {
  43904. height: math.unit(22 + 1/12, "feet"),
  43905. weight: math.unit(3200, "lb"),
  43906. name: "Front (Underwear)",
  43907. image: {
  43908. source: "./media/characters/theo-acacia/front-underwear.svg",
  43909. extra: 1796/1741,
  43910. bottom: 83/1879
  43911. }
  43912. },
  43913. frontNude: {
  43914. height: math.unit(22 + 1/12, "feet"),
  43915. weight: math.unit(3200, "lb"),
  43916. name: "Front (Nude)",
  43917. image: {
  43918. source: "./media/characters/theo-acacia/front-nude.svg",
  43919. extra: 1796/1741,
  43920. bottom: 83/1879
  43921. }
  43922. },
  43923. },
  43924. [
  43925. {
  43926. name: "Normal",
  43927. height: math.unit(22 + 1/12, "feet"),
  43928. default: true
  43929. },
  43930. ]
  43931. ))
  43932. characterMakers.push(() => makeCharacter(
  43933. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43934. {
  43935. front: {
  43936. height: math.unit(20, "feet"),
  43937. name: "Front",
  43938. image: {
  43939. source: "./media/characters/astra/front.svg",
  43940. extra: 1850/1714,
  43941. bottom: 106/1956
  43942. }
  43943. },
  43944. frontUndressed: {
  43945. height: math.unit(20, "feet"),
  43946. name: "Front (Undressed)",
  43947. image: {
  43948. source: "./media/characters/astra/front-undressed.svg",
  43949. extra: 1926/1749,
  43950. bottom: 0/1926
  43951. }
  43952. },
  43953. hand: {
  43954. height: math.unit(1.53, "feet"),
  43955. name: "Hand",
  43956. image: {
  43957. source: "./media/characters/astra/hand.svg"
  43958. }
  43959. },
  43960. paw: {
  43961. height: math.unit(1.53, "feet"),
  43962. name: "Paw",
  43963. image: {
  43964. source: "./media/characters/astra/paw.svg"
  43965. }
  43966. },
  43967. },
  43968. [
  43969. {
  43970. name: "Smallest",
  43971. height: math.unit(20, "feet")
  43972. },
  43973. {
  43974. name: "Normal",
  43975. height: math.unit(1e9, "miles"),
  43976. default: true
  43977. },
  43978. {
  43979. name: "Larger",
  43980. height: math.unit(5, "multiverses")
  43981. },
  43982. {
  43983. name: "Largest",
  43984. height: math.unit(1e9, "multiverses")
  43985. },
  43986. ]
  43987. ))
  43988. characterMakers.push(() => makeCharacter(
  43989. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43990. {
  43991. front: {
  43992. height: math.unit(8, "feet"),
  43993. name: "Front",
  43994. image: {
  43995. source: "./media/characters/breanna/front.svg",
  43996. extra: 1912/1632,
  43997. bottom: 33/1945
  43998. }
  43999. },
  44000. },
  44001. [
  44002. {
  44003. name: "Smallest",
  44004. height: math.unit(8, "feet")
  44005. },
  44006. {
  44007. name: "Normal",
  44008. height: math.unit(1, "mile"),
  44009. default: true
  44010. },
  44011. {
  44012. name: "Maximum",
  44013. height: math.unit(1500000000000, "lightyears")
  44014. },
  44015. ]
  44016. ))
  44017. characterMakers.push(() => makeCharacter(
  44018. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44019. {
  44020. front: {
  44021. height: math.unit(5 + 11/12, "feet"),
  44022. weight: math.unit(155, "lb"),
  44023. name: "Front",
  44024. image: {
  44025. source: "./media/characters/cai/front.svg",
  44026. extra: 1823/1702,
  44027. bottom: 32/1855
  44028. }
  44029. },
  44030. back: {
  44031. height: math.unit(5 + 11/12, "feet"),
  44032. weight: math.unit(155, "lb"),
  44033. name: "Back",
  44034. image: {
  44035. source: "./media/characters/cai/back.svg",
  44036. extra: 1809/1708,
  44037. bottom: 31/1840
  44038. }
  44039. },
  44040. },
  44041. [
  44042. {
  44043. name: "Normal",
  44044. height: math.unit(5 + 11/12, "feet"),
  44045. default: true
  44046. },
  44047. {
  44048. name: "Big",
  44049. height: math.unit(15, "feet")
  44050. },
  44051. {
  44052. name: "Macro",
  44053. height: math.unit(200, "feet")
  44054. },
  44055. ]
  44056. ))
  44057. characterMakers.push(() => makeCharacter(
  44058. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44059. {
  44060. front: {
  44061. height: math.unit(5 + 6/12, "feet"),
  44062. weight: math.unit(160, "lb"),
  44063. name: "Front",
  44064. image: {
  44065. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44066. extra: 1227/1174,
  44067. bottom: 37/1264
  44068. }
  44069. },
  44070. },
  44071. [
  44072. {
  44073. name: "Macro",
  44074. height: math.unit(444, "meters"),
  44075. default: true
  44076. },
  44077. ]
  44078. ))
  44079. characterMakers.push(() => makeCharacter(
  44080. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44081. {
  44082. front: {
  44083. height: math.unit(18 + 7/12, "feet"),
  44084. name: "Front",
  44085. image: {
  44086. source: "./media/characters/rex/front.svg",
  44087. extra: 1941/1807,
  44088. bottom: 66/2007
  44089. }
  44090. },
  44091. back: {
  44092. height: math.unit(18 + 7/12, "feet"),
  44093. name: "Back",
  44094. image: {
  44095. source: "./media/characters/rex/back.svg",
  44096. extra: 1937/1822,
  44097. bottom: 42/1979
  44098. }
  44099. },
  44100. boot: {
  44101. height: math.unit(3.45, "feet"),
  44102. name: "Boot",
  44103. image: {
  44104. source: "./media/characters/rex/boot.svg"
  44105. }
  44106. },
  44107. paw: {
  44108. height: math.unit(4.17, "feet"),
  44109. name: "Paw",
  44110. image: {
  44111. source: "./media/characters/rex/paw.svg"
  44112. }
  44113. },
  44114. head: {
  44115. height: math.unit(6.728, "feet"),
  44116. name: "Head",
  44117. image: {
  44118. source: "./media/characters/rex/head.svg"
  44119. }
  44120. },
  44121. },
  44122. [
  44123. {
  44124. name: "Nano",
  44125. height: math.unit(18 + 7/12, "feet")
  44126. },
  44127. {
  44128. name: "Micro",
  44129. height: math.unit(1.5, "megameters")
  44130. },
  44131. {
  44132. name: "Normal",
  44133. height: math.unit(440, "megameters"),
  44134. default: true
  44135. },
  44136. {
  44137. name: "Macro",
  44138. height: math.unit(2.5, "gigameters")
  44139. },
  44140. {
  44141. name: "Gigamacro",
  44142. height: math.unit(2, "galaxies")
  44143. },
  44144. ]
  44145. ))
  44146. characterMakers.push(() => makeCharacter(
  44147. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44148. {
  44149. side: {
  44150. height: math.unit(32, "feet"),
  44151. weight: math.unit(250000, "lb"),
  44152. name: "Side",
  44153. image: {
  44154. source: "./media/characters/silverwing/side.svg",
  44155. extra: 1100/1019,
  44156. bottom: 204/1304
  44157. }
  44158. },
  44159. },
  44160. [
  44161. {
  44162. name: "Normal",
  44163. height: math.unit(32, "feet"),
  44164. default: true
  44165. },
  44166. ]
  44167. ))
  44168. characterMakers.push(() => makeCharacter(
  44169. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44170. {
  44171. front: {
  44172. height: math.unit(6 + 6/12, "feet"),
  44173. weight: math.unit(350, "lb"),
  44174. name: "Front",
  44175. image: {
  44176. source: "./media/characters/tristan-hawthorne/front.svg",
  44177. extra: 1159/1124,
  44178. bottom: 37/1196
  44179. },
  44180. form: "labrador",
  44181. default: true
  44182. },
  44183. skunkFront: {
  44184. height: math.unit(4 + 6/12, "feet"),
  44185. weight: math.unit(120, "lb"),
  44186. name: "Front",
  44187. image: {
  44188. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44189. extra: 1609/1551,
  44190. bottom: 169/1778
  44191. },
  44192. form: "skunk",
  44193. default: true
  44194. },
  44195. },
  44196. [
  44197. {
  44198. name: "Normal",
  44199. height: math.unit(6 + 6/12, "feet"),
  44200. form: "labrador",
  44201. default: true
  44202. },
  44203. {
  44204. name: "Normal",
  44205. height: math.unit(4 + 6/12, "feet"),
  44206. form: "skunk",
  44207. default: true
  44208. },
  44209. ],
  44210. {
  44211. "labrador": {
  44212. name: "Labrador",
  44213. default: true
  44214. },
  44215. "skunk": {
  44216. name: "Skunk"
  44217. }
  44218. }
  44219. ))
  44220. characterMakers.push(() => makeCharacter(
  44221. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44222. {
  44223. front: {
  44224. height: math.unit(5 + 11/12, "feet"),
  44225. weight: math.unit(190, "lb"),
  44226. name: "Front",
  44227. image: {
  44228. source: "./media/characters/mizu/front.svg",
  44229. extra: 1988/1788,
  44230. bottom: 14/2002
  44231. }
  44232. },
  44233. },
  44234. [
  44235. {
  44236. name: "Normal",
  44237. height: math.unit(5 + 11/12, "feet"),
  44238. default: true
  44239. },
  44240. ]
  44241. ))
  44242. characterMakers.push(() => makeCharacter(
  44243. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44244. {
  44245. front: {
  44246. height: math.unit(1.7, "feet"),
  44247. weight: math.unit(50, "lb"),
  44248. name: "Front",
  44249. image: {
  44250. source: "./media/characters/dechroma/front.svg",
  44251. extra: 1095/859,
  44252. bottom: 64/1159
  44253. }
  44254. },
  44255. },
  44256. [
  44257. {
  44258. name: "Normal",
  44259. height: math.unit(1.7, "feet"),
  44260. default: true
  44261. },
  44262. ]
  44263. ))
  44264. characterMakers.push(() => makeCharacter(
  44265. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44266. {
  44267. side: {
  44268. height: math.unit(30, "feet"),
  44269. name: "Side",
  44270. image: {
  44271. source: "./media/characters/veluren-thanazel/side.svg",
  44272. extra: 1611/633,
  44273. bottom: 118/1729
  44274. }
  44275. },
  44276. front: {
  44277. height: math.unit(30, "feet"),
  44278. name: "Front",
  44279. image: {
  44280. source: "./media/characters/veluren-thanazel/front.svg",
  44281. extra: 1486/636,
  44282. bottom: 238/1724
  44283. }
  44284. },
  44285. head: {
  44286. height: math.unit(21.4, "feet"),
  44287. name: "Head",
  44288. image: {
  44289. source: "./media/characters/veluren-thanazel/head.svg"
  44290. }
  44291. },
  44292. genitals: {
  44293. height: math.unit(19.4, "feet"),
  44294. name: "Genitals",
  44295. image: {
  44296. source: "./media/characters/veluren-thanazel/genitals.svg"
  44297. }
  44298. },
  44299. },
  44300. [
  44301. {
  44302. name: "Social",
  44303. height: math.unit(6, "feet")
  44304. },
  44305. {
  44306. name: "Play",
  44307. height: math.unit(12, "feet")
  44308. },
  44309. {
  44310. name: "True",
  44311. height: math.unit(30, "feet"),
  44312. default: true
  44313. },
  44314. ]
  44315. ))
  44316. characterMakers.push(() => makeCharacter(
  44317. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44318. {
  44319. front: {
  44320. height: math.unit(7 + 6/12, "feet"),
  44321. weight: math.unit(500, "kg"),
  44322. name: "Front",
  44323. image: {
  44324. source: "./media/characters/arcturas/front.svg",
  44325. extra: 1700/1500,
  44326. bottom: 145/1845
  44327. }
  44328. },
  44329. },
  44330. [
  44331. {
  44332. name: "Normal",
  44333. height: math.unit(7 + 6/12, "feet"),
  44334. default: true
  44335. },
  44336. ]
  44337. ))
  44338. characterMakers.push(() => makeCharacter(
  44339. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44340. {
  44341. side: {
  44342. height: math.unit(6, "feet"),
  44343. weight: math.unit(2, "tons"),
  44344. name: "Side",
  44345. image: {
  44346. source: "./media/characters/vitaen/side.svg",
  44347. extra: 1157/617,
  44348. bottom: 122/1279
  44349. }
  44350. },
  44351. },
  44352. [
  44353. {
  44354. name: "Normal",
  44355. height: math.unit(6, "feet"),
  44356. default: true
  44357. },
  44358. ]
  44359. ))
  44360. characterMakers.push(() => makeCharacter(
  44361. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44362. {
  44363. front: {
  44364. height: math.unit(19, "feet"),
  44365. name: "Front",
  44366. image: {
  44367. source: "./media/characters/fia-dreamweaver/front.svg",
  44368. extra: 1630/1504,
  44369. bottom: 25/1655
  44370. }
  44371. },
  44372. },
  44373. [
  44374. {
  44375. name: "Normal",
  44376. height: math.unit(19, "feet"),
  44377. default: true
  44378. },
  44379. ]
  44380. ))
  44381. characterMakers.push(() => makeCharacter(
  44382. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44383. {
  44384. front: {
  44385. height: math.unit(5 + 4/12, "feet"),
  44386. name: "Front",
  44387. image: {
  44388. source: "./media/characters/artan/front.svg",
  44389. extra: 1618/1535,
  44390. bottom: 46/1664
  44391. }
  44392. },
  44393. back: {
  44394. height: math.unit(5 + 4/12, "feet"),
  44395. name: "Back",
  44396. image: {
  44397. source: "./media/characters/artan/back.svg",
  44398. extra: 1618/1543,
  44399. bottom: 31/1649
  44400. }
  44401. },
  44402. },
  44403. [
  44404. {
  44405. name: "Normal",
  44406. height: math.unit(5 + 4/12, "feet"),
  44407. default: true
  44408. },
  44409. ]
  44410. ))
  44411. characterMakers.push(() => makeCharacter(
  44412. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44413. {
  44414. side: {
  44415. height: math.unit(182, "cm"),
  44416. weight: math.unit(1000, "lb"),
  44417. name: "Side",
  44418. image: {
  44419. source: "./media/characters/silver-dragon/side.svg",
  44420. extra: 710/287,
  44421. bottom: 88/798
  44422. }
  44423. },
  44424. },
  44425. [
  44426. {
  44427. name: "Normal",
  44428. height: math.unit(182, "cm"),
  44429. default: true
  44430. },
  44431. ]
  44432. ))
  44433. characterMakers.push(() => makeCharacter(
  44434. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44435. {
  44436. side: {
  44437. height: math.unit(6 + 6/12, "feet"),
  44438. weight: math.unit(1.5, "tons"),
  44439. name: "Side",
  44440. image: {
  44441. source: "./media/characters/zephyr/side.svg",
  44442. extra: 1433/586,
  44443. bottom: 109/1542
  44444. }
  44445. },
  44446. },
  44447. [
  44448. {
  44449. name: "Normal",
  44450. height: math.unit(6 + 6/12, "feet"),
  44451. default: true
  44452. },
  44453. ]
  44454. ))
  44455. characterMakers.push(() => makeCharacter(
  44456. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44457. {
  44458. side: {
  44459. height: math.unit(1, "feet"),
  44460. name: "Side",
  44461. image: {
  44462. source: "./media/characters/vixye/side.svg",
  44463. extra: 632/541,
  44464. bottom: 0/632
  44465. }
  44466. },
  44467. },
  44468. [
  44469. {
  44470. name: "Normal",
  44471. height: math.unit(1, "feet"),
  44472. default: true
  44473. },
  44474. {
  44475. name: "True",
  44476. height: math.unit(1e15, "multiverses")
  44477. },
  44478. ]
  44479. ))
  44480. characterMakers.push(() => makeCharacter(
  44481. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44482. {
  44483. front: {
  44484. height: math.unit(8 + 2/12, "feet"),
  44485. weight: math.unit(650, "lb"),
  44486. name: "Front",
  44487. image: {
  44488. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44489. extra: 1174/1137,
  44490. bottom: 82/1256
  44491. }
  44492. },
  44493. back: {
  44494. height: math.unit(8 + 2/12, "feet"),
  44495. weight: math.unit(650, "lb"),
  44496. name: "Back",
  44497. image: {
  44498. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44499. extra: 1204/1157,
  44500. bottom: 46/1250
  44501. }
  44502. },
  44503. },
  44504. [
  44505. {
  44506. name: "Wildform",
  44507. height: math.unit(8 + 2/12, "feet"),
  44508. default: true
  44509. },
  44510. ]
  44511. ))
  44512. characterMakers.push(() => makeCharacter(
  44513. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44514. {
  44515. front: {
  44516. height: math.unit(18, "feet"),
  44517. name: "Front",
  44518. image: {
  44519. source: "./media/characters/cyphin/front.svg",
  44520. extra: 970/886,
  44521. bottom: 42/1012
  44522. }
  44523. },
  44524. back: {
  44525. height: math.unit(18, "feet"),
  44526. name: "Back",
  44527. image: {
  44528. source: "./media/characters/cyphin/back.svg",
  44529. extra: 1009/894,
  44530. bottom: 24/1033
  44531. }
  44532. },
  44533. head: {
  44534. height: math.unit(5.05, "feet"),
  44535. name: "Head",
  44536. image: {
  44537. source: "./media/characters/cyphin/head.svg"
  44538. }
  44539. },
  44540. tailbud: {
  44541. height: math.unit(5, "feet"),
  44542. name: "Tailbud",
  44543. image: {
  44544. source: "./media/characters/cyphin/tailbud.svg"
  44545. }
  44546. },
  44547. },
  44548. [
  44549. ]
  44550. ))
  44551. characterMakers.push(() => makeCharacter(
  44552. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44553. {
  44554. side: {
  44555. height: math.unit(10, "feet"),
  44556. weight: math.unit(6, "tons"),
  44557. name: "Side",
  44558. image: {
  44559. source: "./media/characters/raijin/side.svg",
  44560. extra: 1529/613,
  44561. bottom: 337/1866
  44562. }
  44563. },
  44564. },
  44565. [
  44566. {
  44567. name: "Normal",
  44568. height: math.unit(10, "feet"),
  44569. default: true
  44570. },
  44571. ]
  44572. ))
  44573. characterMakers.push(() => makeCharacter(
  44574. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44575. {
  44576. side: {
  44577. height: math.unit(9, "feet"),
  44578. name: "Side",
  44579. image: {
  44580. source: "./media/characters/nilghais/side.svg",
  44581. extra: 1047/744,
  44582. bottom: 91/1138
  44583. }
  44584. },
  44585. head: {
  44586. height: math.unit(3.14, "feet"),
  44587. name: "Head",
  44588. image: {
  44589. source: "./media/characters/nilghais/head.svg"
  44590. }
  44591. },
  44592. mouth: {
  44593. height: math.unit(4.6, "feet"),
  44594. name: "Mouth",
  44595. image: {
  44596. source: "./media/characters/nilghais/mouth.svg"
  44597. }
  44598. },
  44599. wings: {
  44600. height: math.unit(24, "feet"),
  44601. name: "Wings",
  44602. image: {
  44603. source: "./media/characters/nilghais/wings.svg"
  44604. }
  44605. },
  44606. ass: {
  44607. height: math.unit(6.12, "feet"),
  44608. name: "Ass",
  44609. image: {
  44610. source: "./media/characters/nilghais/ass.svg"
  44611. }
  44612. },
  44613. },
  44614. [
  44615. {
  44616. name: "Normal",
  44617. height: math.unit(9, "feet"),
  44618. default: true
  44619. },
  44620. ]
  44621. ))
  44622. characterMakers.push(() => makeCharacter(
  44623. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44624. {
  44625. regular: {
  44626. height: math.unit(16 + 2/12, "feet"),
  44627. weight: math.unit(2300, "lb"),
  44628. name: "Regular",
  44629. image: {
  44630. source: "./media/characters/zolgar/regular.svg",
  44631. extra: 1246/1004,
  44632. bottom: 124/1370
  44633. }
  44634. },
  44635. boxers: {
  44636. height: math.unit(16 + 2/12, "feet"),
  44637. weight: math.unit(2300, "lb"),
  44638. name: "Boxers",
  44639. image: {
  44640. source: "./media/characters/zolgar/boxers.svg",
  44641. extra: 1246/1004,
  44642. bottom: 124/1370
  44643. }
  44644. },
  44645. armored: {
  44646. height: math.unit(16 + 2/12, "feet"),
  44647. weight: math.unit(2300, "lb"),
  44648. name: "Armored",
  44649. image: {
  44650. source: "./media/characters/zolgar/armored.svg",
  44651. extra: 1246/1004,
  44652. bottom: 124/1370
  44653. }
  44654. },
  44655. goth: {
  44656. height: math.unit(16 + 2/12, "feet"),
  44657. weight: math.unit(2300, "lb"),
  44658. name: "Goth",
  44659. image: {
  44660. source: "./media/characters/zolgar/goth.svg",
  44661. extra: 1246/1004,
  44662. bottom: 124/1370
  44663. }
  44664. },
  44665. },
  44666. [
  44667. {
  44668. name: "Shrunken Down",
  44669. height: math.unit(9 + 2/12, "feet")
  44670. },
  44671. {
  44672. name: "Normal",
  44673. height: math.unit(16 + 2/12, "feet"),
  44674. default: true
  44675. },
  44676. ]
  44677. ))
  44678. characterMakers.push(() => makeCharacter(
  44679. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44680. {
  44681. front: {
  44682. height: math.unit(6, "feet"),
  44683. weight: math.unit(168, "lb"),
  44684. name: "Front",
  44685. image: {
  44686. source: "./media/characters/luca/front.svg",
  44687. extra: 841/667,
  44688. bottom: 102/943
  44689. }
  44690. },
  44691. },
  44692. [
  44693. {
  44694. name: "Normal",
  44695. height: math.unit(6, "feet"),
  44696. default: true
  44697. },
  44698. ]
  44699. ))
  44700. characterMakers.push(() => makeCharacter(
  44701. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44702. {
  44703. side: {
  44704. height: math.unit(7 + 3/12, "feet"),
  44705. weight: math.unit(312, "lb"),
  44706. name: "Side",
  44707. image: {
  44708. source: "./media/characters/zezo/side.svg",
  44709. extra: 1192/1067,
  44710. bottom: 63/1255
  44711. }
  44712. },
  44713. },
  44714. [
  44715. {
  44716. name: "Normal",
  44717. height: math.unit(7 + 3/12, "feet"),
  44718. default: true
  44719. },
  44720. ]
  44721. ))
  44722. characterMakers.push(() => makeCharacter(
  44723. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44724. {
  44725. front: {
  44726. height: math.unit(5 + 5/12, "feet"),
  44727. weight: math.unit(170, "lb"),
  44728. name: "Front",
  44729. image: {
  44730. source: "./media/characters/mayso/front.svg",
  44731. extra: 1215/1108,
  44732. bottom: 16/1231
  44733. }
  44734. },
  44735. },
  44736. [
  44737. {
  44738. name: "Normal",
  44739. height: math.unit(5 + 5/12, "feet"),
  44740. default: true
  44741. },
  44742. ]
  44743. ))
  44744. characterMakers.push(() => makeCharacter(
  44745. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44746. {
  44747. front: {
  44748. height: math.unit(4 + 3/12, "feet"),
  44749. weight: math.unit(80, "lb"),
  44750. name: "Front",
  44751. image: {
  44752. source: "./media/characters/hess/front.svg",
  44753. extra: 1200/1123,
  44754. bottom: 16/1216
  44755. }
  44756. },
  44757. },
  44758. [
  44759. {
  44760. name: "Normal",
  44761. height: math.unit(4 + 3/12, "feet"),
  44762. default: true
  44763. },
  44764. ]
  44765. ))
  44766. characterMakers.push(() => makeCharacter(
  44767. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44768. {
  44769. front: {
  44770. height: math.unit(1.9, "meters"),
  44771. name: "Front",
  44772. image: {
  44773. source: "./media/characters/ashgar/front.svg",
  44774. extra: 1177/1146,
  44775. bottom: 99/1276
  44776. }
  44777. },
  44778. back: {
  44779. height: math.unit(1.9, "meters"),
  44780. name: "Back",
  44781. image: {
  44782. source: "./media/characters/ashgar/back.svg",
  44783. extra: 1201/1183,
  44784. bottom: 53/1254
  44785. }
  44786. },
  44787. feral: {
  44788. height: math.unit(1.4, "meters"),
  44789. name: "Feral",
  44790. image: {
  44791. source: "./media/characters/ashgar/feral.svg",
  44792. extra: 370/345,
  44793. bottom: 45/415
  44794. }
  44795. },
  44796. },
  44797. [
  44798. {
  44799. name: "Normal",
  44800. height: math.unit(1.9, "meters"),
  44801. default: true
  44802. },
  44803. ]
  44804. ))
  44805. characterMakers.push(() => makeCharacter(
  44806. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44807. {
  44808. regular: {
  44809. height: math.unit(6, "feet"),
  44810. weight: math.unit(220, "lb"),
  44811. name: "Regular",
  44812. image: {
  44813. source: "./media/characters/phillip/regular.svg",
  44814. extra: 1373/1277,
  44815. bottom: 75/1448
  44816. }
  44817. },
  44818. dressed: {
  44819. height: math.unit(6, "feet"),
  44820. weight: math.unit(220, "lb"),
  44821. name: "Dressed",
  44822. image: {
  44823. source: "./media/characters/phillip/dressed.svg",
  44824. extra: 1373/1277,
  44825. bottom: 75/1448
  44826. }
  44827. },
  44828. paw: {
  44829. height: math.unit(1.44, "feet"),
  44830. name: "Paw",
  44831. image: {
  44832. source: "./media/characters/phillip/paw.svg"
  44833. }
  44834. },
  44835. },
  44836. [
  44837. {
  44838. name: "Normal",
  44839. height: math.unit(6, "feet"),
  44840. default: true
  44841. },
  44842. ]
  44843. ))
  44844. characterMakers.push(() => makeCharacter(
  44845. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44846. {
  44847. side: {
  44848. height: math.unit(42, "feet"),
  44849. name: "Side",
  44850. image: {
  44851. source: "./media/characters/uvula/side.svg",
  44852. extra: 683/586,
  44853. bottom: 60/743
  44854. }
  44855. },
  44856. front: {
  44857. height: math.unit(42, "feet"),
  44858. name: "Front",
  44859. image: {
  44860. source: "./media/characters/uvula/front.svg",
  44861. extra: 705/613,
  44862. bottom: 54/759
  44863. }
  44864. },
  44865. maw: {
  44866. height: math.unit(23.5, "feet"),
  44867. name: "Maw",
  44868. image: {
  44869. source: "./media/characters/uvula/maw.svg"
  44870. }
  44871. },
  44872. },
  44873. [
  44874. {
  44875. name: "Original Size",
  44876. height: math.unit(14, "inches")
  44877. },
  44878. {
  44879. name: "Human Size",
  44880. height: math.unit(6, "feet")
  44881. },
  44882. {
  44883. name: "Big",
  44884. height: math.unit(42, "feet"),
  44885. default: true
  44886. },
  44887. {
  44888. name: "Bigger",
  44889. height: math.unit(100, "feet")
  44890. },
  44891. ]
  44892. ))
  44893. characterMakers.push(() => makeCharacter(
  44894. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44895. {
  44896. front: {
  44897. height: math.unit(5 + 11/12, "feet"),
  44898. name: "Front",
  44899. image: {
  44900. source: "./media/characters/lannah/front.svg",
  44901. extra: 1208/1113,
  44902. bottom: 97/1305
  44903. }
  44904. },
  44905. },
  44906. [
  44907. {
  44908. name: "Normal",
  44909. height: math.unit(5 + 11/12, "feet"),
  44910. default: true
  44911. },
  44912. ]
  44913. ))
  44914. characterMakers.push(() => makeCharacter(
  44915. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44916. {
  44917. front: {
  44918. height: math.unit(6 + 3/12, "feet"),
  44919. weight: math.unit(3.5, "tons"),
  44920. name: "Front",
  44921. image: {
  44922. source: "./media/characters/emberflame/front.svg",
  44923. extra: 1198/672,
  44924. bottom: 82/1280
  44925. }
  44926. },
  44927. side: {
  44928. height: math.unit(6 + 3/12, "feet"),
  44929. weight: math.unit(3.5, "tons"),
  44930. name: "Side",
  44931. image: {
  44932. source: "./media/characters/emberflame/side.svg",
  44933. extra: 938/527,
  44934. bottom: 56/994
  44935. }
  44936. },
  44937. },
  44938. [
  44939. {
  44940. name: "Normal",
  44941. height: math.unit(6 + 3/12, "feet"),
  44942. default: true
  44943. },
  44944. ]
  44945. ))
  44946. characterMakers.push(() => makeCharacter(
  44947. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44948. {
  44949. side: {
  44950. height: math.unit(17.5, "feet"),
  44951. weight: math.unit(35, "tons"),
  44952. name: "Side",
  44953. image: {
  44954. source: "./media/characters/sophie-ambrose/side.svg",
  44955. extra: 1573/1242,
  44956. bottom: 71/1644
  44957. }
  44958. },
  44959. maw: {
  44960. height: math.unit(7.4, "feet"),
  44961. name: "Maw",
  44962. image: {
  44963. source: "./media/characters/sophie-ambrose/maw.svg"
  44964. }
  44965. },
  44966. },
  44967. [
  44968. {
  44969. name: "Normal",
  44970. height: math.unit(17.5, "feet"),
  44971. default: true
  44972. },
  44973. ]
  44974. ))
  44975. characterMakers.push(() => makeCharacter(
  44976. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44977. {
  44978. front: {
  44979. height: math.unit(280, "feet"),
  44980. weight: math.unit(550, "tons"),
  44981. name: "Front",
  44982. image: {
  44983. source: "./media/characters/king-mugi/front.svg",
  44984. extra: 1102/947,
  44985. bottom: 104/1206
  44986. }
  44987. },
  44988. },
  44989. [
  44990. {
  44991. name: "King Mugi",
  44992. height: math.unit(280, "feet"),
  44993. default: true
  44994. },
  44995. ]
  44996. ))
  44997. characterMakers.push(() => makeCharacter(
  44998. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44999. {
  45000. front: {
  45001. height: math.unit(64, "meters"),
  45002. name: "Front",
  45003. image: {
  45004. source: "./media/characters/nova-fox/front.svg",
  45005. extra: 1310/1246,
  45006. bottom: 65/1375
  45007. }
  45008. },
  45009. },
  45010. [
  45011. {
  45012. name: "Macro",
  45013. height: math.unit(64, "meters"),
  45014. default: true
  45015. },
  45016. ]
  45017. ))
  45018. characterMakers.push(() => makeCharacter(
  45019. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45020. {
  45021. front: {
  45022. height: math.unit(6 + 3/12, "feet"),
  45023. weight: math.unit(170, "lb"),
  45024. name: "Front",
  45025. image: {
  45026. source: "./media/characters/sam-bat/front.svg",
  45027. extra: 1601/1411,
  45028. bottom: 125/1726
  45029. }
  45030. },
  45031. back: {
  45032. height: math.unit(6 + 3/12, "feet"),
  45033. weight: math.unit(170, "lb"),
  45034. name: "Back",
  45035. image: {
  45036. source: "./media/characters/sam-bat/back.svg",
  45037. extra: 1577/1405,
  45038. bottom: 58/1635
  45039. }
  45040. },
  45041. },
  45042. [
  45043. {
  45044. name: "Normal",
  45045. height: math.unit(6 + 3/12, "feet"),
  45046. default: true
  45047. },
  45048. ]
  45049. ))
  45050. characterMakers.push(() => makeCharacter(
  45051. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45052. {
  45053. front: {
  45054. height: math.unit(59, "feet"),
  45055. weight: math.unit(40000, "lb"),
  45056. name: "Front",
  45057. image: {
  45058. source: "./media/characters/inari/front.svg",
  45059. extra: 1884/1350,
  45060. bottom: 95/1979
  45061. }
  45062. },
  45063. },
  45064. [
  45065. {
  45066. name: "Gigantamax",
  45067. height: math.unit(59, "feet"),
  45068. default: true
  45069. },
  45070. ]
  45071. ))
  45072. characterMakers.push(() => makeCharacter(
  45073. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45074. {
  45075. front: {
  45076. height: math.unit(5 + 8/12, "feet"),
  45077. name: "Front",
  45078. image: {
  45079. source: "./media/characters/elizabeth/front.svg",
  45080. extra: 1395/1298,
  45081. bottom: 54/1449
  45082. }
  45083. },
  45084. mouth: {
  45085. height: math.unit(1.97, "feet"),
  45086. name: "Mouth",
  45087. image: {
  45088. source: "./media/characters/elizabeth/mouth.svg"
  45089. }
  45090. },
  45091. foot: {
  45092. height: math.unit(1.17, "feet"),
  45093. name: "Foot",
  45094. image: {
  45095. source: "./media/characters/elizabeth/foot.svg"
  45096. }
  45097. },
  45098. },
  45099. [
  45100. {
  45101. name: "Normal",
  45102. height: math.unit(5 + 8/12, "feet"),
  45103. default: true
  45104. },
  45105. {
  45106. name: "Minimacro",
  45107. height: math.unit(18, "feet")
  45108. },
  45109. {
  45110. name: "Macro",
  45111. height: math.unit(180, "feet")
  45112. },
  45113. ]
  45114. ))
  45115. characterMakers.push(() => makeCharacter(
  45116. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45117. {
  45118. front: {
  45119. height: math.unit(5 + 2/12, "feet"),
  45120. name: "Front",
  45121. image: {
  45122. source: "./media/characters/october-gossamer/front.svg",
  45123. extra: 505/454,
  45124. bottom: 7/512
  45125. }
  45126. },
  45127. back: {
  45128. height: math.unit(5 + 2/12, "feet"),
  45129. name: "Back",
  45130. image: {
  45131. source: "./media/characters/october-gossamer/back.svg",
  45132. extra: 501/454,
  45133. bottom: 11/512
  45134. }
  45135. },
  45136. },
  45137. [
  45138. {
  45139. name: "Normal",
  45140. height: math.unit(5 + 2/12, "feet"),
  45141. default: true
  45142. },
  45143. ]
  45144. ))
  45145. characterMakers.push(() => makeCharacter(
  45146. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45147. {
  45148. front: {
  45149. height: math.unit(5, "feet"),
  45150. name: "Front",
  45151. image: {
  45152. source: "./media/characters/epiglottis/front.svg",
  45153. extra: 923/849,
  45154. bottom: 17/940
  45155. }
  45156. },
  45157. },
  45158. [
  45159. {
  45160. name: "Original Size",
  45161. height: math.unit(10, "inches")
  45162. },
  45163. {
  45164. name: "Human Size",
  45165. height: math.unit(5, "feet"),
  45166. default: true
  45167. },
  45168. {
  45169. name: "Big",
  45170. height: math.unit(25, "feet")
  45171. },
  45172. {
  45173. name: "Bigger",
  45174. height: math.unit(50, "feet")
  45175. },
  45176. {
  45177. name: "oh lawd",
  45178. height: math.unit(75, "feet")
  45179. },
  45180. ]
  45181. ))
  45182. characterMakers.push(() => makeCharacter(
  45183. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45184. {
  45185. front: {
  45186. height: math.unit(2 + 4/12, "feet"),
  45187. weight: math.unit(60, "lb"),
  45188. name: "Front",
  45189. image: {
  45190. source: "./media/characters/lerm/front.svg",
  45191. extra: 796/790,
  45192. bottom: 79/875
  45193. }
  45194. },
  45195. },
  45196. [
  45197. {
  45198. name: "Normal",
  45199. height: math.unit(2 + 4/12, "feet"),
  45200. default: true
  45201. },
  45202. ]
  45203. ))
  45204. characterMakers.push(() => makeCharacter(
  45205. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45206. {
  45207. front: {
  45208. height: math.unit(5.5, "feet"),
  45209. weight: math.unit(130, "lb"),
  45210. name: "Front",
  45211. image: {
  45212. source: "./media/characters/xena-nebadon/front.svg",
  45213. extra: 1828/1730,
  45214. bottom: 79/1907
  45215. }
  45216. },
  45217. },
  45218. [
  45219. {
  45220. name: "Tiny Puppy",
  45221. height: math.unit(3, "inches")
  45222. },
  45223. {
  45224. name: "Normal",
  45225. height: math.unit(5.5, "feet"),
  45226. default: true
  45227. },
  45228. {
  45229. name: "Lotta Lady",
  45230. height: math.unit(12, "feet")
  45231. },
  45232. {
  45233. name: "Pretty Big",
  45234. height: math.unit(100, "feet")
  45235. },
  45236. {
  45237. name: "Big",
  45238. height: math.unit(500, "feet")
  45239. },
  45240. {
  45241. name: "Skyscraper Toys",
  45242. height: math.unit(2500, "feet")
  45243. },
  45244. {
  45245. name: "Plane Catcher",
  45246. height: math.unit(8, "miles")
  45247. },
  45248. {
  45249. name: "Planet Toys",
  45250. height: math.unit(15, "earths")
  45251. },
  45252. {
  45253. name: "Stardust",
  45254. height: math.unit(0.25, "galaxies")
  45255. },
  45256. {
  45257. name: "Snacks",
  45258. height: math.unit(70, "universes")
  45259. },
  45260. ]
  45261. ))
  45262. characterMakers.push(() => makeCharacter(
  45263. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45264. {
  45265. front: {
  45266. height: math.unit(1.6, "meters"),
  45267. weight: math.unit(60, "kg"),
  45268. name: "Front",
  45269. image: {
  45270. source: "./media/characters/bounty/front.svg",
  45271. extra: 1426/1308,
  45272. bottom: 15/1441
  45273. }
  45274. },
  45275. back: {
  45276. height: math.unit(1.6, "meters"),
  45277. weight: math.unit(60, "kg"),
  45278. name: "Back",
  45279. image: {
  45280. source: "./media/characters/bounty/back.svg",
  45281. extra: 1417/1307,
  45282. bottom: 8/1425
  45283. }
  45284. },
  45285. },
  45286. [
  45287. {
  45288. name: "Normal",
  45289. height: math.unit(1.6, "meters"),
  45290. default: true
  45291. },
  45292. {
  45293. name: "Macro",
  45294. height: math.unit(300, "meters")
  45295. },
  45296. ]
  45297. ))
  45298. characterMakers.push(() => makeCharacter(
  45299. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45300. {
  45301. front: {
  45302. height: math.unit(2 + 8/12, "feet"),
  45303. weight: math.unit(15, "lb"),
  45304. name: "Front",
  45305. image: {
  45306. source: "./media/characters/mochi/front.svg",
  45307. extra: 1022/852,
  45308. bottom: 435/1457
  45309. }
  45310. },
  45311. back: {
  45312. height: math.unit(2 + 8/12, "feet"),
  45313. weight: math.unit(15, "lb"),
  45314. name: "Back",
  45315. image: {
  45316. source: "./media/characters/mochi/back.svg",
  45317. extra: 1335/1119,
  45318. bottom: 39/1374
  45319. }
  45320. },
  45321. bird: {
  45322. height: math.unit(2 + 8/12, "feet"),
  45323. weight: math.unit(15, "lb"),
  45324. name: "Bird",
  45325. image: {
  45326. source: "./media/characters/mochi/bird.svg",
  45327. extra: 1251/1113,
  45328. bottom: 178/1429
  45329. }
  45330. },
  45331. kaiju: {
  45332. height: math.unit(154, "feet"),
  45333. weight: math.unit(1e7, "lb"),
  45334. name: "Kaiju",
  45335. image: {
  45336. source: "./media/characters/mochi/kaiju.svg",
  45337. extra: 460/324,
  45338. bottom: 40/500
  45339. }
  45340. },
  45341. head: {
  45342. height: math.unit(1.21, "feet"),
  45343. name: "Head",
  45344. image: {
  45345. source: "./media/characters/mochi/head.svg"
  45346. }
  45347. },
  45348. alternateTail: {
  45349. height: math.unit(2 + 8/12, "feet"),
  45350. weight: math.unit(45, "lb"),
  45351. name: "Alternate Tail",
  45352. image: {
  45353. source: "./media/characters/mochi/alternate-tail.svg",
  45354. extra: 139/76,
  45355. bottom: 45/184
  45356. }
  45357. },
  45358. },
  45359. [
  45360. {
  45361. name: "Micro",
  45362. height: math.unit(2, "inches")
  45363. },
  45364. {
  45365. name: "Normal",
  45366. height: math.unit(2 + 8/12, "feet"),
  45367. default: true
  45368. },
  45369. {
  45370. name: "Macro",
  45371. height: math.unit(106, "feet")
  45372. },
  45373. ]
  45374. ))
  45375. characterMakers.push(() => makeCharacter(
  45376. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45377. {
  45378. front: {
  45379. height: math.unit(5.67, "feet"),
  45380. weight: math.unit(135, "lb"),
  45381. name: "Front",
  45382. image: {
  45383. source: "./media/characters/sarel/front.svg",
  45384. extra: 865/788,
  45385. bottom: 97/962
  45386. }
  45387. },
  45388. back: {
  45389. height: math.unit(5.67, "feet"),
  45390. weight: math.unit(135, "lb"),
  45391. name: "Back",
  45392. image: {
  45393. source: "./media/characters/sarel/back.svg",
  45394. extra: 857/777,
  45395. bottom: 32/889
  45396. }
  45397. },
  45398. chozoan: {
  45399. height: math.unit(5.67, "feet"),
  45400. weight: math.unit(135, "lb"),
  45401. name: "Chozoan",
  45402. image: {
  45403. source: "./media/characters/sarel/chozoan.svg",
  45404. extra: 865/788,
  45405. bottom: 97/962
  45406. }
  45407. },
  45408. current: {
  45409. height: math.unit(5.67, "feet"),
  45410. weight: math.unit(135, "lb"),
  45411. name: "Current",
  45412. image: {
  45413. source: "./media/characters/sarel/current.svg",
  45414. extra: 865/788,
  45415. bottom: 97/962
  45416. }
  45417. },
  45418. head: {
  45419. height: math.unit(1.77, "feet"),
  45420. name: "Head",
  45421. image: {
  45422. source: "./media/characters/sarel/head.svg"
  45423. }
  45424. },
  45425. claws: {
  45426. height: math.unit(1.8, "feet"),
  45427. name: "Claws",
  45428. image: {
  45429. source: "./media/characters/sarel/claws.svg"
  45430. }
  45431. },
  45432. clawsAlt: {
  45433. height: math.unit(1.8, "feet"),
  45434. name: "Claws-alt",
  45435. image: {
  45436. source: "./media/characters/sarel/claws-alt.svg"
  45437. }
  45438. },
  45439. },
  45440. [
  45441. {
  45442. name: "Normal",
  45443. height: math.unit(5.67, "feet"),
  45444. default: true
  45445. },
  45446. ]
  45447. ))
  45448. characterMakers.push(() => makeCharacter(
  45449. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45450. {
  45451. front: {
  45452. height: math.unit(5500, "feet"),
  45453. name: "Front",
  45454. image: {
  45455. source: "./media/characters/alyonia/front.svg",
  45456. extra: 1200/1135,
  45457. bottom: 29/1229
  45458. }
  45459. },
  45460. back: {
  45461. height: math.unit(5500, "feet"),
  45462. name: "Back",
  45463. image: {
  45464. source: "./media/characters/alyonia/back.svg",
  45465. extra: 1205/1138,
  45466. bottom: 10/1215
  45467. }
  45468. },
  45469. },
  45470. [
  45471. {
  45472. name: "Small",
  45473. height: math.unit(10, "feet")
  45474. },
  45475. {
  45476. name: "Macro",
  45477. height: math.unit(500, "feet")
  45478. },
  45479. {
  45480. name: "Mega Macro",
  45481. height: math.unit(5500, "feet"),
  45482. default: true
  45483. },
  45484. {
  45485. name: "Mega Macro+",
  45486. height: math.unit(500000, "feet")
  45487. },
  45488. {
  45489. name: "Giga Macro",
  45490. height: math.unit(3000, "miles")
  45491. },
  45492. {
  45493. name: "Tera Macro",
  45494. height: math.unit(2.8e6, "miles")
  45495. },
  45496. {
  45497. name: "Galactic",
  45498. height: math.unit(120000, "lightyears")
  45499. },
  45500. ]
  45501. ))
  45502. characterMakers.push(() => makeCharacter(
  45503. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45504. {
  45505. werewolf: {
  45506. height: math.unit(8, "feet"),
  45507. weight: math.unit(425, "lb"),
  45508. name: "Werewolf",
  45509. image: {
  45510. source: "./media/characters/autumn/werewolf.svg",
  45511. extra: 2154/2031,
  45512. bottom: 160/2314
  45513. }
  45514. },
  45515. human: {
  45516. height: math.unit(5 + 8/12, "feet"),
  45517. weight: math.unit(150, "lb"),
  45518. name: "Human",
  45519. image: {
  45520. source: "./media/characters/autumn/human.svg",
  45521. extra: 1200/1149,
  45522. bottom: 30/1230
  45523. }
  45524. },
  45525. },
  45526. [
  45527. {
  45528. name: "Normal",
  45529. height: math.unit(8, "feet"),
  45530. default: true
  45531. },
  45532. ]
  45533. ))
  45534. characterMakers.push(() => makeCharacter(
  45535. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45536. {
  45537. front: {
  45538. height: math.unit(8 + 5/12, "feet"),
  45539. weight: math.unit(825, "lb"),
  45540. name: "Front",
  45541. image: {
  45542. source: "./media/characters/cobalt-charizard/front.svg",
  45543. extra: 1268/1155,
  45544. bottom: 122/1390
  45545. }
  45546. },
  45547. side: {
  45548. height: math.unit(8 + 5/12, "feet"),
  45549. weight: math.unit(825, "lb"),
  45550. name: "Side",
  45551. image: {
  45552. source: "./media/characters/cobalt-charizard/side.svg",
  45553. extra: 1348/1257,
  45554. bottom: 58/1406
  45555. }
  45556. },
  45557. gMax: {
  45558. height: math.unit(134 + 11/12, "feet"),
  45559. name: "G-Max",
  45560. image: {
  45561. source: "./media/characters/cobalt-charizard/g-max.svg",
  45562. extra: 1835/1541,
  45563. bottom: 151/1986
  45564. }
  45565. },
  45566. },
  45567. [
  45568. {
  45569. name: "Normal",
  45570. height: math.unit(8 + 5/12, "feet"),
  45571. default: true
  45572. },
  45573. ]
  45574. ))
  45575. characterMakers.push(() => makeCharacter(
  45576. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45577. {
  45578. front: {
  45579. height: math.unit(6 + 3/12, "feet"),
  45580. weight: math.unit(210, "lb"),
  45581. name: "Front",
  45582. image: {
  45583. source: "./media/characters/stella/front.svg",
  45584. extra: 3549/3335,
  45585. bottom: 51/3600
  45586. }
  45587. },
  45588. },
  45589. [
  45590. {
  45591. name: "Normal",
  45592. height: math.unit(6 + 3/12, "feet"),
  45593. default: true
  45594. },
  45595. ]
  45596. ))
  45597. characterMakers.push(() => makeCharacter(
  45598. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45599. {
  45600. front: {
  45601. height: math.unit(5, "feet"),
  45602. weight: math.unit(90, "lb"),
  45603. name: "Front",
  45604. image: {
  45605. source: "./media/characters/riley-bishop/front.svg",
  45606. extra: 1450/1428,
  45607. bottom: 152/1602
  45608. }
  45609. },
  45610. },
  45611. [
  45612. {
  45613. name: "Normal",
  45614. height: math.unit(5, "feet"),
  45615. default: true
  45616. },
  45617. ]
  45618. ))
  45619. characterMakers.push(() => makeCharacter(
  45620. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45621. {
  45622. side: {
  45623. height: math.unit(8 + 2/12, "feet"),
  45624. weight: math.unit(500, "kg"),
  45625. name: "Side",
  45626. image: {
  45627. source: "./media/characters/theo-arcanine/side.svg",
  45628. extra: 1342/1074,
  45629. bottom: 111/1453
  45630. }
  45631. },
  45632. },
  45633. [
  45634. {
  45635. name: "Normal",
  45636. height: math.unit(8 + 2/12, "feet"),
  45637. default: true
  45638. },
  45639. ]
  45640. ))
  45641. characterMakers.push(() => makeCharacter(
  45642. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45643. {
  45644. front: {
  45645. height: math.unit(4, "feet"),
  45646. name: "Front",
  45647. image: {
  45648. source: "./media/characters/kali/front.svg",
  45649. extra: 1074/867,
  45650. bottom: 34/1108
  45651. }
  45652. },
  45653. back: {
  45654. height: math.unit(4, "feet"),
  45655. name: "Back",
  45656. image: {
  45657. source: "./media/characters/kali/back.svg",
  45658. extra: 1068/863,
  45659. bottom: 26/1094
  45660. }
  45661. },
  45662. frontAlt: {
  45663. height: math.unit(4, "feet"),
  45664. name: "Front (Alt)",
  45665. image: {
  45666. source: "./media/characters/kali/front-alt.svg",
  45667. extra: 1921/1357,
  45668. bottom: 70/1991
  45669. }
  45670. },
  45671. },
  45672. [
  45673. {
  45674. name: "Normal",
  45675. height: math.unit(4, "feet"),
  45676. default: true
  45677. },
  45678. {
  45679. name: "Big'vali",
  45680. height: math.unit(11, "feet")
  45681. },
  45682. {
  45683. name: "Macro",
  45684. height: math.unit(32, "meters")
  45685. },
  45686. {
  45687. name: "Macro+",
  45688. height: math.unit(150, "meters")
  45689. },
  45690. {
  45691. name: "Megamacro",
  45692. height: math.unit(7500, "meters")
  45693. },
  45694. {
  45695. name: "Megamacro+",
  45696. height: math.unit(80, "kilometers")
  45697. },
  45698. ]
  45699. ))
  45700. characterMakers.push(() => makeCharacter(
  45701. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45702. {
  45703. side: {
  45704. height: math.unit(5 + 11/12, "feet"),
  45705. weight: math.unit(236, "lb"),
  45706. name: "Side",
  45707. image: {
  45708. source: "./media/characters/gapp/side.svg",
  45709. extra: 775/340,
  45710. bottom: 58/833
  45711. }
  45712. },
  45713. mouth: {
  45714. height: math.unit(2.98, "feet"),
  45715. name: "Mouth",
  45716. image: {
  45717. source: "./media/characters/gapp/mouth.svg"
  45718. }
  45719. },
  45720. },
  45721. [
  45722. {
  45723. name: "Normal",
  45724. height: math.unit(5 + 1/12, "feet"),
  45725. default: true
  45726. },
  45727. ]
  45728. ))
  45729. characterMakers.push(() => makeCharacter(
  45730. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45731. {
  45732. front: {
  45733. height: math.unit(6, "feet"),
  45734. name: "Front",
  45735. image: {
  45736. source: "./media/characters/persephone/front.svg",
  45737. extra: 1895/1717,
  45738. bottom: 96/1991
  45739. }
  45740. },
  45741. back: {
  45742. height: math.unit(6, "feet"),
  45743. name: "Back",
  45744. image: {
  45745. source: "./media/characters/persephone/back.svg",
  45746. extra: 1868/1679,
  45747. bottom: 26/1894
  45748. }
  45749. },
  45750. casual: {
  45751. height: math.unit(6, "feet"),
  45752. name: "Casual",
  45753. image: {
  45754. source: "./media/characters/persephone/casual.svg",
  45755. extra: 1713/1541,
  45756. bottom: 76/1789
  45757. }
  45758. },
  45759. gaming: {
  45760. height: math.unit(3.55, "feet"),
  45761. name: "Gaming",
  45762. image: {
  45763. source: "./media/characters/persephone/gaming.svg",
  45764. extra: 1242/1038,
  45765. bottom: 66/1308
  45766. }
  45767. },
  45768. head: {
  45769. height: math.unit(2.15, "feet"),
  45770. name: "😐",
  45771. image: {
  45772. source: "./media/characters/persephone/head.svg"
  45773. }
  45774. },
  45775. talking: {
  45776. height: math.unit(2.5, "feet"),
  45777. name: "💬",
  45778. image: {
  45779. source: "./media/characters/persephone/talking.svg"
  45780. }
  45781. },
  45782. hmm: {
  45783. height: math.unit(2.28, "feet"),
  45784. name: "🤨",
  45785. image: {
  45786. source: "./media/characters/persephone/hmm.svg"
  45787. }
  45788. },
  45789. },
  45790. [
  45791. {
  45792. name: "Human Size",
  45793. height: math.unit(6, "feet")
  45794. },
  45795. {
  45796. name: "Big Steppy",
  45797. height: math.unit(600, "meters"),
  45798. default: true
  45799. },
  45800. {
  45801. name: "Galaxy Brain",
  45802. height: math.unit(1, "zettameter")
  45803. },
  45804. ]
  45805. ))
  45806. characterMakers.push(() => makeCharacter(
  45807. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45808. {
  45809. front: {
  45810. height: math.unit(1.85, "meters"),
  45811. name: "Front",
  45812. image: {
  45813. source: "./media/characters/riley-foxthing/front.svg",
  45814. extra: 1495/1354,
  45815. bottom: 122/1617
  45816. }
  45817. },
  45818. frontAlt: {
  45819. height: math.unit(1.85, "meters"),
  45820. name: "Front (Alt)",
  45821. image: {
  45822. source: "./media/characters/riley-foxthing/front-alt.svg",
  45823. extra: 1572/1389,
  45824. bottom: 116/1688
  45825. }
  45826. },
  45827. },
  45828. [
  45829. {
  45830. name: "Normal Sized",
  45831. height: math.unit(1.85, "meters"),
  45832. default: true
  45833. },
  45834. {
  45835. name: "Quite Sizable",
  45836. height: math.unit(5, "meters")
  45837. },
  45838. {
  45839. name: "Rather Large",
  45840. height: math.unit(20, "meters")
  45841. },
  45842. {
  45843. name: "Macro",
  45844. height: math.unit(450, "meters")
  45845. },
  45846. {
  45847. name: "Giga",
  45848. height: math.unit(5, "km")
  45849. },
  45850. ]
  45851. ))
  45852. characterMakers.push(() => makeCharacter(
  45853. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45854. {
  45855. front: {
  45856. height: math.unit(6, "feet"),
  45857. weight: math.unit(200, "lb"),
  45858. name: "Front",
  45859. image: {
  45860. source: "./media/characters/blizzard/front.svg",
  45861. extra: 1136/990,
  45862. bottom: 136/1272
  45863. }
  45864. },
  45865. back: {
  45866. height: math.unit(6, "feet"),
  45867. weight: math.unit(200, "lb"),
  45868. name: "Back",
  45869. image: {
  45870. source: "./media/characters/blizzard/back.svg",
  45871. extra: 1175/1034,
  45872. bottom: 97/1272
  45873. }
  45874. },
  45875. sitting: {
  45876. height: math.unit(3.725, "feet"),
  45877. weight: math.unit(200, "lb"),
  45878. name: "Sitting",
  45879. image: {
  45880. source: "./media/characters/blizzard/sitting.svg",
  45881. extra: 581/485,
  45882. bottom: 90/671
  45883. }
  45884. },
  45885. frontWizard: {
  45886. height: math.unit(7.9, "feet"),
  45887. weight: math.unit(200, "lb"),
  45888. name: "Front (Wizard)",
  45889. image: {
  45890. source: "./media/characters/blizzard/front-wizard.svg"
  45891. }
  45892. },
  45893. backWizard: {
  45894. height: math.unit(7.9, "feet"),
  45895. weight: math.unit(200, "lb"),
  45896. name: "Back (Wizard)",
  45897. image: {
  45898. source: "./media/characters/blizzard/back-wizard.svg"
  45899. }
  45900. },
  45901. frontNsfw: {
  45902. height: math.unit(6, "feet"),
  45903. weight: math.unit(200, "lb"),
  45904. name: "Front (NSFW)",
  45905. image: {
  45906. source: "./media/characters/blizzard/front-nsfw.svg",
  45907. extra: 1136/990,
  45908. bottom: 136/1272
  45909. }
  45910. },
  45911. backNsfw: {
  45912. height: math.unit(6, "feet"),
  45913. weight: math.unit(200, "lb"),
  45914. name: "Back (NSFW)",
  45915. image: {
  45916. source: "./media/characters/blizzard/back-nsfw.svg",
  45917. extra: 1175/1034,
  45918. bottom: 97/1272
  45919. }
  45920. },
  45921. sittingNsfw: {
  45922. height: math.unit(3.725, "feet"),
  45923. weight: math.unit(200, "lb"),
  45924. name: "Sitting (NSFW)",
  45925. image: {
  45926. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45927. extra: 581/485,
  45928. bottom: 90/671
  45929. }
  45930. },
  45931. wizardFrontNsfw: {
  45932. height: math.unit(7.9, "feet"),
  45933. weight: math.unit(200, "lb"),
  45934. name: "Wizard (Front, NSFW)",
  45935. image: {
  45936. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45937. }
  45938. },
  45939. },
  45940. [
  45941. {
  45942. name: "Normal",
  45943. height: math.unit(6, "feet"),
  45944. default: true
  45945. },
  45946. ]
  45947. ))
  45948. characterMakers.push(() => makeCharacter(
  45949. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45950. {
  45951. front: {
  45952. height: math.unit(5 + 2/12, "feet"),
  45953. name: "Front",
  45954. image: {
  45955. source: "./media/characters/lumi/front.svg",
  45956. extra: 1328/1268,
  45957. bottom: 103/1431
  45958. }
  45959. },
  45960. back: {
  45961. height: math.unit(5 + 2/12, "feet"),
  45962. name: "Back",
  45963. image: {
  45964. source: "./media/characters/lumi/back.svg",
  45965. extra: 1381/1327,
  45966. bottom: 43/1424
  45967. }
  45968. },
  45969. },
  45970. [
  45971. {
  45972. name: "Normal",
  45973. height: math.unit(5 + 2/12, "feet"),
  45974. default: true
  45975. },
  45976. ]
  45977. ))
  45978. characterMakers.push(() => makeCharacter(
  45979. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45980. {
  45981. front: {
  45982. height: math.unit(5 + 9/12, "feet"),
  45983. name: "Front",
  45984. image: {
  45985. source: "./media/characters/aliya-cotton/front.svg",
  45986. extra: 577/564,
  45987. bottom: 29/606
  45988. }
  45989. },
  45990. },
  45991. [
  45992. {
  45993. name: "Normal",
  45994. height: math.unit(5 + 9/12, "feet"),
  45995. default: true
  45996. },
  45997. ]
  45998. ))
  45999. characterMakers.push(() => makeCharacter(
  46000. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46001. {
  46002. front: {
  46003. height: math.unit(2.7, "meters"),
  46004. weight: math.unit(25000, "lb"),
  46005. name: "Front",
  46006. image: {
  46007. source: "./media/characters/noah-luxray/front.svg",
  46008. extra: 1644/825,
  46009. bottom: 339/1983
  46010. }
  46011. },
  46012. side: {
  46013. height: math.unit(2.97, "meters"),
  46014. weight: math.unit(25000, "lb"),
  46015. name: "Side",
  46016. image: {
  46017. source: "./media/characters/noah-luxray/side.svg",
  46018. extra: 1319/650,
  46019. bottom: 163/1482
  46020. }
  46021. },
  46022. dick: {
  46023. height: math.unit(7.4, "feet"),
  46024. weight: math.unit(2500, "lb"),
  46025. name: "Dick",
  46026. image: {
  46027. source: "./media/characters/noah-luxray/dick.svg"
  46028. }
  46029. },
  46030. dickAlt: {
  46031. height: math.unit(10.83, "feet"),
  46032. weight: math.unit(2500, "lb"),
  46033. name: "Dick-alt",
  46034. image: {
  46035. source: "./media/characters/noah-luxray/dick-alt.svg"
  46036. }
  46037. },
  46038. },
  46039. [
  46040. {
  46041. name: "BIG",
  46042. height: math.unit(2.7, "meters"),
  46043. default: true
  46044. },
  46045. ]
  46046. ))
  46047. characterMakers.push(() => makeCharacter(
  46048. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46049. {
  46050. standing: {
  46051. height: math.unit(183, "cm"),
  46052. weight: math.unit(68, "kg"),
  46053. name: "Standing",
  46054. image: {
  46055. source: "./media/characters/arion/standing.svg",
  46056. extra: 1869/1807,
  46057. bottom: 93/1962
  46058. }
  46059. },
  46060. reclining: {
  46061. height: math.unit(70.5, "cm"),
  46062. weight: math.unit(68, "lb"),
  46063. name: "Reclining",
  46064. image: {
  46065. source: "./media/characters/arion/reclining.svg",
  46066. extra: 937/870,
  46067. bottom: 63/1000
  46068. }
  46069. },
  46070. },
  46071. [
  46072. {
  46073. name: "Colossus Size, Low",
  46074. height: math.unit(33, "meters"),
  46075. default: true
  46076. },
  46077. {
  46078. name: "Colossus Size, Mid",
  46079. height: math.unit(52, "meters")
  46080. },
  46081. {
  46082. name: "Colossus Size, High",
  46083. height: math.unit(60, "meters")
  46084. },
  46085. {
  46086. name: "Titan Size, Low",
  46087. height: math.unit(91, "meters"),
  46088. },
  46089. {
  46090. name: "Titan Size, Mid",
  46091. height: math.unit(122, "meters")
  46092. },
  46093. {
  46094. name: "Titan Size, High",
  46095. height: math.unit(162, "meters")
  46096. },
  46097. ]
  46098. ))
  46099. characterMakers.push(() => makeCharacter(
  46100. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46101. {
  46102. front: {
  46103. height: math.unit(53, "meters"),
  46104. name: "Front",
  46105. image: {
  46106. source: "./media/characters/stellar-marbey/front.svg",
  46107. extra: 1913/1805,
  46108. bottom: 92/2005
  46109. }
  46110. },
  46111. back: {
  46112. height: math.unit(53, "meters"),
  46113. name: "Back",
  46114. image: {
  46115. source: "./media/characters/stellar-marbey/back.svg",
  46116. extra: 1960/1851,
  46117. bottom: 28/1988
  46118. }
  46119. },
  46120. mouth: {
  46121. height: math.unit(3.5, "meters"),
  46122. name: "Mouth",
  46123. image: {
  46124. source: "./media/characters/stellar-marbey/mouth.svg"
  46125. }
  46126. },
  46127. },
  46128. [
  46129. {
  46130. name: "Macro",
  46131. height: math.unit(53, "meters"),
  46132. default: true
  46133. },
  46134. ]
  46135. ))
  46136. characterMakers.push(() => makeCharacter(
  46137. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46138. {
  46139. front: {
  46140. height: math.unit(8 + 1/12, "feet"),
  46141. weight: math.unit(233, "lb"),
  46142. name: "Front",
  46143. image: {
  46144. source: "./media/characters/matsu/front.svg",
  46145. extra: 832/772,
  46146. bottom: 40/872
  46147. }
  46148. },
  46149. back: {
  46150. height: math.unit(8 + 1/12, "feet"),
  46151. weight: math.unit(233, "lb"),
  46152. name: "Back",
  46153. image: {
  46154. source: "./media/characters/matsu/back.svg",
  46155. extra: 839/780,
  46156. bottom: 47/886
  46157. }
  46158. },
  46159. },
  46160. [
  46161. {
  46162. name: "Normal",
  46163. height: math.unit(8 + 1/12, "feet"),
  46164. default: true
  46165. },
  46166. ]
  46167. ))
  46168. characterMakers.push(() => makeCharacter(
  46169. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46170. {
  46171. front: {
  46172. height: math.unit(4, "feet"),
  46173. weight: math.unit(148, "lb"),
  46174. name: "Front",
  46175. image: {
  46176. source: "./media/characters/thiz/front.svg",
  46177. extra: 1913/1748,
  46178. bottom: 62/1975
  46179. }
  46180. },
  46181. },
  46182. [
  46183. {
  46184. name: "Normal",
  46185. height: math.unit(4, "feet"),
  46186. default: true
  46187. },
  46188. ]
  46189. ))
  46190. characterMakers.push(() => makeCharacter(
  46191. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46192. {
  46193. front: {
  46194. height: math.unit(7 + 6/12, "feet"),
  46195. weight: math.unit(267, "lb"),
  46196. name: "Front",
  46197. image: {
  46198. source: "./media/characters/marcel/front.svg",
  46199. extra: 1221/1096,
  46200. bottom: 76/1297
  46201. }
  46202. },
  46203. },
  46204. [
  46205. {
  46206. name: "Normal",
  46207. height: math.unit(7 + 6/12, "feet"),
  46208. default: true
  46209. },
  46210. ]
  46211. ))
  46212. characterMakers.push(() => makeCharacter(
  46213. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46214. {
  46215. side: {
  46216. height: math.unit(42, "meters"),
  46217. name: "Side",
  46218. image: {
  46219. source: "./media/characters/flake/side.svg",
  46220. extra: 1525/1306,
  46221. bottom: 209/1734
  46222. }
  46223. },
  46224. },
  46225. [
  46226. {
  46227. name: "Normal",
  46228. height: math.unit(42, "meters"),
  46229. default: true
  46230. },
  46231. ]
  46232. ))
  46233. characterMakers.push(() => makeCharacter(
  46234. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46235. {
  46236. dressed: {
  46237. height: math.unit(6 + 4/12, "feet"),
  46238. weight: math.unit(520, "lb"),
  46239. name: "Dressed",
  46240. image: {
  46241. source: "./media/characters/someonne/dressed.svg",
  46242. extra: 1020/1010,
  46243. bottom: 178/1198
  46244. }
  46245. },
  46246. undressed: {
  46247. height: math.unit(6 + 4/12, "feet"),
  46248. weight: math.unit(520, "lb"),
  46249. name: "Undressed",
  46250. image: {
  46251. source: "./media/characters/someonne/undressed.svg",
  46252. extra: 1019/1014,
  46253. bottom: 169/1188
  46254. }
  46255. },
  46256. },
  46257. [
  46258. {
  46259. name: "Normal",
  46260. height: math.unit(6 + 4/12, "feet"),
  46261. default: true
  46262. },
  46263. ]
  46264. ))
  46265. characterMakers.push(() => makeCharacter(
  46266. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46267. {
  46268. front: {
  46269. height: math.unit(3, "feet"),
  46270. weight: math.unit(30, "lb"),
  46271. name: "Front",
  46272. image: {
  46273. source: "./media/characters/till/front.svg",
  46274. extra: 892/823,
  46275. bottom: 55/947
  46276. }
  46277. },
  46278. },
  46279. [
  46280. {
  46281. name: "Normal",
  46282. height: math.unit(3, "feet"),
  46283. default: true
  46284. },
  46285. ]
  46286. ))
  46287. characterMakers.push(() => makeCharacter(
  46288. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46289. {
  46290. front: {
  46291. height: math.unit(9 + 8/12, "feet"),
  46292. weight: math.unit(800, "lb"),
  46293. name: "Front",
  46294. image: {
  46295. source: "./media/characters/sydney-heki/front.svg",
  46296. extra: 1360/1300,
  46297. bottom: 22/1382
  46298. }
  46299. },
  46300. back: {
  46301. height: math.unit(9 + 8/12, "feet"),
  46302. weight: math.unit(800, "lb"),
  46303. name: "Back",
  46304. image: {
  46305. source: "./media/characters/sydney-heki/back.svg",
  46306. extra: 1356/1293,
  46307. bottom: 12/1368
  46308. }
  46309. },
  46310. frontDressed: {
  46311. height: math.unit(9 + 8/12, "feet"),
  46312. weight: math.unit(800, "lb"),
  46313. name: "Front-dressed",
  46314. image: {
  46315. source: "./media/characters/sydney-heki/front-dressed.svg",
  46316. extra: 1360/1300,
  46317. bottom: 22/1382
  46318. }
  46319. },
  46320. },
  46321. [
  46322. {
  46323. name: "Normal",
  46324. height: math.unit(9 + 8/12, "feet"),
  46325. default: true
  46326. },
  46327. {
  46328. name: "Macro",
  46329. height: math.unit(500, "feet")
  46330. },
  46331. {
  46332. name: "Megamacro",
  46333. height: math.unit(3.6, "miles")
  46334. },
  46335. ]
  46336. ))
  46337. characterMakers.push(() => makeCharacter(
  46338. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46339. {
  46340. front: {
  46341. height: math.unit(200, "cm"),
  46342. weight: math.unit(250, "lb"),
  46343. name: "Front",
  46344. image: {
  46345. source: "./media/characters/fowler-karlsson/front.svg",
  46346. extra: 897/845,
  46347. bottom: 123/1020
  46348. }
  46349. },
  46350. back: {
  46351. height: math.unit(200, "cm"),
  46352. weight: math.unit(250, "lb"),
  46353. name: "Back",
  46354. image: {
  46355. source: "./media/characters/fowler-karlsson/back.svg",
  46356. extra: 999/944,
  46357. bottom: 26/1025
  46358. }
  46359. },
  46360. dick: {
  46361. height: math.unit(1.92, "feet"),
  46362. weight: math.unit(150, "lb"),
  46363. name: "Dick",
  46364. image: {
  46365. source: "./media/characters/fowler-karlsson/dick.svg"
  46366. }
  46367. },
  46368. },
  46369. [
  46370. {
  46371. name: "Normal",
  46372. height: math.unit(200, "cm"),
  46373. default: true
  46374. },
  46375. {
  46376. name: "Smaller Macro",
  46377. height: math.unit(90, "m")
  46378. },
  46379. {
  46380. name: "Macro",
  46381. height: math.unit(150, "m")
  46382. },
  46383. {
  46384. name: "Bigger Macro",
  46385. height: math.unit(300, "m")
  46386. },
  46387. ]
  46388. ))
  46389. characterMakers.push(() => makeCharacter(
  46390. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46391. {
  46392. side: {
  46393. height: math.unit(8 + 2/12, "feet"),
  46394. weight: math.unit(1, "tonne"),
  46395. name: "Side",
  46396. image: {
  46397. source: "./media/characters/rylide/side.svg",
  46398. extra: 1318/1034,
  46399. bottom: 106/1424
  46400. }
  46401. },
  46402. sitting: {
  46403. height: math.unit(303, "cm"),
  46404. weight: math.unit(1, "tonne"),
  46405. name: "Sitting",
  46406. image: {
  46407. source: "./media/characters/rylide/sitting.svg",
  46408. extra: 1303/1103,
  46409. bottom: 36/1339
  46410. }
  46411. },
  46412. },
  46413. [
  46414. {
  46415. name: "Normal",
  46416. height: math.unit(8 + 2/12, "feet"),
  46417. default: true
  46418. },
  46419. ]
  46420. ))
  46421. characterMakers.push(() => makeCharacter(
  46422. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46423. {
  46424. front: {
  46425. height: math.unit(5 + 10/12, "feet"),
  46426. weight: math.unit(160, "lb"),
  46427. name: "Front",
  46428. image: {
  46429. source: "./media/characters/pudask/front.svg",
  46430. extra: 1616/1590,
  46431. bottom: 161/1777
  46432. }
  46433. },
  46434. },
  46435. [
  46436. {
  46437. name: "Ferret Height",
  46438. height: math.unit(2 + 5/12, "feet")
  46439. },
  46440. {
  46441. name: "Canon Height",
  46442. height: math.unit(5 + 10/12, "feet"),
  46443. default: true
  46444. },
  46445. ]
  46446. ))
  46447. characterMakers.push(() => makeCharacter(
  46448. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46449. {
  46450. front: {
  46451. height: math.unit(3 + 6/12, "feet"),
  46452. weight: math.unit(60, "lb"),
  46453. name: "Front",
  46454. image: {
  46455. source: "./media/characters/ramita/front.svg",
  46456. extra: 1402/1232,
  46457. bottom: 62/1464
  46458. }
  46459. },
  46460. dressed: {
  46461. height: math.unit(3 + 6/12, "feet"),
  46462. weight: math.unit(60, "lb"),
  46463. name: "Dressed",
  46464. image: {
  46465. source: "./media/characters/ramita/dressed.svg",
  46466. extra: 1534/1249,
  46467. bottom: 50/1584
  46468. }
  46469. },
  46470. },
  46471. [
  46472. {
  46473. name: "Normal",
  46474. height: math.unit(3 + 6/12, "feet"),
  46475. default: true
  46476. },
  46477. ]
  46478. ))
  46479. characterMakers.push(() => makeCharacter(
  46480. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46481. {
  46482. front: {
  46483. height: math.unit(8, "feet"),
  46484. name: "Front",
  46485. image: {
  46486. source: "./media/characters/ark/front.svg",
  46487. extra: 772/693,
  46488. bottom: 45/817
  46489. }
  46490. },
  46491. },
  46492. [
  46493. {
  46494. name: "Normal",
  46495. height: math.unit(8, "feet"),
  46496. default: true
  46497. },
  46498. ]
  46499. ))
  46500. characterMakers.push(() => makeCharacter(
  46501. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46502. {
  46503. front: {
  46504. height: math.unit(6, "feet"),
  46505. weight: math.unit(250, "lb"),
  46506. volume: math.unit(5/8, "gallons"),
  46507. name: "Front",
  46508. image: {
  46509. source: "./media/characters/ludwig-horn/front.svg",
  46510. extra: 1782/1635,
  46511. bottom: 96/1878
  46512. }
  46513. },
  46514. back: {
  46515. height: math.unit(6, "feet"),
  46516. weight: math.unit(250, "lb"),
  46517. volume: math.unit(5/8, "gallons"),
  46518. name: "Back",
  46519. image: {
  46520. source: "./media/characters/ludwig-horn/back.svg",
  46521. extra: 1874/1729,
  46522. bottom: 27/1901
  46523. }
  46524. },
  46525. dick: {
  46526. height: math.unit(1.05, "feet"),
  46527. weight: math.unit(15, "lb"),
  46528. volume: math.unit(5/8, "gallons"),
  46529. name: "Dick",
  46530. image: {
  46531. source: "./media/characters/ludwig-horn/dick.svg"
  46532. }
  46533. },
  46534. },
  46535. [
  46536. {
  46537. name: "Small",
  46538. height: math.unit(6, "feet")
  46539. },
  46540. {
  46541. name: "Typical",
  46542. height: math.unit(12, "feet"),
  46543. default: true
  46544. },
  46545. {
  46546. name: "Building",
  46547. height: math.unit(80, "feet")
  46548. },
  46549. {
  46550. name: "Town",
  46551. height: math.unit(800, "feet")
  46552. },
  46553. {
  46554. name: "Kingdom",
  46555. height: math.unit(80000, "feet")
  46556. },
  46557. {
  46558. name: "Planet",
  46559. height: math.unit(8000000, "feet")
  46560. },
  46561. {
  46562. name: "Universe",
  46563. height: math.unit(8000000000, "feet")
  46564. },
  46565. {
  46566. name: "Transcended",
  46567. height: math.unit(8e27, "feet")
  46568. },
  46569. ]
  46570. ))
  46571. characterMakers.push(() => makeCharacter(
  46572. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46573. {
  46574. front: {
  46575. height: math.unit(5, "feet"),
  46576. weight: math.unit(50, "kg"),
  46577. name: "Front",
  46578. image: {
  46579. source: "./media/characters/biot-avery/front.svg",
  46580. extra: 1295/1232,
  46581. bottom: 86/1381
  46582. }
  46583. },
  46584. },
  46585. [
  46586. {
  46587. name: "Normal",
  46588. height: math.unit(5, "feet"),
  46589. default: true
  46590. },
  46591. ]
  46592. ))
  46593. characterMakers.push(() => makeCharacter(
  46594. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46595. {
  46596. front: {
  46597. height: math.unit(6, "feet"),
  46598. name: "Front",
  46599. image: {
  46600. source: "./media/characters/kitsune-kiro/front.svg",
  46601. extra: 1270/1158,
  46602. bottom: 42/1312
  46603. }
  46604. },
  46605. frontAlt: {
  46606. height: math.unit(6, "feet"),
  46607. name: "Front-alt",
  46608. image: {
  46609. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46610. extra: 1130/1081,
  46611. bottom: 36/1166
  46612. }
  46613. },
  46614. },
  46615. [
  46616. {
  46617. name: "Smol",
  46618. height: math.unit(3, "feet")
  46619. },
  46620. {
  46621. name: "Normal",
  46622. height: math.unit(6, "feet"),
  46623. default: true
  46624. },
  46625. ]
  46626. ))
  46627. characterMakers.push(() => makeCharacter(
  46628. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46629. {
  46630. front: {
  46631. height: math.unit(6, "feet"),
  46632. weight: math.unit(125, "lb"),
  46633. name: "Front",
  46634. image: {
  46635. source: "./media/characters/jack-thatcher/front.svg",
  46636. extra: 1474/1370,
  46637. bottom: 26/1500
  46638. }
  46639. },
  46640. back: {
  46641. height: math.unit(6, "feet"),
  46642. weight: math.unit(125, "lb"),
  46643. name: "Back",
  46644. image: {
  46645. source: "./media/characters/jack-thatcher/back.svg",
  46646. extra: 1489/1384,
  46647. bottom: 18/1507
  46648. }
  46649. },
  46650. },
  46651. [
  46652. {
  46653. name: "Normal",
  46654. height: math.unit(6, "feet"),
  46655. default: true
  46656. },
  46657. {
  46658. name: "Macro",
  46659. height: math.unit(75, "feet")
  46660. },
  46661. {
  46662. name: "Macro-er",
  46663. height: math.unit(250, "feet")
  46664. },
  46665. ]
  46666. ))
  46667. characterMakers.push(() => makeCharacter(
  46668. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46669. {
  46670. front: {
  46671. height: math.unit(7, "feet"),
  46672. weight: math.unit(110, "kg"),
  46673. name: "Front",
  46674. image: {
  46675. source: "./media/characters/max-hyper/front.svg",
  46676. extra: 1969/1881,
  46677. bottom: 49/2018
  46678. }
  46679. },
  46680. },
  46681. [
  46682. {
  46683. name: "Normal",
  46684. height: math.unit(7, "feet"),
  46685. default: true
  46686. },
  46687. ]
  46688. ))
  46689. characterMakers.push(() => makeCharacter(
  46690. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46691. {
  46692. front: {
  46693. height: math.unit(5 + 5/12, "feet"),
  46694. weight: math.unit(160, "lb"),
  46695. name: "Front",
  46696. image: {
  46697. source: "./media/characters/spook/front.svg",
  46698. extra: 794/791,
  46699. bottom: 54/848
  46700. }
  46701. },
  46702. back: {
  46703. height: math.unit(5 + 5/12, "feet"),
  46704. weight: math.unit(160, "lb"),
  46705. name: "Back",
  46706. image: {
  46707. source: "./media/characters/spook/back.svg",
  46708. extra: 812/798,
  46709. bottom: 32/844
  46710. }
  46711. },
  46712. },
  46713. [
  46714. {
  46715. name: "Normal",
  46716. height: math.unit(5 + 5/12, "feet"),
  46717. default: true
  46718. },
  46719. ]
  46720. ))
  46721. characterMakers.push(() => makeCharacter(
  46722. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46723. {
  46724. front: {
  46725. height: math.unit(18, "feet"),
  46726. name: "Front",
  46727. image: {
  46728. source: "./media/characters/xeaduulix/front.svg",
  46729. extra: 1380/1166,
  46730. bottom: 110/1490
  46731. }
  46732. },
  46733. back: {
  46734. height: math.unit(18, "feet"),
  46735. name: "Back",
  46736. image: {
  46737. source: "./media/characters/xeaduulix/back.svg",
  46738. extra: 1592/1170,
  46739. bottom: 128/1720
  46740. }
  46741. },
  46742. frontNsfw: {
  46743. height: math.unit(18, "feet"),
  46744. name: "Front (NSFW)",
  46745. image: {
  46746. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46747. extra: 1380/1166,
  46748. bottom: 110/1490
  46749. }
  46750. },
  46751. backNsfw: {
  46752. height: math.unit(18, "feet"),
  46753. name: "Back (NSFW)",
  46754. image: {
  46755. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46756. extra: 1592/1170,
  46757. bottom: 128/1720
  46758. }
  46759. },
  46760. },
  46761. [
  46762. {
  46763. name: "Normal",
  46764. height: math.unit(18, "feet"),
  46765. default: true
  46766. },
  46767. ]
  46768. ))
  46769. characterMakers.push(() => makeCharacter(
  46770. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46771. {
  46772. spreadWings: {
  46773. height: math.unit(20, "feet"),
  46774. name: "Spread Wings",
  46775. image: {
  46776. source: "./media/characters/fledge/spread-wings.svg",
  46777. extra: 693/635,
  46778. bottom: 26/719
  46779. }
  46780. },
  46781. front: {
  46782. height: math.unit(20, "feet"),
  46783. name: "Front",
  46784. image: {
  46785. source: "./media/characters/fledge/front.svg",
  46786. extra: 684/637,
  46787. bottom: 18/702
  46788. }
  46789. },
  46790. frontAlt: {
  46791. height: math.unit(20, "feet"),
  46792. name: "Front (Alt)",
  46793. image: {
  46794. source: "./media/characters/fledge/front-alt.svg",
  46795. extra: 708/664,
  46796. bottom: 13/721
  46797. }
  46798. },
  46799. back: {
  46800. height: math.unit(20, "feet"),
  46801. name: "Back",
  46802. image: {
  46803. source: "./media/characters/fledge/back.svg",
  46804. extra: 718/634,
  46805. bottom: 22/740
  46806. }
  46807. },
  46808. head: {
  46809. height: math.unit(5.55, "feet"),
  46810. name: "Head",
  46811. image: {
  46812. source: "./media/characters/fledge/head.svg"
  46813. }
  46814. },
  46815. headAlt: {
  46816. height: math.unit(5.1, "feet"),
  46817. name: "Head (Alt)",
  46818. image: {
  46819. source: "./media/characters/fledge/head-alt.svg"
  46820. }
  46821. },
  46822. },
  46823. [
  46824. {
  46825. name: "Small",
  46826. height: math.unit(6 + 2/12, "feet")
  46827. },
  46828. {
  46829. name: "Big",
  46830. height: math.unit(20, "feet"),
  46831. default: true
  46832. },
  46833. {
  46834. name: "Giant",
  46835. height: math.unit(100, "feet")
  46836. },
  46837. {
  46838. name: "Macro",
  46839. height: math.unit(200, "feet")
  46840. },
  46841. ]
  46842. ))
  46843. characterMakers.push(() => makeCharacter(
  46844. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46845. {
  46846. front: {
  46847. height: math.unit(1, "meter"),
  46848. name: "Front",
  46849. image: {
  46850. source: "./media/characters/atlas-morenai/front.svg",
  46851. extra: 1275/1043,
  46852. bottom: 19/1294
  46853. }
  46854. },
  46855. back: {
  46856. height: math.unit(1, "meter"),
  46857. name: "Back",
  46858. image: {
  46859. source: "./media/characters/atlas-morenai/back.svg",
  46860. extra: 1141/1001,
  46861. bottom: 25/1166
  46862. }
  46863. },
  46864. },
  46865. [
  46866. {
  46867. name: "Normal",
  46868. height: math.unit(1, "meter"),
  46869. default: true
  46870. },
  46871. {
  46872. name: "Magic-Infused",
  46873. height: math.unit(5, "meters")
  46874. },
  46875. ]
  46876. ))
  46877. characterMakers.push(() => makeCharacter(
  46878. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46879. {
  46880. front: {
  46881. height: math.unit(5, "meters"),
  46882. name: "Front",
  46883. image: {
  46884. source: "./media/characters/cintia/front.svg",
  46885. extra: 1312/1228,
  46886. bottom: 38/1350
  46887. }
  46888. },
  46889. back: {
  46890. height: math.unit(5, "meters"),
  46891. name: "Back",
  46892. image: {
  46893. source: "./media/characters/cintia/back.svg",
  46894. extra: 1260/1166,
  46895. bottom: 98/1358
  46896. }
  46897. },
  46898. frontDick: {
  46899. height: math.unit(5, "meters"),
  46900. name: "Front (Dick)",
  46901. image: {
  46902. source: "./media/characters/cintia/front-dick.svg",
  46903. extra: 1312/1228,
  46904. bottom: 38/1350
  46905. }
  46906. },
  46907. backDick: {
  46908. height: math.unit(5, "meters"),
  46909. name: "Back (Dick)",
  46910. image: {
  46911. source: "./media/characters/cintia/back-dick.svg",
  46912. extra: 1260/1166,
  46913. bottom: 98/1358
  46914. }
  46915. },
  46916. bust: {
  46917. height: math.unit(1.97, "meters"),
  46918. name: "Bust",
  46919. image: {
  46920. source: "./media/characters/cintia/bust.svg",
  46921. extra: 617/565,
  46922. bottom: 0/617
  46923. }
  46924. },
  46925. },
  46926. [
  46927. {
  46928. name: "Normal",
  46929. height: math.unit(5, "meters"),
  46930. default: true
  46931. },
  46932. ]
  46933. ))
  46934. characterMakers.push(() => makeCharacter(
  46935. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46936. {
  46937. side: {
  46938. height: math.unit(100, "feet"),
  46939. name: "Side",
  46940. image: {
  46941. source: "./media/characters/denora/side.svg",
  46942. extra: 875/803,
  46943. bottom: 9/884
  46944. }
  46945. },
  46946. },
  46947. [
  46948. {
  46949. name: "Standard",
  46950. height: math.unit(100, "feet"),
  46951. default: true
  46952. },
  46953. {
  46954. name: "Grand",
  46955. height: math.unit(1000, "feet")
  46956. },
  46957. {
  46958. name: "Conquering",
  46959. height: math.unit(10000, "feet")
  46960. },
  46961. ]
  46962. ))
  46963. characterMakers.push(() => makeCharacter(
  46964. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46965. {
  46966. dressed: {
  46967. height: math.unit(8 + 5/12, "feet"),
  46968. weight: math.unit(700, "lb"),
  46969. name: "Dressed",
  46970. image: {
  46971. source: "./media/characters/kiva/dressed.svg",
  46972. extra: 1102/1055,
  46973. bottom: 60/1162
  46974. }
  46975. },
  46976. nude: {
  46977. height: math.unit(8 + 5/12, "feet"),
  46978. weight: math.unit(700, "lb"),
  46979. name: "Nude",
  46980. image: {
  46981. source: "./media/characters/kiva/nude.svg",
  46982. extra: 1102/1055,
  46983. bottom: 60/1162
  46984. }
  46985. },
  46986. },
  46987. [
  46988. {
  46989. name: "Base Height",
  46990. height: math.unit(8 + 5/12, "feet"),
  46991. default: true
  46992. },
  46993. {
  46994. name: "Macro",
  46995. height: math.unit(100, "feet")
  46996. },
  46997. {
  46998. name: "Max",
  46999. height: math.unit(3280, "feet")
  47000. },
  47001. ]
  47002. ))
  47003. characterMakers.push(() => makeCharacter(
  47004. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47005. {
  47006. front: {
  47007. height: math.unit(6 + 8/12, "feet"),
  47008. weight: math.unit(250, "lb"),
  47009. name: "Front",
  47010. image: {
  47011. source: "./media/characters/ztragon/front.svg",
  47012. extra: 1825/1684,
  47013. bottom: 98/1923
  47014. }
  47015. },
  47016. },
  47017. [
  47018. {
  47019. name: "Normal",
  47020. height: math.unit(6 + 8/12, "feet"),
  47021. default: true
  47022. },
  47023. {
  47024. name: "Macro",
  47025. height: math.unit(80, "feet")
  47026. },
  47027. ]
  47028. ))
  47029. characterMakers.push(() => makeCharacter(
  47030. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47031. {
  47032. front: {
  47033. height: math.unit(10.4, "feet"),
  47034. weight: math.unit(2, "tons"),
  47035. name: "Front",
  47036. image: {
  47037. source: "./media/characters/yesenia/front.svg",
  47038. extra: 1479/1474,
  47039. bottom: 233/1712
  47040. }
  47041. },
  47042. },
  47043. [
  47044. {
  47045. name: "Normal",
  47046. height: math.unit(10.4, "feet"),
  47047. default: true
  47048. },
  47049. ]
  47050. ))
  47051. characterMakers.push(() => makeCharacter(
  47052. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47053. {
  47054. normal: {
  47055. height: math.unit(6 + 1/12, "feet"),
  47056. weight: math.unit(180, "lb"),
  47057. name: "Normal",
  47058. image: {
  47059. source: "./media/characters/leanne-lycheborne/normal.svg",
  47060. extra: 1748/1660,
  47061. bottom: 98/1846
  47062. }
  47063. },
  47064. were: {
  47065. height: math.unit(12, "feet"),
  47066. weight: math.unit(1600, "lb"),
  47067. name: "Were",
  47068. image: {
  47069. source: "./media/characters/leanne-lycheborne/were.svg",
  47070. extra: 1485/1432,
  47071. bottom: 66/1551
  47072. }
  47073. },
  47074. },
  47075. [
  47076. {
  47077. name: "Normal",
  47078. height: math.unit(6 + 1/12, "feet"),
  47079. default: true
  47080. },
  47081. ]
  47082. ))
  47083. characterMakers.push(() => makeCharacter(
  47084. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47085. {
  47086. side: {
  47087. height: math.unit(13, "feet"),
  47088. name: "Side",
  47089. image: {
  47090. source: "./media/characters/kira-tyler/side.svg",
  47091. extra: 693/393,
  47092. bottom: 58/751
  47093. }
  47094. },
  47095. },
  47096. [
  47097. {
  47098. name: "Normal",
  47099. height: math.unit(13, "feet"),
  47100. default: true
  47101. },
  47102. ]
  47103. ))
  47104. characterMakers.push(() => makeCharacter(
  47105. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47106. {
  47107. front: {
  47108. height: math.unit(10.3, "feet"),
  47109. weight: math.unit(150, "lb"),
  47110. name: "Front",
  47111. image: {
  47112. source: "./media/characters/blaze/front.svg",
  47113. extra: 1378/1286,
  47114. bottom: 172/1550
  47115. }
  47116. },
  47117. },
  47118. [
  47119. {
  47120. name: "Normal",
  47121. height: math.unit(10.3, "feet"),
  47122. default: true
  47123. },
  47124. ]
  47125. ))
  47126. characterMakers.push(() => makeCharacter(
  47127. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47128. {
  47129. side: {
  47130. height: math.unit(2, "meters"),
  47131. weight: math.unit(400, "kg"),
  47132. name: "Side",
  47133. image: {
  47134. source: "./media/characters/anu/side.svg",
  47135. extra: 506/394,
  47136. bottom: 18/524
  47137. }
  47138. },
  47139. },
  47140. [
  47141. {
  47142. name: "Humanoid",
  47143. height: math.unit(2, "meters")
  47144. },
  47145. {
  47146. name: "Normal",
  47147. height: math.unit(5, "meters"),
  47148. default: true
  47149. },
  47150. ]
  47151. ))
  47152. characterMakers.push(() => makeCharacter(
  47153. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47154. {
  47155. front: {
  47156. height: math.unit(5 + 5/12, "feet"),
  47157. weight: math.unit(170, "lb"),
  47158. name: "Front",
  47159. image: {
  47160. source: "./media/characters/synx-the-lynx/front.svg",
  47161. extra: 1893/1745,
  47162. bottom: 17/1910
  47163. }
  47164. },
  47165. side: {
  47166. height: math.unit(5 + 5/12, "feet"),
  47167. weight: math.unit(170, "lb"),
  47168. name: "Side",
  47169. image: {
  47170. source: "./media/characters/synx-the-lynx/side.svg",
  47171. extra: 1884/1740,
  47172. bottom: 39/1923
  47173. }
  47174. },
  47175. back: {
  47176. height: math.unit(5 + 5/12, "feet"),
  47177. weight: math.unit(170, "lb"),
  47178. name: "Back",
  47179. image: {
  47180. source: "./media/characters/synx-the-lynx/back.svg",
  47181. extra: 1903/1755,
  47182. bottom: 14/1917
  47183. }
  47184. },
  47185. },
  47186. [
  47187. {
  47188. name: "Normal",
  47189. height: math.unit(5 + 5/12, "feet"),
  47190. default: true
  47191. },
  47192. ]
  47193. ))
  47194. characterMakers.push(() => makeCharacter(
  47195. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47196. {
  47197. back: {
  47198. height: math.unit(15, "feet"),
  47199. name: "Back",
  47200. image: {
  47201. source: "./media/characters/nadezda-fex/back.svg",
  47202. extra: 1695/1481,
  47203. bottom: 25/1720
  47204. }
  47205. },
  47206. },
  47207. [
  47208. {
  47209. name: "Normal",
  47210. height: math.unit(15, "feet"),
  47211. default: true
  47212. },
  47213. {
  47214. name: "Macro",
  47215. height: math.unit(2.5, "miles")
  47216. },
  47217. {
  47218. name: "Goddess",
  47219. height: math.unit(2, "multiverses")
  47220. },
  47221. ]
  47222. ))
  47223. characterMakers.push(() => makeCharacter(
  47224. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47225. {
  47226. front: {
  47227. height: math.unit(216, "cm"),
  47228. name: "Front",
  47229. image: {
  47230. source: "./media/characters/lev/front.svg",
  47231. extra: 1728/1670,
  47232. bottom: 82/1810
  47233. }
  47234. },
  47235. back: {
  47236. height: math.unit(216, "cm"),
  47237. name: "Back",
  47238. image: {
  47239. source: "./media/characters/lev/back.svg",
  47240. extra: 1738/1675,
  47241. bottom: 24/1762
  47242. }
  47243. },
  47244. dressed: {
  47245. height: math.unit(216, "cm"),
  47246. name: "Dressed",
  47247. image: {
  47248. source: "./media/characters/lev/dressed.svg",
  47249. extra: 1397/1351,
  47250. bottom: 73/1470
  47251. }
  47252. },
  47253. head: {
  47254. height: math.unit(0.51, "meter"),
  47255. name: "Head",
  47256. image: {
  47257. source: "./media/characters/lev/head.svg"
  47258. }
  47259. },
  47260. },
  47261. [
  47262. {
  47263. name: "Normal",
  47264. height: math.unit(216, "cm"),
  47265. default: true
  47266. },
  47267. {
  47268. name: "Relatively Macro",
  47269. height: math.unit(80, "meters")
  47270. },
  47271. {
  47272. name: "Megamacro",
  47273. height: math.unit(21600, "meters")
  47274. },
  47275. {
  47276. name: "Megamacro+",
  47277. height: math.unit(64800, "meters")
  47278. },
  47279. ]
  47280. ))
  47281. characterMakers.push(() => makeCharacter(
  47282. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47283. {
  47284. front: {
  47285. height: math.unit(2, "meters"),
  47286. weight: math.unit(80, "kg"),
  47287. name: "Front",
  47288. image: {
  47289. source: "./media/characters/moka/front.svg",
  47290. extra: 1337/1255,
  47291. bottom: 58/1395
  47292. }
  47293. },
  47294. },
  47295. [
  47296. {
  47297. name: "Micro",
  47298. height: math.unit(15, "cm")
  47299. },
  47300. {
  47301. name: "Normal",
  47302. height: math.unit(2, "meters"),
  47303. default: true
  47304. },
  47305. {
  47306. name: "Macro",
  47307. height: math.unit(20, "meters"),
  47308. },
  47309. ]
  47310. ))
  47311. characterMakers.push(() => makeCharacter(
  47312. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47313. {
  47314. front: {
  47315. height: math.unit(9, "feet"),
  47316. weight: math.unit(240, "lb"),
  47317. name: "Front",
  47318. image: {
  47319. source: "./media/characters/kuzco/front.svg",
  47320. extra: 1593/1487,
  47321. bottom: 32/1625
  47322. }
  47323. },
  47324. side: {
  47325. height: math.unit(9, "feet"),
  47326. weight: math.unit(240, "lb"),
  47327. name: "Side",
  47328. image: {
  47329. source: "./media/characters/kuzco/side.svg",
  47330. extra: 1575/1485,
  47331. bottom: 30/1605
  47332. }
  47333. },
  47334. back: {
  47335. height: math.unit(9, "feet"),
  47336. weight: math.unit(240, "lb"),
  47337. name: "Back",
  47338. image: {
  47339. source: "./media/characters/kuzco/back.svg",
  47340. extra: 1603/1514,
  47341. bottom: 14/1617
  47342. }
  47343. },
  47344. },
  47345. [
  47346. {
  47347. name: "Normal",
  47348. height: math.unit(9, "feet"),
  47349. default: true
  47350. },
  47351. ]
  47352. ))
  47353. characterMakers.push(() => makeCharacter(
  47354. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47355. {
  47356. side: {
  47357. height: math.unit(2, "meters"),
  47358. weight: math.unit(300, "kg"),
  47359. name: "Side",
  47360. image: {
  47361. source: "./media/characters/ceruleus/side.svg",
  47362. extra: 1068/974,
  47363. bottom: 126/1194
  47364. }
  47365. },
  47366. maw: {
  47367. height: math.unit(0.8125, "meter"),
  47368. name: "Maw",
  47369. image: {
  47370. source: "./media/characters/ceruleus/maw.svg"
  47371. }
  47372. },
  47373. },
  47374. [
  47375. {
  47376. name: "Normal",
  47377. height: math.unit(16, "meters"),
  47378. default: true
  47379. },
  47380. ]
  47381. ))
  47382. characterMakers.push(() => makeCharacter(
  47383. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47384. {
  47385. front: {
  47386. height: math.unit(9, "feet"),
  47387. weight: math.unit(500, "kg"),
  47388. name: "Front",
  47389. image: {
  47390. source: "./media/characters/acouya/front.svg",
  47391. extra: 1660/1473,
  47392. bottom: 28/1688
  47393. }
  47394. },
  47395. },
  47396. [
  47397. {
  47398. name: "Normal",
  47399. height: math.unit(9, "feet"),
  47400. default: true
  47401. },
  47402. ]
  47403. ))
  47404. characterMakers.push(() => makeCharacter(
  47405. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47406. {
  47407. front: {
  47408. height: math.unit(5 + 6/12, "feet"),
  47409. weight: math.unit(195, "lb"),
  47410. name: "Front",
  47411. image: {
  47412. source: "./media/characters/vant/front.svg",
  47413. extra: 1396/1320,
  47414. bottom: 20/1416
  47415. }
  47416. },
  47417. back: {
  47418. height: math.unit(5 + 6/12, "feet"),
  47419. weight: math.unit(195, "lb"),
  47420. name: "Back",
  47421. image: {
  47422. source: "./media/characters/vant/back.svg",
  47423. extra: 1396/1320,
  47424. bottom: 20/1416
  47425. }
  47426. },
  47427. maw: {
  47428. height: math.unit(0.75, "feet"),
  47429. name: "Maw",
  47430. image: {
  47431. source: "./media/characters/vant/maw.svg"
  47432. }
  47433. },
  47434. paw: {
  47435. height: math.unit(1.07, "feet"),
  47436. name: "Paw",
  47437. image: {
  47438. source: "./media/characters/vant/paw.svg"
  47439. }
  47440. },
  47441. },
  47442. [
  47443. {
  47444. name: "Micro",
  47445. height: math.unit(0.25, "inches")
  47446. },
  47447. {
  47448. name: "Normal",
  47449. height: math.unit(5 + 6/12, "feet"),
  47450. default: true
  47451. },
  47452. {
  47453. name: "Macro",
  47454. height: math.unit(75, "feet")
  47455. },
  47456. ]
  47457. ))
  47458. characterMakers.push(() => makeCharacter(
  47459. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47460. {
  47461. front: {
  47462. height: math.unit(30, "meters"),
  47463. weight: math.unit(363, "tons"),
  47464. name: "Front",
  47465. image: {
  47466. source: "./media/characters/ahra/front.svg",
  47467. extra: 1914/1814,
  47468. bottom: 46/1960
  47469. }
  47470. },
  47471. },
  47472. [
  47473. {
  47474. name: "Macro",
  47475. height: math.unit(30, "meters"),
  47476. default: true
  47477. },
  47478. ]
  47479. ))
  47480. characterMakers.push(() => makeCharacter(
  47481. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47482. {
  47483. undressed: {
  47484. height: math.unit(2, "m"),
  47485. weight: math.unit(250, "kg"),
  47486. name: "Undressed",
  47487. image: {
  47488. source: "./media/characters/coriander/undressed.svg",
  47489. extra: 1757/1606,
  47490. bottom: 107/1864
  47491. }
  47492. },
  47493. dressed: {
  47494. height: math.unit(2, "m"),
  47495. weight: math.unit(250, "kg"),
  47496. name: "Dressed",
  47497. image: {
  47498. source: "./media/characters/coriander/dressed.svg",
  47499. extra: 1757/1606,
  47500. bottom: 107/1864
  47501. }
  47502. },
  47503. },
  47504. [
  47505. {
  47506. name: "Normal",
  47507. height: math.unit(4, "meters"),
  47508. default: true
  47509. },
  47510. {
  47511. name: "XL",
  47512. height: math.unit(6, "meters")
  47513. },
  47514. {
  47515. name: "XXL",
  47516. height: math.unit(8, "meters")
  47517. },
  47518. ]
  47519. ))
  47520. characterMakers.push(() => makeCharacter(
  47521. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47522. {
  47523. front: {
  47524. height: math.unit(6, "feet"),
  47525. name: "Front",
  47526. image: {
  47527. source: "./media/characters/syrinx/front.svg",
  47528. extra: 1557/1259,
  47529. bottom: 171/1728
  47530. }
  47531. },
  47532. },
  47533. [
  47534. {
  47535. name: "Normal",
  47536. height: math.unit(6 + 3/12, "feet"),
  47537. default: true
  47538. },
  47539. ]
  47540. ))
  47541. characterMakers.push(() => makeCharacter(
  47542. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47543. {
  47544. front: {
  47545. height: math.unit(11 + 6/12, "feet"),
  47546. weight: math.unit(1.5, "tons"),
  47547. name: "Front",
  47548. image: {
  47549. source: "./media/characters/bor/front.svg",
  47550. extra: 1189/1109,
  47551. bottom: 170/1359
  47552. }
  47553. },
  47554. },
  47555. [
  47556. {
  47557. name: "Normal",
  47558. height: math.unit(11 + 6/12, "feet"),
  47559. default: true
  47560. },
  47561. {
  47562. name: "Macro",
  47563. height: math.unit(32 + 9/12, "feet")
  47564. },
  47565. ]
  47566. ))
  47567. characterMakers.push(() => makeCharacter(
  47568. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47569. {
  47570. anthro: {
  47571. height: math.unit(9, "feet"),
  47572. weight: math.unit(2076, "lb"),
  47573. name: "Anthro",
  47574. image: {
  47575. source: "./media/characters/abacus/anthro.svg",
  47576. extra: 1540/1494,
  47577. bottom: 233/1773
  47578. }
  47579. },
  47580. pigeon: {
  47581. height: math.unit(1, "feet"),
  47582. name: "Pigeon",
  47583. image: {
  47584. source: "./media/characters/abacus/pigeon.svg",
  47585. extra: 528/525,
  47586. bottom: 46/574
  47587. }
  47588. },
  47589. },
  47590. [
  47591. {
  47592. name: "Normal",
  47593. height: math.unit(9, "feet"),
  47594. default: true
  47595. },
  47596. ]
  47597. ))
  47598. characterMakers.push(() => makeCharacter(
  47599. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47600. {
  47601. side: {
  47602. height: math.unit(6, "feet"),
  47603. name: "Side",
  47604. image: {
  47605. source: "./media/characters/delkhan/side.svg",
  47606. extra: 1884/1786,
  47607. bottom: 308/2192
  47608. }
  47609. },
  47610. head: {
  47611. height: math.unit(3.38, "feet"),
  47612. name: "Head",
  47613. image: {
  47614. source: "./media/characters/delkhan/head.svg"
  47615. }
  47616. },
  47617. },
  47618. [
  47619. {
  47620. name: "Normal",
  47621. height: math.unit(72, "feet"),
  47622. default: true
  47623. },
  47624. {
  47625. name: "Giant",
  47626. height: math.unit(172, "feet")
  47627. },
  47628. ]
  47629. ))
  47630. characterMakers.push(() => makeCharacter(
  47631. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47632. {
  47633. standing: {
  47634. height: math.unit(6, "feet"),
  47635. name: "Standing",
  47636. image: {
  47637. source: "./media/characters/euchidat/standing.svg",
  47638. extra: 1612/1553,
  47639. bottom: 116/1728
  47640. }
  47641. },
  47642. leaning: {
  47643. height: math.unit(6, "feet"),
  47644. name: "Leaning",
  47645. image: {
  47646. source: "./media/characters/euchidat/leaning.svg",
  47647. extra: 1719/1674,
  47648. bottom: 27/1746
  47649. }
  47650. },
  47651. },
  47652. [
  47653. {
  47654. name: "Normal",
  47655. height: math.unit(175, "feet"),
  47656. default: true
  47657. },
  47658. {
  47659. name: "Megamacro",
  47660. height: math.unit(190, "miles")
  47661. },
  47662. {
  47663. name: "Gigamacro",
  47664. height: math.unit(190000, "miles")
  47665. },
  47666. ]
  47667. ))
  47668. characterMakers.push(() => makeCharacter(
  47669. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47670. {
  47671. front: {
  47672. height: math.unit(6, "feet"),
  47673. weight: math.unit(150, "lb"),
  47674. name: "Front",
  47675. image: {
  47676. source: "./media/characters/rebecca-stack/front.svg",
  47677. extra: 1256/1201,
  47678. bottom: 18/1274
  47679. }
  47680. },
  47681. },
  47682. [
  47683. {
  47684. name: "Normal",
  47685. height: math.unit(5 + 8/12, "feet"),
  47686. default: true
  47687. },
  47688. {
  47689. name: "Demolitionist",
  47690. height: math.unit(200, "feet")
  47691. },
  47692. {
  47693. name: "Out of Control",
  47694. height: math.unit(2, "miles")
  47695. },
  47696. {
  47697. name: "Giga",
  47698. height: math.unit(7200, "miles")
  47699. },
  47700. ]
  47701. ))
  47702. characterMakers.push(() => makeCharacter(
  47703. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47704. {
  47705. front: {
  47706. height: math.unit(6, "feet"),
  47707. weight: math.unit(150, "lb"),
  47708. name: "Front",
  47709. image: {
  47710. source: "./media/characters/jenny-cartwright/front.svg",
  47711. extra: 1384/1376,
  47712. bottom: 58/1442
  47713. }
  47714. },
  47715. },
  47716. [
  47717. {
  47718. name: "Normal",
  47719. height: math.unit(6 + 7/12, "feet"),
  47720. default: true
  47721. },
  47722. {
  47723. name: "Librarian",
  47724. height: math.unit(55, "feet")
  47725. },
  47726. {
  47727. name: "Sightseer",
  47728. height: math.unit(50, "miles")
  47729. },
  47730. {
  47731. name: "Giga",
  47732. height: math.unit(30000, "miles")
  47733. },
  47734. ]
  47735. ))
  47736. characterMakers.push(() => makeCharacter(
  47737. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47738. {
  47739. nude: {
  47740. height: math.unit(8, "feet"),
  47741. weight: math.unit(225, "lb"),
  47742. name: "Nude",
  47743. image: {
  47744. source: "./media/characters/marvy/nude.svg",
  47745. extra: 1900/1683,
  47746. bottom: 89/1989
  47747. }
  47748. },
  47749. dressed: {
  47750. height: math.unit(8, "feet"),
  47751. weight: math.unit(225, "lb"),
  47752. name: "Dressed",
  47753. image: {
  47754. source: "./media/characters/marvy/dressed.svg",
  47755. extra: 1900/1683,
  47756. bottom: 89/1989
  47757. }
  47758. },
  47759. head: {
  47760. height: math.unit(2.85, "feet"),
  47761. name: "Head",
  47762. image: {
  47763. source: "./media/characters/marvy/head.svg"
  47764. }
  47765. },
  47766. },
  47767. [
  47768. {
  47769. name: "Normal",
  47770. height: math.unit(8, "feet"),
  47771. default: true
  47772. },
  47773. ]
  47774. ))
  47775. characterMakers.push(() => makeCharacter(
  47776. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47777. {
  47778. front: {
  47779. height: math.unit(8, "feet"),
  47780. weight: math.unit(250, "lb"),
  47781. name: "Front",
  47782. image: {
  47783. source: "./media/characters/leah/front.svg",
  47784. extra: 1257/1149,
  47785. bottom: 109/1366
  47786. }
  47787. },
  47788. },
  47789. [
  47790. {
  47791. name: "Normal",
  47792. height: math.unit(8, "feet"),
  47793. default: true
  47794. },
  47795. {
  47796. name: "Minimacro",
  47797. height: math.unit(40, "feet")
  47798. },
  47799. {
  47800. name: "Macro",
  47801. height: math.unit(124, "feet")
  47802. },
  47803. {
  47804. name: "Megamacro",
  47805. height: math.unit(850, "feet")
  47806. },
  47807. ]
  47808. ))
  47809. characterMakers.push(() => makeCharacter(
  47810. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47811. {
  47812. side: {
  47813. height: math.unit(13 + 6/12, "feet"),
  47814. weight: math.unit(3200, "lb"),
  47815. name: "Side",
  47816. image: {
  47817. source: "./media/characters/alvir/side.svg",
  47818. extra: 896/589,
  47819. bottom: 26/922
  47820. }
  47821. },
  47822. },
  47823. [
  47824. {
  47825. name: "Normal",
  47826. height: math.unit(13 + 6/12, "feet"),
  47827. default: true
  47828. },
  47829. ]
  47830. ))
  47831. characterMakers.push(() => makeCharacter(
  47832. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47833. {
  47834. front: {
  47835. height: math.unit(5 + 4/12, "feet"),
  47836. weight: math.unit(236, "lb"),
  47837. name: "Front",
  47838. image: {
  47839. source: "./media/characters/zaina-khalil/front.svg",
  47840. extra: 1533/1485,
  47841. bottom: 94/1627
  47842. }
  47843. },
  47844. side: {
  47845. height: math.unit(5 + 4/12, "feet"),
  47846. weight: math.unit(236, "lb"),
  47847. name: "Side",
  47848. image: {
  47849. source: "./media/characters/zaina-khalil/side.svg",
  47850. extra: 1537/1498,
  47851. bottom: 66/1603
  47852. }
  47853. },
  47854. back: {
  47855. height: math.unit(5 + 4/12, "feet"),
  47856. weight: math.unit(236, "lb"),
  47857. name: "Back",
  47858. image: {
  47859. source: "./media/characters/zaina-khalil/back.svg",
  47860. extra: 1546/1494,
  47861. bottom: 89/1635
  47862. }
  47863. },
  47864. },
  47865. [
  47866. {
  47867. name: "Normal",
  47868. height: math.unit(5 + 4/12, "feet"),
  47869. default: true
  47870. },
  47871. ]
  47872. ))
  47873. characterMakers.push(() => makeCharacter(
  47874. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47875. {
  47876. side: {
  47877. height: math.unit(12, "feet"),
  47878. weight: math.unit(4000, "lb"),
  47879. name: "Side",
  47880. image: {
  47881. source: "./media/characters/terry/side.svg",
  47882. extra: 1518/1439,
  47883. bottom: 149/1667
  47884. }
  47885. },
  47886. },
  47887. [
  47888. {
  47889. name: "Normal",
  47890. height: math.unit(12, "feet"),
  47891. default: true
  47892. },
  47893. ]
  47894. ))
  47895. characterMakers.push(() => makeCharacter(
  47896. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47897. {
  47898. front: {
  47899. height: math.unit(12, "feet"),
  47900. weight: math.unit(1500, "lb"),
  47901. name: "Front",
  47902. image: {
  47903. source: "./media/characters/kahea/front.svg",
  47904. extra: 1722/1617,
  47905. bottom: 179/1901
  47906. }
  47907. },
  47908. },
  47909. [
  47910. {
  47911. name: "Normal",
  47912. height: math.unit(12, "feet"),
  47913. default: true
  47914. },
  47915. ]
  47916. ))
  47917. characterMakers.push(() => makeCharacter(
  47918. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47919. {
  47920. demonFront: {
  47921. height: math.unit(36, "feet"),
  47922. name: "Front",
  47923. image: {
  47924. source: "./media/characters/alex-xuria/demon-front.svg",
  47925. extra: 1705/1673,
  47926. bottom: 198/1903
  47927. },
  47928. form: "demon",
  47929. default: true
  47930. },
  47931. demonBack: {
  47932. height: math.unit(36, "feet"),
  47933. name: "Back",
  47934. image: {
  47935. source: "./media/characters/alex-xuria/demon-back.svg",
  47936. extra: 1725/1693,
  47937. bottom: 70/1795
  47938. },
  47939. form: "demon"
  47940. },
  47941. demonHead: {
  47942. height: math.unit(2.14, "meters"),
  47943. name: "Head",
  47944. image: {
  47945. source: "./media/characters/alex-xuria/demon-head.svg"
  47946. },
  47947. form: "demon"
  47948. },
  47949. demonHand: {
  47950. height: math.unit(1.61, "meters"),
  47951. name: "Hand",
  47952. image: {
  47953. source: "./media/characters/alex-xuria/demon-hand.svg"
  47954. },
  47955. form: "demon"
  47956. },
  47957. demonPaw: {
  47958. height: math.unit(1.35, "meters"),
  47959. name: "Paw",
  47960. image: {
  47961. source: "./media/characters/alex-xuria/demon-paw.svg"
  47962. },
  47963. form: "demon"
  47964. },
  47965. demonFoot: {
  47966. height: math.unit(2.2, "meters"),
  47967. name: "Foot",
  47968. image: {
  47969. source: "./media/characters/alex-xuria/demon-foot.svg"
  47970. },
  47971. form: "demon"
  47972. },
  47973. demonCock: {
  47974. height: math.unit(1.74, "meters"),
  47975. name: "Cock",
  47976. image: {
  47977. source: "./media/characters/alex-xuria/demon-cock.svg"
  47978. },
  47979. form: "demon"
  47980. },
  47981. demonTailClosed: {
  47982. height: math.unit(1.47, "meters"),
  47983. name: "Tail (Closed)",
  47984. image: {
  47985. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47986. },
  47987. form: "demon"
  47988. },
  47989. demonTailOpen: {
  47990. height: math.unit(2.85, "meters"),
  47991. name: "Tail (Open)",
  47992. image: {
  47993. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47994. },
  47995. form: "demon"
  47996. },
  47997. incubusFront: {
  47998. height: math.unit(12, "feet"),
  47999. name: "Front",
  48000. image: {
  48001. source: "./media/characters/alex-xuria/incubus-front.svg",
  48002. extra: 1754/1677,
  48003. bottom: 125/1879
  48004. },
  48005. form: "incubus",
  48006. default: true
  48007. },
  48008. incubusBack: {
  48009. height: math.unit(12, "feet"),
  48010. name: "Back",
  48011. image: {
  48012. source: "./media/characters/alex-xuria/incubus-back.svg",
  48013. extra: 1702/1647,
  48014. bottom: 30/1732
  48015. },
  48016. form: "incubus"
  48017. },
  48018. incubusHead: {
  48019. height: math.unit(3.45, "feet"),
  48020. name: "Head",
  48021. image: {
  48022. source: "./media/characters/alex-xuria/incubus-head.svg"
  48023. },
  48024. form: "incubus"
  48025. },
  48026. rabbitFront: {
  48027. height: math.unit(6, "feet"),
  48028. name: "Front",
  48029. image: {
  48030. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48031. extra: 1369/1349,
  48032. bottom: 45/1414
  48033. },
  48034. form: "rabbit",
  48035. default: true
  48036. },
  48037. rabbitSide: {
  48038. height: math.unit(6, "feet"),
  48039. name: "Side",
  48040. image: {
  48041. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48042. extra: 1370/1356,
  48043. bottom: 37/1407
  48044. },
  48045. form: "rabbit"
  48046. },
  48047. rabbitBack: {
  48048. height: math.unit(6, "feet"),
  48049. name: "Back",
  48050. image: {
  48051. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48052. extra: 1375/1358,
  48053. bottom: 43/1418
  48054. },
  48055. form: "rabbit"
  48056. },
  48057. },
  48058. [
  48059. {
  48060. name: "Normal",
  48061. height: math.unit(6, "feet"),
  48062. default: true,
  48063. form: "rabbit"
  48064. },
  48065. {
  48066. name: "Incubus",
  48067. height: math.unit(12, "feet"),
  48068. default: true,
  48069. form: "incubus"
  48070. },
  48071. {
  48072. name: "Demon",
  48073. height: math.unit(36, "feet"),
  48074. default: true,
  48075. form: "demon"
  48076. }
  48077. ],
  48078. {
  48079. "demon": {
  48080. name: "Demon",
  48081. default: true
  48082. },
  48083. "incubus": {
  48084. name: "Incubus",
  48085. },
  48086. "rabbit": {
  48087. name: "Rabbit"
  48088. }
  48089. }
  48090. ))
  48091. characterMakers.push(() => makeCharacter(
  48092. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48093. {
  48094. front: {
  48095. height: math.unit(7 + 5/12, "feet"),
  48096. weight: math.unit(510, "lb"),
  48097. name: "Front",
  48098. image: {
  48099. source: "./media/characters/syrup/front.svg",
  48100. extra: 932/916,
  48101. bottom: 26/958
  48102. }
  48103. },
  48104. },
  48105. [
  48106. {
  48107. name: "Normal",
  48108. height: math.unit(7 + 5/12, "feet"),
  48109. default: true
  48110. },
  48111. {
  48112. name: "Big",
  48113. height: math.unit(50, "feet")
  48114. },
  48115. {
  48116. name: "Macro",
  48117. height: math.unit(300, "feet")
  48118. },
  48119. {
  48120. name: "Megamacro",
  48121. height: math.unit(1, "mile")
  48122. },
  48123. ]
  48124. ))
  48125. characterMakers.push(() => makeCharacter(
  48126. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48127. {
  48128. front: {
  48129. height: math.unit(6 + 9/12, "feet"),
  48130. name: "Front",
  48131. image: {
  48132. source: "./media/characters/zeimne/front.svg",
  48133. extra: 1969/1806,
  48134. bottom: 53/2022
  48135. }
  48136. },
  48137. },
  48138. [
  48139. {
  48140. name: "Normal",
  48141. height: math.unit(6 + 9/12, "feet"),
  48142. default: true
  48143. },
  48144. {
  48145. name: "Giant",
  48146. height: math.unit(550, "feet")
  48147. },
  48148. {
  48149. name: "Mega",
  48150. height: math.unit(3, "miles")
  48151. },
  48152. {
  48153. name: "Giga",
  48154. height: math.unit(250, "miles")
  48155. },
  48156. {
  48157. name: "Tera",
  48158. height: math.unit(1, "AU")
  48159. },
  48160. ]
  48161. ))
  48162. characterMakers.push(() => makeCharacter(
  48163. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48164. {
  48165. front: {
  48166. height: math.unit(5 + 2/12, "feet"),
  48167. name: "Front",
  48168. image: {
  48169. source: "./media/characters/grar/front.svg",
  48170. extra: 1331/1119,
  48171. bottom: 60/1391
  48172. }
  48173. },
  48174. back: {
  48175. height: math.unit(5 + 2/12, "feet"),
  48176. name: "Back",
  48177. image: {
  48178. source: "./media/characters/grar/back.svg",
  48179. extra: 1385/1169,
  48180. bottom: 23/1408
  48181. }
  48182. },
  48183. },
  48184. [
  48185. {
  48186. name: "Normal",
  48187. height: math.unit(5 + 2/12, "feet"),
  48188. default: true
  48189. },
  48190. ]
  48191. ))
  48192. characterMakers.push(() => makeCharacter(
  48193. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48194. {
  48195. front: {
  48196. height: math.unit(13 + 7/12, "feet"),
  48197. weight: math.unit(2200, "lb"),
  48198. name: "Front",
  48199. image: {
  48200. source: "./media/characters/endraya/front.svg",
  48201. extra: 1289/1215,
  48202. bottom: 50/1339
  48203. }
  48204. },
  48205. nude: {
  48206. height: math.unit(13 + 7/12, "feet"),
  48207. weight: math.unit(2200, "lb"),
  48208. name: "Nude",
  48209. image: {
  48210. source: "./media/characters/endraya/nude.svg",
  48211. extra: 1247/1171,
  48212. bottom: 40/1287
  48213. }
  48214. },
  48215. head: {
  48216. height: math.unit(2.6, "feet"),
  48217. name: "Head",
  48218. image: {
  48219. source: "./media/characters/endraya/head.svg"
  48220. }
  48221. },
  48222. slit: {
  48223. height: math.unit(3.4, "feet"),
  48224. name: "Slit",
  48225. image: {
  48226. source: "./media/characters/endraya/slit.svg"
  48227. }
  48228. },
  48229. },
  48230. [
  48231. {
  48232. name: "Normal",
  48233. height: math.unit(13 + 7/12, "feet"),
  48234. default: true
  48235. },
  48236. {
  48237. name: "Macro",
  48238. height: math.unit(200, "feet")
  48239. },
  48240. ]
  48241. ))
  48242. characterMakers.push(() => makeCharacter(
  48243. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48244. {
  48245. front: {
  48246. height: math.unit(1.81, "meters"),
  48247. weight: math.unit(69, "kg"),
  48248. name: "Front",
  48249. image: {
  48250. source: "./media/characters/rodryana/front.svg",
  48251. extra: 2002/1921,
  48252. bottom: 53/2055
  48253. }
  48254. },
  48255. back: {
  48256. height: math.unit(1.81, "meters"),
  48257. weight: math.unit(69, "kg"),
  48258. name: "Back",
  48259. image: {
  48260. source: "./media/characters/rodryana/back.svg",
  48261. extra: 1993/1926,
  48262. bottom: 48/2041
  48263. }
  48264. },
  48265. maw: {
  48266. height: math.unit(0.19769417475, "meters"),
  48267. name: "Maw",
  48268. image: {
  48269. source: "./media/characters/rodryana/maw.svg"
  48270. }
  48271. },
  48272. slit: {
  48273. height: math.unit(0.31631067961, "meters"),
  48274. name: "Slit",
  48275. image: {
  48276. source: "./media/characters/rodryana/slit.svg"
  48277. }
  48278. },
  48279. },
  48280. [
  48281. {
  48282. name: "Normal",
  48283. height: math.unit(1.81, "meters")
  48284. },
  48285. {
  48286. name: "Mini Macro",
  48287. height: math.unit(181, "meters")
  48288. },
  48289. {
  48290. name: "Macro",
  48291. height: math.unit(452, "meters"),
  48292. default: true
  48293. },
  48294. {
  48295. name: "Mega Macro",
  48296. height: math.unit(1.375, "km")
  48297. },
  48298. {
  48299. name: "Giga Macro",
  48300. height: math.unit(13.575, "km")
  48301. },
  48302. ]
  48303. ))
  48304. characterMakers.push(() => makeCharacter(
  48305. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48306. {
  48307. front: {
  48308. height: math.unit(6, "feet"),
  48309. weight: math.unit(1000, "lb"),
  48310. name: "Front",
  48311. image: {
  48312. source: "./media/characters/asaya/front.svg",
  48313. extra: 1460/1200,
  48314. bottom: 71/1531
  48315. }
  48316. },
  48317. },
  48318. [
  48319. {
  48320. name: "Normal",
  48321. height: math.unit(8, "km"),
  48322. default: true
  48323. },
  48324. ]
  48325. ))
  48326. characterMakers.push(() => makeCharacter(
  48327. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48328. {
  48329. front: {
  48330. height: math.unit(3.5, "meters"),
  48331. name: "Front",
  48332. image: {
  48333. source: "./media/characters/sarzu-and-israz/front.svg",
  48334. extra: 1570/1558,
  48335. bottom: 150/1720
  48336. },
  48337. },
  48338. back: {
  48339. height: math.unit(3.5, "meters"),
  48340. name: "Back",
  48341. image: {
  48342. source: "./media/characters/sarzu-and-israz/back.svg",
  48343. extra: 1523/1509,
  48344. bottom: 132/1655
  48345. },
  48346. },
  48347. frontFemale: {
  48348. height: math.unit(3.5, "meters"),
  48349. name: "Front (Female)",
  48350. image: {
  48351. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48352. extra: 1570/1558,
  48353. bottom: 150/1720
  48354. },
  48355. },
  48356. frontHerm: {
  48357. height: math.unit(3.5, "meters"),
  48358. name: "Front (Herm)",
  48359. image: {
  48360. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48361. extra: 1570/1558,
  48362. bottom: 150/1720
  48363. },
  48364. },
  48365. },
  48366. [
  48367. {
  48368. name: "Normal",
  48369. height: math.unit(3.5, "meters"),
  48370. default: true,
  48371. },
  48372. {
  48373. name: "Macro",
  48374. height: math.unit(65.5, "meters"),
  48375. },
  48376. ],
  48377. ))
  48378. characterMakers.push(() => makeCharacter(
  48379. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48380. {
  48381. front: {
  48382. height: math.unit(6, "feet"),
  48383. weight: math.unit(250, "lb"),
  48384. name: "Front",
  48385. image: {
  48386. source: "./media/characters/zenimma/front.svg",
  48387. extra: 1346/1320,
  48388. bottom: 58/1404
  48389. }
  48390. },
  48391. back: {
  48392. height: math.unit(6, "feet"),
  48393. weight: math.unit(250, "lb"),
  48394. name: "Back",
  48395. image: {
  48396. source: "./media/characters/zenimma/back.svg",
  48397. extra: 1324/1308,
  48398. bottom: 44/1368
  48399. }
  48400. },
  48401. dick: {
  48402. height: math.unit(1.44, "feet"),
  48403. name: "Dick",
  48404. image: {
  48405. source: "./media/characters/zenimma/dick.svg"
  48406. }
  48407. },
  48408. },
  48409. [
  48410. {
  48411. name: "Canon Height",
  48412. height: math.unit(66, "miles"),
  48413. default: true
  48414. },
  48415. ]
  48416. ))
  48417. characterMakers.push(() => makeCharacter(
  48418. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48419. {
  48420. nude: {
  48421. height: math.unit(6, "feet"),
  48422. weight: math.unit(150, "lb"),
  48423. name: "Nude",
  48424. image: {
  48425. source: "./media/characters/shavon/nude.svg",
  48426. extra: 1242/1096,
  48427. bottom: 98/1340
  48428. }
  48429. },
  48430. dressed: {
  48431. height: math.unit(6, "feet"),
  48432. weight: math.unit(150, "lb"),
  48433. name: "Dressed",
  48434. image: {
  48435. source: "./media/characters/shavon/dressed.svg",
  48436. extra: 1242/1096,
  48437. bottom: 98/1340
  48438. }
  48439. },
  48440. },
  48441. [
  48442. {
  48443. name: "Macro",
  48444. height: math.unit(255, "feet"),
  48445. default: true
  48446. },
  48447. ]
  48448. ))
  48449. characterMakers.push(() => makeCharacter(
  48450. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48451. {
  48452. front: {
  48453. height: math.unit(6, "feet"),
  48454. name: "Front",
  48455. image: {
  48456. source: "./media/characters/steph/front.svg",
  48457. extra: 1430/1330,
  48458. bottom: 54/1484
  48459. }
  48460. },
  48461. },
  48462. [
  48463. {
  48464. name: "Normal",
  48465. height: math.unit(6, "feet"),
  48466. default: true
  48467. },
  48468. ]
  48469. ))
  48470. characterMakers.push(() => makeCharacter(
  48471. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48472. {
  48473. front: {
  48474. height: math.unit(9, "feet"),
  48475. weight: math.unit(400, "lb"),
  48476. name: "Front",
  48477. image: {
  48478. source: "./media/characters/kil'aman/front.svg",
  48479. extra: 1210/1159,
  48480. bottom: 109/1319
  48481. }
  48482. },
  48483. head: {
  48484. height: math.unit(2.14, "feet"),
  48485. name: "Head",
  48486. image: {
  48487. source: "./media/characters/kil'aman/head.svg"
  48488. }
  48489. },
  48490. maw: {
  48491. height: math.unit(1.21, "feet"),
  48492. name: "Maw",
  48493. image: {
  48494. source: "./media/characters/kil'aman/maw.svg"
  48495. }
  48496. },
  48497. foot: {
  48498. height: math.unit(1.7, "feet"),
  48499. name: "Foot",
  48500. image: {
  48501. source: "./media/characters/kil'aman/foot.svg"
  48502. }
  48503. },
  48504. dick: {
  48505. height: math.unit(2.1, "feet"),
  48506. name: "Dick",
  48507. image: {
  48508. source: "./media/characters/kil'aman/dick.svg"
  48509. }
  48510. },
  48511. },
  48512. [
  48513. {
  48514. name: "Normal",
  48515. height: math.unit(9, "feet")
  48516. },
  48517. {
  48518. name: "Canon Height",
  48519. height: math.unit(10, "miles"),
  48520. default: true
  48521. },
  48522. {
  48523. name: "Maximum",
  48524. height: math.unit(6e9, "miles")
  48525. },
  48526. ]
  48527. ))
  48528. characterMakers.push(() => makeCharacter(
  48529. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48530. {
  48531. front: {
  48532. height: math.unit(90, "feet"),
  48533. weight: math.unit(675000, "lb"),
  48534. name: "Front",
  48535. image: {
  48536. source: "./media/characters/qadan/front.svg",
  48537. extra: 1012/1004,
  48538. bottom: 78/1090
  48539. }
  48540. },
  48541. back: {
  48542. height: math.unit(90, "feet"),
  48543. weight: math.unit(675000, "lb"),
  48544. name: "Back",
  48545. image: {
  48546. source: "./media/characters/qadan/back.svg",
  48547. extra: 1042/1031,
  48548. bottom: 55/1097
  48549. }
  48550. },
  48551. armored: {
  48552. height: math.unit(90, "feet"),
  48553. weight: math.unit(675000, "lb"),
  48554. name: "Armored",
  48555. image: {
  48556. source: "./media/characters/qadan/armored.svg",
  48557. extra: 1047/1037,
  48558. bottom: 48/1095
  48559. }
  48560. },
  48561. },
  48562. [
  48563. {
  48564. name: "Normal",
  48565. height: math.unit(90, "feet"),
  48566. default: true
  48567. },
  48568. ]
  48569. ))
  48570. characterMakers.push(() => makeCharacter(
  48571. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48572. {
  48573. front: {
  48574. height: math.unit(6, "feet"),
  48575. weight: math.unit(225, "lb"),
  48576. name: "Front",
  48577. image: {
  48578. source: "./media/characters/brooke/front.svg",
  48579. extra: 1050/1010,
  48580. bottom: 66/1116
  48581. }
  48582. },
  48583. back: {
  48584. height: math.unit(6, "feet"),
  48585. weight: math.unit(225, "lb"),
  48586. name: "Back",
  48587. image: {
  48588. source: "./media/characters/brooke/back.svg",
  48589. extra: 1053/1013,
  48590. bottom: 41/1094
  48591. }
  48592. },
  48593. dressed: {
  48594. height: math.unit(6, "feet"),
  48595. weight: math.unit(225, "lb"),
  48596. name: "Dressed",
  48597. image: {
  48598. source: "./media/characters/brooke/dressed.svg",
  48599. extra: 1050/1010,
  48600. bottom: 66/1116
  48601. }
  48602. },
  48603. },
  48604. [
  48605. {
  48606. name: "Canon Height",
  48607. height: math.unit(500, "miles"),
  48608. default: true
  48609. },
  48610. ]
  48611. ))
  48612. characterMakers.push(() => makeCharacter(
  48613. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48614. {
  48615. front: {
  48616. height: math.unit(6 + 2/12, "feet"),
  48617. weight: math.unit(210, "lb"),
  48618. name: "Front",
  48619. image: {
  48620. source: "./media/characters/wubs/front.svg",
  48621. extra: 1345/1325,
  48622. bottom: 70/1415
  48623. }
  48624. },
  48625. back: {
  48626. height: math.unit(6 + 2/12, "feet"),
  48627. weight: math.unit(210, "lb"),
  48628. name: "Back",
  48629. image: {
  48630. source: "./media/characters/wubs/back.svg",
  48631. extra: 1296/1275,
  48632. bottom: 58/1354
  48633. }
  48634. },
  48635. },
  48636. [
  48637. {
  48638. name: "Normal",
  48639. height: math.unit(6 + 2/12, "feet"),
  48640. default: true
  48641. },
  48642. {
  48643. name: "Macro",
  48644. height: math.unit(1000, "feet")
  48645. },
  48646. {
  48647. name: "Megamacro",
  48648. height: math.unit(1, "mile")
  48649. },
  48650. ]
  48651. ))
  48652. characterMakers.push(() => makeCharacter(
  48653. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48654. {
  48655. front: {
  48656. height: math.unit(4, "feet"),
  48657. weight: math.unit(120, "lb"),
  48658. name: "Front",
  48659. image: {
  48660. source: "./media/characters/blue/front.svg",
  48661. extra: 1636/1525,
  48662. bottom: 43/1679
  48663. }
  48664. },
  48665. back: {
  48666. height: math.unit(4, "feet"),
  48667. weight: math.unit(120, "lb"),
  48668. name: "Back",
  48669. image: {
  48670. source: "./media/characters/blue/back.svg",
  48671. extra: 1660/1560,
  48672. bottom: 57/1717
  48673. }
  48674. },
  48675. paws: {
  48676. height: math.unit(0.826, "feet"),
  48677. name: "Paws",
  48678. image: {
  48679. source: "./media/characters/blue/paws.svg"
  48680. }
  48681. },
  48682. },
  48683. [
  48684. {
  48685. name: "Micro",
  48686. height: math.unit(3, "inches")
  48687. },
  48688. {
  48689. name: "Normal",
  48690. height: math.unit(4, "feet"),
  48691. default: true
  48692. },
  48693. {
  48694. name: "Femenine Form",
  48695. height: math.unit(14, "feet")
  48696. },
  48697. {
  48698. name: "Werebat Form",
  48699. height: math.unit(18, "feet")
  48700. },
  48701. ]
  48702. ))
  48703. characterMakers.push(() => makeCharacter(
  48704. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48705. {
  48706. female: {
  48707. height: math.unit(7 + 4/12, "feet"),
  48708. weight: math.unit(243, "lb"),
  48709. name: "Female",
  48710. image: {
  48711. source: "./media/characters/kaya/female.svg",
  48712. extra: 975/898,
  48713. bottom: 34/1009
  48714. }
  48715. },
  48716. herm: {
  48717. height: math.unit(7 + 4/12, "feet"),
  48718. weight: math.unit(243, "lb"),
  48719. name: "Herm",
  48720. image: {
  48721. source: "./media/characters/kaya/herm.svg",
  48722. extra: 975/898,
  48723. bottom: 34/1009
  48724. }
  48725. },
  48726. },
  48727. [
  48728. {
  48729. name: "Normal",
  48730. height: math.unit(7 + 4/12, "feet"),
  48731. default: true
  48732. },
  48733. ]
  48734. ))
  48735. characterMakers.push(() => makeCharacter(
  48736. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48737. {
  48738. female: {
  48739. height: math.unit(9 + 4/12, "feet"),
  48740. weight: math.unit(398, "lb"),
  48741. name: "Female",
  48742. image: {
  48743. source: "./media/characters/kassandra/female.svg",
  48744. extra: 908/839,
  48745. bottom: 61/969
  48746. }
  48747. },
  48748. intersex: {
  48749. height: math.unit(9 + 4/12, "feet"),
  48750. weight: math.unit(398, "lb"),
  48751. name: "Intersex",
  48752. image: {
  48753. source: "./media/characters/kassandra/intersex.svg",
  48754. extra: 908/839,
  48755. bottom: 61/969
  48756. }
  48757. },
  48758. },
  48759. [
  48760. {
  48761. name: "Normal",
  48762. height: math.unit(9 + 4/12, "feet"),
  48763. default: true
  48764. },
  48765. ]
  48766. ))
  48767. characterMakers.push(() => makeCharacter(
  48768. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48769. {
  48770. front: {
  48771. height: math.unit(3, "meters"),
  48772. name: "Front",
  48773. image: {
  48774. source: "./media/characters/amy/front.svg",
  48775. extra: 1380/1343,
  48776. bottom: 70/1450
  48777. }
  48778. },
  48779. back: {
  48780. height: math.unit(3, "meters"),
  48781. name: "Back",
  48782. image: {
  48783. source: "./media/characters/amy/back.svg",
  48784. extra: 1380/1347,
  48785. bottom: 66/1446
  48786. }
  48787. },
  48788. },
  48789. [
  48790. {
  48791. name: "Normal",
  48792. height: math.unit(3, "meters"),
  48793. default: true
  48794. },
  48795. ]
  48796. ))
  48797. characterMakers.push(() => makeCharacter(
  48798. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48799. {
  48800. side: {
  48801. height: math.unit(47, "cm"),
  48802. weight: math.unit(10.8, "kg"),
  48803. name: "Side",
  48804. image: {
  48805. source: "./media/characters/alphaschakal/side.svg",
  48806. extra: 1058/568,
  48807. bottom: 62/1120
  48808. }
  48809. },
  48810. back: {
  48811. height: math.unit(78, "cm"),
  48812. weight: math.unit(10.8, "kg"),
  48813. name: "Back",
  48814. image: {
  48815. source: "./media/characters/alphaschakal/back.svg",
  48816. extra: 1102/942,
  48817. bottom: 185/1287
  48818. }
  48819. },
  48820. head: {
  48821. height: math.unit(28, "cm"),
  48822. name: "Head",
  48823. image: {
  48824. source: "./media/characters/alphaschakal/head.svg",
  48825. extra: 696/508,
  48826. bottom: 0/696
  48827. }
  48828. },
  48829. paw: {
  48830. height: math.unit(16, "cm"),
  48831. name: "Paw",
  48832. image: {
  48833. source: "./media/characters/alphaschakal/paw.svg"
  48834. }
  48835. },
  48836. },
  48837. [
  48838. {
  48839. name: "Normal",
  48840. height: math.unit(47, "cm"),
  48841. default: true
  48842. },
  48843. {
  48844. name: "Macro",
  48845. height: math.unit(340, "cm")
  48846. },
  48847. ]
  48848. ))
  48849. characterMakers.push(() => makeCharacter(
  48850. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48851. {
  48852. front: {
  48853. height: math.unit(36, "earths"),
  48854. name: "Front",
  48855. image: {
  48856. source: "./media/characters/ecobyss/front.svg",
  48857. extra: 1282/1215,
  48858. bottom: 11/1293
  48859. }
  48860. },
  48861. back: {
  48862. height: math.unit(36, "earths"),
  48863. name: "Back",
  48864. image: {
  48865. source: "./media/characters/ecobyss/back.svg",
  48866. extra: 1291/1222,
  48867. bottom: 8/1299
  48868. }
  48869. },
  48870. },
  48871. [
  48872. {
  48873. name: "Normal",
  48874. height: math.unit(36, "earths"),
  48875. default: true
  48876. },
  48877. ]
  48878. ))
  48879. characterMakers.push(() => makeCharacter(
  48880. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48881. {
  48882. front: {
  48883. height: math.unit(12, "feet"),
  48884. name: "Front",
  48885. image: {
  48886. source: "./media/characters/vasuk/front.svg",
  48887. extra: 1326/1207,
  48888. bottom: 64/1390
  48889. }
  48890. },
  48891. },
  48892. [
  48893. {
  48894. name: "Normal",
  48895. height: math.unit(12, "feet"),
  48896. default: true
  48897. },
  48898. ]
  48899. ))
  48900. characterMakers.push(() => makeCharacter(
  48901. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48902. {
  48903. side: {
  48904. height: math.unit(100, "feet"),
  48905. name: "Side",
  48906. image: {
  48907. source: "./media/characters/linneaus/side.svg",
  48908. extra: 987/807,
  48909. bottom: 47/1034
  48910. }
  48911. },
  48912. },
  48913. [
  48914. {
  48915. name: "Macro",
  48916. height: math.unit(100, "feet"),
  48917. default: true
  48918. },
  48919. ]
  48920. ))
  48921. characterMakers.push(() => makeCharacter(
  48922. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48923. {
  48924. front: {
  48925. height: math.unit(8, "feet"),
  48926. weight: math.unit(1200, "lb"),
  48927. name: "Front",
  48928. image: {
  48929. source: "./media/characters/nyterious-daligdig/front.svg",
  48930. extra: 1284/1094,
  48931. bottom: 84/1368
  48932. }
  48933. },
  48934. back: {
  48935. height: math.unit(8, "feet"),
  48936. weight: math.unit(1200, "lb"),
  48937. name: "Back",
  48938. image: {
  48939. source: "./media/characters/nyterious-daligdig/back.svg",
  48940. extra: 1301/1121,
  48941. bottom: 129/1430
  48942. }
  48943. },
  48944. mouth: {
  48945. height: math.unit(1.464, "feet"),
  48946. name: "Mouth",
  48947. image: {
  48948. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48949. }
  48950. },
  48951. },
  48952. [
  48953. {
  48954. name: "Small",
  48955. height: math.unit(8, "feet"),
  48956. default: true
  48957. },
  48958. {
  48959. name: "Normal",
  48960. height: math.unit(15, "feet")
  48961. },
  48962. {
  48963. name: "Macro",
  48964. height: math.unit(90, "feet")
  48965. },
  48966. ]
  48967. ))
  48968. characterMakers.push(() => makeCharacter(
  48969. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48970. {
  48971. front: {
  48972. height: math.unit(7 + 4/12, "feet"),
  48973. weight: math.unit(252, "lb"),
  48974. name: "Front",
  48975. image: {
  48976. source: "./media/characters/bandel/front.svg",
  48977. extra: 1946/1775,
  48978. bottom: 26/1972
  48979. }
  48980. },
  48981. back: {
  48982. height: math.unit(7 + 4/12, "feet"),
  48983. weight: math.unit(252, "lb"),
  48984. name: "Back",
  48985. image: {
  48986. source: "./media/characters/bandel/back.svg",
  48987. extra: 1940/1770,
  48988. bottom: 25/1965
  48989. }
  48990. },
  48991. maw: {
  48992. height: math.unit(2.15, "feet"),
  48993. name: "Maw",
  48994. image: {
  48995. source: "./media/characters/bandel/maw.svg"
  48996. }
  48997. },
  48998. stomach: {
  48999. height: math.unit(1.95, "feet"),
  49000. name: "Stomach",
  49001. image: {
  49002. source: "./media/characters/bandel/stomach.svg"
  49003. }
  49004. },
  49005. },
  49006. [
  49007. {
  49008. name: "Normal",
  49009. height: math.unit(7 + 4/12, "feet"),
  49010. default: true
  49011. },
  49012. ]
  49013. ))
  49014. characterMakers.push(() => makeCharacter(
  49015. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49016. {
  49017. front: {
  49018. height: math.unit(10 + 5/12, "feet"),
  49019. weight: math.unit(773.5, "kg"),
  49020. name: "Front",
  49021. image: {
  49022. source: "./media/characters/zed/front.svg",
  49023. extra: 987/941,
  49024. bottom: 52/1039
  49025. }
  49026. },
  49027. },
  49028. [
  49029. {
  49030. name: "Short",
  49031. height: math.unit(5 + 4/12, "feet")
  49032. },
  49033. {
  49034. name: "Average",
  49035. height: math.unit(10 + 5/12, "feet"),
  49036. default: true
  49037. },
  49038. {
  49039. name: "Mini-Macro",
  49040. height: math.unit(24 + 9/12, "feet")
  49041. },
  49042. {
  49043. name: "Macro",
  49044. height: math.unit(249, "feet")
  49045. },
  49046. {
  49047. name: "Mega-Macro",
  49048. height: math.unit(12490, "feet")
  49049. },
  49050. {
  49051. name: "Giga-Macro",
  49052. height: math.unit(24.9, "miles")
  49053. },
  49054. {
  49055. name: "Tera-Macro",
  49056. height: math.unit(24900, "miles")
  49057. },
  49058. {
  49059. name: "Cosmic Scale",
  49060. height: math.unit(38.9, "lightyears")
  49061. },
  49062. {
  49063. name: "Universal Scale",
  49064. height: math.unit(138e12, "lightyears")
  49065. },
  49066. ]
  49067. ))
  49068. characterMakers.push(() => makeCharacter(
  49069. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49070. {
  49071. front: {
  49072. height: math.unit(1561, "inches"),
  49073. name: "Front",
  49074. image: {
  49075. source: "./media/characters/ivan/front.svg",
  49076. extra: 1126/1071,
  49077. bottom: 26/1152
  49078. }
  49079. },
  49080. back: {
  49081. height: math.unit(1561, "inches"),
  49082. name: "Back",
  49083. image: {
  49084. source: "./media/characters/ivan/back.svg",
  49085. extra: 1134/1079,
  49086. bottom: 30/1164
  49087. }
  49088. },
  49089. },
  49090. [
  49091. {
  49092. name: "Normal",
  49093. height: math.unit(1561, "inches"),
  49094. default: true
  49095. },
  49096. ]
  49097. ))
  49098. characterMakers.push(() => makeCharacter(
  49099. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49100. {
  49101. front: {
  49102. height: math.unit(5 + 7/12, "feet"),
  49103. weight: math.unit(150, "lb"),
  49104. name: "Front",
  49105. image: {
  49106. source: "./media/characters/robin-arctic-hare/front.svg",
  49107. extra: 1148/974,
  49108. bottom: 20/1168
  49109. }
  49110. },
  49111. },
  49112. [
  49113. {
  49114. name: "Normal",
  49115. height: math.unit(5 + 7/12, "feet"),
  49116. default: true
  49117. },
  49118. ]
  49119. ))
  49120. characterMakers.push(() => makeCharacter(
  49121. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49122. {
  49123. side: {
  49124. height: math.unit(5, "feet"),
  49125. name: "Side",
  49126. image: {
  49127. source: "./media/characters/birch/side.svg",
  49128. extra: 985/796,
  49129. bottom: 111/1096
  49130. }
  49131. },
  49132. },
  49133. [
  49134. {
  49135. name: "Normal",
  49136. height: math.unit(5, "feet"),
  49137. default: true
  49138. },
  49139. ]
  49140. ))
  49141. characterMakers.push(() => makeCharacter(
  49142. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49143. {
  49144. front: {
  49145. height: math.unit(4, "feet"),
  49146. name: "Front",
  49147. image: {
  49148. source: "./media/characters/rasp/front.svg",
  49149. extra: 561/478,
  49150. bottom: 74/635
  49151. }
  49152. },
  49153. },
  49154. [
  49155. {
  49156. name: "Normal",
  49157. height: math.unit(4, "feet"),
  49158. default: true
  49159. },
  49160. ]
  49161. ))
  49162. characterMakers.push(() => makeCharacter(
  49163. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49164. {
  49165. front: {
  49166. height: math.unit(4 + 6/12, "feet"),
  49167. name: "Front",
  49168. image: {
  49169. source: "./media/characters/agatha/front.svg",
  49170. extra: 947/933,
  49171. bottom: 42/989
  49172. }
  49173. },
  49174. back: {
  49175. height: math.unit(4 + 6/12, "feet"),
  49176. name: "Back",
  49177. image: {
  49178. source: "./media/characters/agatha/back.svg",
  49179. extra: 935/922,
  49180. bottom: 48/983
  49181. }
  49182. },
  49183. },
  49184. [
  49185. {
  49186. name: "Normal",
  49187. height: math.unit(4 + 6 /12, "feet"),
  49188. default: true
  49189. },
  49190. {
  49191. name: "Max Size",
  49192. height: math.unit(500, "feet")
  49193. },
  49194. ]
  49195. ))
  49196. characterMakers.push(() => makeCharacter(
  49197. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49198. {
  49199. side: {
  49200. height: math.unit(30, "feet"),
  49201. name: "Side",
  49202. image: {
  49203. source: "./media/characters/roggy/side.svg",
  49204. extra: 909/643,
  49205. bottom: 63/972
  49206. }
  49207. },
  49208. lounging: {
  49209. height: math.unit(20, "feet"),
  49210. name: "Lounging",
  49211. image: {
  49212. source: "./media/characters/roggy/lounging.svg",
  49213. extra: 643/479,
  49214. bottom: 145/788
  49215. }
  49216. },
  49217. handpaw: {
  49218. height: math.unit(13.1, "feet"),
  49219. name: "Handpaw",
  49220. image: {
  49221. source: "./media/characters/roggy/handpaw.svg"
  49222. }
  49223. },
  49224. footpaw: {
  49225. height: math.unit(15.8, "feet"),
  49226. name: "Footpaw",
  49227. image: {
  49228. source: "./media/characters/roggy/footpaw.svg"
  49229. }
  49230. },
  49231. },
  49232. [
  49233. {
  49234. name: "Menacing",
  49235. height: math.unit(30, "feet"),
  49236. default: true
  49237. },
  49238. ]
  49239. ))
  49240. characterMakers.push(() => makeCharacter(
  49241. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49242. {
  49243. front: {
  49244. height: math.unit(5 + 7/12, "feet"),
  49245. weight: math.unit(135, "lb"),
  49246. name: "Front",
  49247. image: {
  49248. source: "./media/characters/naomi/front.svg",
  49249. extra: 1209/1154,
  49250. bottom: 129/1338
  49251. }
  49252. },
  49253. back: {
  49254. height: math.unit(5 + 7/12, "feet"),
  49255. weight: math.unit(135, "lb"),
  49256. name: "Back",
  49257. image: {
  49258. source: "./media/characters/naomi/back.svg",
  49259. extra: 1252/1190,
  49260. bottom: 23/1275
  49261. }
  49262. },
  49263. },
  49264. [
  49265. {
  49266. name: "Normal",
  49267. height: math.unit(5 + 7 /12, "feet"),
  49268. default: true
  49269. },
  49270. ]
  49271. ))
  49272. characterMakers.push(() => makeCharacter(
  49273. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49274. {
  49275. side: {
  49276. height: math.unit(35, "meters"),
  49277. name: "Side",
  49278. image: {
  49279. source: "./media/characters/kimpi/side.svg",
  49280. extra: 419/382,
  49281. bottom: 63/482
  49282. }
  49283. },
  49284. hand: {
  49285. height: math.unit(8.96, "meters"),
  49286. name: "Hand",
  49287. image: {
  49288. source: "./media/characters/kimpi/hand.svg"
  49289. }
  49290. },
  49291. },
  49292. [
  49293. {
  49294. name: "Normal",
  49295. height: math.unit(35, "meters"),
  49296. default: true
  49297. },
  49298. ]
  49299. ))
  49300. characterMakers.push(() => makeCharacter(
  49301. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49302. {
  49303. front: {
  49304. height: math.unit(4 + 4/12, "feet"),
  49305. name: "Front",
  49306. image: {
  49307. source: "./media/characters/pepper-purrloin/front.svg",
  49308. extra: 1141/1024,
  49309. bottom: 21/1162
  49310. }
  49311. },
  49312. },
  49313. [
  49314. {
  49315. name: "Normal",
  49316. height: math.unit(4 + 4/12, "feet"),
  49317. default: true
  49318. },
  49319. ]
  49320. ))
  49321. characterMakers.push(() => makeCharacter(
  49322. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49323. {
  49324. front: {
  49325. height: math.unit(6 + 2/12, "feet"),
  49326. name: "Front",
  49327. image: {
  49328. source: "./media/characters/raphael/front.svg",
  49329. extra: 1101/962,
  49330. bottom: 59/1160
  49331. }
  49332. },
  49333. },
  49334. [
  49335. {
  49336. name: "Normal",
  49337. height: math.unit(6 + 2/12, "feet"),
  49338. default: true
  49339. },
  49340. ]
  49341. ))
  49342. characterMakers.push(() => makeCharacter(
  49343. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49344. {
  49345. front: {
  49346. height: math.unit(6, "feet"),
  49347. weight: math.unit(150, "lb"),
  49348. name: "Front",
  49349. image: {
  49350. source: "./media/characters/victor-williams/front.svg",
  49351. extra: 1894/1825,
  49352. bottom: 67/1961
  49353. }
  49354. },
  49355. },
  49356. [
  49357. {
  49358. name: "Normal",
  49359. height: math.unit(6, "feet"),
  49360. default: true
  49361. },
  49362. ]
  49363. ))
  49364. characterMakers.push(() => makeCharacter(
  49365. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49366. {
  49367. front: {
  49368. height: math.unit(5 + 8/12, "feet"),
  49369. weight: math.unit(150, "lb"),
  49370. name: "Front",
  49371. image: {
  49372. source: "./media/characters/rachel/front.svg",
  49373. extra: 1902/1787,
  49374. bottom: 46/1948
  49375. }
  49376. },
  49377. },
  49378. [
  49379. {
  49380. name: "Base Height",
  49381. height: math.unit(5 + 8/12, "feet"),
  49382. default: true
  49383. },
  49384. {
  49385. name: "Macro",
  49386. height: math.unit(200, "feet")
  49387. },
  49388. {
  49389. name: "Mega Macro",
  49390. height: math.unit(1, "mile")
  49391. },
  49392. {
  49393. name: "Giga Macro",
  49394. height: math.unit(1500, "miles")
  49395. },
  49396. {
  49397. name: "Tera Macro",
  49398. height: math.unit(8000, "miles")
  49399. },
  49400. {
  49401. name: "Tera Macro+",
  49402. height: math.unit(2e5, "miles")
  49403. },
  49404. ]
  49405. ))
  49406. characterMakers.push(() => makeCharacter(
  49407. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49408. {
  49409. front: {
  49410. height: math.unit(6.5, "feet"),
  49411. name: "Front",
  49412. image: {
  49413. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49414. extra: 860/819,
  49415. bottom: 307/1167
  49416. }
  49417. },
  49418. back: {
  49419. height: math.unit(6.5, "feet"),
  49420. name: "Back",
  49421. image: {
  49422. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49423. extra: 880/837,
  49424. bottom: 395/1275
  49425. }
  49426. },
  49427. sleeping: {
  49428. height: math.unit(2.79, "feet"),
  49429. name: "Sleeping",
  49430. image: {
  49431. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49432. extra: 465/383,
  49433. bottom: 263/728
  49434. }
  49435. },
  49436. maw: {
  49437. height: math.unit(2.52, "feet"),
  49438. name: "Maw",
  49439. image: {
  49440. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49441. }
  49442. },
  49443. },
  49444. [
  49445. {
  49446. name: "Normal",
  49447. height: math.unit(6.5, "feet"),
  49448. default: true
  49449. },
  49450. ]
  49451. ))
  49452. characterMakers.push(() => makeCharacter(
  49453. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49454. {
  49455. front: {
  49456. height: math.unit(5, "feet"),
  49457. name: "Front",
  49458. image: {
  49459. source: "./media/characters/nova-nerium/front.svg",
  49460. extra: 1548/1392,
  49461. bottom: 374/1922
  49462. }
  49463. },
  49464. back: {
  49465. height: math.unit(5, "feet"),
  49466. name: "Back",
  49467. image: {
  49468. source: "./media/characters/nova-nerium/back.svg",
  49469. extra: 1658/1468,
  49470. bottom: 257/1915
  49471. }
  49472. },
  49473. },
  49474. [
  49475. {
  49476. name: "Normal",
  49477. height: math.unit(5, "feet"),
  49478. default: true
  49479. },
  49480. ]
  49481. ))
  49482. characterMakers.push(() => makeCharacter(
  49483. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49484. {
  49485. front: {
  49486. height: math.unit(5 + 4/12, "feet"),
  49487. name: "Front",
  49488. image: {
  49489. source: "./media/characters/ashe-pyriph/front.svg",
  49490. extra: 1935/1747,
  49491. bottom: 60/1995
  49492. }
  49493. },
  49494. },
  49495. [
  49496. {
  49497. name: "Normal",
  49498. height: math.unit(5 + 4/12, "feet"),
  49499. default: true
  49500. },
  49501. ]
  49502. ))
  49503. characterMakers.push(() => makeCharacter(
  49504. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49505. {
  49506. front: {
  49507. height: math.unit(8.7, "feet"),
  49508. name: "Front",
  49509. image: {
  49510. source: "./media/characters/flicker-wisp/front.svg",
  49511. extra: 1835/1613,
  49512. bottom: 449/2284
  49513. }
  49514. },
  49515. side: {
  49516. height: math.unit(8.7, "feet"),
  49517. name: "Side",
  49518. image: {
  49519. source: "./media/characters/flicker-wisp/side.svg",
  49520. extra: 1841/1642,
  49521. bottom: 336/2177
  49522. },
  49523. default: true
  49524. },
  49525. maw: {
  49526. height: math.unit(3.35, "feet"),
  49527. name: "Maw",
  49528. image: {
  49529. source: "./media/characters/flicker-wisp/maw.svg",
  49530. extra: 2338/1506,
  49531. bottom: 0/2338
  49532. }
  49533. },
  49534. ovipositor: {
  49535. height: math.unit(4.95, "feet"),
  49536. name: "Ovipositor",
  49537. image: {
  49538. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49539. }
  49540. },
  49541. egg: {
  49542. height: math.unit(0.385, "feet"),
  49543. weight: math.unit(2, "lb"),
  49544. name: "Egg",
  49545. image: {
  49546. source: "./media/characters/flicker-wisp/egg.svg"
  49547. }
  49548. },
  49549. },
  49550. [
  49551. {
  49552. name: "Normal",
  49553. height: math.unit(8.7, "feet"),
  49554. default: true
  49555. },
  49556. ]
  49557. ))
  49558. characterMakers.push(() => makeCharacter(
  49559. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49560. {
  49561. side: {
  49562. height: math.unit(11, "feet"),
  49563. name: "Side",
  49564. image: {
  49565. source: "./media/characters/faefnul/side.svg",
  49566. extra: 1100/1007,
  49567. bottom: 0/1100
  49568. }
  49569. },
  49570. },
  49571. [
  49572. {
  49573. name: "Normal",
  49574. height: math.unit(11, "feet"),
  49575. default: true
  49576. },
  49577. ]
  49578. ))
  49579. characterMakers.push(() => makeCharacter(
  49580. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49581. {
  49582. front: {
  49583. height: math.unit(6 + 2/12, "feet"),
  49584. name: "Front",
  49585. image: {
  49586. source: "./media/characters/shady/front.svg",
  49587. extra: 502/461,
  49588. bottom: 9/511
  49589. }
  49590. },
  49591. kneeling: {
  49592. height: math.unit(4.6, "feet"),
  49593. name: "Kneeling",
  49594. image: {
  49595. source: "./media/characters/shady/kneeling.svg",
  49596. extra: 1328/1219,
  49597. bottom: 117/1445
  49598. }
  49599. },
  49600. maw: {
  49601. height: math.unit(2, "feet"),
  49602. name: "Maw",
  49603. image: {
  49604. source: "./media/characters/shady/maw.svg"
  49605. }
  49606. },
  49607. },
  49608. [
  49609. {
  49610. name: "Nano",
  49611. height: math.unit(1, "mm")
  49612. },
  49613. {
  49614. name: "Micro",
  49615. height: math.unit(12, "mm")
  49616. },
  49617. {
  49618. name: "Tiny",
  49619. height: math.unit(3, "inches")
  49620. },
  49621. {
  49622. name: "Normal",
  49623. height: math.unit(6 + 2/12, "feet"),
  49624. default: true
  49625. },
  49626. {
  49627. name: "Big",
  49628. height: math.unit(15, "feet")
  49629. },
  49630. {
  49631. name: "Macro",
  49632. height: math.unit(150, "feet")
  49633. },
  49634. {
  49635. name: "Titanic",
  49636. height: math.unit(500, "feet")
  49637. },
  49638. ]
  49639. ))
  49640. characterMakers.push(() => makeCharacter(
  49641. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49642. {
  49643. front: {
  49644. height: math.unit(12, "feet"),
  49645. name: "Front",
  49646. image: {
  49647. source: "./media/characters/fenrir/front.svg",
  49648. extra: 968/875,
  49649. bottom: 22/990
  49650. }
  49651. },
  49652. },
  49653. [
  49654. {
  49655. name: "Big",
  49656. height: math.unit(12, "feet"),
  49657. default: true
  49658. },
  49659. ]
  49660. ))
  49661. characterMakers.push(() => makeCharacter(
  49662. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49663. {
  49664. front: {
  49665. height: math.unit(5 + 4/12, "feet"),
  49666. name: "Front",
  49667. image: {
  49668. source: "./media/characters/makar/front.svg",
  49669. extra: 1181/1112,
  49670. bottom: 78/1259
  49671. }
  49672. },
  49673. },
  49674. [
  49675. {
  49676. name: "Normal",
  49677. height: math.unit(5 + 4/12, "feet"),
  49678. default: true
  49679. },
  49680. ]
  49681. ))
  49682. characterMakers.push(() => makeCharacter(
  49683. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49684. {
  49685. front: {
  49686. height: math.unit(5 + 7/12, "feet"),
  49687. name: "Front",
  49688. image: {
  49689. source: "./media/characters/callow/front.svg",
  49690. extra: 1482/1304,
  49691. bottom: 23/1505
  49692. }
  49693. },
  49694. back: {
  49695. height: math.unit(5 + 7/12, "feet"),
  49696. name: "Back",
  49697. image: {
  49698. source: "./media/characters/callow/back.svg",
  49699. extra: 1484/1296,
  49700. bottom: 25/1509
  49701. }
  49702. },
  49703. },
  49704. [
  49705. {
  49706. name: "Micro",
  49707. height: math.unit(3, "inches"),
  49708. default: true
  49709. },
  49710. {
  49711. name: "Normal",
  49712. height: math.unit(5 + 7/12, "feet")
  49713. },
  49714. ]
  49715. ))
  49716. characterMakers.push(() => makeCharacter(
  49717. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49718. {
  49719. front: {
  49720. height: math.unit(6 + 2/12, "feet"),
  49721. name: "Front",
  49722. image: {
  49723. source: "./media/characters/natel/front.svg",
  49724. extra: 1833/1692,
  49725. bottom: 166/1999
  49726. }
  49727. },
  49728. },
  49729. [
  49730. {
  49731. name: "Normal",
  49732. height: math.unit(6 + 2/12, "feet"),
  49733. default: true
  49734. },
  49735. ]
  49736. ))
  49737. characterMakers.push(() => makeCharacter(
  49738. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49739. {
  49740. front: {
  49741. height: math.unit(1.75, "meters"),
  49742. name: "Front",
  49743. image: {
  49744. source: "./media/characters/misu/front.svg",
  49745. extra: 1690/1558,
  49746. bottom: 234/1924
  49747. }
  49748. },
  49749. back: {
  49750. height: math.unit(1.75, "meters"),
  49751. name: "Back",
  49752. image: {
  49753. source: "./media/characters/misu/back.svg",
  49754. extra: 1762/1618,
  49755. bottom: 146/1908
  49756. }
  49757. },
  49758. frontNude: {
  49759. height: math.unit(1.75, "meters"),
  49760. name: "Front (Nude)",
  49761. image: {
  49762. source: "./media/characters/misu/front-nude.svg",
  49763. extra: 1690/1558,
  49764. bottom: 234/1924
  49765. }
  49766. },
  49767. backNude: {
  49768. height: math.unit(1.75, "meters"),
  49769. name: "Back (Nude)",
  49770. image: {
  49771. source: "./media/characters/misu/back-nude.svg",
  49772. extra: 1762/1618,
  49773. bottom: 146/1908
  49774. }
  49775. },
  49776. frontErect: {
  49777. height: math.unit(1.75, "meters"),
  49778. name: "Front (Erect)",
  49779. image: {
  49780. source: "./media/characters/misu/front-erect.svg",
  49781. extra: 1690/1558,
  49782. bottom: 234/1924
  49783. }
  49784. },
  49785. maw: {
  49786. height: math.unit(0.47, "meters"),
  49787. name: "Maw",
  49788. image: {
  49789. source: "./media/characters/misu/maw.svg"
  49790. }
  49791. },
  49792. head: {
  49793. height: math.unit(0.35, "meters"),
  49794. name: "Head",
  49795. image: {
  49796. source: "./media/characters/misu/head.svg"
  49797. }
  49798. },
  49799. rear: {
  49800. height: math.unit(0.47, "meters"),
  49801. name: "Rear",
  49802. image: {
  49803. source: "./media/characters/misu/rear.svg"
  49804. }
  49805. },
  49806. },
  49807. [
  49808. {
  49809. name: "Normal",
  49810. height: math.unit(1.75, "meters")
  49811. },
  49812. {
  49813. name: "Not good for the people",
  49814. height: math.unit(42, "meters")
  49815. },
  49816. {
  49817. name: "Not good for the neighborhood",
  49818. height: math.unit(135, "meters")
  49819. },
  49820. {
  49821. name: "Bit bigger problem",
  49822. height: math.unit(380, "meters"),
  49823. default: true
  49824. },
  49825. {
  49826. name: "Not good for the city",
  49827. height: math.unit(1.5, "km")
  49828. },
  49829. {
  49830. name: "Not good for the county",
  49831. height: math.unit(5.5, "km")
  49832. },
  49833. {
  49834. name: "Not good for the state",
  49835. height: math.unit(25, "km")
  49836. },
  49837. {
  49838. name: "Not good for the country",
  49839. height: math.unit(125, "km")
  49840. },
  49841. {
  49842. name: "Not good for the continent",
  49843. height: math.unit(2100, "km")
  49844. },
  49845. {
  49846. name: "Not good for the planet",
  49847. height: math.unit(35000, "km")
  49848. },
  49849. {
  49850. name: "Just no",
  49851. height: math.unit(8.5e18, "km")
  49852. },
  49853. ]
  49854. ))
  49855. characterMakers.push(() => makeCharacter(
  49856. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49857. {
  49858. front: {
  49859. height: math.unit(6.5, "feet"),
  49860. name: "Front",
  49861. image: {
  49862. source: "./media/characters/poppy/front.svg",
  49863. extra: 1878/1812,
  49864. bottom: 43/1921
  49865. }
  49866. },
  49867. feet: {
  49868. height: math.unit(1.06, "feet"),
  49869. name: "Feet",
  49870. image: {
  49871. source: "./media/characters/poppy/feet.svg",
  49872. extra: 1083/1083,
  49873. bottom: 87/1170
  49874. }
  49875. },
  49876. },
  49877. [
  49878. {
  49879. name: "Human",
  49880. height: math.unit(6.5, "feet")
  49881. },
  49882. {
  49883. name: "Default",
  49884. height: math.unit(300, "feet"),
  49885. default: true
  49886. },
  49887. {
  49888. name: "Huge",
  49889. height: math.unit(850, "feet")
  49890. },
  49891. {
  49892. name: "Mega",
  49893. height: math.unit(8000, "feet")
  49894. },
  49895. {
  49896. name: "Giga",
  49897. height: math.unit(300, "miles")
  49898. },
  49899. ]
  49900. ))
  49901. characterMakers.push(() => makeCharacter(
  49902. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49903. {
  49904. bipedal: {
  49905. height: math.unit(7, "feet"),
  49906. name: "Bipedal",
  49907. image: {
  49908. source: "./media/characters/zener/bipedal.svg",
  49909. extra: 874/805,
  49910. bottom: 109/983
  49911. }
  49912. },
  49913. quadrupedal: {
  49914. height: math.unit(4.64, "feet"),
  49915. name: "Quadrupedal",
  49916. image: {
  49917. source: "./media/characters/zener/quadrupedal.svg",
  49918. extra: 638/507,
  49919. bottom: 190/828
  49920. }
  49921. },
  49922. cock: {
  49923. height: math.unit(18, "inches"),
  49924. name: "Cock",
  49925. image: {
  49926. source: "./media/characters/zener/cock.svg"
  49927. }
  49928. },
  49929. },
  49930. [
  49931. {
  49932. name: "Normal",
  49933. height: math.unit(7, "feet"),
  49934. default: true
  49935. },
  49936. ]
  49937. ))
  49938. characterMakers.push(() => makeCharacter(
  49939. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49940. {
  49941. nude: {
  49942. height: math.unit(5 + 6/12, "feet"),
  49943. name: "Nude",
  49944. image: {
  49945. source: "./media/characters/charlie-dog/nude.svg",
  49946. extra: 768/734,
  49947. bottom: 26/794
  49948. }
  49949. },
  49950. dressed: {
  49951. height: math.unit(5 + 6/12, "feet"),
  49952. name: "Dressed",
  49953. image: {
  49954. source: "./media/characters/charlie-dog/dressed.svg",
  49955. extra: 768/734,
  49956. bottom: 26/794
  49957. }
  49958. },
  49959. },
  49960. [
  49961. {
  49962. name: "Normal",
  49963. height: math.unit(5 + 6/12, "feet"),
  49964. default: true
  49965. },
  49966. ]
  49967. ))
  49968. characterMakers.push(() => makeCharacter(
  49969. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49970. {
  49971. front: {
  49972. height: math.unit(6 + 4/12, "feet"),
  49973. name: "Front",
  49974. image: {
  49975. source: "./media/characters/ir'istrasz/front.svg",
  49976. extra: 1014/977,
  49977. bottom: 65/1079
  49978. }
  49979. },
  49980. back: {
  49981. height: math.unit(6 + 4/12, "feet"),
  49982. name: "Back",
  49983. image: {
  49984. source: "./media/characters/ir'istrasz/back.svg",
  49985. extra: 1024/992,
  49986. bottom: 34/1058
  49987. }
  49988. },
  49989. },
  49990. [
  49991. {
  49992. name: "Normal",
  49993. height: math.unit(6 + 4/12, "feet"),
  49994. default: true
  49995. },
  49996. ]
  49997. ))
  49998. characterMakers.push(() => makeCharacter(
  49999. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50000. {
  50001. front: {
  50002. height: math.unit(5 + 8/12, "feet"),
  50003. name: "Front",
  50004. image: {
  50005. source: "./media/characters/dee-ditto/front.svg",
  50006. extra: 1874/1785,
  50007. bottom: 68/1942
  50008. }
  50009. },
  50010. back: {
  50011. height: math.unit(5 + 8/12, "feet"),
  50012. name: "Back",
  50013. image: {
  50014. source: "./media/characters/dee-ditto/back.svg",
  50015. extra: 1870/1783,
  50016. bottom: 77/1947
  50017. }
  50018. },
  50019. },
  50020. [
  50021. {
  50022. name: "Normal",
  50023. height: math.unit(5 + 8/12, "feet"),
  50024. default: true
  50025. },
  50026. ]
  50027. ))
  50028. characterMakers.push(() => makeCharacter(
  50029. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50030. {
  50031. front: {
  50032. height: math.unit(7 + 6/12, "feet"),
  50033. name: "Front",
  50034. image: {
  50035. source: "./media/characters/fey/front.svg",
  50036. extra: 995/979,
  50037. bottom: 30/1025
  50038. }
  50039. },
  50040. back: {
  50041. height: math.unit(7 + 6/12, "feet"),
  50042. name: "Back",
  50043. image: {
  50044. source: "./media/characters/fey/back.svg",
  50045. extra: 1079/1008,
  50046. bottom: 5/1084
  50047. }
  50048. },
  50049. dressed: {
  50050. height: math.unit(7 + 6/12, "feet"),
  50051. name: "Dressed",
  50052. image: {
  50053. source: "./media/characters/fey/dressed.svg",
  50054. extra: 995/979,
  50055. bottom: 30/1025
  50056. }
  50057. },
  50058. },
  50059. [
  50060. {
  50061. name: "Normal",
  50062. height: math.unit(7 + 6/12, "feet"),
  50063. default: true
  50064. },
  50065. ]
  50066. ))
  50067. characterMakers.push(() => makeCharacter(
  50068. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50069. {
  50070. standing: {
  50071. height: math.unit(17, "feet"),
  50072. name: "Standing",
  50073. image: {
  50074. source: "./media/characters/aster/standing.svg",
  50075. extra: 1798/1598,
  50076. bottom: 117/1915
  50077. }
  50078. },
  50079. },
  50080. [
  50081. {
  50082. name: "Normal",
  50083. height: math.unit(17, "feet"),
  50084. default: true
  50085. },
  50086. {
  50087. name: "Homewrecker",
  50088. height: math.unit(95, "feet")
  50089. },
  50090. {
  50091. name: "Planet Devourer",
  50092. height: math.unit(1008000, "miles")
  50093. },
  50094. ]
  50095. ))
  50096. characterMakers.push(() => makeCharacter(
  50097. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50098. {
  50099. front: {
  50100. height: math.unit(6 + 5/12, "feet"),
  50101. weight: math.unit(265, "lb"),
  50102. name: "Front",
  50103. image: {
  50104. source: "./media/characters/devon-childs/front.svg",
  50105. extra: 1795/1721,
  50106. bottom: 41/1836
  50107. }
  50108. },
  50109. side: {
  50110. height: math.unit(6 + 5/12, "feet"),
  50111. weight: math.unit(265, "lb"),
  50112. name: "Side",
  50113. image: {
  50114. source: "./media/characters/devon-childs/side.svg",
  50115. extra: 1812/1738,
  50116. bottom: 30/1842
  50117. }
  50118. },
  50119. back: {
  50120. height: math.unit(6 + 5/12, "feet"),
  50121. weight: math.unit(265, "lb"),
  50122. name: "Back",
  50123. image: {
  50124. source: "./media/characters/devon-childs/back.svg",
  50125. extra: 1808/1735,
  50126. bottom: 23/1831
  50127. }
  50128. },
  50129. hand: {
  50130. height: math.unit(1.464, "feet"),
  50131. name: "Hand",
  50132. image: {
  50133. source: "./media/characters/devon-childs/hand.svg"
  50134. }
  50135. },
  50136. foot: {
  50137. height: math.unit(1.6, "feet"),
  50138. name: "Foot",
  50139. image: {
  50140. source: "./media/characters/devon-childs/foot.svg"
  50141. }
  50142. },
  50143. },
  50144. [
  50145. {
  50146. name: "Micro",
  50147. height: math.unit(7, "cm")
  50148. },
  50149. {
  50150. name: "Normal",
  50151. height: math.unit(6 + 5/12, "feet"),
  50152. default: true
  50153. },
  50154. {
  50155. name: "Macro",
  50156. height: math.unit(154, "feet")
  50157. },
  50158. ]
  50159. ))
  50160. characterMakers.push(() => makeCharacter(
  50161. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50162. {
  50163. front: {
  50164. height: math.unit(6, "feet"),
  50165. weight: math.unit(180, "lb"),
  50166. name: "Front",
  50167. image: {
  50168. source: "./media/characters/lydemox-vir/front.svg",
  50169. extra: 1632/1435,
  50170. bottom: 58/1690
  50171. }
  50172. },
  50173. frontSFW: {
  50174. height: math.unit(6, "feet"),
  50175. weight: math.unit(180, "lb"),
  50176. name: "Front (SFW)",
  50177. image: {
  50178. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50179. extra: 1632/1435,
  50180. bottom: 58/1690
  50181. }
  50182. },
  50183. back: {
  50184. height: math.unit(6, "feet"),
  50185. weight: math.unit(180, "lb"),
  50186. name: "Back",
  50187. image: {
  50188. source: "./media/characters/lydemox-vir/back.svg",
  50189. extra: 1593/1408,
  50190. bottom: 31/1624
  50191. }
  50192. },
  50193. paw: {
  50194. height: math.unit(1.85, "feet"),
  50195. name: "Paw",
  50196. image: {
  50197. source: "./media/characters/lydemox-vir/paw.svg"
  50198. }
  50199. },
  50200. dick: {
  50201. height: math.unit(1.8, "feet"),
  50202. name: "Dick",
  50203. image: {
  50204. source: "./media/characters/lydemox-vir/dick.svg"
  50205. }
  50206. },
  50207. },
  50208. [
  50209. {
  50210. name: "Macro",
  50211. height: math.unit(100, "feet"),
  50212. default: true
  50213. },
  50214. {
  50215. name: "Teramacro",
  50216. height: math.unit(1, "earth")
  50217. },
  50218. {
  50219. name: "Planetary",
  50220. height: math.unit(20, "earths")
  50221. },
  50222. ]
  50223. ))
  50224. characterMakers.push(() => makeCharacter(
  50225. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50226. {
  50227. front: {
  50228. height: math.unit(15 + 8/12, "feet"),
  50229. weight: math.unit(1237, "kg"),
  50230. name: "Front",
  50231. image: {
  50232. source: "./media/characters/mia/front.svg",
  50233. extra: 1573/1446,
  50234. bottom: 58/1631
  50235. }
  50236. },
  50237. },
  50238. [
  50239. {
  50240. name: "Small",
  50241. height: math.unit(9 + 5/12, "feet")
  50242. },
  50243. {
  50244. name: "Normal",
  50245. height: math.unit(15 + 8/12, "feet"),
  50246. default: true
  50247. },
  50248. ]
  50249. ))
  50250. characterMakers.push(() => makeCharacter(
  50251. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50252. {
  50253. front: {
  50254. height: math.unit(10 + 6/12, "feet"),
  50255. weight: math.unit(1.3, "tons"),
  50256. name: "Front",
  50257. image: {
  50258. source: "./media/characters/mr-graves/front.svg",
  50259. extra: 1779/1695,
  50260. bottom: 198/1977
  50261. }
  50262. },
  50263. },
  50264. [
  50265. {
  50266. name: "Normal",
  50267. height: math.unit(10 + 6 /12, "feet"),
  50268. default: true
  50269. },
  50270. ]
  50271. ))
  50272. characterMakers.push(() => makeCharacter(
  50273. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50274. {
  50275. dressedFront: {
  50276. height: math.unit(5 + 8/12, "feet"),
  50277. weight: math.unit(125, "lb"),
  50278. name: "Dressed (Front)",
  50279. image: {
  50280. source: "./media/characters/jess/dressed-front.svg",
  50281. extra: 1176/1152,
  50282. bottom: 42/1218
  50283. }
  50284. },
  50285. dressedSide: {
  50286. height: math.unit(5 + 8/12, "feet"),
  50287. weight: math.unit(125, "lb"),
  50288. name: "Dressed (Side)",
  50289. image: {
  50290. source: "./media/characters/jess/dressed-side.svg",
  50291. extra: 1204/1190,
  50292. bottom: 6/1210
  50293. }
  50294. },
  50295. nudeFront: {
  50296. height: math.unit(5 + 8/12, "feet"),
  50297. weight: math.unit(125, "lb"),
  50298. name: "Nude (Front)",
  50299. image: {
  50300. source: "./media/characters/jess/nude-front.svg",
  50301. extra: 1176/1152,
  50302. bottom: 42/1218
  50303. }
  50304. },
  50305. nudeSide: {
  50306. height: math.unit(5 + 8/12, "feet"),
  50307. weight: math.unit(125, "lb"),
  50308. name: "Nude (Side)",
  50309. image: {
  50310. source: "./media/characters/jess/nude-side.svg",
  50311. extra: 1204/1190,
  50312. bottom: 6/1210
  50313. }
  50314. },
  50315. organsFront: {
  50316. height: math.unit(2.83799342105, "feet"),
  50317. name: "Organs (Front)",
  50318. image: {
  50319. source: "./media/characters/jess/organs-front.svg"
  50320. }
  50321. },
  50322. organsSide: {
  50323. height: math.unit(2.64225290474, "feet"),
  50324. name: "Organs (Side)",
  50325. image: {
  50326. source: "./media/characters/jess/organs-side.svg"
  50327. }
  50328. },
  50329. digestiveTractFront: {
  50330. height: math.unit(2.8106580871, "feet"),
  50331. name: "Digestive Tract (Front)",
  50332. image: {
  50333. source: "./media/characters/jess/digestive-tract-front.svg"
  50334. }
  50335. },
  50336. digestiveTractSide: {
  50337. height: math.unit(2.54365045014, "feet"),
  50338. name: "Digestive Tract (Side)",
  50339. image: {
  50340. source: "./media/characters/jess/digestive-tract-side.svg"
  50341. }
  50342. },
  50343. respiratorySystemFront: {
  50344. height: math.unit(1.11196233456, "feet"),
  50345. name: "Respiratory System (Front)",
  50346. image: {
  50347. source: "./media/characters/jess/respiratory-system-front.svg"
  50348. }
  50349. },
  50350. respiratorySystemSide: {
  50351. height: math.unit(0.89327966297, "feet"),
  50352. name: "Respiratory System (Side)",
  50353. image: {
  50354. source: "./media/characters/jess/respiratory-system-side.svg"
  50355. }
  50356. },
  50357. urinaryTractFront: {
  50358. height: math.unit(1.16126356186, "feet"),
  50359. name: "Urinary Tract (Front)",
  50360. image: {
  50361. source: "./media/characters/jess/urinary-tract-front.svg"
  50362. }
  50363. },
  50364. urinaryTractSide: {
  50365. height: math.unit(1.20910039627, "feet"),
  50366. name: "Urinary Tract (Side)",
  50367. image: {
  50368. source: "./media/characters/jess/urinary-tract-side.svg"
  50369. }
  50370. },
  50371. reproductiveOrgansFront: {
  50372. height: math.unit(0.48422591566, "feet"),
  50373. name: "Reproductive Organs (Front)",
  50374. image: {
  50375. source: "./media/characters/jess/reproductive-organs-front.svg"
  50376. }
  50377. },
  50378. reproductiveOrgansSide: {
  50379. height: math.unit(0.61553314481, "feet"),
  50380. name: "Reproductive Organs (Side)",
  50381. image: {
  50382. source: "./media/characters/jess/reproductive-organs-side.svg"
  50383. }
  50384. },
  50385. breastsFront: {
  50386. height: math.unit(0.47690395121, "feet"),
  50387. name: "Breasts (Front)",
  50388. image: {
  50389. source: "./media/characters/jess/breasts-front.svg"
  50390. }
  50391. },
  50392. breastsSide: {
  50393. height: math.unit(0.30556998307, "feet"),
  50394. name: "Breasts (Side)",
  50395. image: {
  50396. source: "./media/characters/jess/breasts-side.svg"
  50397. }
  50398. },
  50399. heartFront: {
  50400. height: math.unit(0.53011022622, "feet"),
  50401. name: "Heart (Front)",
  50402. image: {
  50403. source: "./media/characters/jess/heart-front.svg"
  50404. }
  50405. },
  50406. heartSide: {
  50407. height: math.unit(0.51790695213, "feet"),
  50408. name: "Heart (Side)",
  50409. image: {
  50410. source: "./media/characters/jess/heart-side.svg"
  50411. }
  50412. },
  50413. earsAndNoseFront: {
  50414. height: math.unit(0.29385483995, "feet"),
  50415. name: "Ears and Nose (Front)",
  50416. image: {
  50417. source: "./media/characters/jess/ears-and-nose-front.svg"
  50418. }
  50419. },
  50420. earsAndNoseSide: {
  50421. height: math.unit(0.18109658741, "feet"),
  50422. name: "Ears and Nose (Side)",
  50423. image: {
  50424. source: "./media/characters/jess/ears-and-nose-side.svg"
  50425. }
  50426. },
  50427. },
  50428. [
  50429. {
  50430. name: "Normal",
  50431. height: math.unit(5 + 8/12, "feet"),
  50432. default: true
  50433. },
  50434. ]
  50435. ))
  50436. characterMakers.push(() => makeCharacter(
  50437. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50438. {
  50439. front: {
  50440. height: math.unit(6, "feet"),
  50441. weight: math.unit(6.64467e-7, "grams"),
  50442. name: "Front",
  50443. image: {
  50444. source: "./media/characters/wimpering/front.svg",
  50445. extra: 597/587,
  50446. bottom: 34/631
  50447. }
  50448. },
  50449. },
  50450. [
  50451. {
  50452. name: "Micro",
  50453. height: math.unit(0.4, "mm"),
  50454. default: true
  50455. },
  50456. ]
  50457. ))
  50458. characterMakers.push(() => makeCharacter(
  50459. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50460. {
  50461. front: {
  50462. height: math.unit(5 + 2/12, "feet"),
  50463. weight: math.unit(110, "lb"),
  50464. name: "Front",
  50465. image: {
  50466. source: "./media/characters/keltre/front.svg",
  50467. extra: 1099/1057,
  50468. bottom: 22/1121
  50469. }
  50470. },
  50471. back: {
  50472. height: math.unit(5 + 2/12, "feet"),
  50473. weight: math.unit(110, "lb"),
  50474. name: "Back",
  50475. image: {
  50476. source: "./media/characters/keltre/back.svg",
  50477. extra: 1095/1053,
  50478. bottom: 17/1112
  50479. }
  50480. },
  50481. dressed: {
  50482. height: math.unit(5 + 2/12, "feet"),
  50483. weight: math.unit(110, "lb"),
  50484. name: "Dressed",
  50485. image: {
  50486. source: "./media/characters/keltre/dressed.svg",
  50487. extra: 1099/1057,
  50488. bottom: 22/1121
  50489. }
  50490. },
  50491. winter: {
  50492. height: math.unit(5 + 2/12, "feet"),
  50493. weight: math.unit(110, "lb"),
  50494. name: "Winter",
  50495. image: {
  50496. source: "./media/characters/keltre/winter.svg",
  50497. extra: 1099/1057,
  50498. bottom: 22/1121
  50499. }
  50500. },
  50501. head: {
  50502. height: math.unit(1.61 * 0.86, "feet"),
  50503. name: "Head",
  50504. image: {
  50505. source: "./media/characters/keltre/head.svg",
  50506. extra: 534/421,
  50507. bottom: 0/534
  50508. }
  50509. },
  50510. hand: {
  50511. height: math.unit(1.3 * 0.86, "feet"),
  50512. name: "Hand",
  50513. image: {
  50514. source: "./media/characters/keltre/hand.svg"
  50515. }
  50516. },
  50517. foot: {
  50518. height: math.unit(1.8 * 0.86, "feet"),
  50519. name: "Foot",
  50520. image: {
  50521. source: "./media/characters/keltre/foot.svg"
  50522. }
  50523. },
  50524. },
  50525. [
  50526. {
  50527. name: "Fine",
  50528. height: math.unit(1, "inch")
  50529. },
  50530. {
  50531. name: "Dimnutive",
  50532. height: math.unit(4, "inches")
  50533. },
  50534. {
  50535. name: "Tiny",
  50536. height: math.unit(1, "foot")
  50537. },
  50538. {
  50539. name: "Small",
  50540. height: math.unit(3, "feet")
  50541. },
  50542. {
  50543. name: "Normal",
  50544. height: math.unit(5 + 2/12, "feet"),
  50545. default: true
  50546. },
  50547. ]
  50548. ))
  50549. characterMakers.push(() => makeCharacter(
  50550. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50551. {
  50552. front: {
  50553. height: math.unit(6 + 2/12, "feet"),
  50554. name: "Front",
  50555. image: {
  50556. source: "./media/characters/nox/front.svg",
  50557. extra: 1917/1830,
  50558. bottom: 74/1991
  50559. }
  50560. },
  50561. back: {
  50562. height: math.unit(6 + 2/12, "feet"),
  50563. name: "Back",
  50564. image: {
  50565. source: "./media/characters/nox/back.svg",
  50566. extra: 1896/1815,
  50567. bottom: 21/1917
  50568. }
  50569. },
  50570. head: {
  50571. height: math.unit(1.1, "feet"),
  50572. name: "Head",
  50573. image: {
  50574. source: "./media/characters/nox/head.svg",
  50575. extra: 874/704,
  50576. bottom: 0/874
  50577. }
  50578. },
  50579. tattoo: {
  50580. height: math.unit(0.729, "feet"),
  50581. name: "Tattoo",
  50582. image: {
  50583. source: "./media/characters/nox/tattoo.svg"
  50584. }
  50585. },
  50586. },
  50587. [
  50588. {
  50589. name: "Normal",
  50590. height: math.unit(6 + 2/12, "feet")
  50591. },
  50592. {
  50593. name: "Gigamacro",
  50594. height: math.unit(2, "earths"),
  50595. default: true
  50596. },
  50597. {
  50598. name: "Cosmic",
  50599. height: math.unit(867, "yottameters")
  50600. },
  50601. ]
  50602. ))
  50603. characterMakers.push(() => makeCharacter(
  50604. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50605. {
  50606. front: {
  50607. height: math.unit(6, "feet"),
  50608. weight: math.unit(150, "lb"),
  50609. name: "Front",
  50610. image: {
  50611. source: "./media/characters/caspian/front.svg",
  50612. extra: 1443/1359,
  50613. bottom: 0/1443
  50614. }
  50615. },
  50616. back: {
  50617. height: math.unit(6, "feet"),
  50618. weight: math.unit(150, "lb"),
  50619. name: "Back",
  50620. image: {
  50621. source: "./media/characters/caspian/back.svg",
  50622. extra: 1379/1309,
  50623. bottom: 0/1379
  50624. }
  50625. },
  50626. head: {
  50627. height: math.unit(0.9, "feet"),
  50628. name: "Head",
  50629. image: {
  50630. source: "./media/characters/caspian/head.svg",
  50631. extra: 692/492,
  50632. bottom: 0/692
  50633. }
  50634. },
  50635. headAlt: {
  50636. height: math.unit(0.95, "feet"),
  50637. name: "Head (Alt)",
  50638. image: {
  50639. source: "./media/characters/caspian/head-alt.svg",
  50640. extra: 668/508,
  50641. bottom: 0/668
  50642. }
  50643. },
  50644. hand: {
  50645. height: math.unit(0.8, "feet"),
  50646. name: "Hand",
  50647. image: {
  50648. source: "./media/characters/caspian/hand.svg"
  50649. }
  50650. },
  50651. paw: {
  50652. height: math.unit(0.95, "feet"),
  50653. name: "Paw",
  50654. image: {
  50655. source: "./media/characters/caspian/paw.svg"
  50656. }
  50657. },
  50658. },
  50659. [
  50660. {
  50661. name: "Normal",
  50662. height: math.unit(162, "feet"),
  50663. default: true
  50664. },
  50665. ]
  50666. ))
  50667. characterMakers.push(() => makeCharacter(
  50668. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50669. {
  50670. front: {
  50671. height: math.unit(6, "feet"),
  50672. name: "Front",
  50673. image: {
  50674. source: "./media/characters/myra-aisling/front.svg",
  50675. extra: 1268/1166,
  50676. bottom: 73/1341
  50677. }
  50678. },
  50679. back: {
  50680. height: math.unit(6, "feet"),
  50681. name: "Back",
  50682. image: {
  50683. source: "./media/characters/myra-aisling/back.svg",
  50684. extra: 1249/1149,
  50685. bottom: 79/1328
  50686. }
  50687. },
  50688. dressed: {
  50689. height: math.unit(6, "feet"),
  50690. name: "Dressed",
  50691. image: {
  50692. source: "./media/characters/myra-aisling/dressed.svg",
  50693. extra: 1290/1189,
  50694. bottom: 47/1337
  50695. }
  50696. },
  50697. hand: {
  50698. height: math.unit(1.1, "feet"),
  50699. name: "Hand",
  50700. image: {
  50701. source: "./media/characters/myra-aisling/hand.svg"
  50702. }
  50703. },
  50704. paw: {
  50705. height: math.unit(1.23, "feet"),
  50706. name: "Paw",
  50707. image: {
  50708. source: "./media/characters/myra-aisling/paw.svg"
  50709. }
  50710. },
  50711. },
  50712. [
  50713. {
  50714. name: "Normal",
  50715. height: math.unit(160, "feet"),
  50716. default: true
  50717. },
  50718. ]
  50719. ))
  50720. characterMakers.push(() => makeCharacter(
  50721. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50722. {
  50723. front: {
  50724. height: math.unit(6, "feet"),
  50725. name: "Front",
  50726. image: {
  50727. source: "./media/characters/tenley-sidero/front.svg",
  50728. extra: 1365/1276,
  50729. bottom: 47/1412
  50730. }
  50731. },
  50732. back: {
  50733. height: math.unit(6, "feet"),
  50734. name: "Back",
  50735. image: {
  50736. source: "./media/characters/tenley-sidero/back.svg",
  50737. extra: 1383/1283,
  50738. bottom: 35/1418
  50739. }
  50740. },
  50741. dressed: {
  50742. height: math.unit(6, "feet"),
  50743. name: "Dressed",
  50744. image: {
  50745. source: "./media/characters/tenley-sidero/dressed.svg",
  50746. extra: 1364/1275,
  50747. bottom: 42/1406
  50748. }
  50749. },
  50750. head: {
  50751. height: math.unit(1.47, "feet"),
  50752. name: "Head",
  50753. image: {
  50754. source: "./media/characters/tenley-sidero/head.svg",
  50755. extra: 610/490,
  50756. bottom: 0/610
  50757. }
  50758. },
  50759. },
  50760. [
  50761. {
  50762. name: "Normal",
  50763. height: math.unit(154, "feet"),
  50764. default: true
  50765. },
  50766. ]
  50767. ))
  50768. characterMakers.push(() => makeCharacter(
  50769. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50770. {
  50771. front: {
  50772. height: math.unit(5, "inches"),
  50773. name: "Front",
  50774. image: {
  50775. source: "./media/characters/mallory/front.svg",
  50776. extra: 1919/1678,
  50777. bottom: 29/1948
  50778. }
  50779. },
  50780. hand: {
  50781. height: math.unit(0.73, "inches"),
  50782. name: "Hand",
  50783. image: {
  50784. source: "./media/characters/mallory/hand.svg"
  50785. }
  50786. },
  50787. paw: {
  50788. height: math.unit(0.68, "inches"),
  50789. name: "Paw",
  50790. image: {
  50791. source: "./media/characters/mallory/paw.svg"
  50792. }
  50793. },
  50794. },
  50795. [
  50796. {
  50797. name: "Small",
  50798. height: math.unit(5, "inches"),
  50799. default: true
  50800. },
  50801. ]
  50802. ))
  50803. characterMakers.push(() => makeCharacter(
  50804. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50805. {
  50806. naked: {
  50807. height: math.unit(6, "feet"),
  50808. name: "Naked",
  50809. image: {
  50810. source: "./media/characters/mab/naked.svg",
  50811. extra: 1855/1757,
  50812. bottom: 208/2063
  50813. }
  50814. },
  50815. outside: {
  50816. height: math.unit(6, "feet"),
  50817. name: "Outside",
  50818. image: {
  50819. source: "./media/characters/mab/outside.svg",
  50820. extra: 1855/1757,
  50821. bottom: 208/2063
  50822. }
  50823. },
  50824. party: {
  50825. height: math.unit(6, "feet"),
  50826. name: "Party",
  50827. image: {
  50828. source: "./media/characters/mab/party.svg",
  50829. extra: 1855/1757,
  50830. bottom: 208/2063
  50831. }
  50832. },
  50833. },
  50834. [
  50835. {
  50836. name: "Normal",
  50837. height: math.unit(165, "feet"),
  50838. default: true
  50839. },
  50840. ]
  50841. ))
  50842. characterMakers.push(() => makeCharacter(
  50843. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50844. {
  50845. feral: {
  50846. height: math.unit(12, "feet"),
  50847. weight: math.unit(20000, "lb"),
  50848. name: "Side",
  50849. image: {
  50850. source: "./media/characters/winter/feral.svg",
  50851. extra: 1286/943,
  50852. bottom: 112/1398
  50853. },
  50854. form: "feral",
  50855. default: true
  50856. },
  50857. feralNsfw: {
  50858. height: math.unit(12, "feet"),
  50859. weight: math.unit(20000, "lb"),
  50860. name: "Side (NSFW)",
  50861. image: {
  50862. source: "./media/characters/winter/feral-nsfw.svg",
  50863. extra: 1286/943,
  50864. bottom: 112/1398
  50865. },
  50866. form: "feral"
  50867. },
  50868. dick: {
  50869. height: math.unit(3.79, "feet"),
  50870. name: "Dick",
  50871. image: {
  50872. source: "./media/characters/winter/dick.svg"
  50873. },
  50874. form: "feral"
  50875. },
  50876. anthro: {
  50877. height: math.unit(12, "feet"),
  50878. weight: math.unit(10, "tons"),
  50879. name: "Anthro",
  50880. image: {
  50881. source: "./media/characters/winter/anthro.svg",
  50882. extra: 1701/1553,
  50883. bottom: 64/1765
  50884. },
  50885. form: "anthro",
  50886. default: true
  50887. },
  50888. },
  50889. [
  50890. {
  50891. name: "Big",
  50892. height: math.unit(12, "feet"),
  50893. default: true,
  50894. form: "feral"
  50895. },
  50896. {
  50897. name: "Big",
  50898. height: math.unit(12, "feet"),
  50899. default: true,
  50900. form: "anthro"
  50901. },
  50902. ],
  50903. {
  50904. "feral": {
  50905. name: "Feral",
  50906. default: true
  50907. },
  50908. "anthro": {
  50909. name: "Anthro"
  50910. }
  50911. }
  50912. ))
  50913. characterMakers.push(() => makeCharacter(
  50914. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50915. {
  50916. front: {
  50917. height: math.unit(4.1, "inches"),
  50918. name: "Front",
  50919. image: {
  50920. source: "./media/characters/alto/front.svg",
  50921. extra: 736/627,
  50922. bottom: 90/826
  50923. }
  50924. },
  50925. },
  50926. [
  50927. {
  50928. name: "Normal",
  50929. height: math.unit(4.1, "inches"),
  50930. default: true
  50931. },
  50932. ]
  50933. ))
  50934. characterMakers.push(() => makeCharacter(
  50935. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50936. {
  50937. sitting: {
  50938. height: math.unit(3, "feet"),
  50939. name: "Sitting",
  50940. image: {
  50941. source: "./media/characters/ratstrid-v/sitting.svg",
  50942. extra: 355/310,
  50943. bottom: 136/491
  50944. }
  50945. },
  50946. },
  50947. [
  50948. {
  50949. name: "Normal",
  50950. height: math.unit(3, "feet"),
  50951. default: true
  50952. },
  50953. ]
  50954. ))
  50955. characterMakers.push(() => makeCharacter(
  50956. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50957. {
  50958. back: {
  50959. height: math.unit(6, "feet"),
  50960. weight: math.unit(450, "lb"),
  50961. name: "Back",
  50962. image: {
  50963. source: "./media/characters/siz/back.svg",
  50964. extra: 1449/1274,
  50965. bottom: 13/1462
  50966. }
  50967. },
  50968. },
  50969. [
  50970. {
  50971. name: "Smallest",
  50972. height: math.unit(18 + 3/12, "feet")
  50973. },
  50974. {
  50975. name: "Modest",
  50976. height: math.unit(56 + 8/12, "feet"),
  50977. default: true
  50978. },
  50979. {
  50980. name: "Largest",
  50981. height: math.unit(3590, "feet")
  50982. },
  50983. ]
  50984. ))
  50985. characterMakers.push(() => makeCharacter(
  50986. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50987. {
  50988. front: {
  50989. height: math.unit(5 + 9/12, "feet"),
  50990. weight: math.unit(150, "lb"),
  50991. name: "Front",
  50992. image: {
  50993. source: "./media/characters/ven/front.svg",
  50994. extra: 1372/1320,
  50995. bottom: 73/1445
  50996. }
  50997. },
  50998. side: {
  50999. height: math.unit(5 + 9/12, "feet"),
  51000. weight: math.unit(1150, "lb"),
  51001. name: "Side",
  51002. image: {
  51003. source: "./media/characters/ven/side.svg",
  51004. extra: 1119/1070,
  51005. bottom: 42/1161
  51006. },
  51007. default: true
  51008. },
  51009. },
  51010. [
  51011. {
  51012. name: "Normal",
  51013. height: math.unit(5 + 9/12, "feet"),
  51014. default: true
  51015. },
  51016. ]
  51017. ))
  51018. characterMakers.push(() => makeCharacter(
  51019. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51020. {
  51021. front: {
  51022. height: math.unit(12, "feet"),
  51023. weight: math.unit(1000, "kg"),
  51024. name: "Front",
  51025. image: {
  51026. source: "./media/characters/maple/front.svg",
  51027. extra: 1193/1081,
  51028. bottom: 22/1215
  51029. }
  51030. },
  51031. },
  51032. [
  51033. {
  51034. name: "Compressed",
  51035. height: math.unit(7, "feet")
  51036. },
  51037. {
  51038. name: "Normal",
  51039. height: math.unit(12, "feet"),
  51040. default: true
  51041. },
  51042. ]
  51043. ))
  51044. characterMakers.push(() => makeCharacter(
  51045. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51046. {
  51047. front: {
  51048. height: math.unit(9, "feet"),
  51049. weight: math.unit(1500, "lb"),
  51050. name: "Front",
  51051. image: {
  51052. source: "./media/characters/nora/front.svg",
  51053. extra: 1348/1286,
  51054. bottom: 218/1566
  51055. }
  51056. },
  51057. erect: {
  51058. height: math.unit(9, "feet"),
  51059. weight: math.unit(11500, "lb"),
  51060. name: "Erect",
  51061. image: {
  51062. source: "./media/characters/nora/erect.svg",
  51063. extra: 1488/1433,
  51064. bottom: 133/1621
  51065. }
  51066. },
  51067. },
  51068. [
  51069. {
  51070. name: "Normal",
  51071. height: math.unit(9, "feet"),
  51072. default: true
  51073. },
  51074. ]
  51075. ))
  51076. characterMakers.push(() => makeCharacter(
  51077. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51078. {
  51079. front: {
  51080. height: math.unit(25, "feet"),
  51081. weight: math.unit(27500, "lb"),
  51082. name: "Front",
  51083. image: {
  51084. source: "./media/characters/north-caudin/front.svg",
  51085. extra: 1184/1082,
  51086. bottom: 23/1207
  51087. }
  51088. },
  51089. },
  51090. [
  51091. {
  51092. name: "Compressed",
  51093. height: math.unit(10, "feet")
  51094. },
  51095. {
  51096. name: "Normal",
  51097. height: math.unit(25, "feet"),
  51098. default: true
  51099. },
  51100. ]
  51101. ))
  51102. characterMakers.push(() => makeCharacter(
  51103. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51104. {
  51105. front: {
  51106. height: math.unit(9, "feet"),
  51107. weight: math.unit(1250, "lb"),
  51108. name: "Front",
  51109. image: {
  51110. source: "./media/characters/merrian/front.svg",
  51111. extra: 2393/2304,
  51112. bottom: 40/2433
  51113. }
  51114. },
  51115. },
  51116. [
  51117. {
  51118. name: "Normal",
  51119. height: math.unit(9, "feet"),
  51120. default: true
  51121. },
  51122. ]
  51123. ))
  51124. characterMakers.push(() => makeCharacter(
  51125. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51126. {
  51127. front: {
  51128. height: math.unit(9, "feet"),
  51129. weight: math.unit(1000, "lb"),
  51130. name: "Front",
  51131. image: {
  51132. source: "./media/characters/hazel/front.svg",
  51133. extra: 2351/2298,
  51134. bottom: 38/2389
  51135. }
  51136. },
  51137. },
  51138. [
  51139. {
  51140. name: "Normal",
  51141. height: math.unit(9, "feet"),
  51142. default: true
  51143. },
  51144. ]
  51145. ))
  51146. characterMakers.push(() => makeCharacter(
  51147. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51148. {
  51149. front: {
  51150. height: math.unit(13, "feet"),
  51151. weight: math.unit(3200, "lb"),
  51152. name: "Front",
  51153. image: {
  51154. source: "./media/characters/emma/front.svg",
  51155. extra: 2263/2029,
  51156. bottom: 68/2331
  51157. }
  51158. },
  51159. },
  51160. [
  51161. {
  51162. name: "Normal",
  51163. height: math.unit(13, "feet"),
  51164. default: true
  51165. },
  51166. ]
  51167. ))
  51168. characterMakers.push(() => makeCharacter(
  51169. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51170. {
  51171. front: {
  51172. height: math.unit(11 + 9/12, "feet"),
  51173. weight: math.unit(2500, "lb"),
  51174. name: "Front",
  51175. image: {
  51176. source: "./media/characters/ilumina/front.svg",
  51177. extra: 2248/2209,
  51178. bottom: 164/2412
  51179. }
  51180. },
  51181. },
  51182. [
  51183. {
  51184. name: "Normal",
  51185. height: math.unit(11 + 9/12, "feet"),
  51186. default: true
  51187. },
  51188. ]
  51189. ))
  51190. characterMakers.push(() => makeCharacter(
  51191. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51192. {
  51193. front: {
  51194. height: math.unit(8 + 10/12, "feet"),
  51195. weight: math.unit(1350, "lb"),
  51196. name: "Front",
  51197. image: {
  51198. source: "./media/characters/moonshine/front.svg",
  51199. extra: 2395/2288,
  51200. bottom: 40/2435
  51201. }
  51202. },
  51203. },
  51204. [
  51205. {
  51206. name: "Normal",
  51207. height: math.unit(8 + 10/12, "feet"),
  51208. default: true
  51209. },
  51210. ]
  51211. ))
  51212. characterMakers.push(() => makeCharacter(
  51213. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51214. {
  51215. front: {
  51216. height: math.unit(14, "feet"),
  51217. weight: math.unit(3400, "lb"),
  51218. name: "Front",
  51219. image: {
  51220. source: "./media/characters/aletia/front.svg",
  51221. extra: 1185/1052,
  51222. bottom: 21/1206
  51223. }
  51224. },
  51225. },
  51226. [
  51227. {
  51228. name: "Compressed",
  51229. height: math.unit(8, "feet")
  51230. },
  51231. {
  51232. name: "Normal",
  51233. height: math.unit(14, "feet"),
  51234. default: true
  51235. },
  51236. ]
  51237. ))
  51238. characterMakers.push(() => makeCharacter(
  51239. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51240. {
  51241. front: {
  51242. height: math.unit(17, "feet"),
  51243. weight: math.unit(6500, "lb"),
  51244. name: "Front",
  51245. image: {
  51246. source: "./media/characters/deidra/front.svg",
  51247. extra: 1201/1081,
  51248. bottom: 16/1217
  51249. }
  51250. },
  51251. },
  51252. [
  51253. {
  51254. name: "Compressed",
  51255. height: math.unit(9 + 6/12, "feet")
  51256. },
  51257. {
  51258. name: "Normal",
  51259. height: math.unit(17, "feet"),
  51260. default: true
  51261. },
  51262. ]
  51263. ))
  51264. characterMakers.push(() => makeCharacter(
  51265. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51266. {
  51267. front: {
  51268. height: math.unit(7 + 4/12, "feet"),
  51269. weight: math.unit(280, "lb"),
  51270. name: "Front",
  51271. image: {
  51272. source: "./media/characters/freki-yrmori/front.svg",
  51273. extra: 1286/1182,
  51274. bottom: 29/1315
  51275. }
  51276. },
  51277. maw: {
  51278. height: math.unit(0.9, "feet"),
  51279. name: "Maw",
  51280. image: {
  51281. source: "./media/characters/freki-yrmori/maw.svg"
  51282. }
  51283. },
  51284. },
  51285. [
  51286. {
  51287. name: "Normal",
  51288. height: math.unit(7 + 4/12, "feet"),
  51289. default: true
  51290. },
  51291. {
  51292. name: "Macro",
  51293. height: math.unit(38.5, "meters")
  51294. },
  51295. ]
  51296. ))
  51297. characterMakers.push(() => makeCharacter(
  51298. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51299. {
  51300. side: {
  51301. height: math.unit(47.2, "meters"),
  51302. weight: math.unit(10000, "tons"),
  51303. name: "Side",
  51304. image: {
  51305. source: "./media/characters/aetherios/side.svg",
  51306. extra: 2363/642,
  51307. bottom: 221/2584
  51308. }
  51309. },
  51310. top: {
  51311. height: math.unit(240, "meters"),
  51312. weight: math.unit(10000, "tons"),
  51313. name: "Top",
  51314. image: {
  51315. source: "./media/characters/aetherios/top.svg"
  51316. }
  51317. },
  51318. bottom: {
  51319. height: math.unit(240, "meters"),
  51320. weight: math.unit(10000, "tons"),
  51321. name: "Bottom",
  51322. image: {
  51323. source: "./media/characters/aetherios/bottom.svg"
  51324. }
  51325. },
  51326. head: {
  51327. height: math.unit(38.6, "meters"),
  51328. name: "Head",
  51329. image: {
  51330. source: "./media/characters/aetherios/head.svg",
  51331. extra: 1335/1112,
  51332. bottom: 0/1335
  51333. }
  51334. },
  51335. front: {
  51336. height: math.unit(29, "meters"),
  51337. name: "Front",
  51338. image: {
  51339. source: "./media/characters/aetherios/front.svg",
  51340. extra: 1266/953,
  51341. bottom: 158/1424
  51342. }
  51343. },
  51344. maw: {
  51345. height: math.unit(16.37, "meters"),
  51346. name: "Maw",
  51347. image: {
  51348. source: "./media/characters/aetherios/maw.svg",
  51349. extra: 748/637,
  51350. bottom: 0/748
  51351. },
  51352. extraAttributes: {
  51353. preyCapacity: {
  51354. name: "Capacity",
  51355. power: 3,
  51356. type: "volume",
  51357. base: math.unit(1000, "people")
  51358. },
  51359. tongueSize: {
  51360. name: "Tongue Size",
  51361. power: 2,
  51362. type: "area",
  51363. base: math.unit(21, "m^2")
  51364. }
  51365. }
  51366. },
  51367. forepaw: {
  51368. height: math.unit(18, "meters"),
  51369. name: "Forepaw",
  51370. image: {
  51371. source: "./media/characters/aetherios/forepaw.svg"
  51372. }
  51373. },
  51374. hindpaw: {
  51375. height: math.unit(23, "meters"),
  51376. name: "Hindpaw",
  51377. image: {
  51378. source: "./media/characters/aetherios/hindpaw.svg"
  51379. }
  51380. },
  51381. genitals: {
  51382. height: math.unit(42, "meters"),
  51383. name: "Genitals",
  51384. image: {
  51385. source: "./media/characters/aetherios/genitals.svg"
  51386. }
  51387. },
  51388. },
  51389. [
  51390. {
  51391. name: "Normal",
  51392. height: math.unit(47.2, "meters"),
  51393. default: true
  51394. },
  51395. {
  51396. name: "Macro",
  51397. height: math.unit(160, "meters")
  51398. },
  51399. {
  51400. name: "Mega",
  51401. height: math.unit(1.87, "km")
  51402. },
  51403. {
  51404. name: "Giga",
  51405. height: math.unit(40000, "km")
  51406. },
  51407. {
  51408. name: "Stellar",
  51409. height: math.unit(158000000, "km")
  51410. },
  51411. {
  51412. name: "Cosmic",
  51413. height: math.unit(9.46e12, "km")
  51414. },
  51415. ]
  51416. ))
  51417. characterMakers.push(() => makeCharacter(
  51418. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51419. {
  51420. front: {
  51421. height: math.unit(5 + 4/12, "feet"),
  51422. weight: math.unit(80, "lb"),
  51423. name: "Front",
  51424. image: {
  51425. source: "./media/characters/mizu-gieeg/front.svg",
  51426. extra: 850/709,
  51427. bottom: 52/902
  51428. }
  51429. },
  51430. back: {
  51431. height: math.unit(5 + 4/12, "feet"),
  51432. weight: math.unit(80, "lb"),
  51433. name: "Back",
  51434. image: {
  51435. source: "./media/characters/mizu-gieeg/back.svg",
  51436. extra: 882/745,
  51437. bottom: 25/907
  51438. }
  51439. },
  51440. },
  51441. [
  51442. {
  51443. name: "Normal",
  51444. height: math.unit(5 + 4/12, "feet"),
  51445. default: true
  51446. },
  51447. ]
  51448. ))
  51449. characterMakers.push(() => makeCharacter(
  51450. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51451. {
  51452. front: {
  51453. height: math.unit(6, "feet"),
  51454. name: "Front",
  51455. image: {
  51456. source: "./media/characters/roselle-st-papier/front.svg",
  51457. extra: 1430/1280,
  51458. bottom: 37/1467
  51459. }
  51460. },
  51461. back: {
  51462. height: math.unit(6, "feet"),
  51463. name: "Back",
  51464. image: {
  51465. source: "./media/characters/roselle-st-papier/back.svg",
  51466. extra: 1491/1296,
  51467. bottom: 23/1514
  51468. }
  51469. },
  51470. ear: {
  51471. height: math.unit(1.26, "feet"),
  51472. name: "Ear",
  51473. image: {
  51474. source: "./media/characters/roselle-st-papier/ear.svg"
  51475. }
  51476. },
  51477. },
  51478. [
  51479. {
  51480. name: "Normal",
  51481. height: math.unit(150, "feet"),
  51482. default: true
  51483. },
  51484. ]
  51485. ))
  51486. characterMakers.push(() => makeCharacter(
  51487. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51488. {
  51489. front: {
  51490. height: math.unit(1, "inches"),
  51491. name: "Front",
  51492. image: {
  51493. source: "./media/characters/valargent/front.svg",
  51494. extra: 1825/1694,
  51495. bottom: 62/1887
  51496. }
  51497. },
  51498. back: {
  51499. height: math.unit(1, "inches"),
  51500. name: "Back",
  51501. image: {
  51502. source: "./media/characters/valargent/back.svg",
  51503. extra: 1775/1682,
  51504. bottom: 88/1863
  51505. }
  51506. },
  51507. },
  51508. [
  51509. {
  51510. name: "Micro",
  51511. height: math.unit(1, "inch"),
  51512. default: true
  51513. },
  51514. ]
  51515. ))
  51516. characterMakers.push(() => makeCharacter(
  51517. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51518. {
  51519. front: {
  51520. height: math.unit(3.4, "meters"),
  51521. name: "Front",
  51522. image: {
  51523. source: "./media/characters/zarina/front.svg",
  51524. extra: 1733/1425,
  51525. bottom: 93/1826
  51526. }
  51527. },
  51528. squatting: {
  51529. height: math.unit(2.14, "meters"),
  51530. name: "Squatting",
  51531. image: {
  51532. source: "./media/characters/zarina/squatting.svg",
  51533. extra: 1073/788,
  51534. bottom: 63/1136
  51535. }
  51536. },
  51537. back: {
  51538. height: math.unit(2.14, "meters"),
  51539. name: "Back",
  51540. image: {
  51541. source: "./media/characters/zarina/back.svg",
  51542. extra: 1128/885,
  51543. bottom: 0/1128
  51544. }
  51545. },
  51546. },
  51547. [
  51548. {
  51549. name: "Normal",
  51550. height: math.unit(3.4, "meters"),
  51551. default: true
  51552. },
  51553. {
  51554. name: "Big",
  51555. height: math.unit(5, "meters")
  51556. },
  51557. {
  51558. name: "Macro",
  51559. height: math.unit(110, "meters")
  51560. },
  51561. ]
  51562. ))
  51563. characterMakers.push(() => makeCharacter(
  51564. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51565. {
  51566. front: {
  51567. height: math.unit(7, "feet"),
  51568. name: "Front",
  51569. image: {
  51570. source: "./media/characters/ventus-astro-fox/front.svg",
  51571. extra: 1792/1623,
  51572. bottom: 28/1820
  51573. }
  51574. },
  51575. back: {
  51576. height: math.unit(7, "feet"),
  51577. name: "Back",
  51578. image: {
  51579. source: "./media/characters/ventus-astro-fox/back.svg",
  51580. extra: 1789/1620,
  51581. bottom: 31/1820
  51582. }
  51583. },
  51584. outfit: {
  51585. height: math.unit(7, "feet"),
  51586. name: "Outfit",
  51587. image: {
  51588. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51589. extra: 1054/925,
  51590. bottom: 15/1069
  51591. }
  51592. },
  51593. head: {
  51594. height: math.unit(1.12, "feet"),
  51595. name: "Head",
  51596. image: {
  51597. source: "./media/characters/ventus-astro-fox/head.svg",
  51598. extra: 866/504,
  51599. bottom: 0/866
  51600. }
  51601. },
  51602. hand: {
  51603. height: math.unit(1, "feet"),
  51604. name: "Hand",
  51605. image: {
  51606. source: "./media/characters/ventus-astro-fox/hand.svg"
  51607. }
  51608. },
  51609. paw: {
  51610. height: math.unit(1.5, "feet"),
  51611. name: "Paw",
  51612. image: {
  51613. source: "./media/characters/ventus-astro-fox/paw.svg"
  51614. }
  51615. },
  51616. },
  51617. [
  51618. {
  51619. name: "Normal",
  51620. height: math.unit(7, "feet"),
  51621. default: true
  51622. },
  51623. {
  51624. name: "Macro",
  51625. height: math.unit(200, "feet")
  51626. },
  51627. {
  51628. name: "Cosmic",
  51629. height: math.unit(3, "universes")
  51630. },
  51631. ]
  51632. ))
  51633. characterMakers.push(() => makeCharacter(
  51634. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51635. {
  51636. front: {
  51637. height: math.unit(3, "meters"),
  51638. weight: math.unit(7000, "lb"),
  51639. name: "Front",
  51640. image: {
  51641. source: "./media/characters/core-t/front.svg",
  51642. extra: 5729/4941,
  51643. bottom: 1129/6858
  51644. }
  51645. },
  51646. },
  51647. [
  51648. {
  51649. name: "Big",
  51650. height: math.unit(3, "meters"),
  51651. default: true
  51652. },
  51653. ]
  51654. ))
  51655. characterMakers.push(() => makeCharacter(
  51656. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51657. {
  51658. normal: {
  51659. height: math.unit(6 + 6/12, "feet"),
  51660. weight: math.unit(275, "lb"),
  51661. name: "Front",
  51662. image: {
  51663. source: "./media/characters/cadbunny/normal.svg",
  51664. extra: 1129/947,
  51665. bottom: 93/1222
  51666. },
  51667. default: true,
  51668. form: "normal"
  51669. },
  51670. gigantamax: {
  51671. height: math.unit(26, "feet"),
  51672. weight: math.unit(16000, "lb"),
  51673. name: "Front",
  51674. image: {
  51675. source: "./media/characters/cadbunny/gigantamax.svg",
  51676. extra: 1133/944,
  51677. bottom: 90/1223
  51678. },
  51679. default: true,
  51680. form: "gigantamax"
  51681. },
  51682. },
  51683. [
  51684. {
  51685. name: "Normal",
  51686. height: math.unit(6 + 6/12, "feet"),
  51687. default: true,
  51688. form: "normal"
  51689. },
  51690. {
  51691. name: "Small",
  51692. height: math.unit(26, "feet"),
  51693. default: true,
  51694. form: "gigantamax"
  51695. },
  51696. {
  51697. name: "Large",
  51698. height: math.unit(78, "feet"),
  51699. form: "gigantamax"
  51700. },
  51701. ],
  51702. {
  51703. "normal": {
  51704. name: "Normal",
  51705. default: true
  51706. },
  51707. "gigantamax": {
  51708. name: "Gigantamax"
  51709. }
  51710. }
  51711. ))
  51712. characterMakers.push(() => makeCharacter(
  51713. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51714. {
  51715. anthroFront: {
  51716. height: math.unit(8, "feet"),
  51717. weight: math.unit(300, "lb"),
  51718. name: "Front",
  51719. image: {
  51720. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51721. extra: 1272/1176,
  51722. bottom: 53/1325
  51723. },
  51724. form: "anthro",
  51725. default: true
  51726. },
  51727. feralSide: {
  51728. height: math.unit(4, "feet"),
  51729. weight: math.unit(250, "lb"),
  51730. name: "Side",
  51731. image: {
  51732. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51733. extra: 731/621,
  51734. bottom: 0/731
  51735. },
  51736. form: "feral",
  51737. default: true
  51738. },
  51739. },
  51740. [
  51741. {
  51742. name: "Regular",
  51743. height: math.unit(8, "feet"),
  51744. form: "anthro"
  51745. },
  51746. {
  51747. name: "Macro",
  51748. height: math.unit(250, "feet"),
  51749. form: "anthro",
  51750. default: true
  51751. },
  51752. {
  51753. name: "Regular",
  51754. height: math.unit(4, "feet"),
  51755. form: "feral"
  51756. },
  51757. {
  51758. name: "Macro",
  51759. height: math.unit(125, "feet"),
  51760. form: "feral",
  51761. default: true
  51762. },
  51763. ],
  51764. {
  51765. "anthro": {
  51766. name: "Anthro",
  51767. default: true
  51768. },
  51769. "feral": {
  51770. name: "Feral",
  51771. },
  51772. }
  51773. ))
  51774. characterMakers.push(() => makeCharacter(
  51775. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51776. {
  51777. front: {
  51778. height: math.unit(11 + 10/12, "feet"),
  51779. weight: math.unit(1587, "kg"),
  51780. name: "Front",
  51781. image: {
  51782. source: "./media/characters/maple-javira-dragon/front.svg",
  51783. extra: 1136/744,
  51784. bottom: 73/1209
  51785. }
  51786. },
  51787. side: {
  51788. height: math.unit(11 + 10/12, "feet"),
  51789. weight: math.unit(1587, "kg"),
  51790. name: "Side",
  51791. image: {
  51792. source: "./media/characters/maple-javira-dragon/side.svg",
  51793. extra: 712/505,
  51794. bottom: 17/729
  51795. }
  51796. },
  51797. head: {
  51798. height: math.unit(8.05, "feet"),
  51799. name: "Head",
  51800. image: {
  51801. source: "./media/characters/maple-javira-dragon/head.svg",
  51802. extra: 1420/1344,
  51803. bottom: 0/1420
  51804. }
  51805. },
  51806. },
  51807. [
  51808. {
  51809. name: "Normal",
  51810. height: math.unit(11 + 10/12, "feet"),
  51811. default: true
  51812. },
  51813. ]
  51814. ))
  51815. characterMakers.push(() => makeCharacter(
  51816. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51817. {
  51818. front: {
  51819. height: math.unit(117, "cm"),
  51820. weight: math.unit(50, "kg"),
  51821. name: "Front",
  51822. image: {
  51823. source: "./media/characters/sonia-wyverntail/front.svg",
  51824. extra: 708/592,
  51825. bottom: 25/733
  51826. }
  51827. },
  51828. },
  51829. [
  51830. {
  51831. name: "Normal",
  51832. height: math.unit(117, "cm"),
  51833. default: true
  51834. },
  51835. ]
  51836. ))
  51837. characterMakers.push(() => makeCharacter(
  51838. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51839. {
  51840. front: {
  51841. height: math.unit(6 + 5/12, "feet"),
  51842. name: "Front",
  51843. image: {
  51844. source: "./media/characters/micah/front.svg",
  51845. extra: 1758/1546,
  51846. bottom: 214/1972
  51847. }
  51848. },
  51849. },
  51850. [
  51851. {
  51852. name: "Normal",
  51853. height: math.unit(6 + 5/12, "feet"),
  51854. default: true
  51855. },
  51856. ]
  51857. ))
  51858. characterMakers.push(() => makeCharacter(
  51859. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51860. {
  51861. front: {
  51862. height: math.unit(1.75, "meters"),
  51863. weight: math.unit(100, "kg"),
  51864. name: "Front",
  51865. image: {
  51866. source: "./media/characters/zarya/front.svg",
  51867. extra: 741/735,
  51868. bottom: 44/785
  51869. },
  51870. extraAttributes: {
  51871. "tailLength": {
  51872. name: "Tail Length",
  51873. power: 1,
  51874. type: "length",
  51875. base: math.unit(180, "cm")
  51876. },
  51877. "pawLength": {
  51878. name: "Paw Length",
  51879. power: 1,
  51880. type: "length",
  51881. base: math.unit(31, "cm")
  51882. },
  51883. }
  51884. },
  51885. side: {
  51886. height: math.unit(1.75, "meters"),
  51887. weight: math.unit(100, "kg"),
  51888. name: "Side",
  51889. image: {
  51890. source: "./media/characters/zarya/side.svg",
  51891. extra: 776/770,
  51892. bottom: 17/793
  51893. },
  51894. extraAttributes: {
  51895. "tailLength": {
  51896. name: "Tail Length",
  51897. power: 1,
  51898. type: "length",
  51899. base: math.unit(180, "cm")
  51900. },
  51901. "pawLength": {
  51902. name: "Paw Length",
  51903. power: 1,
  51904. type: "length",
  51905. base: math.unit(31, "cm")
  51906. },
  51907. }
  51908. },
  51909. back: {
  51910. height: math.unit(1.75, "meters"),
  51911. weight: math.unit(100, "kg"),
  51912. name: "Back",
  51913. image: {
  51914. source: "./media/characters/zarya/back.svg",
  51915. extra: 741/735,
  51916. bottom: 44/785
  51917. },
  51918. extraAttributes: {
  51919. "tailLength": {
  51920. name: "Tail Length",
  51921. power: 1,
  51922. type: "length",
  51923. base: math.unit(180, "cm")
  51924. },
  51925. "pawLength": {
  51926. name: "Paw Length",
  51927. power: 1,
  51928. type: "length",
  51929. base: math.unit(31, "cm")
  51930. },
  51931. }
  51932. },
  51933. frontNoTail: {
  51934. height: math.unit(1.75, "meters"),
  51935. weight: math.unit(100, "kg"),
  51936. name: "Front (No Tail)",
  51937. image: {
  51938. source: "./media/characters/zarya/front-no-tail.svg",
  51939. extra: 741/735,
  51940. bottom: 44/785
  51941. },
  51942. extraAttributes: {
  51943. "tailLength": {
  51944. name: "Tail Length",
  51945. power: 1,
  51946. type: "length",
  51947. base: math.unit(180, "cm")
  51948. },
  51949. "pawLength": {
  51950. name: "Paw Length",
  51951. power: 1,
  51952. type: "length",
  51953. base: math.unit(31, "cm")
  51954. },
  51955. }
  51956. },
  51957. dressed: {
  51958. height: math.unit(1.75, "meters"),
  51959. weight: math.unit(100, "kg"),
  51960. name: "Dressed",
  51961. image: {
  51962. source: "./media/characters/zarya/dressed.svg",
  51963. extra: 683/672,
  51964. bottom: 79/762
  51965. },
  51966. extraAttributes: {
  51967. "tailLength": {
  51968. name: "Tail Length",
  51969. power: 1,
  51970. type: "length",
  51971. base: math.unit(180, "cm")
  51972. },
  51973. "pawLength": {
  51974. name: "Paw Length",
  51975. power: 1,
  51976. type: "length",
  51977. base: math.unit(31, "cm")
  51978. },
  51979. }
  51980. },
  51981. },
  51982. [
  51983. {
  51984. name: "Micro",
  51985. height: math.unit(5, "cm")
  51986. },
  51987. {
  51988. name: "Normal",
  51989. height: math.unit(1.75, "meters"),
  51990. default: true
  51991. },
  51992. {
  51993. name: "Macro",
  51994. height: math.unit(122, "meters")
  51995. },
  51996. ]
  51997. ))
  51998. characterMakers.push(() => makeCharacter(
  51999. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52000. {
  52001. front: {
  52002. height: math.unit(7.5, "feet"),
  52003. name: "Front",
  52004. image: {
  52005. source: "./media/characters/sven-hatisson/front.svg",
  52006. extra: 917/857,
  52007. bottom: 42/959
  52008. }
  52009. },
  52010. back: {
  52011. height: math.unit(7.5, "feet"),
  52012. name: "Back",
  52013. image: {
  52014. source: "./media/characters/sven-hatisson/back.svg",
  52015. extra: 903/856,
  52016. bottom: 15/918
  52017. }
  52018. },
  52019. },
  52020. [
  52021. {
  52022. name: "Base Height",
  52023. height: math.unit(7.5, "feet")
  52024. },
  52025. {
  52026. name: "Usual Height",
  52027. height: math.unit(13.5, "feet"),
  52028. default: true
  52029. },
  52030. {
  52031. name: "Smaller Macro",
  52032. height: math.unit(85, "feet")
  52033. },
  52034. {
  52035. name: "Moderate Macro",
  52036. height: math.unit(320, "feet")
  52037. },
  52038. {
  52039. name: "Large Macro",
  52040. height: math.unit(1000, "feet")
  52041. },
  52042. {
  52043. name: "Largest Size",
  52044. height: math.unit(2, "miles")
  52045. },
  52046. ]
  52047. ))
  52048. characterMakers.push(() => makeCharacter(
  52049. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52050. {
  52051. side: {
  52052. height: math.unit(1.8, "meters"),
  52053. weight: math.unit(275, "kg"),
  52054. name: "Side",
  52055. image: {
  52056. source: "./media/characters/terra/side.svg",
  52057. extra: 1273/1147,
  52058. bottom: 0/1273
  52059. }
  52060. },
  52061. },
  52062. [
  52063. {
  52064. name: "Normal",
  52065. height: math.unit(16.2, "meters"),
  52066. default: true
  52067. },
  52068. ]
  52069. ))
  52070. characterMakers.push(() => makeCharacter(
  52071. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52072. {
  52073. borzoiFront: {
  52074. height: math.unit(6 + 9/12, "feet"),
  52075. name: "Front",
  52076. image: {
  52077. source: "./media/characters/rae/borzoi-front.svg",
  52078. extra: 1161/1098,
  52079. bottom: 31/1192
  52080. },
  52081. form: "borzoi",
  52082. default: true
  52083. },
  52084. werewolfFront: {
  52085. height: math.unit(8 + 7/12, "feet"),
  52086. name: "Front",
  52087. image: {
  52088. source: "./media/characters/rae/werewolf-front.svg",
  52089. extra: 1411/1334,
  52090. bottom: 127/1538
  52091. },
  52092. form: "werewolf",
  52093. default: true
  52094. },
  52095. },
  52096. [
  52097. {
  52098. name: "Normal",
  52099. height: math.unit(6 + 9/12, "feet"),
  52100. default: true,
  52101. form: "borzoi"
  52102. },
  52103. {
  52104. name: "Normal",
  52105. height: math.unit(8 + 7/12, "feet"),
  52106. default: true,
  52107. form: "werewolf"
  52108. },
  52109. ],
  52110. {
  52111. "borzoi": {
  52112. name: "Borzoi",
  52113. default: true
  52114. },
  52115. "werewolf": {
  52116. name: "Werewolf",
  52117. },
  52118. }
  52119. ))
  52120. characterMakers.push(() => makeCharacter(
  52121. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52122. {
  52123. front: {
  52124. height: math.unit(8 + 7/12, "feet"),
  52125. weight: math.unit(482, "lb"),
  52126. name: "Front",
  52127. image: {
  52128. source: "./media/characters/kit/front.svg",
  52129. extra: 1247/1103,
  52130. bottom: 41/1288
  52131. }
  52132. },
  52133. back: {
  52134. height: math.unit(8 + 7/12, "feet"),
  52135. weight: math.unit(482, "lb"),
  52136. name: "Back",
  52137. image: {
  52138. source: "./media/characters/kit/back.svg",
  52139. extra: 1252/1123,
  52140. bottom: 21/1273
  52141. }
  52142. },
  52143. paw: {
  52144. height: math.unit(1.46, "feet"),
  52145. name: "Paw",
  52146. image: {
  52147. source: "./media/characters/kit/paw.svg"
  52148. }
  52149. },
  52150. },
  52151. [
  52152. {
  52153. name: "Normal",
  52154. height: math.unit(2.61, "meters"),
  52155. default: true
  52156. },
  52157. {
  52158. name: "\"Tall\"",
  52159. height: math.unit(8.21, "meters")
  52160. },
  52161. {
  52162. name: "Tall",
  52163. height: math.unit(19.6, "meters")
  52164. },
  52165. {
  52166. name: "Very Tall",
  52167. height: math.unit(57.91, "meters")
  52168. },
  52169. {
  52170. name: "Semi-Macro",
  52171. height: math.unit(138.64, "meters")
  52172. },
  52173. {
  52174. name: "Macro",
  52175. height: math.unit(831.99, "meters")
  52176. },
  52177. {
  52178. name: "EX-Macro",
  52179. height: math.unit(96451121, "meters")
  52180. },
  52181. {
  52182. name: "S1-Omnipotent",
  52183. height: math.unit(4.42074e+9, "meters")
  52184. },
  52185. {
  52186. name: "S2-Omnipotent",
  52187. height: math.unit(9.42074e+17, "meters")
  52188. },
  52189. {
  52190. name: "Omnipotent",
  52191. height: math.unit(4.23112e+24, "meters")
  52192. },
  52193. {
  52194. name: "Hypergod",
  52195. height: math.unit(5.05176e+27, "meters")
  52196. },
  52197. {
  52198. name: "Hypergod-EX",
  52199. height: math.unit(9.45532e+49, "meters")
  52200. },
  52201. {
  52202. name: "Hypergod-SP",
  52203. height: math.unit(9.45532e+195, "meters")
  52204. },
  52205. ]
  52206. ))
  52207. characterMakers.push(() => makeCharacter(
  52208. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52209. {
  52210. side: {
  52211. height: math.unit(0.6, "meters"),
  52212. weight: math.unit(24, "kg"),
  52213. name: "Side",
  52214. image: {
  52215. source: "./media/characters/celeste/side.svg",
  52216. extra: 810/517,
  52217. bottom: 53/863
  52218. }
  52219. },
  52220. },
  52221. [
  52222. {
  52223. name: "Velociraptor",
  52224. height: math.unit(0.6, "meters"),
  52225. default: true
  52226. },
  52227. {
  52228. name: "Utahraptor",
  52229. height: math.unit(1.8, "meters")
  52230. },
  52231. {
  52232. name: "Gallimimus",
  52233. height: math.unit(4.0, "meters")
  52234. },
  52235. {
  52236. name: "Large",
  52237. height: math.unit(20, "meters")
  52238. },
  52239. {
  52240. name: "Planetary",
  52241. height: math.unit(50, "megameters")
  52242. },
  52243. {
  52244. name: "Stellar",
  52245. height: math.unit(1.5, "gigameters")
  52246. },
  52247. {
  52248. name: "Galactic",
  52249. height: math.unit(100, "exameters")
  52250. },
  52251. ]
  52252. ))
  52253. characterMakers.push(() => makeCharacter(
  52254. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52255. {
  52256. front: {
  52257. height: math.unit(6, "feet"),
  52258. weight: math.unit(210, "lb"),
  52259. name: "Front",
  52260. image: {
  52261. source: "./media/characters/glacia/front.svg",
  52262. extra: 958/901,
  52263. bottom: 45/1003
  52264. }
  52265. },
  52266. },
  52267. [
  52268. {
  52269. name: "Macro",
  52270. height: math.unit(1000, "meters"),
  52271. default: true
  52272. },
  52273. ]
  52274. ))
  52275. characterMakers.push(() => makeCharacter(
  52276. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52277. {
  52278. front: {
  52279. height: math.unit(4, "meters"),
  52280. name: "Front",
  52281. image: {
  52282. source: "./media/characters/giri/front.svg",
  52283. extra: 966/894,
  52284. bottom: 21/987
  52285. }
  52286. },
  52287. },
  52288. [
  52289. {
  52290. name: "Normal",
  52291. height: math.unit(4, "meters"),
  52292. default: true
  52293. },
  52294. ]
  52295. ))
  52296. characterMakers.push(() => makeCharacter(
  52297. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52298. {
  52299. back: {
  52300. height: math.unit(4, "feet"),
  52301. weight: math.unit(37, "lb"),
  52302. name: "Back",
  52303. image: {
  52304. source: "./media/characters/tin/back.svg",
  52305. extra: 845/780,
  52306. bottom: 28/873
  52307. }
  52308. },
  52309. },
  52310. [
  52311. {
  52312. name: "Normal",
  52313. height: math.unit(4, "feet"),
  52314. default: true
  52315. },
  52316. ]
  52317. ))
  52318. characterMakers.push(() => makeCharacter(
  52319. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52320. {
  52321. front: {
  52322. height: math.unit(25, "feet"),
  52323. name: "Front",
  52324. image: {
  52325. source: "./media/characters/cadenza-vivace/front.svg",
  52326. extra: 1842/1578,
  52327. bottom: 30/1872
  52328. }
  52329. },
  52330. },
  52331. [
  52332. {
  52333. name: "Macro",
  52334. height: math.unit(25, "feet"),
  52335. default: true
  52336. },
  52337. ]
  52338. ))
  52339. characterMakers.push(() => makeCharacter(
  52340. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52341. {
  52342. front: {
  52343. height: math.unit(10, "feet"),
  52344. weight: math.unit(625, "kg"),
  52345. name: "Front",
  52346. image: {
  52347. source: "./media/characters/zain/front.svg",
  52348. extra: 1682/1498,
  52349. bottom: 223/1905
  52350. }
  52351. },
  52352. back: {
  52353. height: math.unit(10, "feet"),
  52354. weight: math.unit(625, "kg"),
  52355. name: "Back",
  52356. image: {
  52357. source: "./media/characters/zain/back.svg",
  52358. extra: 1814/1657,
  52359. bottom: 152/1966
  52360. }
  52361. },
  52362. head: {
  52363. height: math.unit(10, "feet"),
  52364. weight: math.unit(625, "kg"),
  52365. name: "Head",
  52366. image: {
  52367. source: "./media/characters/zain/head.svg",
  52368. extra: 1059/762,
  52369. bottom: 0/1059
  52370. }
  52371. },
  52372. },
  52373. [
  52374. {
  52375. name: "Normal",
  52376. height: math.unit(10, "feet"),
  52377. default: true
  52378. },
  52379. ]
  52380. ))
  52381. characterMakers.push(() => makeCharacter(
  52382. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52383. {
  52384. front: {
  52385. height: math.unit(6 + 5/12, "feet"),
  52386. weight: math.unit(750, "lb"),
  52387. name: "Front",
  52388. image: {
  52389. source: "./media/characters/ruchex/front.svg",
  52390. extra: 877/820,
  52391. bottom: 17/894
  52392. },
  52393. extraAttributes: {
  52394. "width": {
  52395. name: "Width",
  52396. power: 1,
  52397. type: "length",
  52398. base: math.unit(4.757, "feet")
  52399. },
  52400. }
  52401. },
  52402. },
  52403. [
  52404. {
  52405. name: "Normal",
  52406. height: math.unit(6 + 5/12, "feet"),
  52407. default: true
  52408. },
  52409. ]
  52410. ))
  52411. characterMakers.push(() => makeCharacter(
  52412. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52413. {
  52414. dressedFront: {
  52415. height: math.unit(191, "cm"),
  52416. weight: math.unit(80, "kg"),
  52417. name: "Front",
  52418. image: {
  52419. source: "./media/characters/buster/dressed-front.svg",
  52420. extra: 1022/973,
  52421. bottom: 69/1091
  52422. }
  52423. },
  52424. dressedBack: {
  52425. height: math.unit(191, "cm"),
  52426. weight: math.unit(80, "kg"),
  52427. name: "Back",
  52428. image: {
  52429. source: "./media/characters/buster/dressed-back.svg",
  52430. extra: 1018/970,
  52431. bottom: 55/1073
  52432. }
  52433. },
  52434. nudeFront: {
  52435. height: math.unit(191, "cm"),
  52436. weight: math.unit(80, "kg"),
  52437. name: "Front (Nude)",
  52438. image: {
  52439. source: "./media/characters/buster/nude-front.svg",
  52440. extra: 1022/973,
  52441. bottom: 69/1091
  52442. }
  52443. },
  52444. nudeBack: {
  52445. height: math.unit(191, "cm"),
  52446. weight: math.unit(80, "kg"),
  52447. name: "Back (Nude)",
  52448. image: {
  52449. source: "./media/characters/buster/nude-back.svg",
  52450. extra: 1018/970,
  52451. bottom: 55/1073
  52452. }
  52453. },
  52454. dick: {
  52455. height: math.unit(2.59, "feet"),
  52456. name: "Dick",
  52457. image: {
  52458. source: "./media/characters/buster/dick.svg"
  52459. }
  52460. },
  52461. ass: {
  52462. height: math.unit(1.2, "feet"),
  52463. name: "Ass",
  52464. image: {
  52465. source: "./media/characters/buster/ass.svg"
  52466. }
  52467. },
  52468. },
  52469. [
  52470. {
  52471. name: "Normal",
  52472. height: math.unit(191, "cm"),
  52473. default: true
  52474. },
  52475. ]
  52476. ))
  52477. characterMakers.push(() => makeCharacter(
  52478. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52479. {
  52480. side: {
  52481. height: math.unit(8.1, "feet"),
  52482. weight: math.unit(3500, "lb"),
  52483. name: "Side",
  52484. image: {
  52485. source: "./media/characters/sonya/side.svg",
  52486. extra: 1730/1317,
  52487. bottom: 86/1816
  52488. }
  52489. },
  52490. },
  52491. [
  52492. {
  52493. name: "Normal",
  52494. height: math.unit(8.1, "feet"),
  52495. default: true
  52496. },
  52497. ]
  52498. ))
  52499. characterMakers.push(() => makeCharacter(
  52500. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52501. {
  52502. front: {
  52503. height: math.unit(6, "feet"),
  52504. weight: math.unit(150, "lb"),
  52505. name: "Front",
  52506. image: {
  52507. source: "./media/characters/cadence-andrysiak/front.svg",
  52508. extra: 1164/1121,
  52509. bottom: 60/1224
  52510. }
  52511. },
  52512. back: {
  52513. height: math.unit(6, "feet"),
  52514. weight: math.unit(150, "lb"),
  52515. name: "Back",
  52516. image: {
  52517. source: "./media/characters/cadence-andrysiak/back.svg",
  52518. extra: 1200/1165,
  52519. bottom: 9/1209
  52520. }
  52521. },
  52522. dressed: {
  52523. height: math.unit(6, "feet"),
  52524. weight: math.unit(150, "lb"),
  52525. name: "Dressed",
  52526. image: {
  52527. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52528. extra: 1164/1121,
  52529. bottom: 60/1224
  52530. }
  52531. },
  52532. },
  52533. [
  52534. {
  52535. name: "Micro",
  52536. height: math.unit(1, "mm")
  52537. },
  52538. {
  52539. name: "Normal",
  52540. height: math.unit(6, "feet"),
  52541. default: true
  52542. },
  52543. ]
  52544. ))
  52545. characterMakers.push(() => makeCharacter(
  52546. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52547. {
  52548. front: {
  52549. height: math.unit(60, "inches"),
  52550. weight: math.unit(16, "lb"),
  52551. preyCapacity: math.unit(80, "liters"),
  52552. name: "Front",
  52553. image: {
  52554. source: "./media/characters/penny-lynx/front.svg",
  52555. extra: 1959/1769,
  52556. bottom: 49/2008
  52557. }
  52558. },
  52559. },
  52560. [
  52561. {
  52562. name: "Nokia",
  52563. height: math.unit(2, "inches")
  52564. },
  52565. {
  52566. name: "Desktop",
  52567. height: math.unit(24, "inches")
  52568. },
  52569. {
  52570. name: "TV",
  52571. height: math.unit(60, "inches")
  52572. },
  52573. {
  52574. name: "Jumbotron",
  52575. height: math.unit(12, "feet")
  52576. },
  52577. {
  52578. name: "Billboard",
  52579. height: math.unit(48, "feet"),
  52580. default: true
  52581. },
  52582. {
  52583. name: "IMAX",
  52584. height: math.unit(96, "feet")
  52585. },
  52586. {
  52587. name: "SINGULARITY",
  52588. height: math.unit(864938, "miles")
  52589. },
  52590. ]
  52591. ))
  52592. characterMakers.push(() => makeCharacter(
  52593. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52594. {
  52595. front: {
  52596. height: math.unit(5 + 4/12, "feet"),
  52597. weight: math.unit(230, "lb"),
  52598. name: "Front",
  52599. image: {
  52600. source: "./media/characters/sukebe/front.svg",
  52601. extra: 2130/2038,
  52602. bottom: 90/2220
  52603. }
  52604. },
  52605. back: {
  52606. height: math.unit(3.48, "feet"),
  52607. weight: math.unit(230, "lb"),
  52608. name: "Back",
  52609. image: {
  52610. source: "./media/characters/sukebe/back.svg",
  52611. extra: 1670/1604,
  52612. bottom: 0/1670
  52613. }
  52614. },
  52615. },
  52616. [
  52617. {
  52618. name: "Normal",
  52619. height: math.unit(5 + 4/12, "feet"),
  52620. default: true
  52621. },
  52622. ]
  52623. ))
  52624. characterMakers.push(() => makeCharacter(
  52625. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52626. {
  52627. front: {
  52628. height: math.unit(6, "feet"),
  52629. name: "Front",
  52630. image: {
  52631. source: "./media/characters/nylla/front.svg",
  52632. extra: 1868/1699,
  52633. bottom: 97/1965
  52634. }
  52635. },
  52636. back: {
  52637. height: math.unit(6, "feet"),
  52638. name: "Back",
  52639. image: {
  52640. source: "./media/characters/nylla/back.svg",
  52641. extra: 1889/1712,
  52642. bottom: 93/1982
  52643. }
  52644. },
  52645. frontNsfw: {
  52646. height: math.unit(6, "feet"),
  52647. name: "Front (NSFW)",
  52648. image: {
  52649. source: "./media/characters/nylla/front-nsfw.svg",
  52650. extra: 1868/1699,
  52651. bottom: 97/1965
  52652. },
  52653. extraAttributes: {
  52654. "dickLength": {
  52655. name: "Dick Length",
  52656. power: 1,
  52657. type: "length",
  52658. base: math.unit(1.4, "feet")
  52659. },
  52660. "cumVolume": {
  52661. name: "Cum Volume",
  52662. power: 3,
  52663. type: "volume",
  52664. base: math.unit(100, "mL")
  52665. },
  52666. }
  52667. },
  52668. backNsfw: {
  52669. height: math.unit(6, "feet"),
  52670. name: "Back (NSFW)",
  52671. image: {
  52672. source: "./media/characters/nylla/back-nsfw.svg",
  52673. extra: 1889/1712,
  52674. bottom: 93/1982
  52675. }
  52676. },
  52677. maw: {
  52678. height: math.unit(2.10, "feet"),
  52679. name: "Maw",
  52680. image: {
  52681. source: "./media/characters/nylla/maw.svg"
  52682. }
  52683. },
  52684. paws: {
  52685. height: math.unit(2.06, "feet"),
  52686. name: "Paws",
  52687. image: {
  52688. source: "./media/characters/nylla/paws.svg"
  52689. }
  52690. },
  52691. muzzle: {
  52692. height: math.unit(0.61, "feet"),
  52693. name: "Muzzle",
  52694. image: {
  52695. source: "./media/characters/nylla/muzzle.svg"
  52696. }
  52697. },
  52698. sheath: {
  52699. height: math.unit(1.305, "feet"),
  52700. name: "Sheath",
  52701. image: {
  52702. source: "./media/characters/nylla/sheath.svg"
  52703. }
  52704. },
  52705. },
  52706. [
  52707. {
  52708. name: "Micro",
  52709. height: math.unit(7.5, "inches")
  52710. },
  52711. {
  52712. name: "Normal",
  52713. height: math.unit(7, "feet"),
  52714. default: true
  52715. },
  52716. {
  52717. name: "Macro",
  52718. height: math.unit(60, "feet")
  52719. },
  52720. {
  52721. name: "Mega",
  52722. height: math.unit(200, "feet")
  52723. },
  52724. ]
  52725. ))
  52726. characterMakers.push(() => makeCharacter(
  52727. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52728. {
  52729. front: {
  52730. height: math.unit(10, "feet"),
  52731. weight: math.unit(2300, "lb"),
  52732. name: "Front",
  52733. image: {
  52734. source: "./media/characters/hunt3r/front.svg",
  52735. extra: 1909/1742,
  52736. bottom: 46/1955
  52737. }
  52738. },
  52739. },
  52740. [
  52741. {
  52742. name: "Normal",
  52743. height: math.unit(10, "feet"),
  52744. default: true
  52745. },
  52746. ]
  52747. ))
  52748. characterMakers.push(() => makeCharacter(
  52749. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52750. {
  52751. dressed: {
  52752. height: math.unit(11, "feet"),
  52753. weight: math.unit(18500, "lb"),
  52754. preyCapacity: math.unit(9, "people"),
  52755. name: "Dressed",
  52756. image: {
  52757. source: "./media/characters/cylphis/dressed.svg",
  52758. extra: 1028/1003,
  52759. bottom: 75/1103
  52760. },
  52761. },
  52762. undressed: {
  52763. height: math.unit(11, "feet"),
  52764. weight: math.unit(18500, "lb"),
  52765. preyCapacity: math.unit(9, "people"),
  52766. name: "Undressed",
  52767. image: {
  52768. source: "./media/characters/cylphis/undressed.svg",
  52769. extra: 1028/1003,
  52770. bottom: 75/1103
  52771. }
  52772. },
  52773. full: {
  52774. height: math.unit(11, "feet"),
  52775. weight: math.unit(18500 + 150*9, "lb"),
  52776. preyCapacity: math.unit(9, "people"),
  52777. name: "Full",
  52778. image: {
  52779. source: "./media/characters/cylphis/full.svg",
  52780. extra: 1028/1003,
  52781. bottom: 75/1103
  52782. }
  52783. },
  52784. },
  52785. [
  52786. {
  52787. name: "Small",
  52788. height: math.unit(8, "feet")
  52789. },
  52790. {
  52791. name: "Normal",
  52792. height: math.unit(11, "feet"),
  52793. default: true
  52794. },
  52795. ]
  52796. ))
  52797. characterMakers.push(() => makeCharacter(
  52798. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52799. {
  52800. front: {
  52801. height: math.unit(2 + 7/12, "feet"),
  52802. name: "Front",
  52803. image: {
  52804. source: "./media/characters/orishan/front.svg",
  52805. extra: 1058/1023,
  52806. bottom: 23/1081
  52807. }
  52808. },
  52809. back: {
  52810. height: math.unit(2 + 7/12, "feet"),
  52811. name: "Back",
  52812. image: {
  52813. source: "./media/characters/orishan/back.svg",
  52814. extra: 1058/1023,
  52815. bottom: 23/1081
  52816. }
  52817. },
  52818. },
  52819. [
  52820. {
  52821. name: "Micro",
  52822. height: math.unit(2, "cm")
  52823. },
  52824. {
  52825. name: "Normal",
  52826. height: math.unit(2 + 7/12, "feet"),
  52827. default: true
  52828. },
  52829. ]
  52830. ))
  52831. characterMakers.push(() => makeCharacter(
  52832. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52833. {
  52834. front: {
  52835. height: math.unit(3, "meters"),
  52836. weight: math.unit(508, "kg"),
  52837. name: "Front",
  52838. image: {
  52839. source: "./media/characters/seranis/front.svg",
  52840. extra: 1478/1454,
  52841. bottom: 41/1519
  52842. }
  52843. },
  52844. },
  52845. [
  52846. {
  52847. name: "Normal",
  52848. height: math.unit(3, "meters"),
  52849. default: true
  52850. },
  52851. {
  52852. name: "Macro",
  52853. height: math.unit(108, "meters")
  52854. },
  52855. {
  52856. name: "Megamacro",
  52857. height: math.unit(1250, "meters")
  52858. },
  52859. ]
  52860. ))
  52861. characterMakers.push(() => makeCharacter(
  52862. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52863. {
  52864. undressed: {
  52865. height: math.unit(5 + 3/12, "feet"),
  52866. name: "Undressed",
  52867. image: {
  52868. source: "./media/characters/ankou/undressed.svg",
  52869. extra: 1301/1213,
  52870. bottom: 87/1388
  52871. }
  52872. },
  52873. dressed: {
  52874. height: math.unit(5 + 3/12, "feet"),
  52875. name: "Dressed",
  52876. image: {
  52877. source: "./media/characters/ankou/dressed.svg",
  52878. extra: 1301/1213,
  52879. bottom: 87/1388
  52880. }
  52881. },
  52882. head: {
  52883. height: math.unit(1.61, "feet"),
  52884. name: "Head",
  52885. image: {
  52886. source: "./media/characters/ankou/head.svg"
  52887. }
  52888. },
  52889. },
  52890. [
  52891. {
  52892. name: "Normal",
  52893. height: math.unit(5 + 3/12, "feet"),
  52894. default: true
  52895. },
  52896. ]
  52897. ))
  52898. characterMakers.push(() => makeCharacter(
  52899. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52900. {
  52901. side: {
  52902. height: math.unit(6 + 3/12, "feet"),
  52903. weight: math.unit(200, "kg"),
  52904. name: "Side",
  52905. image: {
  52906. source: "./media/characters/juniper-skunktaur/side.svg",
  52907. extra: 1574/1229,
  52908. bottom: 38/1612
  52909. }
  52910. },
  52911. front: {
  52912. height: math.unit(6 + 3/12, "feet"),
  52913. weight: math.unit(200, "kg"),
  52914. name: "Front",
  52915. image: {
  52916. source: "./media/characters/juniper-skunktaur/front.svg",
  52917. extra: 1337/1278,
  52918. bottom: 22/1359
  52919. }
  52920. },
  52921. back: {
  52922. height: math.unit(6 + 3/12, "feet"),
  52923. weight: math.unit(200, "kg"),
  52924. name: "Back",
  52925. image: {
  52926. source: "./media/characters/juniper-skunktaur/back.svg",
  52927. extra: 1618/1273,
  52928. bottom: 13/1631
  52929. }
  52930. },
  52931. top: {
  52932. height: math.unit(2.62, "feet"),
  52933. weight: math.unit(200, "kg"),
  52934. name: "Top",
  52935. image: {
  52936. source: "./media/characters/juniper-skunktaur/top.svg"
  52937. }
  52938. },
  52939. },
  52940. [
  52941. {
  52942. name: "Normal",
  52943. height: math.unit(6 + 3/12, "feet"),
  52944. default: true
  52945. },
  52946. ]
  52947. ))
  52948. characterMakers.push(() => makeCharacter(
  52949. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52950. {
  52951. front: {
  52952. height: math.unit(20.5, "feet"),
  52953. name: "Front",
  52954. image: {
  52955. source: "./media/characters/rei/front.svg",
  52956. extra: 1349/1195,
  52957. bottom: 31/1380
  52958. }
  52959. },
  52960. back: {
  52961. height: math.unit(20.5, "feet"),
  52962. name: "Back",
  52963. image: {
  52964. source: "./media/characters/rei/back.svg",
  52965. extra: 1358/1204,
  52966. bottom: 22/1380
  52967. }
  52968. },
  52969. pawsDigi: {
  52970. height: math.unit(3.45, "feet"),
  52971. name: "Paws (Digi)",
  52972. image: {
  52973. source: "./media/characters/rei/paws-digi.svg"
  52974. }
  52975. },
  52976. pawsPlanti: {
  52977. height: math.unit(3.45, "feet"),
  52978. name: "Paws (Planti)",
  52979. image: {
  52980. source: "./media/characters/rei/paws-planti.svg"
  52981. }
  52982. },
  52983. },
  52984. [
  52985. {
  52986. name: "Normal",
  52987. height: math.unit(20.5, "feet"),
  52988. default: true
  52989. },
  52990. ]
  52991. ))
  52992. characterMakers.push(() => makeCharacter(
  52993. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52994. {
  52995. front: {
  52996. height: math.unit(5 + 11/12, "feet"),
  52997. name: "Front",
  52998. image: {
  52999. source: "./media/characters/carina/front.svg",
  53000. extra: 1720/1449,
  53001. bottom: 14/1734
  53002. }
  53003. },
  53004. back: {
  53005. height: math.unit(5 + 11/12, "feet"),
  53006. name: "Back",
  53007. image: {
  53008. source: "./media/characters/carina/back.svg",
  53009. extra: 1493/1445,
  53010. bottom: 17/1510
  53011. }
  53012. },
  53013. paw: {
  53014. height: math.unit(0.92, "feet"),
  53015. name: "Paw",
  53016. image: {
  53017. source: "./media/characters/carina/paw.svg"
  53018. }
  53019. },
  53020. },
  53021. [
  53022. {
  53023. name: "Normal",
  53024. height: math.unit(5 + 11/12, "feet"),
  53025. default: true
  53026. },
  53027. ]
  53028. ))
  53029. characterMakers.push(() => makeCharacter(
  53030. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53031. {
  53032. normal_front: {
  53033. height: math.unit(4.88, "meters"),
  53034. name: "Front",
  53035. image: {
  53036. source: "./media/characters/maya/normal-front.svg",
  53037. extra: 1222/1145,
  53038. bottom: 57/1279
  53039. },
  53040. form: "normal",
  53041. default: true
  53042. },
  53043. monstrous_front: {
  53044. height: math.unit(10, "meters"),
  53045. name: "Front",
  53046. image: {
  53047. source: "./media/characters/maya/monstrous-front.svg",
  53048. extra: 1523/1109,
  53049. bottom: 113/1636
  53050. },
  53051. form: "monstrous",
  53052. extraAttributes: {
  53053. "swallowSize": {
  53054. name: "Tailmaw Bite Size",
  53055. power: 3,
  53056. type: "volume",
  53057. base: math.unit(43000, "liters")
  53058. },
  53059. }
  53060. },
  53061. taur_front: {
  53062. height: math.unit(10, "meters"),
  53063. name: "Front",
  53064. image: {
  53065. source: "./media/characters/maya/taur-front.svg",
  53066. extra: 743/506,
  53067. bottom: 101/844
  53068. },
  53069. form: "taur",
  53070. },
  53071. },
  53072. [
  53073. {
  53074. name: "Normal",
  53075. height: math.unit(4.88, "meters"),
  53076. default: true,
  53077. form: "normal"
  53078. },
  53079. {
  53080. name: "Macro",
  53081. height: math.unit(38.1, "meters"),
  53082. form: "normal"
  53083. },
  53084. {
  53085. name: "Macro+",
  53086. height: math.unit(152.4, "meters"),
  53087. form: "normal"
  53088. },
  53089. {
  53090. name: "Macro++",
  53091. height: math.unit(16.09, "km"),
  53092. form: "normal"
  53093. },
  53094. {
  53095. name: "Mega-macro",
  53096. height: math.unit(700, "megameters"),
  53097. form: "normal"
  53098. },
  53099. {
  53100. name: "Satiated",
  53101. height: math.unit(10, "meters"),
  53102. default: true,
  53103. form: "monstrous"
  53104. },
  53105. {
  53106. name: "Hungry",
  53107. height: math.unit(75, "meters"),
  53108. form: "monstrous"
  53109. },
  53110. {
  53111. name: "Ravenous",
  53112. height: math.unit(500, "meters"),
  53113. form: "monstrous"
  53114. },
  53115. {
  53116. name: "\"Normal\"",
  53117. height: math.unit(10, "meters"),
  53118. form: "taur"
  53119. },
  53120. {
  53121. name: "Macro",
  53122. height: math.unit(50, "meters"),
  53123. form: "taur"
  53124. },
  53125. ],
  53126. {
  53127. "normal": {
  53128. name: "Normal",
  53129. default: true
  53130. },
  53131. "monstrous": {
  53132. name: "Monstrous",
  53133. },
  53134. "taur": {
  53135. name: "Taur",
  53136. },
  53137. }
  53138. ))
  53139. characterMakers.push(() => makeCharacter(
  53140. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53141. {
  53142. front: {
  53143. height: math.unit(6 + 2/12, "feet"),
  53144. weight: math.unit(500, "lb"),
  53145. preyCapacity: math.unit(4, "people"),
  53146. name: "Front",
  53147. image: {
  53148. source: "./media/characters/yepir/front.svg"
  53149. }
  53150. },
  53151. side: {
  53152. height: math.unit(6 + 2/12, "feet"),
  53153. weight: math.unit(500, "lb"),
  53154. preyCapacity: math.unit(4, "people"),
  53155. name: "Side",
  53156. image: {
  53157. source: "./media/characters/yepir/side.svg"
  53158. }
  53159. },
  53160. paw: {
  53161. height: math.unit(1.05, "feet"),
  53162. name: "Paw",
  53163. image: {
  53164. source: "./media/characters/yepir/paw.svg"
  53165. }
  53166. },
  53167. },
  53168. [
  53169. {
  53170. name: "Normal",
  53171. height: math.unit(6 + 2/12, "feet"),
  53172. default: true
  53173. },
  53174. ]
  53175. ))
  53176. characterMakers.push(() => makeCharacter(
  53177. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53178. {
  53179. front: {
  53180. height: math.unit(5 + 4/12, "feet"),
  53181. name: "Front",
  53182. image: {
  53183. source: "./media/characters/russec/front.svg",
  53184. extra: 1926/1626,
  53185. bottom: 72/1998
  53186. }
  53187. },
  53188. back: {
  53189. height: math.unit(5 + 4/12, "feet"),
  53190. name: "Back",
  53191. image: {
  53192. source: "./media/characters/russec/back.svg",
  53193. extra: 1910/1591,
  53194. bottom: 48/1958
  53195. }
  53196. },
  53197. },
  53198. [
  53199. {
  53200. name: "Small",
  53201. height: math.unit(5 + 4/12, "feet")
  53202. },
  53203. {
  53204. name: "Normal",
  53205. height: math.unit(72, "feet"),
  53206. default: true
  53207. },
  53208. ]
  53209. ))
  53210. characterMakers.push(() => makeCharacter(
  53211. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53212. {
  53213. side: {
  53214. height: math.unit(12, "feet"),
  53215. name: "Side",
  53216. image: {
  53217. source: "./media/characters/cianus/side.svg",
  53218. extra: 808/526,
  53219. bottom: 61/869
  53220. }
  53221. },
  53222. },
  53223. [
  53224. {
  53225. name: "Normal",
  53226. height: math.unit(12, "feet"),
  53227. default: true
  53228. },
  53229. ]
  53230. ))
  53231. characterMakers.push(() => makeCharacter(
  53232. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53233. {
  53234. front: {
  53235. height: math.unit(9 + 6/12, "feet"),
  53236. weight: math.unit(300, "lb"),
  53237. name: "Front",
  53238. image: {
  53239. source: "./media/characters/ahab/front.svg",
  53240. extra: 1897/1868,
  53241. bottom: 121/2018
  53242. }
  53243. },
  53244. frontNsfw: {
  53245. height: math.unit(9 + 6/12, "feet"),
  53246. weight: math.unit(300, "lb"),
  53247. name: "Front-nsfw",
  53248. image: {
  53249. source: "./media/characters/ahab/front-nsfw.svg",
  53250. extra: 1897/1868,
  53251. bottom: 121/2018
  53252. }
  53253. },
  53254. },
  53255. [
  53256. {
  53257. name: "Normal",
  53258. height: math.unit(9 + 6/12, "feet")
  53259. },
  53260. {
  53261. name: "Macro",
  53262. height: math.unit(657, "feet"),
  53263. default: true
  53264. },
  53265. ]
  53266. ))
  53267. characterMakers.push(() => makeCharacter(
  53268. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53269. {
  53270. front: {
  53271. height: math.unit(2.69, "meters"),
  53272. weight: math.unit(132, "kg"),
  53273. name: "Front",
  53274. image: {
  53275. source: "./media/characters/aarkus/front.svg",
  53276. extra: 1400/1231,
  53277. bottom: 34/1434
  53278. }
  53279. },
  53280. back: {
  53281. height: math.unit(2.69, "meters"),
  53282. weight: math.unit(132, "kg"),
  53283. name: "Back",
  53284. image: {
  53285. source: "./media/characters/aarkus/back.svg",
  53286. extra: 1381/1218,
  53287. bottom: 30/1411
  53288. }
  53289. },
  53290. frontNsfw: {
  53291. height: math.unit(2.69, "meters"),
  53292. weight: math.unit(132, "kg"),
  53293. name: "Front (NSFW)",
  53294. image: {
  53295. source: "./media/characters/aarkus/front-nsfw.svg",
  53296. extra: 1400/1231,
  53297. bottom: 34/1434
  53298. }
  53299. },
  53300. foot: {
  53301. height: math.unit(1.45, "feet"),
  53302. name: "Foot",
  53303. image: {
  53304. source: "./media/characters/aarkus/foot.svg"
  53305. }
  53306. },
  53307. head: {
  53308. height: math.unit(2.85, "feet"),
  53309. name: "Head",
  53310. image: {
  53311. source: "./media/characters/aarkus/head.svg"
  53312. }
  53313. },
  53314. headAlt: {
  53315. height: math.unit(3.07, "feet"),
  53316. name: "Head (Alt)",
  53317. image: {
  53318. source: "./media/characters/aarkus/head-alt.svg"
  53319. }
  53320. },
  53321. mouth: {
  53322. height: math.unit(1.25, "feet"),
  53323. name: "Mouth",
  53324. image: {
  53325. source: "./media/characters/aarkus/mouth.svg"
  53326. }
  53327. },
  53328. dick: {
  53329. height: math.unit(1.77, "feet"),
  53330. name: "Dick",
  53331. image: {
  53332. source: "./media/characters/aarkus/dick.svg"
  53333. }
  53334. },
  53335. },
  53336. [
  53337. {
  53338. name: "Normal",
  53339. height: math.unit(2.69, "meters"),
  53340. default: true
  53341. },
  53342. {
  53343. name: "Macro",
  53344. height: math.unit(269, "meters")
  53345. },
  53346. {
  53347. name: "Macro+",
  53348. height: math.unit(672.5, "meters")
  53349. },
  53350. {
  53351. name: "Megamacro",
  53352. height: math.unit(2.017, "km")
  53353. },
  53354. ]
  53355. ))
  53356. characterMakers.push(() => makeCharacter(
  53357. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53358. {
  53359. front: {
  53360. height: math.unit(23.47, "cm"),
  53361. weight: math.unit(600, "grams"),
  53362. name: "Front",
  53363. image: {
  53364. source: "./media/characters/diode/front.svg",
  53365. extra: 1778/1396,
  53366. bottom: 95/1873
  53367. }
  53368. },
  53369. side: {
  53370. height: math.unit(23.47, "cm"),
  53371. weight: math.unit(600, "grams"),
  53372. name: "Side",
  53373. image: {
  53374. source: "./media/characters/diode/side.svg",
  53375. extra: 1831/1404,
  53376. bottom: 86/1917
  53377. }
  53378. },
  53379. wings: {
  53380. height: math.unit(0.683, "feet"),
  53381. name: "Wings",
  53382. image: {
  53383. source: "./media/characters/diode/wings.svg"
  53384. }
  53385. },
  53386. },
  53387. [
  53388. {
  53389. name: "Normal",
  53390. height: math.unit(23.47, "cm"),
  53391. default: true
  53392. },
  53393. ]
  53394. ))
  53395. characterMakers.push(() => makeCharacter(
  53396. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53397. {
  53398. front: {
  53399. height: math.unit(6 + 3/12, "feet"),
  53400. weight: math.unit(250, "lb"),
  53401. name: "Front",
  53402. image: {
  53403. source: "./media/characters/reika/front.svg",
  53404. extra: 1120/1078,
  53405. bottom: 86/1206
  53406. }
  53407. },
  53408. },
  53409. [
  53410. {
  53411. name: "Normal",
  53412. height: math.unit(6 + 3/12, "feet"),
  53413. default: true
  53414. },
  53415. ]
  53416. ))
  53417. characterMakers.push(() => makeCharacter(
  53418. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53419. {
  53420. front: {
  53421. height: math.unit(16 + 8/12, "feet"),
  53422. weight: math.unit(9000, "lb"),
  53423. name: "Front",
  53424. image: {
  53425. source: "./media/characters/lokuto-takama/front.svg",
  53426. extra: 1774/1632,
  53427. bottom: 147/1921
  53428. },
  53429. extraAttributes: {
  53430. "bustWidth": {
  53431. name: "Bust Width",
  53432. power: 1,
  53433. type: "length",
  53434. base: math.unit(2.4, "meters")
  53435. },
  53436. "breastWeight": {
  53437. name: "Breast Weight",
  53438. power: 3,
  53439. type: "mass",
  53440. base: math.unit(1000, "kg")
  53441. },
  53442. }
  53443. },
  53444. },
  53445. [
  53446. {
  53447. name: "Normal",
  53448. height: math.unit(16 + 8/12, "feet"),
  53449. default: true
  53450. },
  53451. ]
  53452. ))
  53453. characterMakers.push(() => makeCharacter(
  53454. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53455. {
  53456. front: {
  53457. height: math.unit(10, "cm"),
  53458. weight: math.unit(850, "grams"),
  53459. name: "Front",
  53460. image: {
  53461. source: "./media/characters/owak-bone/front.svg",
  53462. extra: 1965/1801,
  53463. bottom: 31/1996
  53464. }
  53465. },
  53466. },
  53467. [
  53468. {
  53469. name: "Normal",
  53470. height: math.unit(10, "cm"),
  53471. default: true
  53472. },
  53473. ]
  53474. ))
  53475. characterMakers.push(() => makeCharacter(
  53476. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53477. {
  53478. front: {
  53479. height: math.unit(2 + 6/12, "feet"),
  53480. weight: math.unit(9, "lb"),
  53481. name: "Front",
  53482. image: {
  53483. source: "./media/characters/muffin/front.svg",
  53484. extra: 1220/1195,
  53485. bottom: 84/1304
  53486. }
  53487. },
  53488. },
  53489. [
  53490. {
  53491. name: "Normal",
  53492. height: math.unit(2 + 6/12, "feet"),
  53493. default: true
  53494. },
  53495. ]
  53496. ))
  53497. characterMakers.push(() => makeCharacter(
  53498. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53499. {
  53500. front: {
  53501. height: math.unit(7, "feet"),
  53502. name: "Front",
  53503. image: {
  53504. source: "./media/characters/chimera/front.svg",
  53505. extra: 1752/1614,
  53506. bottom: 68/1820
  53507. }
  53508. },
  53509. },
  53510. [
  53511. {
  53512. name: "Normal",
  53513. height: math.unit(7, "feet")
  53514. },
  53515. {
  53516. name: "Gigamacro",
  53517. height: math.unit(2.9, "gigameters"),
  53518. default: true
  53519. },
  53520. {
  53521. name: "Universal",
  53522. height: math.unit(1.56e26, "yottameters")
  53523. },
  53524. ]
  53525. ))
  53526. characterMakers.push(() => makeCharacter(
  53527. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53528. {
  53529. front: {
  53530. height: math.unit(3, "feet"),
  53531. weight: math.unit(20, "lb"),
  53532. name: "Front",
  53533. image: {
  53534. source: "./media/characters/kit-fennec-fox/front.svg",
  53535. extra: 1027/932,
  53536. bottom: 16/1043
  53537. }
  53538. },
  53539. back: {
  53540. height: math.unit(3, "feet"),
  53541. weight: math.unit(20, "lb"),
  53542. name: "Back",
  53543. image: {
  53544. source: "./media/characters/kit-fennec-fox/back.svg",
  53545. extra: 1027/932,
  53546. bottom: 16/1043
  53547. }
  53548. },
  53549. },
  53550. [
  53551. {
  53552. name: "Normal",
  53553. height: math.unit(3, "feet"),
  53554. default: true
  53555. },
  53556. ]
  53557. ))
  53558. characterMakers.push(() => makeCharacter(
  53559. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53560. {
  53561. front: {
  53562. height: math.unit(167, "cm"),
  53563. name: "Front",
  53564. image: {
  53565. source: "./media/characters/blue-otter/front.svg",
  53566. extra: 1951/1920,
  53567. bottom: 31/1982
  53568. }
  53569. },
  53570. },
  53571. [
  53572. {
  53573. name: "Otter-Sized",
  53574. height: math.unit(100, "cm")
  53575. },
  53576. {
  53577. name: "Normal",
  53578. height: math.unit(167, "cm"),
  53579. default: true
  53580. },
  53581. ]
  53582. ))
  53583. characterMakers.push(() => makeCharacter(
  53584. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53585. {
  53586. front: {
  53587. height: math.unit(4 + 4/12, "feet"),
  53588. name: "Front",
  53589. image: {
  53590. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53591. extra: 1072/1067,
  53592. bottom: 117/1189
  53593. }
  53594. },
  53595. back: {
  53596. height: math.unit(4 + 4/12, "feet"),
  53597. name: "Back",
  53598. image: {
  53599. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53600. extra: 1135/1129,
  53601. bottom: 57/1192
  53602. }
  53603. },
  53604. head: {
  53605. height: math.unit(1.77, "feet"),
  53606. name: "Head",
  53607. image: {
  53608. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53609. }
  53610. },
  53611. },
  53612. [
  53613. {
  53614. name: "Normal",
  53615. height: math.unit(4 + 4/12, "feet"),
  53616. default: true
  53617. },
  53618. ]
  53619. ))
  53620. characterMakers.push(() => makeCharacter(
  53621. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53622. {
  53623. front: {
  53624. height: math.unit(2, "inches"),
  53625. name: "Front",
  53626. image: {
  53627. source: "./media/characters/carley-hartford/front.svg",
  53628. extra: 1035/988,
  53629. bottom: 23/1058
  53630. }
  53631. },
  53632. back: {
  53633. height: math.unit(2, "inches"),
  53634. name: "Back",
  53635. image: {
  53636. source: "./media/characters/carley-hartford/back.svg",
  53637. extra: 1035/988,
  53638. bottom: 23/1058
  53639. }
  53640. },
  53641. dressed: {
  53642. height: math.unit(2, "inches"),
  53643. name: "Dressed",
  53644. image: {
  53645. source: "./media/characters/carley-hartford/dressed.svg",
  53646. extra: 651/620,
  53647. bottom: 0/651
  53648. }
  53649. },
  53650. },
  53651. [
  53652. {
  53653. name: "Micro",
  53654. height: math.unit(2, "inches"),
  53655. default: true
  53656. },
  53657. {
  53658. name: "Macro",
  53659. height: math.unit(6 + 3/12, "feet")
  53660. },
  53661. ]
  53662. ))
  53663. characterMakers.push(() => makeCharacter(
  53664. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53665. {
  53666. front: {
  53667. height: math.unit(2 + 3/12, "feet"),
  53668. weight: math.unit(15 + 7/16, "lb"),
  53669. name: "Front",
  53670. image: {
  53671. source: "./media/characters/duke/front.svg",
  53672. extra: 910/815,
  53673. bottom: 30/940
  53674. }
  53675. },
  53676. },
  53677. [
  53678. {
  53679. name: "Normal",
  53680. height: math.unit(2 + 3/12, "feet"),
  53681. default: true
  53682. },
  53683. ]
  53684. ))
  53685. characterMakers.push(() => makeCharacter(
  53686. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53687. {
  53688. front: {
  53689. height: math.unit(5 + 4/12, "feet"),
  53690. weight: math.unit(156, "lb"),
  53691. name: "Front",
  53692. image: {
  53693. source: "./media/characters/dein/front.svg",
  53694. extra: 855/815,
  53695. bottom: 48/903
  53696. }
  53697. },
  53698. side: {
  53699. height: math.unit(5 + 4/12, "feet"),
  53700. weight: math.unit(156, "lb"),
  53701. name: "side",
  53702. image: {
  53703. source: "./media/characters/dein/side.svg",
  53704. extra: 846/803,
  53705. bottom: 25/871
  53706. }
  53707. },
  53708. maw: {
  53709. height: math.unit(1.45, "feet"),
  53710. name: "Maw",
  53711. image: {
  53712. source: "./media/characters/dein/maw.svg"
  53713. }
  53714. },
  53715. },
  53716. [
  53717. {
  53718. name: "Ferret Sized",
  53719. height: math.unit(2 + 5/12, "feet")
  53720. },
  53721. {
  53722. name: "Normal",
  53723. height: math.unit(5 + 4/12, "feet"),
  53724. default: true
  53725. },
  53726. ]
  53727. ))
  53728. characterMakers.push(() => makeCharacter(
  53729. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53730. {
  53731. front: {
  53732. height: math.unit(84 + 8/12, "feet"),
  53733. weight: math.unit(942180, "lb"),
  53734. name: "Front",
  53735. image: {
  53736. source: "./media/characters/daurine-arima/front.svg",
  53737. extra: 1989/1782,
  53738. bottom: 37/2026
  53739. }
  53740. },
  53741. side: {
  53742. height: math.unit(84 + 8/12, "feet"),
  53743. weight: math.unit(942180, "lb"),
  53744. name: "Side",
  53745. image: {
  53746. source: "./media/characters/daurine-arima/side.svg",
  53747. extra: 1997/1790,
  53748. bottom: 21/2018
  53749. }
  53750. },
  53751. back: {
  53752. height: math.unit(84 + 8/12, "feet"),
  53753. weight: math.unit(942180, "lb"),
  53754. name: "Back",
  53755. image: {
  53756. source: "./media/characters/daurine-arima/back.svg",
  53757. extra: 1992/1800,
  53758. bottom: 12/2004
  53759. }
  53760. },
  53761. head: {
  53762. height: math.unit(15.5, "feet"),
  53763. name: "Head",
  53764. image: {
  53765. source: "./media/characters/daurine-arima/head.svg"
  53766. }
  53767. },
  53768. headAlt: {
  53769. height: math.unit(19.19, "feet"),
  53770. name: "Head (Alt)",
  53771. image: {
  53772. source: "./media/characters/daurine-arima/head-alt.svg"
  53773. }
  53774. },
  53775. },
  53776. [
  53777. {
  53778. name: "Minimum height",
  53779. height: math.unit(8 + 10/12, "feet")
  53780. },
  53781. {
  53782. name: "Comfort height",
  53783. height: math.unit(19 + 6 /12, "feet")
  53784. },
  53785. {
  53786. name: "\"Normal\" height",
  53787. height: math.unit(28 + 10/12, "feet")
  53788. },
  53789. {
  53790. name: "Base height",
  53791. height: math.unit(84 + 8/12, "feet"),
  53792. default: true
  53793. },
  53794. {
  53795. name: "Mini-macro",
  53796. height: math.unit(2360, "feet")
  53797. },
  53798. {
  53799. name: "Macro",
  53800. height: math.unit(10, "miles")
  53801. },
  53802. {
  53803. name: "Goddess",
  53804. height: math.unit(9.99e40, "yottameters")
  53805. },
  53806. ]
  53807. ))
  53808. characterMakers.push(() => makeCharacter(
  53809. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53810. {
  53811. front: {
  53812. height: math.unit(2.3, "meters"),
  53813. name: "Front",
  53814. image: {
  53815. source: "./media/characters/cilenomon/front.svg",
  53816. extra: 1963/1778,
  53817. bottom: 54/2017
  53818. }
  53819. },
  53820. },
  53821. [
  53822. {
  53823. name: "Normal",
  53824. height: math.unit(2.3, "meters"),
  53825. default: true
  53826. },
  53827. {
  53828. name: "Big",
  53829. height: math.unit(5, "meters")
  53830. },
  53831. {
  53832. name: "Macro",
  53833. height: math.unit(30, "meters")
  53834. },
  53835. {
  53836. name: "True",
  53837. height: math.unit(1, "universe")
  53838. },
  53839. ]
  53840. ))
  53841. characterMakers.push(() => makeCharacter(
  53842. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53843. {
  53844. front: {
  53845. height: math.unit(5, "feet"),
  53846. name: "Front",
  53847. image: {
  53848. source: "./media/characters/sen-mink/front.svg",
  53849. extra: 1727/1675,
  53850. bottom: 35/1762
  53851. }
  53852. },
  53853. },
  53854. [
  53855. {
  53856. name: "Normal",
  53857. height: math.unit(5, "feet"),
  53858. default: true
  53859. },
  53860. ]
  53861. ))
  53862. characterMakers.push(() => makeCharacter(
  53863. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53864. {
  53865. front: {
  53866. height: math.unit(5.42999, "feet"),
  53867. weight: math.unit(100, "lb"),
  53868. name: "Front",
  53869. image: {
  53870. source: "./media/characters/ophois/front.svg",
  53871. extra: 1429/1286,
  53872. bottom: 60/1489
  53873. }
  53874. },
  53875. },
  53876. [
  53877. {
  53878. name: "Normal",
  53879. height: math.unit(5.42999, "feet"),
  53880. default: true
  53881. },
  53882. ]
  53883. ))
  53884. characterMakers.push(() => makeCharacter(
  53885. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53886. {
  53887. front: {
  53888. height: math.unit(2, "meters"),
  53889. name: "Front",
  53890. image: {
  53891. source: "./media/characters/riley/front.svg",
  53892. extra: 1779/1754,
  53893. bottom: 139/1918
  53894. }
  53895. },
  53896. },
  53897. [
  53898. {
  53899. name: "Normal",
  53900. height: math.unit(2, "meters"),
  53901. default: true
  53902. },
  53903. ]
  53904. ))
  53905. characterMakers.push(() => makeCharacter(
  53906. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53907. {
  53908. front: {
  53909. height: math.unit(6 + 2/12, "feet"),
  53910. weight: math.unit(195, "lb"),
  53911. preyCapacity: math.unit(6, "people"),
  53912. name: "Front",
  53913. image: {
  53914. source: "./media/characters/shuken-flash/front.svg",
  53915. extra: 1905/1739,
  53916. bottom: 65/1970
  53917. }
  53918. },
  53919. back: {
  53920. height: math.unit(6 + 2/12, "feet"),
  53921. weight: math.unit(195, "lb"),
  53922. preyCapacity: math.unit(6, "people"),
  53923. name: "Back",
  53924. image: {
  53925. source: "./media/characters/shuken-flash/back.svg",
  53926. extra: 1912/1751,
  53927. bottom: 13/1925
  53928. }
  53929. },
  53930. },
  53931. [
  53932. {
  53933. name: "Normal",
  53934. height: math.unit(6 + 2/12, "feet"),
  53935. default: true
  53936. },
  53937. ]
  53938. ))
  53939. characterMakers.push(() => makeCharacter(
  53940. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53941. {
  53942. front: {
  53943. height: math.unit(5 + 9/12, "feet"),
  53944. weight: math.unit(150, "lb"),
  53945. name: "Front",
  53946. image: {
  53947. source: "./media/characters/plat/front.svg",
  53948. extra: 1816/1703,
  53949. bottom: 43/1859
  53950. }
  53951. },
  53952. side: {
  53953. height: math.unit(5 + 9/12, "feet"),
  53954. weight: math.unit(300, "lb"),
  53955. name: "Side",
  53956. image: {
  53957. source: "./media/characters/plat/side.svg",
  53958. extra: 1824/1699,
  53959. bottom: 18/1842
  53960. }
  53961. },
  53962. },
  53963. [
  53964. {
  53965. name: "Normal",
  53966. height: math.unit(5 + 9/12, "feet"),
  53967. default: true
  53968. },
  53969. ]
  53970. ))
  53971. characterMakers.push(() => makeCharacter(
  53972. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53973. {
  53974. front: {
  53975. height: math.unit(9, "feet"),
  53976. weight: math.unit(1800, "lb"),
  53977. name: "Front",
  53978. image: {
  53979. source: "./media/characters/elaine/front.svg",
  53980. extra: 1833/1354,
  53981. bottom: 25/1858
  53982. }
  53983. },
  53984. back: {
  53985. height: math.unit(8.8, "feet"),
  53986. weight: math.unit(1800, "lb"),
  53987. name: "Back",
  53988. image: {
  53989. source: "./media/characters/elaine/back.svg",
  53990. extra: 1641/1233,
  53991. bottom: 53/1694
  53992. }
  53993. },
  53994. },
  53995. [
  53996. {
  53997. name: "Normal",
  53998. height: math.unit(9, "feet"),
  53999. default: true
  54000. },
  54001. ]
  54002. ))
  54003. characterMakers.push(() => makeCharacter(
  54004. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54005. {
  54006. front: {
  54007. height: math.unit(17 + 9/12, "feet"),
  54008. weight: math.unit(8000, "lb"),
  54009. name: "Front",
  54010. image: {
  54011. source: "./media/characters/vera-raven/front.svg",
  54012. extra: 1457/1412,
  54013. bottom: 121/1578
  54014. }
  54015. },
  54016. side: {
  54017. height: math.unit(17 + 9/12, "feet"),
  54018. weight: math.unit(8000, "lb"),
  54019. name: "Side",
  54020. image: {
  54021. source: "./media/characters/vera-raven/side.svg",
  54022. extra: 1510/1464,
  54023. bottom: 54/1564
  54024. }
  54025. },
  54026. },
  54027. [
  54028. {
  54029. name: "Normal",
  54030. height: math.unit(17 + 9/12, "feet"),
  54031. default: true
  54032. },
  54033. ]
  54034. ))
  54035. characterMakers.push(() => makeCharacter(
  54036. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54037. {
  54038. dressed: {
  54039. height: math.unit(6 + 9/12, "feet"),
  54040. name: "Dressed",
  54041. image: {
  54042. source: "./media/characters/nakisha/dressed.svg",
  54043. extra: 1909/1757,
  54044. bottom: 48/1957
  54045. }
  54046. },
  54047. nude: {
  54048. height: math.unit(6 + 9/12, "feet"),
  54049. name: "Nude",
  54050. image: {
  54051. source: "./media/characters/nakisha/nude.svg",
  54052. extra: 1917/1765,
  54053. bottom: 34/1951
  54054. }
  54055. },
  54056. },
  54057. [
  54058. {
  54059. name: "Normal",
  54060. height: math.unit(6 + 9/12, "feet"),
  54061. default: true
  54062. },
  54063. ]
  54064. ))
  54065. characterMakers.push(() => makeCharacter(
  54066. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54067. {
  54068. front: {
  54069. height: math.unit(87, "meters"),
  54070. name: "Front",
  54071. image: {
  54072. source: "./media/characters/serafin/front.svg",
  54073. extra: 1919/1776,
  54074. bottom: 65/1984
  54075. }
  54076. },
  54077. },
  54078. [
  54079. {
  54080. name: "Normal",
  54081. height: math.unit(87, "meters"),
  54082. default: true
  54083. },
  54084. ]
  54085. ))
  54086. characterMakers.push(() => makeCharacter(
  54087. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54088. {
  54089. front: {
  54090. height: math.unit(6, "feet"),
  54091. weight: math.unit(200, "lb"),
  54092. name: "Front",
  54093. image: {
  54094. source: "./media/characters/poptart/front.svg",
  54095. extra: 615/583,
  54096. bottom: 23/638
  54097. }
  54098. },
  54099. back: {
  54100. height: math.unit(6, "feet"),
  54101. weight: math.unit(200, "lb"),
  54102. name: "Back",
  54103. image: {
  54104. source: "./media/characters/poptart/back.svg",
  54105. extra: 617/584,
  54106. bottom: 22/639
  54107. }
  54108. },
  54109. frontNsfw: {
  54110. height: math.unit(6, "feet"),
  54111. weight: math.unit(200, "lb"),
  54112. name: "Front (NSFW)",
  54113. image: {
  54114. source: "./media/characters/poptart/front-nsfw.svg",
  54115. extra: 615/583,
  54116. bottom: 23/638
  54117. }
  54118. },
  54119. backNsfw: {
  54120. height: math.unit(6, "feet"),
  54121. weight: math.unit(200, "lb"),
  54122. name: "Back (NSFW)",
  54123. image: {
  54124. source: "./media/characters/poptart/back-nsfw.svg",
  54125. extra: 617/584,
  54126. bottom: 22/639
  54127. }
  54128. },
  54129. hand: {
  54130. height: math.unit(1.14, "feet"),
  54131. name: "Hand",
  54132. image: {
  54133. source: "./media/characters/poptart/hand.svg"
  54134. }
  54135. },
  54136. foot: {
  54137. height: math.unit(1.5, "feet"),
  54138. name: "Foot",
  54139. image: {
  54140. source: "./media/characters/poptart/foot.svg"
  54141. }
  54142. },
  54143. },
  54144. [
  54145. {
  54146. name: "Normal",
  54147. height: math.unit(6, "feet"),
  54148. default: true
  54149. },
  54150. {
  54151. name: "Grande",
  54152. height: math.unit(350, "feet")
  54153. },
  54154. {
  54155. name: "Massif",
  54156. height: math.unit(967, "feet")
  54157. },
  54158. ]
  54159. ))
  54160. characterMakers.push(() => makeCharacter(
  54161. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54162. {
  54163. hyenaSide: {
  54164. height: math.unit(120, "cm"),
  54165. weight: math.unit(120, "lb"),
  54166. name: "Side",
  54167. image: {
  54168. source: "./media/characters/trance/hyena-side.svg",
  54169. extra: 998/904,
  54170. bottom: 76/1074
  54171. }
  54172. },
  54173. },
  54174. [
  54175. {
  54176. name: "Normal",
  54177. height: math.unit(120, "cm"),
  54178. default: true
  54179. },
  54180. {
  54181. name: "Dire",
  54182. height: math.unit(230, "cm")
  54183. },
  54184. {
  54185. name: "Macro",
  54186. height: math.unit(37, "feet")
  54187. },
  54188. ]
  54189. ))
  54190. characterMakers.push(() => makeCharacter(
  54191. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54192. {
  54193. front: {
  54194. height: math.unit(6 + 3/12, "feet"),
  54195. name: "Front",
  54196. image: {
  54197. source: "./media/characters/michael-berretta/front.svg",
  54198. extra: 515/494,
  54199. bottom: 20/535
  54200. }
  54201. },
  54202. back: {
  54203. height: math.unit(6 + 3/12, "feet"),
  54204. name: "Back",
  54205. image: {
  54206. source: "./media/characters/michael-berretta/back.svg",
  54207. extra: 520/497,
  54208. bottom: 21/541
  54209. }
  54210. },
  54211. frontNsfw: {
  54212. height: math.unit(6 + 3/12, "feet"),
  54213. name: "Front (NSFW)",
  54214. image: {
  54215. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54216. extra: 515/494,
  54217. bottom: 20/535
  54218. }
  54219. },
  54220. dick: {
  54221. height: math.unit(1, "feet"),
  54222. name: "Dick",
  54223. image: {
  54224. source: "./media/characters/michael-berretta/dick.svg"
  54225. }
  54226. },
  54227. },
  54228. [
  54229. {
  54230. name: "Normal",
  54231. height: math.unit(6 + 3/12, "feet"),
  54232. default: true
  54233. },
  54234. {
  54235. name: "Big",
  54236. height: math.unit(12, "feet")
  54237. },
  54238. {
  54239. name: "Macro",
  54240. height: math.unit(187.5, "feet")
  54241. },
  54242. ]
  54243. ))
  54244. characterMakers.push(() => makeCharacter(
  54245. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54246. {
  54247. front: {
  54248. height: math.unit(9 + 9/12, "feet"),
  54249. weight: math.unit(1244, "lb"),
  54250. name: "Front",
  54251. image: {
  54252. source: "./media/characters/stella-edgecomb/front.svg",
  54253. extra: 1835/1706,
  54254. bottom: 49/1884
  54255. }
  54256. },
  54257. pen: {
  54258. height: math.unit(0.95, "feet"),
  54259. name: "Pen",
  54260. image: {
  54261. source: "./media/characters/stella-edgecomb/pen.svg"
  54262. }
  54263. },
  54264. },
  54265. [
  54266. {
  54267. name: "Cozy Bear",
  54268. height: math.unit(0.5, "inches")
  54269. },
  54270. {
  54271. name: "Normal",
  54272. height: math.unit(9 + 9/12, "feet"),
  54273. default: true
  54274. },
  54275. {
  54276. name: "Giga Bear",
  54277. height: math.unit(1, "mile")
  54278. },
  54279. {
  54280. name: "Great Bear",
  54281. height: math.unit(53, "miles")
  54282. },
  54283. {
  54284. name: "Goddess Bear",
  54285. height: math.unit(40000, "miles")
  54286. },
  54287. {
  54288. name: "Sun Bear",
  54289. height: math.unit(900000, "miles")
  54290. },
  54291. ]
  54292. ))
  54293. characterMakers.push(() => makeCharacter(
  54294. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54295. {
  54296. anthroFront: {
  54297. height: math.unit(556, "cm"),
  54298. weight: math.unit(2650, "kg"),
  54299. preyCapacity: math.unit(3, "people"),
  54300. name: "Front",
  54301. image: {
  54302. source: "./media/characters/ash´iika/front.svg",
  54303. extra: 710/673,
  54304. bottom: 15/725
  54305. },
  54306. form: "anthro",
  54307. default: true
  54308. },
  54309. anthroSide: {
  54310. height: math.unit(556, "cm"),
  54311. weight: math.unit(2650, "kg"),
  54312. preyCapacity: math.unit(3, "people"),
  54313. name: "Side",
  54314. image: {
  54315. source: "./media/characters/ash´iika/side.svg",
  54316. extra: 696/676,
  54317. bottom: 13/709
  54318. },
  54319. form: "anthro"
  54320. },
  54321. anthroDressed: {
  54322. height: math.unit(556, "cm"),
  54323. weight: math.unit(2650, "kg"),
  54324. preyCapacity: math.unit(3, "people"),
  54325. name: "Dressed",
  54326. image: {
  54327. source: "./media/characters/ash´iika/dressed.svg",
  54328. extra: 710/673,
  54329. bottom: 15/725
  54330. },
  54331. form: "anthro"
  54332. },
  54333. anthroHead: {
  54334. height: math.unit(3.5, "feet"),
  54335. name: "Head",
  54336. image: {
  54337. source: "./media/characters/ash´iika/head.svg",
  54338. extra: 348/291,
  54339. bottom: 45/393
  54340. },
  54341. form: "anthro"
  54342. },
  54343. feralSide: {
  54344. height: math.unit(870, "cm"),
  54345. weight: math.unit(17500, "kg"),
  54346. preyCapacity: math.unit(15, "people"),
  54347. name: "Side",
  54348. image: {
  54349. source: "./media/characters/ash´iika/feral.svg",
  54350. extra: 595/199,
  54351. bottom: 7/602
  54352. },
  54353. form: "feral",
  54354. default: true,
  54355. },
  54356. },
  54357. [
  54358. {
  54359. name: "Normal",
  54360. height: math.unit(556, "cm"),
  54361. default: true,
  54362. form: "anthro"
  54363. },
  54364. {
  54365. name: "Macro",
  54366. height: math.unit(88, "meters"),
  54367. form: "anthro"
  54368. },
  54369. {
  54370. name: "Normal",
  54371. height: math.unit(870, "cm"),
  54372. default: true,
  54373. form: "feral"
  54374. },
  54375. {
  54376. name: "Large",
  54377. height: math.unit(25, "meters"),
  54378. form: "feral"
  54379. },
  54380. ],
  54381. {
  54382. "anthro": {
  54383. name: "Anthro",
  54384. default: true
  54385. },
  54386. "feral": {
  54387. name: "Feral",
  54388. },
  54389. }
  54390. ))
  54391. characterMakers.push(() => makeCharacter(
  54392. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54393. {
  54394. front: {
  54395. height: math.unit(10, "feet"),
  54396. weight: math.unit(800, "lb"),
  54397. name: "Front",
  54398. image: {
  54399. source: "./media/characters/yen/front.svg",
  54400. extra: 443/411,
  54401. bottom: 6/449
  54402. }
  54403. },
  54404. sleeping: {
  54405. height: math.unit(10, "feet"),
  54406. weight: math.unit(800, "lb"),
  54407. name: "Sleeping",
  54408. image: {
  54409. source: "./media/characters/yen/sleeping.svg",
  54410. extra: 470/422,
  54411. bottom: 0/470
  54412. }
  54413. },
  54414. head: {
  54415. height: math.unit(2.2, "feet"),
  54416. name: "Head",
  54417. image: {
  54418. source: "./media/characters/yen/head.svg"
  54419. }
  54420. },
  54421. headAlt: {
  54422. height: math.unit(2.1, "feet"),
  54423. name: "Head (Alt)",
  54424. image: {
  54425. source: "./media/characters/yen/head-alt.svg"
  54426. }
  54427. },
  54428. },
  54429. [
  54430. {
  54431. name: "Normal",
  54432. height: math.unit(10, "feet"),
  54433. default: true
  54434. },
  54435. ]
  54436. ))
  54437. characterMakers.push(() => makeCharacter(
  54438. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54439. {
  54440. front: {
  54441. height: math.unit(12, "feet"),
  54442. name: "Front",
  54443. image: {
  54444. source: "./media/characters/citra/front.svg",
  54445. extra: 1950/1710,
  54446. bottom: 47/1997
  54447. }
  54448. },
  54449. },
  54450. [
  54451. {
  54452. name: "Normal",
  54453. height: math.unit(12, "feet"),
  54454. default: true
  54455. },
  54456. ]
  54457. ))
  54458. characterMakers.push(() => makeCharacter(
  54459. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54460. {
  54461. side: {
  54462. height: math.unit(7 + 10/12, "feet"),
  54463. name: "Side",
  54464. image: {
  54465. source: "./media/characters/sholstim/side.svg",
  54466. extra: 786/682,
  54467. bottom: 40/826
  54468. }
  54469. },
  54470. },
  54471. [
  54472. {
  54473. name: "Normal",
  54474. height: math.unit(7 + 10/12, "feet"),
  54475. default: true
  54476. },
  54477. ]
  54478. ))
  54479. characterMakers.push(() => makeCharacter(
  54480. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54481. {
  54482. front: {
  54483. height: math.unit(3.10, "meters"),
  54484. name: "Front",
  54485. image: {
  54486. source: "./media/characters/aggyn/front.svg",
  54487. extra: 1188/963,
  54488. bottom: 24/1212
  54489. }
  54490. },
  54491. },
  54492. [
  54493. {
  54494. name: "Normal",
  54495. height: math.unit(3.10, "meters"),
  54496. default: true
  54497. },
  54498. ]
  54499. ))
  54500. characterMakers.push(() => makeCharacter(
  54501. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54502. {
  54503. front: {
  54504. height: math.unit(7 + 5/12, "feet"),
  54505. weight: math.unit(687, "lb"),
  54506. name: "Front",
  54507. image: {
  54508. source: "./media/characters/alsandair-hergenroether/front.svg",
  54509. extra: 1251/1186,
  54510. bottom: 75/1326
  54511. }
  54512. },
  54513. back: {
  54514. height: math.unit(7 + 5/12, "feet"),
  54515. weight: math.unit(687, "lb"),
  54516. name: "Back",
  54517. image: {
  54518. source: "./media/characters/alsandair-hergenroether/back.svg",
  54519. extra: 1290/1229,
  54520. bottom: 17/1307
  54521. }
  54522. },
  54523. },
  54524. [
  54525. {
  54526. name: "Max Compression",
  54527. height: math.unit(7 + 5/12, "feet"),
  54528. default: true
  54529. },
  54530. {
  54531. name: "\"Normal\"",
  54532. height: math.unit(2, "universes")
  54533. },
  54534. ]
  54535. ))
  54536. characterMakers.push(() => makeCharacter(
  54537. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54538. {
  54539. front: {
  54540. height: math.unit(4 + 1/12, "feet"),
  54541. weight: math.unit(92, "lb"),
  54542. name: "Front",
  54543. image: {
  54544. source: "./media/characters/ie/front.svg",
  54545. extra: 1585/1352,
  54546. bottom: 91/1676
  54547. }
  54548. },
  54549. },
  54550. [
  54551. {
  54552. name: "Normal",
  54553. height: math.unit(4 + 1/12, "feet"),
  54554. default: true
  54555. },
  54556. ]
  54557. ))
  54558. characterMakers.push(() => makeCharacter(
  54559. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54560. {
  54561. anthro: {
  54562. height: math.unit(6, "feet"),
  54563. weight: math.unit(150, "lb"),
  54564. name: "Front",
  54565. image: {
  54566. source: "./media/characters/willow/anthro.svg",
  54567. extra: 1073/986,
  54568. bottom: 34/1107
  54569. },
  54570. form: "anthro",
  54571. default: true
  54572. },
  54573. taur: {
  54574. height: math.unit(6, "feet"),
  54575. weight: math.unit(150, "lb"),
  54576. name: "Side",
  54577. image: {
  54578. source: "./media/characters/willow/taur.svg",
  54579. extra: 647/512,
  54580. bottom: 136/783
  54581. },
  54582. form: "taur",
  54583. default: true
  54584. },
  54585. },
  54586. [
  54587. {
  54588. name: "Humanoid",
  54589. height: math.unit(2.7, "meters"),
  54590. form: "anthro"
  54591. },
  54592. {
  54593. name: "Normal",
  54594. height: math.unit(9, "meters"),
  54595. form: "anthro",
  54596. default: true
  54597. },
  54598. {
  54599. name: "Humanoid",
  54600. height: math.unit(2.1, "meters"),
  54601. form: "taur"
  54602. },
  54603. {
  54604. name: "Normal",
  54605. height: math.unit(7, "meters"),
  54606. form: "taur",
  54607. default: true
  54608. },
  54609. ],
  54610. {
  54611. "anthro": {
  54612. name: "Anthro",
  54613. default: true
  54614. },
  54615. "taur": {
  54616. name: "Taur",
  54617. },
  54618. }
  54619. ))
  54620. characterMakers.push(() => makeCharacter(
  54621. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54622. {
  54623. front: {
  54624. height: math.unit(2 + 5/12, "feet"),
  54625. name: "Front",
  54626. image: {
  54627. source: "./media/characters/kyan/front.svg",
  54628. extra: 460/334,
  54629. bottom: 23/483
  54630. },
  54631. extraAttributes: {
  54632. "toeLength": {
  54633. name: "Toe Length",
  54634. power: 1,
  54635. type: "length",
  54636. base: math.unit(7, "cm")
  54637. },
  54638. "toeclawLength": {
  54639. name: "Toeclaw Length",
  54640. power: 1,
  54641. type: "length",
  54642. base: math.unit(4.7, "cm")
  54643. },
  54644. "earHeight": {
  54645. name: "Ear Height",
  54646. power: 1,
  54647. type: "length",
  54648. base: math.unit(14.1, "cm")
  54649. },
  54650. }
  54651. },
  54652. paws: {
  54653. height: math.unit(0.45, "feet"),
  54654. name: "Paws",
  54655. image: {
  54656. source: "./media/characters/kyan/paws.svg",
  54657. extra: 581/581,
  54658. bottom: 114/695
  54659. }
  54660. },
  54661. },
  54662. [
  54663. {
  54664. name: "Normal",
  54665. height: math.unit(2 + 5/12, "feet"),
  54666. default: true
  54667. },
  54668. ]
  54669. ))
  54670. characterMakers.push(() => makeCharacter(
  54671. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54672. {
  54673. front: {
  54674. height: math.unit(2 + 2/3, "feet"),
  54675. name: "Front",
  54676. image: {
  54677. source: "./media/characters/xazzon/front.svg",
  54678. extra: 1109/984,
  54679. bottom: 42/1151
  54680. }
  54681. },
  54682. back: {
  54683. height: math.unit(2 + 2/3, "feet"),
  54684. name: "Back",
  54685. image: {
  54686. source: "./media/characters/xazzon/back.svg",
  54687. extra: 1095/971,
  54688. bottom: 23/1118
  54689. }
  54690. },
  54691. },
  54692. [
  54693. {
  54694. name: "Normal",
  54695. height: math.unit(2 + 2/3, "feet"),
  54696. default: true
  54697. },
  54698. ]
  54699. ))
  54700. characterMakers.push(() => makeCharacter(
  54701. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54702. {
  54703. front: {
  54704. height: math.unit(8, "feet"),
  54705. weight: math.unit(300, "lb"),
  54706. name: "Front",
  54707. image: {
  54708. source: "./media/characters/khyla-shadowsong/front.svg",
  54709. extra: 861/798,
  54710. bottom: 32/893
  54711. }
  54712. },
  54713. side: {
  54714. height: math.unit(8, "feet"),
  54715. weight: math.unit(300, "lb"),
  54716. name: "Side",
  54717. image: {
  54718. source: "./media/characters/khyla-shadowsong/side.svg",
  54719. extra: 790/750,
  54720. bottom: 87/877
  54721. }
  54722. },
  54723. back: {
  54724. height: math.unit(8, "feet"),
  54725. weight: math.unit(300, "lb"),
  54726. name: "Back",
  54727. image: {
  54728. source: "./media/characters/khyla-shadowsong/back.svg",
  54729. extra: 855/808,
  54730. bottom: 14/869
  54731. }
  54732. },
  54733. head: {
  54734. height: math.unit(2.7, "feet"),
  54735. name: "Head",
  54736. image: {
  54737. source: "./media/characters/khyla-shadowsong/head.svg"
  54738. }
  54739. },
  54740. },
  54741. [
  54742. {
  54743. name: "Micro",
  54744. height: math.unit(6, "inches")
  54745. },
  54746. {
  54747. name: "Normal",
  54748. height: math.unit(8, "feet"),
  54749. default: true
  54750. },
  54751. ]
  54752. ))
  54753. characterMakers.push(() => makeCharacter(
  54754. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54755. {
  54756. hyperFront: {
  54757. height: math.unit(9 + 4/12, "feet"),
  54758. weight: math.unit(2000, "lb"),
  54759. name: "Front",
  54760. image: {
  54761. source: "./media/characters/tiden/hyper-front.svg",
  54762. extra: 400/382,
  54763. bottom: 6/406
  54764. },
  54765. form: "hyper",
  54766. },
  54767. regularFront: {
  54768. height: math.unit(7 + 10/12, "feet"),
  54769. weight: math.unit(470, "lb"),
  54770. name: "Front",
  54771. image: {
  54772. source: "./media/characters/tiden/regular-front.svg",
  54773. extra: 468/442,
  54774. bottom: 6/474
  54775. },
  54776. form: "regular",
  54777. },
  54778. },
  54779. [
  54780. {
  54781. name: "Normal",
  54782. height: math.unit(9 + 4/12, "feet"),
  54783. default: true,
  54784. form: "hyper"
  54785. },
  54786. {
  54787. name: "Normal",
  54788. height: math.unit(7 + 10/12, "feet"),
  54789. default: true,
  54790. form: "regular"
  54791. },
  54792. ],
  54793. {
  54794. "hyper": {
  54795. name: "Hyper",
  54796. default: true
  54797. },
  54798. "regular": {
  54799. name: "Regular",
  54800. },
  54801. }
  54802. ))
  54803. characterMakers.push(() => makeCharacter(
  54804. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54805. {
  54806. side: {
  54807. height: math.unit(6, "feet"),
  54808. weight: math.unit(150, "lb"),
  54809. name: "Side",
  54810. image: {
  54811. source: "./media/characters/jason-crowe/side.svg",
  54812. extra: 1771/766,
  54813. bottom: 219/1990
  54814. }
  54815. },
  54816. },
  54817. [
  54818. {
  54819. name: "Pocket Gryphon",
  54820. height: math.unit(6, "cm")
  54821. },
  54822. {
  54823. name: "Raven",
  54824. height: math.unit(60, "cm")
  54825. },
  54826. {
  54827. name: "Normal",
  54828. height: math.unit(1, "meter"),
  54829. default: true
  54830. },
  54831. ]
  54832. ))
  54833. characterMakers.push(() => makeCharacter(
  54834. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54835. {
  54836. front: {
  54837. height: math.unit(9 + 6/12, "feet"),
  54838. weight: math.unit(1100, "lb"),
  54839. name: "Front",
  54840. image: {
  54841. source: "./media/characters/django/front.svg",
  54842. extra: 1231/1136,
  54843. bottom: 34/1265
  54844. }
  54845. },
  54846. side: {
  54847. height: math.unit(9 + 6/12, "feet"),
  54848. weight: math.unit(1100, "lb"),
  54849. name: "Side",
  54850. image: {
  54851. source: "./media/characters/django/side.svg",
  54852. extra: 1267/1174,
  54853. bottom: 9/1276
  54854. }
  54855. },
  54856. },
  54857. [
  54858. {
  54859. name: "Normal",
  54860. height: math.unit(9 + 6/12, "feet"),
  54861. default: true
  54862. },
  54863. {
  54864. name: "Macro 1",
  54865. height: math.unit(50, "feet")
  54866. },
  54867. {
  54868. name: "Macro 2",
  54869. height: math.unit(500, "feet")
  54870. },
  54871. {
  54872. name: "Mega Macro",
  54873. height: math.unit(5300, "feet")
  54874. },
  54875. ]
  54876. ))
  54877. characterMakers.push(() => makeCharacter(
  54878. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54879. {
  54880. frontSfw: {
  54881. height: math.unit(120, "cm"),
  54882. weight: math.unit(15, "kg"),
  54883. name: "Front (SFW)",
  54884. image: {
  54885. source: "./media/characters/eri/front-sfw.svg",
  54886. extra: 1014/939,
  54887. bottom: 37/1051
  54888. },
  54889. form: "moth",
  54890. },
  54891. frontNsfw: {
  54892. height: math.unit(120, "cm"),
  54893. weight: math.unit(15, "kg"),
  54894. name: "Front (NSFW)",
  54895. image: {
  54896. source: "./media/characters/eri/front-nsfw.svg",
  54897. extra: 1014/939,
  54898. bottom: 37/1051
  54899. },
  54900. form: "moth",
  54901. default: true
  54902. },
  54903. egg: {
  54904. height: math.unit(10, "cm"),
  54905. name: "Egg",
  54906. image: {
  54907. source: "./media/characters/eri/egg.svg"
  54908. },
  54909. form: "egg",
  54910. default: true
  54911. },
  54912. },
  54913. [
  54914. {
  54915. name: "Normal",
  54916. height: math.unit(120, "cm"),
  54917. default: true,
  54918. form: "moth"
  54919. },
  54920. {
  54921. name: "Normal",
  54922. height: math.unit(10, "cm"),
  54923. default: true,
  54924. form: "egg"
  54925. },
  54926. ],
  54927. {
  54928. "moth": {
  54929. name: "Moth",
  54930. default: true
  54931. },
  54932. "egg": {
  54933. name: "Egg",
  54934. },
  54935. }
  54936. ))
  54937. characterMakers.push(() => makeCharacter(
  54938. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54939. {
  54940. front: {
  54941. height: math.unit(200, "feet"),
  54942. name: "Front",
  54943. image: {
  54944. source: "./media/characters/bishop-dowser/front.svg",
  54945. extra: 933/868,
  54946. bottom: 106/1039
  54947. }
  54948. },
  54949. },
  54950. [
  54951. {
  54952. name: "Giant",
  54953. height: math.unit(200, "feet"),
  54954. default: true
  54955. },
  54956. ]
  54957. ))
  54958. characterMakers.push(() => makeCharacter(
  54959. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54960. {
  54961. front: {
  54962. height: math.unit(2, "meters"),
  54963. preyCapacity: math.unit(3, "people"),
  54964. name: "Front",
  54965. image: {
  54966. source: "./media/characters/fryra/front.svg",
  54967. extra: 1025/948,
  54968. bottom: 30/1055
  54969. },
  54970. extraAttributes: {
  54971. "breastVolume": {
  54972. name: "Breast Volume",
  54973. power: 3,
  54974. type: "volume",
  54975. base: math.unit(8, "liters")
  54976. },
  54977. }
  54978. },
  54979. back: {
  54980. height: math.unit(2, "meters"),
  54981. preyCapacity: math.unit(3, "people"),
  54982. name: "Back",
  54983. image: {
  54984. source: "./media/characters/fryra/back.svg",
  54985. extra: 993/938,
  54986. bottom: 38/1031
  54987. },
  54988. extraAttributes: {
  54989. "breastVolume": {
  54990. name: "Breast Volume",
  54991. power: 3,
  54992. type: "volume",
  54993. base: math.unit(8, "liters")
  54994. },
  54995. }
  54996. },
  54997. head: {
  54998. height: math.unit(1.33, "feet"),
  54999. name: "Head",
  55000. image: {
  55001. source: "./media/characters/fryra/head.svg"
  55002. }
  55003. },
  55004. maw: {
  55005. height: math.unit(0.56, "feet"),
  55006. name: "Maw",
  55007. image: {
  55008. source: "./media/characters/fryra/maw.svg"
  55009. }
  55010. },
  55011. },
  55012. [
  55013. {
  55014. name: "Micro",
  55015. height: math.unit(5, "cm")
  55016. },
  55017. {
  55018. name: "Normal",
  55019. height: math.unit(2, "meters"),
  55020. default: true
  55021. },
  55022. {
  55023. name: "Small Macro",
  55024. height: math.unit(8, "meters")
  55025. },
  55026. {
  55027. name: "Macro",
  55028. height: math.unit(50, "meters")
  55029. },
  55030. {
  55031. name: "Megamacro",
  55032. height: math.unit(1, "km")
  55033. },
  55034. {
  55035. name: "Planetary",
  55036. height: math.unit(300000, "km")
  55037. },
  55038. {
  55039. name: "Universal",
  55040. height: math.unit(250, "lightyears")
  55041. },
  55042. {
  55043. name: "Fabric of Reality",
  55044. height: math.unit(1000, "multiverses")
  55045. },
  55046. ]
  55047. ))
  55048. characterMakers.push(() => makeCharacter(
  55049. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55050. {
  55051. frontDressed: {
  55052. height: math.unit(6 + 2/12, "feet"),
  55053. name: "Front (Dressed)",
  55054. image: {
  55055. source: "./media/characters/fiera/front-dressed.svg",
  55056. extra: 1883/1793,
  55057. bottom: 70/1953
  55058. }
  55059. },
  55060. backDressed: {
  55061. height: math.unit(6 + 2/12, "feet"),
  55062. name: "Back (Dressed)",
  55063. image: {
  55064. source: "./media/characters/fiera/back-dressed.svg",
  55065. extra: 1847/1780,
  55066. bottom: 70/1917
  55067. }
  55068. },
  55069. frontNude: {
  55070. height: math.unit(6 + 2/12, "feet"),
  55071. name: "Front (Nude)",
  55072. image: {
  55073. source: "./media/characters/fiera/front-nude.svg",
  55074. extra: 1875/1785,
  55075. bottom: 66/1941
  55076. }
  55077. },
  55078. backNude: {
  55079. height: math.unit(6 + 2/12, "feet"),
  55080. name: "Back (Nude)",
  55081. image: {
  55082. source: "./media/characters/fiera/back-nude.svg",
  55083. extra: 1855/1788,
  55084. bottom: 44/1899
  55085. }
  55086. },
  55087. maw: {
  55088. height: math.unit(1.3, "feet"),
  55089. name: "Maw",
  55090. image: {
  55091. source: "./media/characters/fiera/maw.svg"
  55092. }
  55093. },
  55094. paw: {
  55095. height: math.unit(1, "feet"),
  55096. name: "Paw",
  55097. image: {
  55098. source: "./media/characters/fiera/paw.svg"
  55099. }
  55100. },
  55101. shoe: {
  55102. height: math.unit(1.05, "feet"),
  55103. name: "Shoe",
  55104. image: {
  55105. source: "./media/characters/fiera/shoe.svg"
  55106. }
  55107. },
  55108. },
  55109. [
  55110. {
  55111. name: "Normal",
  55112. height: math.unit(6 + 2/12, "feet"),
  55113. default: true
  55114. },
  55115. {
  55116. name: "Size Difference",
  55117. height: math.unit(13, "feet")
  55118. },
  55119. {
  55120. name: "Macro",
  55121. height: math.unit(60, "feet")
  55122. },
  55123. {
  55124. name: "Mega Macro",
  55125. height: math.unit(200, "feet")
  55126. },
  55127. ]
  55128. ))
  55129. characterMakers.push(() => makeCharacter(
  55130. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55131. {
  55132. back: {
  55133. height: math.unit(6, "feet"),
  55134. name: "Back",
  55135. image: {
  55136. source: "./media/characters/flare/back.svg",
  55137. extra: 1883/1765,
  55138. bottom: 32/1915
  55139. }
  55140. },
  55141. },
  55142. [
  55143. {
  55144. name: "Normal",
  55145. height: math.unit(6 + 2/12, "feet"),
  55146. default: true
  55147. },
  55148. {
  55149. name: "Size Difference",
  55150. height: math.unit(13, "feet")
  55151. },
  55152. {
  55153. name: "Macro",
  55154. height: math.unit(60, "feet")
  55155. },
  55156. {
  55157. name: "Macro 2",
  55158. height: math.unit(100, "feet")
  55159. },
  55160. {
  55161. name: "Mega Macro",
  55162. height: math.unit(200, "feet")
  55163. },
  55164. ]
  55165. ))
  55166. characterMakers.push(() => makeCharacter(
  55167. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55168. {
  55169. front: {
  55170. height: math.unit(2.2, "m"),
  55171. weight: math.unit(300, "kg"),
  55172. name: "Front",
  55173. image: {
  55174. source: "./media/characters/hanna/front.svg",
  55175. extra: 1696/1502,
  55176. bottom: 206/1902
  55177. }
  55178. },
  55179. },
  55180. [
  55181. {
  55182. name: "Humanoid",
  55183. height: math.unit(2.2, "meters")
  55184. },
  55185. {
  55186. name: "Normal",
  55187. height: math.unit(4.8, "meters"),
  55188. default: true
  55189. },
  55190. ]
  55191. ))
  55192. characterMakers.push(() => makeCharacter(
  55193. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55194. {
  55195. front: {
  55196. height: math.unit(2.8, "meters"),
  55197. name: "Front",
  55198. image: {
  55199. source: "./media/characters/argo/front.svg",
  55200. extra: 731/518,
  55201. bottom: 84/815
  55202. }
  55203. },
  55204. },
  55205. [
  55206. {
  55207. name: "Normal",
  55208. height: math.unit(3, "meters"),
  55209. default: true
  55210. },
  55211. ]
  55212. ))
  55213. characterMakers.push(() => makeCharacter(
  55214. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55215. {
  55216. side: {
  55217. height: math.unit(3.8, "meters"),
  55218. name: "Side",
  55219. image: {
  55220. source: "./media/characters/sybil/side.svg",
  55221. extra: 382/361,
  55222. bottom: 25/407
  55223. }
  55224. },
  55225. },
  55226. [
  55227. {
  55228. name: "Normal",
  55229. height: math.unit(3.8, "meters"),
  55230. default: true
  55231. },
  55232. ]
  55233. ))
  55234. characterMakers.push(() => makeCharacter(
  55235. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55236. {
  55237. side: {
  55238. height: math.unit(6, "meters"),
  55239. name: "Side",
  55240. image: {
  55241. source: "./media/characters/plum/side.svg",
  55242. extra: 858/755,
  55243. bottom: 45/903
  55244. },
  55245. form: "taur",
  55246. default: true
  55247. },
  55248. back: {
  55249. height: math.unit(6.3, "meters"),
  55250. name: "Back",
  55251. image: {
  55252. source: "./media/characters/plum/back.svg",
  55253. extra: 887/813,
  55254. bottom: 32/919
  55255. },
  55256. form: "taur",
  55257. },
  55258. feral: {
  55259. height: math.unit(5.5, "meter"),
  55260. name: "Front",
  55261. image: {
  55262. source: "./media/characters/plum/feral.svg",
  55263. extra: 568/403,
  55264. bottom: 51/619
  55265. },
  55266. form: "feral",
  55267. default: true
  55268. },
  55269. head: {
  55270. height: math.unit(1.46, "meter"),
  55271. name: "Head",
  55272. image: {
  55273. source: "./media/characters/plum/head.svg"
  55274. },
  55275. form: "taur"
  55276. },
  55277. tailTop: {
  55278. height: math.unit(5.6, "meter"),
  55279. name: "Tail (Top)",
  55280. image: {
  55281. source: "./media/characters/plum/tail-top.svg"
  55282. },
  55283. form: "taur",
  55284. },
  55285. tailBottom: {
  55286. height: math.unit(5.6, "meter"),
  55287. name: "Tail (Bottom)",
  55288. image: {
  55289. source: "./media/characters/plum/tail-bottom.svg"
  55290. },
  55291. form: "taur",
  55292. },
  55293. feralHead: {
  55294. height: math.unit(2.56549521, "meter"),
  55295. name: "Head",
  55296. image: {
  55297. source: "./media/characters/plum/head.svg"
  55298. },
  55299. form: "feral"
  55300. },
  55301. feralTailTop: {
  55302. height: math.unit(5.44728435, "meter"),
  55303. name: "Tail (Top)",
  55304. image: {
  55305. source: "./media/characters/plum/tail-top.svg"
  55306. },
  55307. form: "feral",
  55308. },
  55309. feralTailBottom: {
  55310. height: math.unit(5.44728435, "meter"),
  55311. name: "Tail (Bottom)",
  55312. image: {
  55313. source: "./media/characters/plum/tail-bottom.svg"
  55314. },
  55315. form: "feral",
  55316. },
  55317. },
  55318. [
  55319. {
  55320. name: "Normal",
  55321. height: math.unit(6, "meters"),
  55322. default: true,
  55323. form: "taur"
  55324. },
  55325. {
  55326. name: "Normal",
  55327. height: math.unit(5.5, "meters"),
  55328. default: true,
  55329. form: "feral"
  55330. },
  55331. ],
  55332. {
  55333. "taur": {
  55334. name: "Taur",
  55335. default: true
  55336. },
  55337. "feral": {
  55338. name: "Feral",
  55339. },
  55340. }
  55341. ))
  55342. characterMakers.push(() => makeCharacter(
  55343. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55344. {
  55345. front: {
  55346. height: math.unit(6, "feet"),
  55347. weight: math.unit(115, "lb"),
  55348. name: "Front",
  55349. image: {
  55350. source: "./media/characters/celeste-kitsune/front.svg",
  55351. extra: 393/366,
  55352. bottom: 7/400
  55353. }
  55354. },
  55355. side: {
  55356. height: math.unit(6, "feet"),
  55357. weight: math.unit(115, "lb"),
  55358. name: "Side",
  55359. image: {
  55360. source: "./media/characters/celeste-kitsune/side.svg",
  55361. extra: 818/765,
  55362. bottom: 40/858
  55363. }
  55364. },
  55365. },
  55366. [
  55367. {
  55368. name: "Megamacro",
  55369. height: math.unit(1500, "miles"),
  55370. default: true
  55371. },
  55372. ]
  55373. ))
  55374. characterMakers.push(() => makeCharacter(
  55375. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55376. {
  55377. front: {
  55378. height: math.unit(8, "meters"),
  55379. name: "Front",
  55380. image: {
  55381. source: "./media/characters/io/front.svg",
  55382. extra: 865/722,
  55383. bottom: 58/923
  55384. }
  55385. },
  55386. back: {
  55387. height: math.unit(8, "meters"),
  55388. name: "Back",
  55389. image: {
  55390. source: "./media/characters/io/back.svg",
  55391. extra: 920/776,
  55392. bottom: 42/962
  55393. }
  55394. },
  55395. head: {
  55396. height: math.unit(5.09, "meters"),
  55397. name: "Head",
  55398. image: {
  55399. source: "./media/characters/io/head.svg"
  55400. }
  55401. },
  55402. hand: {
  55403. height: math.unit(1.6, "meters"),
  55404. name: "Hand",
  55405. image: {
  55406. source: "./media/characters/io/hand.svg"
  55407. }
  55408. },
  55409. foot: {
  55410. height: math.unit(2.4, "meters"),
  55411. name: "Foot",
  55412. image: {
  55413. source: "./media/characters/io/foot.svg"
  55414. }
  55415. },
  55416. },
  55417. [
  55418. {
  55419. name: "Normal",
  55420. height: math.unit(8, "meters"),
  55421. default: true
  55422. },
  55423. ]
  55424. ))
  55425. characterMakers.push(() => makeCharacter(
  55426. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55427. {
  55428. side: {
  55429. height: math.unit(6 + 3/12, "feet"),
  55430. weight: math.unit(225, "lb"),
  55431. name: "Side",
  55432. image: {
  55433. source: "./media/characters/silas/side.svg",
  55434. extra: 703/653,
  55435. bottom: 23/726
  55436. },
  55437. extraAttributes: {
  55438. "pawLength": {
  55439. name: "Paw Length",
  55440. power: 1,
  55441. type: "length",
  55442. base: math.unit(12, "inches")
  55443. },
  55444. "pawWidth": {
  55445. name: "Paw Width",
  55446. power: 1,
  55447. type: "length",
  55448. base: math.unit(4.5, "inches")
  55449. },
  55450. "pawArea": {
  55451. name: "Paw Area",
  55452. power: 2,
  55453. type: "area",
  55454. base: math.unit(12 * 4.5, "inches^2")
  55455. },
  55456. }
  55457. },
  55458. },
  55459. [
  55460. {
  55461. name: "Normal",
  55462. height: math.unit(6 + 3/12, "feet"),
  55463. default: true
  55464. },
  55465. ]
  55466. ))
  55467. characterMakers.push(() => makeCharacter(
  55468. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55469. {
  55470. back: {
  55471. height: math.unit(1.6, "meters"),
  55472. weight: math.unit(150, "lb"),
  55473. name: "Back",
  55474. image: {
  55475. source: "./media/characters/zari/back.svg",
  55476. extra: 424/411,
  55477. bottom: 32/456
  55478. },
  55479. extraAttributes: {
  55480. "bladderCapacity": {
  55481. name: "Bladder Size",
  55482. power: 3,
  55483. type: "volume",
  55484. base: math.unit(500, "mL")
  55485. },
  55486. "bladderFlow": {
  55487. name: "Flow Rate",
  55488. power: 3,
  55489. type: "volume",
  55490. base: math.unit(25, "mL")
  55491. },
  55492. }
  55493. },
  55494. },
  55495. [
  55496. {
  55497. name: "Normal",
  55498. height: math.unit(1.6, "meters"),
  55499. default: true
  55500. },
  55501. ]
  55502. ))
  55503. characterMakers.push(() => makeCharacter(
  55504. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55505. {
  55506. front: {
  55507. height: math.unit(25, "feet"),
  55508. weight: math.unit(5, "tons"),
  55509. name: "Front",
  55510. image: {
  55511. source: "./media/characters/charlie-human/front.svg",
  55512. extra: 1870/1740,
  55513. bottom: 102/1972
  55514. },
  55515. extraAttributes: {
  55516. "dickLength": {
  55517. name: "Dick Length",
  55518. power: 1,
  55519. type: "length",
  55520. base: math.unit(9, "feet")
  55521. },
  55522. }
  55523. },
  55524. back: {
  55525. height: math.unit(25, "feet"),
  55526. weight: math.unit(5, "tons"),
  55527. name: "Back",
  55528. image: {
  55529. source: "./media/characters/charlie-human/back.svg",
  55530. extra: 1858/1733,
  55531. bottom: 105/1963
  55532. },
  55533. extraAttributes: {
  55534. "dickLength": {
  55535. name: "Dick Length",
  55536. power: 1,
  55537. type: "length",
  55538. base: math.unit(9, "feet")
  55539. },
  55540. }
  55541. },
  55542. },
  55543. [
  55544. {
  55545. name: "\"Normal\"",
  55546. height: math.unit(6 + 4/12, "feet")
  55547. },
  55548. {
  55549. name: "Big",
  55550. height: math.unit(25, "feet"),
  55551. default: true
  55552. },
  55553. ]
  55554. ))
  55555. characterMakers.push(() => makeCharacter(
  55556. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55557. {
  55558. front: {
  55559. height: math.unit(6 + 4/12, "feet"),
  55560. weight: math.unit(320, "lb"),
  55561. name: "Front",
  55562. image: {
  55563. source: "./media/characters/ookitsu/front.svg",
  55564. extra: 1160/976,
  55565. bottom: 38/1198
  55566. }
  55567. },
  55568. frontNsfw: {
  55569. height: math.unit(6 + 4/12, "feet"),
  55570. weight: math.unit(320, "lb"),
  55571. name: "Front (NSFW)",
  55572. image: {
  55573. source: "./media/characters/ookitsu/front-nsfw.svg",
  55574. extra: 1160/976,
  55575. bottom: 38/1198
  55576. }
  55577. },
  55578. back: {
  55579. height: math.unit(6 + 4/12, "feet"),
  55580. weight: math.unit(320, "lb"),
  55581. name: "Back",
  55582. image: {
  55583. source: "./media/characters/ookitsu/back.svg",
  55584. extra: 1030/975,
  55585. bottom: 70/1100
  55586. }
  55587. },
  55588. head: {
  55589. height: math.unit(1.79, "feet"),
  55590. name: "Head",
  55591. image: {
  55592. source: "./media/characters/ookitsu/head.svg"
  55593. }
  55594. },
  55595. hand: {
  55596. height: math.unit(0.92, "feet"),
  55597. name: "Hand",
  55598. image: {
  55599. source: "./media/characters/ookitsu/hand.svg"
  55600. }
  55601. },
  55602. tails: {
  55603. height: math.unit(3.3, "feet"),
  55604. name: "Tails",
  55605. image: {
  55606. source: "./media/characters/ookitsu/tails.svg"
  55607. }
  55608. },
  55609. dick: {
  55610. height: math.unit(1.10833, "feet"),
  55611. name: "Dick",
  55612. image: {
  55613. source: "./media/characters/ookitsu/dick.svg"
  55614. }
  55615. },
  55616. },
  55617. [
  55618. {
  55619. name: "Normal",
  55620. height: math.unit(6 + 4/12, "feet"),
  55621. default: true
  55622. },
  55623. {
  55624. name: "Macro",
  55625. height: math.unit(30, "feet")
  55626. },
  55627. ]
  55628. ))
  55629. characterMakers.push(() => makeCharacter(
  55630. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55631. {
  55632. anthroFront: {
  55633. height: math.unit(6, "feet"),
  55634. weight: math.unit(250, "lb"),
  55635. name: "Front",
  55636. image: {
  55637. source: "./media/characters/jhusky/anthro-front.svg",
  55638. extra: 474/439,
  55639. bottom: 7/481
  55640. },
  55641. form: "anthro",
  55642. default: true
  55643. },
  55644. taurSideSfw: {
  55645. height: math.unit(6 + 4/12, "feet"),
  55646. weight: math.unit(500, "lb"),
  55647. name: "Side (SFW)",
  55648. image: {
  55649. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55650. extra: 1741/1629,
  55651. bottom: 196/1937
  55652. },
  55653. form: "taur",
  55654. default: true
  55655. },
  55656. taurSideNsfw: {
  55657. height: math.unit(6 + 4/12, "feet"),
  55658. weight: math.unit(500, "lb"),
  55659. name: "Taur (NSFW)",
  55660. image: {
  55661. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55662. extra: 1741/1629,
  55663. bottom: 196/1937
  55664. },
  55665. form: "taur",
  55666. },
  55667. },
  55668. [
  55669. {
  55670. name: "Huge",
  55671. height: math.unit(500, "feet"),
  55672. form: "anthro"
  55673. },
  55674. {
  55675. name: "Macro",
  55676. height: math.unit(1000, "feet"),
  55677. default: true,
  55678. form: "anthro"
  55679. },
  55680. {
  55681. name: "Megamacro",
  55682. height: math.unit(10000, "feet"),
  55683. form: "anthro"
  55684. },
  55685. {
  55686. name: "Huge",
  55687. height: math.unit(528, "feet"),
  55688. form: "taur"
  55689. },
  55690. {
  55691. name: "Macro",
  55692. height: math.unit(1056, "feet"),
  55693. default: true,
  55694. form: "taur"
  55695. },
  55696. {
  55697. name: "Megamacro",
  55698. height: math.unit(10556, "feet"),
  55699. form: "taur"
  55700. },
  55701. ],
  55702. {
  55703. "anthro": {
  55704. name: "Anthro",
  55705. default: true
  55706. },
  55707. "taur": {
  55708. name: "Taur",
  55709. },
  55710. }
  55711. ))
  55712. characterMakers.push(() => makeCharacter(
  55713. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55714. {
  55715. front: {
  55716. height: math.unit(8, "feet"),
  55717. weight: math.unit(500, "lb"),
  55718. name: "Front",
  55719. image: {
  55720. source: "./media/characters/armail/front.svg",
  55721. extra: 1753/1669,
  55722. bottom: 155/1908
  55723. }
  55724. },
  55725. back: {
  55726. height: math.unit(8, "feet"),
  55727. weight: math.unit(500, "lb"),
  55728. name: "Back",
  55729. image: {
  55730. source: "./media/characters/armail/back.svg",
  55731. extra: 1872/1803,
  55732. bottom: 63/1935
  55733. }
  55734. },
  55735. },
  55736. [
  55737. {
  55738. name: "Micro",
  55739. height: math.unit(0.25, "feet")
  55740. },
  55741. {
  55742. name: "Normal",
  55743. height: math.unit(8, "feet"),
  55744. default: true
  55745. },
  55746. {
  55747. name: "Mini-macro",
  55748. height: math.unit(30, "feet")
  55749. },
  55750. {
  55751. name: "Macro",
  55752. height: math.unit(400, "feet")
  55753. },
  55754. {
  55755. name: "Mega-macro",
  55756. height: math.unit(6000, "feet")
  55757. },
  55758. ]
  55759. ))
  55760. characterMakers.push(() => makeCharacter(
  55761. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55762. {
  55763. front: {
  55764. height: math.unit(6 + 7/12, "feet"),
  55765. weight: math.unit(210, "lb"),
  55766. name: "Front",
  55767. image: {
  55768. source: "./media/characters/wilfred-t-buxton/front.svg",
  55769. extra: 1068/882,
  55770. bottom: 28/1096
  55771. }
  55772. },
  55773. },
  55774. [
  55775. {
  55776. name: "Normal",
  55777. height: math.unit(6 + 7/12, "feet"),
  55778. default: true
  55779. },
  55780. ]
  55781. ))
  55782. characterMakers.push(() => makeCharacter(
  55783. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55784. {
  55785. front: {
  55786. height: math.unit(5 + 2/12, "feet"),
  55787. weight: math.unit(120, "lb"),
  55788. name: "Front",
  55789. image: {
  55790. source: "./media/characters/leighton-marrow/front.svg",
  55791. extra: 441/409,
  55792. bottom: 37/478
  55793. }
  55794. },
  55795. },
  55796. [
  55797. {
  55798. name: "Normal",
  55799. height: math.unit(5 + 2/12, "feet"),
  55800. default: true
  55801. },
  55802. ]
  55803. ))
  55804. characterMakers.push(() => makeCharacter(
  55805. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55806. {
  55807. front: {
  55808. height: math.unit(4, "meters"),
  55809. weight: math.unit(1200, "kg"),
  55810. name: "Front",
  55811. image: {
  55812. source: "./media/characters/licos/front.svg",
  55813. extra: 1727/1604,
  55814. bottom: 101/1828
  55815. },
  55816. form: "anthro",
  55817. default: true
  55818. },
  55819. taur_side: {
  55820. height: math.unit(20, "meters"),
  55821. weight: math.unit(1100000, "kg"),
  55822. name: "Side",
  55823. image: {
  55824. source: "./media/characters/licos/taur.svg",
  55825. extra: 1158/1091,
  55826. bottom: 80/1238
  55827. },
  55828. form: "taur",
  55829. default: true
  55830. },
  55831. },
  55832. [
  55833. {
  55834. name: "Normal",
  55835. height: math.unit(4, "meters"),
  55836. default: true,
  55837. form: "anthro"
  55838. },
  55839. {
  55840. name: "Normal",
  55841. height: math.unit(20, "meters"),
  55842. default: true,
  55843. form: "taur"
  55844. },
  55845. ],
  55846. {
  55847. "anthro": {
  55848. name: "Anthro",
  55849. default: true
  55850. },
  55851. "taur": {
  55852. name: "Taur",
  55853. },
  55854. }
  55855. ))
  55856. characterMakers.push(() => makeCharacter(
  55857. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55858. {
  55859. front: {
  55860. height: math.unit(10 + 3/12, "feet"),
  55861. name: "Front",
  55862. image: {
  55863. source: "./media/characters/theo-monkey/front.svg",
  55864. extra: 1735/1658,
  55865. bottom: 73/1808
  55866. }
  55867. },
  55868. back: {
  55869. height: math.unit(10 + 3/12, "feet"),
  55870. name: "Back",
  55871. image: {
  55872. source: "./media/characters/theo-monkey/back.svg",
  55873. extra: 1742/1664,
  55874. bottom: 33/1775
  55875. }
  55876. },
  55877. head: {
  55878. height: math.unit(2.29, "feet"),
  55879. name: "Head",
  55880. image: {
  55881. source: "./media/characters/theo-monkey/head.svg"
  55882. }
  55883. },
  55884. handPalm: {
  55885. height: math.unit(1.73, "feet"),
  55886. name: "Hand (Palm)",
  55887. image: {
  55888. source: "./media/characters/theo-monkey/hand-palm.svg"
  55889. }
  55890. },
  55891. handBack: {
  55892. height: math.unit(1.63, "feet"),
  55893. name: "Hand (Back)",
  55894. image: {
  55895. source: "./media/characters/theo-monkey/hand-back.svg"
  55896. }
  55897. },
  55898. footSole: {
  55899. height: math.unit(2.15, "feet"),
  55900. name: "Foot (Sole)",
  55901. image: {
  55902. source: "./media/characters/theo-monkey/foot-sole.svg"
  55903. }
  55904. },
  55905. footSide: {
  55906. height: math.unit(1.6, "feet"),
  55907. name: "Foot (Side)",
  55908. image: {
  55909. source: "./media/characters/theo-monkey/foot-side.svg"
  55910. }
  55911. },
  55912. },
  55913. [
  55914. {
  55915. name: "Normal",
  55916. height: math.unit(10 + 3/12, "feet"),
  55917. default: true
  55918. },
  55919. ]
  55920. ))
  55921. characterMakers.push(() => makeCharacter(
  55922. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55923. {
  55924. front: {
  55925. height: math.unit(11, "feet"),
  55926. weight: math.unit(3000, "lb"),
  55927. preyCapacity: math.unit(10, "people"),
  55928. name: "Front",
  55929. image: {
  55930. source: "./media/characters/brook/front.svg",
  55931. extra: 909/835,
  55932. bottom: 108/1017
  55933. }
  55934. },
  55935. back: {
  55936. height: math.unit(11, "feet"),
  55937. weight: math.unit(3000, "lb"),
  55938. preyCapacity: math.unit(10, "people"),
  55939. name: "Back",
  55940. image: {
  55941. source: "./media/characters/brook/back.svg",
  55942. extra: 976/916,
  55943. bottom: 34/1010
  55944. }
  55945. },
  55946. backAlt: {
  55947. height: math.unit(11, "feet"),
  55948. weight: math.unit(3000, "lb"),
  55949. preyCapacity: math.unit(10, "people"),
  55950. name: "Back (Alt)",
  55951. image: {
  55952. source: "./media/characters/brook/back-alt.svg",
  55953. extra: 1283/1213,
  55954. bottom: 35/1318
  55955. }
  55956. },
  55957. bust: {
  55958. height: math.unit(9.0859030837, "feet"),
  55959. weight: math.unit(3000, "lb"),
  55960. preyCapacity: math.unit(10, "people"),
  55961. name: "Bust",
  55962. image: {
  55963. source: "./media/characters/brook/bust.svg",
  55964. extra: 2043/1923,
  55965. bottom: 0/2043
  55966. }
  55967. },
  55968. },
  55969. [
  55970. {
  55971. name: "Small",
  55972. height: math.unit(11, "feet"),
  55973. default: true
  55974. },
  55975. {
  55976. name: "Towering",
  55977. height: math.unit(5, "km")
  55978. },
  55979. {
  55980. name: "Enormous",
  55981. height: math.unit(25, "earths")
  55982. },
  55983. ]
  55984. ))
  55985. characterMakers.push(() => makeCharacter(
  55986. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55987. {
  55988. front: {
  55989. height: math.unit(4, "feet"),
  55990. weight: math.unit(150, "lb"),
  55991. name: "Front",
  55992. image: {
  55993. source: "./media/characters/squishi/front.svg",
  55994. extra: 1428/1271,
  55995. bottom: 30/1458
  55996. },
  55997. extraAttributes: {
  55998. "pawSize": {
  55999. name: "Paw Size",
  56000. power: 1,
  56001. type: "length",
  56002. base: math.unit(14, "ShoeSizeMensUS"),
  56003. defaultUnit: "ShoeSizeMensUS"
  56004. },
  56005. }
  56006. },
  56007. side: {
  56008. height: math.unit(4, "feet"),
  56009. weight: math.unit(150, "lb"),
  56010. name: "Side",
  56011. image: {
  56012. source: "./media/characters/squishi/side.svg",
  56013. extra: 1428/1271,
  56014. bottom: 30/1458
  56015. },
  56016. extraAttributes: {
  56017. "pawSize": {
  56018. name: "Paw Size",
  56019. power: 1,
  56020. type: "length",
  56021. base: math.unit(14, "ShoeSizeMensUS"),
  56022. defaultUnit: "ShoeSizeMensUS"
  56023. },
  56024. }
  56025. },
  56026. back: {
  56027. height: math.unit(4, "feet"),
  56028. weight: math.unit(150, "lb"),
  56029. name: "Back",
  56030. image: {
  56031. source: "./media/characters/squishi/back.svg",
  56032. extra: 1428/1271,
  56033. bottom: 30/1458
  56034. },
  56035. extraAttributes: {
  56036. "pawSize": {
  56037. name: "Paw Size",
  56038. power: 1,
  56039. type: "length",
  56040. base: math.unit(14, "ShoeSizeMensUS"),
  56041. defaultUnit: "ShoeSizeMensUS"
  56042. },
  56043. }
  56044. },
  56045. },
  56046. [
  56047. {
  56048. name: "Normal",
  56049. height: math.unit(4, "feet"),
  56050. default: true
  56051. },
  56052. ]
  56053. ))
  56054. characterMakers.push(() => makeCharacter(
  56055. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56056. {
  56057. front: {
  56058. height: math.unit(7 + 8/12, "feet"),
  56059. weight: math.unit(333, "lb"),
  56060. name: "Front",
  56061. image: {
  56062. source: "./media/characters/vincent-vasroc/front.svg",
  56063. extra: 1962/1860,
  56064. bottom: 41/2003
  56065. }
  56066. },
  56067. back: {
  56068. height: math.unit(7 + 8/12, "feet"),
  56069. weight: math.unit(333, "lb"),
  56070. name: "Back",
  56071. image: {
  56072. source: "./media/characters/vincent-vasroc/back.svg",
  56073. extra: 1952/1815,
  56074. bottom: 33/1985
  56075. }
  56076. },
  56077. paw: {
  56078. height: math.unit(1.24, "feet"),
  56079. name: "Paw",
  56080. image: {
  56081. source: "./media/characters/vincent-vasroc/paw.svg"
  56082. }
  56083. },
  56084. ear: {
  56085. height: math.unit(0.75, "feet"),
  56086. name: "Ear",
  56087. image: {
  56088. source: "./media/characters/vincent-vasroc/ear.svg"
  56089. }
  56090. },
  56091. },
  56092. [
  56093. {
  56094. name: "Nano",
  56095. height: math.unit(92, "micrometers")
  56096. },
  56097. {
  56098. name: "Normal",
  56099. height: math.unit(7 + 8/12, "feet"),
  56100. default: true
  56101. },
  56102. ]
  56103. ))
  56104. characterMakers.push(() => makeCharacter(
  56105. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56106. {
  56107. frontNsfw: {
  56108. height: math.unit(40, "feet"),
  56109. weight: math.unit(58, "tons"),
  56110. name: "Front (NSFW)",
  56111. image: {
  56112. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56113. extra: 1265/965,
  56114. bottom: 155/1420
  56115. }
  56116. },
  56117. frontSfw: {
  56118. height: math.unit(40, "feet"),
  56119. weight: math.unit(58, "tons"),
  56120. name: "Front (SFW)",
  56121. image: {
  56122. source: "./media/characters/ru-kahn/front-sfw.svg",
  56123. extra: 1265/965,
  56124. bottom: 80/1345
  56125. }
  56126. },
  56127. },
  56128. [
  56129. {
  56130. name: "Small",
  56131. height: math.unit(4, "feet")
  56132. },
  56133. {
  56134. name: "Normal",
  56135. height: math.unit(40, "feet"),
  56136. default: true
  56137. },
  56138. {
  56139. name: "Macro",
  56140. height: math.unit(400, "feet")
  56141. },
  56142. ]
  56143. ))
  56144. characterMakers.push(() => makeCharacter(
  56145. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56146. {
  56147. frontNude: {
  56148. height: math.unit(6 + 5/12, "feet"),
  56149. name: "Front (Nude)",
  56150. image: {
  56151. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56152. extra: 1369/1366,
  56153. bottom: 68/1437
  56154. }
  56155. },
  56156. frontDressed: {
  56157. height: math.unit(6 + 5/12, "feet"),
  56158. name: "Front (Dressed)",
  56159. image: {
  56160. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56161. extra: 1369/1366,
  56162. bottom: 68/1437
  56163. }
  56164. },
  56165. },
  56166. [
  56167. {
  56168. name: "Normal",
  56169. height: math.unit(6 + 5/12, "feet"),
  56170. default: true
  56171. },
  56172. {
  56173. name: "Maximum",
  56174. height: math.unit(1930, "feet")
  56175. },
  56176. ]
  56177. ))
  56178. characterMakers.push(() => makeCharacter(
  56179. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56180. {
  56181. front: {
  56182. height: math.unit(5 + 6/12, "feet"),
  56183. name: "Front",
  56184. image: {
  56185. source: "./media/characters/kaja/front.svg",
  56186. extra: 1874/1514,
  56187. bottom: 117/1991
  56188. }
  56189. },
  56190. },
  56191. [
  56192. {
  56193. name: "Normal",
  56194. height: math.unit(5 + 6/12, "feet"),
  56195. default: true
  56196. },
  56197. ]
  56198. ))
  56199. characterMakers.push(() => makeCharacter(
  56200. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56201. {
  56202. front: {
  56203. height: math.unit(5 + 9/12, "feet"),
  56204. weight: math.unit(200, "lb"),
  56205. name: "Front",
  56206. image: {
  56207. source: "./media/characters/mark-smith/front.svg",
  56208. extra: 1004/943,
  56209. bottom: 58/1062
  56210. }
  56211. },
  56212. back: {
  56213. height: math.unit(5 + 9/12, "feet"),
  56214. weight: math.unit(200, "lb"),
  56215. name: "Back",
  56216. image: {
  56217. source: "./media/characters/mark-smith/back.svg",
  56218. extra: 1023/953,
  56219. bottom: 24/1047
  56220. }
  56221. },
  56222. head: {
  56223. height: math.unit(1.82, "feet"),
  56224. name: "Head",
  56225. image: {
  56226. source: "./media/characters/mark-smith/head.svg"
  56227. }
  56228. },
  56229. hand: {
  56230. height: math.unit(1.4, "feet"),
  56231. name: "Hand",
  56232. image: {
  56233. source: "./media/characters/mark-smith/hand.svg"
  56234. }
  56235. },
  56236. paw: {
  56237. height: math.unit(1.69, "feet"),
  56238. name: "Paw",
  56239. image: {
  56240. source: "./media/characters/mark-smith/paw.svg"
  56241. }
  56242. },
  56243. },
  56244. [
  56245. {
  56246. name: "Micro",
  56247. height: math.unit(0.25, "inches")
  56248. },
  56249. {
  56250. name: "Normal",
  56251. height: math.unit(5 + 9/12, "feet"),
  56252. default: true
  56253. },
  56254. {
  56255. name: "Macro",
  56256. height: math.unit(500, "feet")
  56257. },
  56258. ]
  56259. ))
  56260. characterMakers.push(() => makeCharacter(
  56261. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56262. {
  56263. frontNude: {
  56264. height: math.unit(6, "feet"),
  56265. name: "Front (Nude)",
  56266. image: {
  56267. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56268. extra: 1384/1321,
  56269. bottom: 57/1441
  56270. }
  56271. },
  56272. frontDressed: {
  56273. height: math.unit(6, "feet"),
  56274. name: "Front (Dressed)",
  56275. image: {
  56276. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56277. extra: 1384/1321,
  56278. bottom: 57/1441
  56279. }
  56280. },
  56281. },
  56282. [
  56283. {
  56284. name: "Normal",
  56285. height: math.unit(6, "feet"),
  56286. default: true
  56287. },
  56288. {
  56289. name: "Maximum",
  56290. height: math.unit(1776, "feet")
  56291. },
  56292. ]
  56293. ))
  56294. characterMakers.push(() => makeCharacter(
  56295. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56296. {
  56297. front: {
  56298. height: math.unit(2 + 4/12, "feet"),
  56299. weight: math.unit(350, "lb"),
  56300. name: "Front",
  56301. image: {
  56302. source: "./media/characters/devos/front.svg",
  56303. extra: 958/852,
  56304. bottom: 143/1101
  56305. }
  56306. },
  56307. },
  56308. [
  56309. {
  56310. name: "Base",
  56311. height: math.unit(2 + 4/12, "feet"),
  56312. default: true
  56313. },
  56314. ]
  56315. ))
  56316. characterMakers.push(() => makeCharacter(
  56317. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56318. {
  56319. front: {
  56320. height: math.unit(9 + 2/12, "feet"),
  56321. name: "Front",
  56322. image: {
  56323. source: "./media/characters/hiveheart/front.svg",
  56324. extra: 394/364,
  56325. bottom: 65/459
  56326. }
  56327. },
  56328. back: {
  56329. height: math.unit(9 + 2/12, "feet"),
  56330. name: "Back",
  56331. image: {
  56332. source: "./media/characters/hiveheart/back.svg",
  56333. extra: 374/357,
  56334. bottom: 63/437
  56335. }
  56336. },
  56337. },
  56338. [
  56339. {
  56340. name: "Base",
  56341. height: math.unit(9 + 2/12, "feet"),
  56342. default: true
  56343. },
  56344. ]
  56345. ))
  56346. characterMakers.push(() => makeCharacter(
  56347. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56348. {
  56349. front: {
  56350. height: math.unit(2.5, "inches"),
  56351. weight: math.unit(0.6, "oz"),
  56352. name: "Front",
  56353. image: {
  56354. source: "./media/characters/bryn/front.svg",
  56355. extra: 1480/1205,
  56356. bottom: 27/1507
  56357. }
  56358. },
  56359. back: {
  56360. height: math.unit(2.5, "inches"),
  56361. weight: math.unit(0.6, "oz"),
  56362. name: "Back",
  56363. image: {
  56364. source: "./media/characters/bryn/back.svg",
  56365. extra: 1475/1201,
  56366. bottom: 39/1514
  56367. }
  56368. },
  56369. foot: {
  56370. height: math.unit(0.4, "inches"),
  56371. name: "Foot",
  56372. image: {
  56373. source: "./media/characters/bryn/foot.svg"
  56374. }
  56375. },
  56376. },
  56377. [
  56378. {
  56379. name: "Normal",
  56380. height: math.unit(2.5, "inches"),
  56381. default: true
  56382. },
  56383. ]
  56384. ))
  56385. characterMakers.push(() => makeCharacter(
  56386. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56387. {
  56388. side: {
  56389. height: math.unit(7, "feet"),
  56390. weight: math.unit(657, "kg"),
  56391. name: "Side",
  56392. image: {
  56393. source: "./media/characters/delta/side.svg",
  56394. extra: 781/212,
  56395. bottom: 7/788
  56396. },
  56397. extraAttributes: {
  56398. "wingspan": {
  56399. name: "Wingspan",
  56400. power: 1,
  56401. type: "length",
  56402. base: math.unit(48, "feet")
  56403. },
  56404. "length": {
  56405. name: "Length",
  56406. power: 1,
  56407. type: "length",
  56408. base: math.unit(21, "feet")
  56409. },
  56410. "pawSize": {
  56411. name: "Paw Size",
  56412. power: 2,
  56413. type: "area",
  56414. base: math.unit(1.5*1.4, "feet^2")
  56415. },
  56416. }
  56417. },
  56418. },
  56419. [
  56420. {
  56421. name: "Normal",
  56422. height: math.unit(6, "feet"),
  56423. default: true
  56424. },
  56425. ]
  56426. ))
  56427. characterMakers.push(() => makeCharacter(
  56428. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56429. {
  56430. front: {
  56431. height: math.unit(6, "feet"),
  56432. name: "Front",
  56433. image: {
  56434. source: "./media/characters/pyrow/front.svg",
  56435. extra: 513/486,
  56436. bottom: 14/527
  56437. }
  56438. },
  56439. frontWing: {
  56440. height: math.unit(6, "feet"),
  56441. name: "Front (Wing)",
  56442. image: {
  56443. source: "./media/characters/pyrow/front-wing.svg",
  56444. extra: 539/383,
  56445. bottom: 20/559
  56446. }
  56447. },
  56448. back: {
  56449. height: math.unit(6, "feet"),
  56450. name: "Back",
  56451. image: {
  56452. source: "./media/characters/pyrow/back.svg",
  56453. extra: 500/473,
  56454. bottom: 9/509
  56455. }
  56456. },
  56457. },
  56458. [
  56459. {
  56460. name: "Normal",
  56461. height: math.unit(6, "feet"),
  56462. default: true
  56463. },
  56464. ]
  56465. ))
  56466. characterMakers.push(() => makeCharacter(
  56467. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56468. {
  56469. front: {
  56470. height: math.unit(5, "meters"),
  56471. weight: math.unit(3, "tonnes"),
  56472. name: "Front",
  56473. image: {
  56474. source: "./media/characters/velikan/front.svg",
  56475. extra: 867/744,
  56476. bottom: 71/938
  56477. },
  56478. extraAttributes: {
  56479. "shoeSize": {
  56480. name: "Shoe Size",
  56481. power: 1,
  56482. type: "length",
  56483. base: math.unit(135, "ShoeSizeUK"),
  56484. defaultUnit: "ShoeSizeUK"
  56485. },
  56486. }
  56487. },
  56488. },
  56489. [
  56490. {
  56491. name: "Normal",
  56492. height: math.unit(5, "meters"),
  56493. default: true
  56494. },
  56495. {
  56496. name: "Macro",
  56497. height: math.unit(1, "km")
  56498. },
  56499. {
  56500. name: "Mega Macro",
  56501. height: math.unit(100, "km")
  56502. },
  56503. {
  56504. name: "Giga Macro",
  56505. height: math.unit(2, "megameters")
  56506. },
  56507. {
  56508. name: "Planetary",
  56509. height: math.unit(22, "megameters")
  56510. },
  56511. {
  56512. name: "Solar",
  56513. height: math.unit(8, "gigameters")
  56514. },
  56515. {
  56516. name: "Cosmic",
  56517. height: math.unit(10, "zettameters")
  56518. },
  56519. {
  56520. name: "Omni",
  56521. height: math.unit(9e260, "multiverses")
  56522. },
  56523. ]
  56524. ))
  56525. characterMakers.push(() => makeCharacter(
  56526. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56527. {
  56528. front: {
  56529. height: math.unit(4 + 3/12, "feet"),
  56530. weight: math.unit(90, "lb"),
  56531. name: "Front",
  56532. image: {
  56533. source: "./media/characters/sabiki/front.svg",
  56534. extra: 1662/1423,
  56535. bottom: 65/1727
  56536. }
  56537. },
  56538. },
  56539. [
  56540. {
  56541. name: "Normal",
  56542. height: math.unit(4 + 3/12, "feet"),
  56543. default: true
  56544. },
  56545. ]
  56546. ))
  56547. characterMakers.push(() => makeCharacter(
  56548. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56549. {
  56550. frontSfw: {
  56551. height: math.unit(2, "mm"),
  56552. name: "Front (SFW)",
  56553. image: {
  56554. source: "./media/characters/carmel/front-sfw.svg",
  56555. extra: 1131/1006,
  56556. bottom: 66/1197
  56557. }
  56558. },
  56559. frontNsfw: {
  56560. height: math.unit(2, "mm"),
  56561. name: "Front (NSFW)",
  56562. image: {
  56563. source: "./media/characters/carmel/front-nsfw.svg",
  56564. extra: 1131/1006,
  56565. bottom: 66/1197
  56566. }
  56567. },
  56568. foot: {
  56569. height: math.unit(0.3, "mm"),
  56570. name: "Foot",
  56571. image: {
  56572. source: "./media/characters/carmel/foot.svg"
  56573. }
  56574. },
  56575. tongue: {
  56576. height: math.unit(0.71, "mm"),
  56577. name: "Tongue",
  56578. image: {
  56579. source: "./media/characters/carmel/tongue.svg"
  56580. }
  56581. },
  56582. dick: {
  56583. height: math.unit(0.085, "mm"),
  56584. name: "Dick",
  56585. image: {
  56586. source: "./media/characters/carmel/dick.svg"
  56587. }
  56588. },
  56589. },
  56590. [
  56591. {
  56592. name: "Micro",
  56593. height: math.unit(2, "mm"),
  56594. default: true
  56595. },
  56596. {
  56597. name: "Normal",
  56598. height: math.unit(4 + 8/12, "feet")
  56599. },
  56600. {
  56601. name: "Mega Macro",
  56602. height: math.unit(250, "feet")
  56603. },
  56604. {
  56605. name: "BIGGER",
  56606. height: math.unit(1000, "feet")
  56607. },
  56608. {
  56609. name: "BIGGEST",
  56610. height: math.unit(2, "miles")
  56611. },
  56612. ]
  56613. ))
  56614. characterMakers.push(() => makeCharacter(
  56615. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56616. {
  56617. front: {
  56618. height: math.unit(6.5, "feet"),
  56619. weight: math.unit(198, "lb"),
  56620. name: "Front",
  56621. image: {
  56622. source: "./media/characters/tamani/anthro.svg",
  56623. extra: 930/890,
  56624. bottom: 34/964
  56625. },
  56626. form: "anthro",
  56627. default: true
  56628. },
  56629. side: {
  56630. height: math.unit(6, "feet"),
  56631. weight: math.unit(198*2, "lb"),
  56632. name: "Side",
  56633. image: {
  56634. source: "./media/characters/tamani/feral.svg",
  56635. extra: 559/519,
  56636. bottom: 43/602
  56637. },
  56638. form: "feral"
  56639. },
  56640. },
  56641. [
  56642. {
  56643. name: "Normal",
  56644. height: math.unit(6.5, "feet"),
  56645. default: true,
  56646. form: "anthro"
  56647. },
  56648. {
  56649. name: "Normal",
  56650. height: math.unit(6, "feet"),
  56651. default: true,
  56652. form: "feral"
  56653. },
  56654. ],
  56655. {
  56656. "anthro": {
  56657. name: "Anthro",
  56658. default: true
  56659. },
  56660. "feral": {
  56661. name: "Feral",
  56662. },
  56663. }
  56664. ))
  56665. characterMakers.push(() => makeCharacter(
  56666. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56667. {
  56668. front: {
  56669. height: math.unit(4 + 1/12, "feet"),
  56670. weight: math.unit(114, "lb"),
  56671. name: "Front",
  56672. image: {
  56673. source: "./media/characters/dex/front.svg",
  56674. extra: 787/680,
  56675. bottom: 18/805
  56676. }
  56677. },
  56678. side: {
  56679. height: math.unit(4 + 1/12, "feet"),
  56680. weight: math.unit(114, "lb"),
  56681. name: "Side",
  56682. image: {
  56683. source: "./media/characters/dex/side.svg",
  56684. extra: 785/680,
  56685. bottom: 12/797
  56686. }
  56687. },
  56688. back: {
  56689. height: math.unit(4 + 1/12, "feet"),
  56690. weight: math.unit(114, "lb"),
  56691. name: "Back",
  56692. image: {
  56693. source: "./media/characters/dex/back.svg",
  56694. extra: 785/681,
  56695. bottom: 17/802
  56696. }
  56697. },
  56698. loungewear: {
  56699. height: math.unit(4 + 1/12, "feet"),
  56700. weight: math.unit(114, "lb"),
  56701. name: "Loungewear",
  56702. image: {
  56703. source: "./media/characters/dex/loungewear.svg",
  56704. extra: 787/680,
  56705. bottom: 18/805
  56706. }
  56707. },
  56708. workout: {
  56709. height: math.unit(4 + 1/12, "feet"),
  56710. weight: math.unit(114, "lb"),
  56711. name: "Workout",
  56712. image: {
  56713. source: "./media/characters/dex/workout.svg",
  56714. extra: 787/680,
  56715. bottom: 18/805
  56716. }
  56717. },
  56718. schoolUniform: {
  56719. height: math.unit(4 + 1/12, "feet"),
  56720. weight: math.unit(114, "lb"),
  56721. name: "School-uniform",
  56722. image: {
  56723. source: "./media/characters/dex/school-uniform.svg",
  56724. extra: 787/680,
  56725. bottom: 18/805
  56726. }
  56727. },
  56728. maw: {
  56729. height: math.unit(0.55, "feet"),
  56730. name: "Maw",
  56731. image: {
  56732. source: "./media/characters/dex/maw.svg"
  56733. }
  56734. },
  56735. paw: {
  56736. height: math.unit(0.87, "feet"),
  56737. name: "Paw",
  56738. image: {
  56739. source: "./media/characters/dex/paw.svg"
  56740. }
  56741. },
  56742. bust: {
  56743. height: math.unit(1.67, "feet"),
  56744. name: "Bust",
  56745. image: {
  56746. source: "./media/characters/dex/bust.svg"
  56747. }
  56748. },
  56749. },
  56750. [
  56751. {
  56752. name: "Normal",
  56753. height: math.unit(4 + 1/12, "feet"),
  56754. default: true
  56755. },
  56756. ]
  56757. ))
  56758. characterMakers.push(() => makeCharacter(
  56759. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56760. {
  56761. front: {
  56762. height: math.unit(4 + 3/12, "feet"),
  56763. weight: math.unit(60, "lb"),
  56764. name: "Front",
  56765. image: {
  56766. source: "./media/characters/silke/front.svg",
  56767. extra: 1334/1122,
  56768. bottom: 21/1355
  56769. }
  56770. },
  56771. back: {
  56772. height: math.unit(4 + 3/12, "feet"),
  56773. weight: math.unit(60, "lb"),
  56774. name: "Back",
  56775. image: {
  56776. source: "./media/characters/silke/back.svg",
  56777. extra: 1328/1092,
  56778. bottom: 16/1344
  56779. }
  56780. },
  56781. dressed: {
  56782. height: math.unit(4 + 3/12, "feet"),
  56783. weight: math.unit(60, "lb"),
  56784. name: "Dressed",
  56785. image: {
  56786. source: "./media/characters/silke/dressed.svg",
  56787. extra: 1334/1122,
  56788. bottom: 43/1377
  56789. }
  56790. },
  56791. },
  56792. [
  56793. {
  56794. name: "Normal",
  56795. height: math.unit(4 + 3/12, "feet"),
  56796. default: true
  56797. },
  56798. ]
  56799. ))
  56800. characterMakers.push(() => makeCharacter(
  56801. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56802. {
  56803. front: {
  56804. height: math.unit(1.58, "meters"),
  56805. weight: math.unit(47, "kg"),
  56806. name: "Front",
  56807. image: {
  56808. source: "./media/characters/wireshark/front.svg",
  56809. extra: 883/838,
  56810. bottom: 66/949
  56811. }
  56812. },
  56813. },
  56814. [
  56815. {
  56816. name: "Normal",
  56817. height: math.unit(1.58, "meters"),
  56818. default: true
  56819. },
  56820. ]
  56821. ))
  56822. characterMakers.push(() => makeCharacter(
  56823. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56824. {
  56825. front: {
  56826. height: math.unit(6, "meters"),
  56827. weight: math.unit(15000, "kg"),
  56828. name: "Front",
  56829. image: {
  56830. source: "./media/characters/gallagher/front.svg",
  56831. extra: 532/493,
  56832. bottom: 0/532
  56833. }
  56834. },
  56835. },
  56836. [
  56837. {
  56838. name: "Normal",
  56839. height: math.unit(6, "meters"),
  56840. default: true
  56841. },
  56842. ]
  56843. ))
  56844. characterMakers.push(() => makeCharacter(
  56845. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56846. {
  56847. front: {
  56848. height: math.unit(2.4, "meters"),
  56849. weight: math.unit(270, "kg"),
  56850. name: "Front",
  56851. image: {
  56852. source: "./media/characters/alice/front.svg",
  56853. extra: 950/900,
  56854. bottom: 36/986
  56855. }
  56856. },
  56857. side: {
  56858. height: math.unit(2.4, "meters"),
  56859. weight: math.unit(270, "kg"),
  56860. name: "Side",
  56861. image: {
  56862. source: "./media/characters/alice/side.svg",
  56863. extra: 921/876,
  56864. bottom: 19/940
  56865. }
  56866. },
  56867. dressed: {
  56868. height: math.unit(2.4, "meters"),
  56869. weight: math.unit(270, "kg"),
  56870. name: "Dressed",
  56871. image: {
  56872. source: "./media/characters/alice/dressed.svg",
  56873. extra: 905/850,
  56874. bottom: 81/986
  56875. }
  56876. },
  56877. fishnet: {
  56878. height: math.unit(2.4, "meters"),
  56879. weight: math.unit(270, "kg"),
  56880. name: "Fishnet",
  56881. image: {
  56882. source: "./media/characters/alice/fishnet.svg",
  56883. extra: 905/850,
  56884. bottom: 81/986
  56885. }
  56886. },
  56887. },
  56888. [
  56889. {
  56890. name: "Normal",
  56891. height: math.unit(2.4, "meters"),
  56892. default: true
  56893. },
  56894. ]
  56895. ))
  56896. characterMakers.push(() => makeCharacter(
  56897. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56898. {
  56899. front: {
  56900. height: math.unit(175.25, "feet"),
  56901. name: "Front",
  56902. image: {
  56903. source: "./media/characters/fio/front.svg",
  56904. extra: 1883/1591,
  56905. bottom: 34/1917
  56906. }
  56907. },
  56908. },
  56909. [
  56910. {
  56911. name: "Normal",
  56912. height: math.unit(175.25, "cm"),
  56913. default: true
  56914. },
  56915. ]
  56916. ))
  56917. characterMakers.push(() => makeCharacter(
  56918. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56919. {
  56920. side: {
  56921. height: math.unit(6, "meters"),
  56922. weight: math.unit(3400, "kg"),
  56923. preyCapacity: math.unit(1700, "liters"),
  56924. name: "Side",
  56925. image: {
  56926. source: "./media/characters/hass/side.svg",
  56927. extra: 1058/997,
  56928. bottom: 177/1235
  56929. }
  56930. },
  56931. feeding: {
  56932. height: math.unit(6*0.63, "meters"),
  56933. weight: math.unit(3400, "kg"),
  56934. preyCapacity: math.unit(1700, "liters"),
  56935. name: "Feeding",
  56936. image: {
  56937. source: "./media/characters/hass/feeding.svg",
  56938. extra: 689/579,
  56939. bottom: 146/835
  56940. }
  56941. },
  56942. guts: {
  56943. height: math.unit(6, "meters"),
  56944. weight: math.unit(3400, "kg"),
  56945. name: "Guts",
  56946. image: {
  56947. source: "./media/characters/hass/guts.svg",
  56948. extra: 1223/1198,
  56949. bottom: 182/1405
  56950. }
  56951. },
  56952. dickFront: {
  56953. height: math.unit(1.4, "meters"),
  56954. name: "Dick (Front)",
  56955. image: {
  56956. source: "./media/characters/hass/dick-front.svg"
  56957. }
  56958. },
  56959. dickSide: {
  56960. height: math.unit(1.3, "meters"),
  56961. name: "Dick (Side)",
  56962. image: {
  56963. source: "./media/characters/hass/dick-side.svg"
  56964. }
  56965. },
  56966. dickBack: {
  56967. height: math.unit(1.4, "meters"),
  56968. name: "Dick (Back)",
  56969. image: {
  56970. source: "./media/characters/hass/dick-back.svg"
  56971. }
  56972. },
  56973. },
  56974. [
  56975. {
  56976. name: "Normal",
  56977. height: math.unit(6, "meters"),
  56978. default: true
  56979. },
  56980. ]
  56981. ))
  56982. characterMakers.push(() => makeCharacter(
  56983. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56984. {
  56985. front: {
  56986. height: math.unit(4, "feet"),
  56987. weight: math.unit(60, "lb"),
  56988. name: "Front",
  56989. image: {
  56990. source: "./media/characters/hickory-finnegan/front.svg",
  56991. extra: 444/411,
  56992. bottom: 10/454
  56993. }
  56994. },
  56995. side: {
  56996. height: math.unit(4, "feet"),
  56997. weight: math.unit(60, "lb"),
  56998. name: "Side",
  56999. image: {
  57000. source: "./media/characters/hickory-finnegan/side.svg",
  57001. extra: 444/411,
  57002. bottom: 10/454
  57003. }
  57004. },
  57005. back: {
  57006. height: math.unit(4, "feet"),
  57007. weight: math.unit(60, "lb"),
  57008. name: "Back",
  57009. image: {
  57010. source: "./media/characters/hickory-finnegan/back.svg",
  57011. extra: 444/411,
  57012. bottom: 10/454
  57013. }
  57014. },
  57015. },
  57016. [
  57017. {
  57018. name: "Normal",
  57019. height: math.unit(4, "feet"),
  57020. default: true
  57021. },
  57022. ]
  57023. ))
  57024. characterMakers.push(() => makeCharacter(
  57025. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57026. {
  57027. snivy_front: {
  57028. height: math.unit(2, "feet"),
  57029. weight: math.unit(17.9, "lb"),
  57030. name: "Front",
  57031. image: {
  57032. source: "./media/characters/robin-phox/snivy-front.svg",
  57033. extra: 569/504,
  57034. bottom: 33/602
  57035. },
  57036. form: "snivy",
  57037. default: true
  57038. },
  57039. snivy_frontNsfw: {
  57040. height: math.unit(2, "feet"),
  57041. weight: math.unit(17.9, "lb"),
  57042. name: "Front (NSFW)",
  57043. image: {
  57044. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57045. extra: 569/504,
  57046. bottom: 33/602
  57047. },
  57048. form: "snivy",
  57049. },
  57050. snivy_back: {
  57051. height: math.unit(2, "feet"),
  57052. weight: math.unit(17.9, "lb"),
  57053. name: "Back",
  57054. image: {
  57055. source: "./media/characters/robin-phox/snivy-back.svg",
  57056. extra: 577/508,
  57057. bottom: 21/598
  57058. },
  57059. form: "snivy",
  57060. },
  57061. snivy_foot: {
  57062. height: math.unit(0.68, "feet"),
  57063. name: "Foot",
  57064. image: {
  57065. source: "./media/characters/robin-phox/snivy-foot.svg"
  57066. },
  57067. form: "snivy",
  57068. },
  57069. snivy_sole: {
  57070. height: math.unit(0.68, "feet"),
  57071. name: "Sole",
  57072. image: {
  57073. source: "./media/characters/robin-phox/snivy-sole.svg"
  57074. },
  57075. form: "snivy",
  57076. },
  57077. yoshi_front: {
  57078. height: math.unit(6, "feet"),
  57079. weight: math.unit(150, "lb"),
  57080. name: "Front",
  57081. image: {
  57082. source: "./media/characters/robin-phox/yoshi-front.svg",
  57083. extra: 890/792,
  57084. bottom: 29/919
  57085. },
  57086. form: "yoshi",
  57087. default: true
  57088. },
  57089. yoshi_frontNsfw: {
  57090. height: math.unit(6, "feet"),
  57091. weight: math.unit(150, "lb"),
  57092. name: "Front (NSFW)",
  57093. image: {
  57094. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57095. extra: 890/792,
  57096. bottom: 29/919
  57097. },
  57098. form: "yoshi",
  57099. },
  57100. yoshi_back: {
  57101. height: math.unit(6, "feet"),
  57102. weight: math.unit(150, "lb"),
  57103. name: "Back",
  57104. image: {
  57105. source: "./media/characters/robin-phox/yoshi-back.svg",
  57106. extra: 890/792,
  57107. bottom: 29/919
  57108. },
  57109. form: "yoshi",
  57110. },
  57111. yoshi_foot: {
  57112. height: math.unit(1.5, "feet"),
  57113. name: "Foot",
  57114. image: {
  57115. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57116. },
  57117. form: "yoshi",
  57118. },
  57119. delphox_front: {
  57120. height: math.unit(4 + 11/12, "feet"),
  57121. weight: math.unit(86, "lb"),
  57122. name: "Front",
  57123. image: {
  57124. source: "./media/characters/robin-phox/delphox-front.svg",
  57125. extra: 1266/1069,
  57126. bottom: 32/1298
  57127. },
  57128. form: "delphox",
  57129. default: true
  57130. },
  57131. delphox_frontNsfw: {
  57132. height: math.unit(4 + 11/12, "feet"),
  57133. weight: math.unit(86, "lb"),
  57134. name: "Front (NSFW)",
  57135. image: {
  57136. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57137. extra: 1266/1069,
  57138. bottom: 32/1298
  57139. },
  57140. form: "delphox",
  57141. },
  57142. delphox_back: {
  57143. height: math.unit(4 + 11/12, "feet"),
  57144. weight: math.unit(86, "lb"),
  57145. name: "Back",
  57146. image: {
  57147. source: "./media/characters/robin-phox/delphox-back.svg",
  57148. extra: 1269/1083,
  57149. bottom: 15/1284
  57150. },
  57151. form: "delphox",
  57152. },
  57153. mienshao_front: {
  57154. height: math.unit(4 + 7/12, "feet"),
  57155. weight: math.unit(78.3, "lb"),
  57156. name: "Front",
  57157. image: {
  57158. source: "./media/characters/robin-phox/mienshao-front.svg",
  57159. extra: 1052/970,
  57160. bottom: 108/1160
  57161. },
  57162. form: "mienshao",
  57163. default: true
  57164. },
  57165. mienshao_frontNsfw: {
  57166. height: math.unit(4 + 7/12, "feet"),
  57167. weight: math.unit(78.3, "lb"),
  57168. name: "Front (NSFW)",
  57169. image: {
  57170. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57171. extra: 1052/970,
  57172. bottom: 108/1160
  57173. },
  57174. form: "mienshao",
  57175. },
  57176. mienshao_back: {
  57177. height: math.unit(4 + 7/12, "feet"),
  57178. weight: math.unit(78.3, "lb"),
  57179. name: "Back",
  57180. image: {
  57181. source: "./media/characters/robin-phox/mienshao-back.svg",
  57182. extra: 1102/982,
  57183. bottom: 32/1134
  57184. },
  57185. form: "mienshao",
  57186. },
  57187. inteleon_front: {
  57188. height: math.unit(6 + 3/12, "feet"),
  57189. weight: math.unit(99.6, "lb"),
  57190. name: "Front",
  57191. image: {
  57192. source: "./media/characters/robin-phox/inteleon-front.svg",
  57193. extra: 910/799,
  57194. bottom: 76/986
  57195. },
  57196. form: "inteleon",
  57197. default: true
  57198. },
  57199. inteleon_frontNsfw: {
  57200. height: math.unit(6 + 3/12, "feet"),
  57201. weight: math.unit(99.6, "lb"),
  57202. name: "Front (NSFW)",
  57203. image: {
  57204. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57205. extra: 910/799,
  57206. bottom: 76/986
  57207. },
  57208. form: "inteleon",
  57209. },
  57210. inteleon_back: {
  57211. height: math.unit(6 + 3/12, "feet"),
  57212. weight: math.unit(99.6, "lb"),
  57213. name: "Back",
  57214. image: {
  57215. source: "./media/characters/robin-phox/inteleon-back.svg",
  57216. extra: 907/796,
  57217. bottom: 25/932
  57218. },
  57219. form: "inteleon",
  57220. },
  57221. reshiram_front: {
  57222. height: math.unit(10 + 6/12, "feet"),
  57223. weight: math.unit(727.5, "lb"),
  57224. name: "Front",
  57225. image: {
  57226. source: "./media/characters/robin-phox/reshiram-front.svg",
  57227. extra: 1198/940,
  57228. bottom: 123/1321
  57229. },
  57230. form: "reshiram",
  57231. },
  57232. reshiram_frontNsfw: {
  57233. height: math.unit(10 + 6/12, "feet"),
  57234. weight: math.unit(727.5, "lb"),
  57235. name: "Front-nsfw",
  57236. image: {
  57237. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57238. extra: 1198/940,
  57239. bottom: 123/1321
  57240. },
  57241. form: "reshiram",
  57242. },
  57243. reshiram_back: {
  57244. height: math.unit(10 + 6/12, "feet"),
  57245. weight: math.unit(727.5, "lb"),
  57246. name: "Back",
  57247. image: {
  57248. source: "./media/characters/robin-phox/reshiram-back.svg",
  57249. extra: 1024/904,
  57250. bottom: 85/1109
  57251. },
  57252. form: "reshiram",
  57253. },
  57254. samurott_front: {
  57255. height: math.unit(8, "feet"),
  57256. weight: math.unit(208.6, "lb"),
  57257. name: "Front",
  57258. image: {
  57259. source: "./media/characters/robin-phox/samurott-front.svg",
  57260. extra: 1048/984,
  57261. bottom: 100/1148
  57262. },
  57263. form: "samurott",
  57264. },
  57265. samurott_frontNsfw: {
  57266. height: math.unit(8, "feet"),
  57267. weight: math.unit(208.6, "lb"),
  57268. name: "Front-nsfw",
  57269. image: {
  57270. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57271. extra: 1048/984,
  57272. bottom: 100/1148
  57273. },
  57274. form: "samurott",
  57275. },
  57276. samurott_back: {
  57277. height: math.unit(8, "feet"),
  57278. weight: math.unit(208.6, "lb"),
  57279. name: "Back",
  57280. image: {
  57281. source: "./media/characters/robin-phox/samurott-back.svg",
  57282. extra: 1110/1042,
  57283. bottom: 12/1122
  57284. },
  57285. form: "samurott",
  57286. },
  57287. samurott_feral: {
  57288. height: math.unit(4 + 11/12, "feet"),
  57289. weight: math.unit(208.6, "lb"),
  57290. name: "Feral",
  57291. image: {
  57292. source: "./media/characters/robin-phox/samurott-feral.svg",
  57293. extra: 766/681,
  57294. bottom: 108/874
  57295. },
  57296. form: "samurott",
  57297. },
  57298. },
  57299. [
  57300. {
  57301. name: "Normal",
  57302. height: math.unit(2, "feet"),
  57303. default: true,
  57304. form: "snivy"
  57305. },
  57306. {
  57307. name: "Normal",
  57308. height: math.unit(6, "feet"),
  57309. default: true,
  57310. form: "yoshi"
  57311. },
  57312. {
  57313. name: "Normal",
  57314. height: math.unit(4 + 11/12, "feet"),
  57315. default: true,
  57316. form: "delphox"
  57317. },
  57318. {
  57319. name: "Normal",
  57320. height: math.unit(4 + 7/12, "feet"),
  57321. default: true,
  57322. form: "mienshao"
  57323. },
  57324. {
  57325. name: "Normal",
  57326. height: math.unit(6 + 3/12, "feet"),
  57327. default: true,
  57328. form: "inteleon"
  57329. },
  57330. {
  57331. name: "Normal",
  57332. height: math.unit(10 + 6/12, "feet"),
  57333. default: true,
  57334. form: "reshiram"
  57335. },
  57336. {
  57337. name: "Normal",
  57338. height: math.unit(8, "feet"),
  57339. default: true,
  57340. form: "samurott"
  57341. },
  57342. {
  57343. name: "Macro",
  57344. height: math.unit(500, "feet"),
  57345. allForms: true
  57346. },
  57347. {
  57348. name: "Mega Macro",
  57349. height: math.unit(10, "earths"),
  57350. allForms: true
  57351. },
  57352. {
  57353. name: "Giga Macro",
  57354. height: math.unit(1, "galaxy"),
  57355. allForms: true
  57356. },
  57357. {
  57358. name: "Godly Macro",
  57359. height: math.unit(1e10, "multiverses"),
  57360. allForms: true
  57361. },
  57362. ],
  57363. {
  57364. "snivy": {
  57365. name: "Snivy",
  57366. default: true
  57367. },
  57368. "yoshi": {
  57369. name: "Yoshi",
  57370. },
  57371. "delphox": {
  57372. name: "Delphox",
  57373. },
  57374. "mienshao": {
  57375. name: "Mienshao",
  57376. },
  57377. "inteleon": {
  57378. name: "Inteleon",
  57379. },
  57380. "reshiram": {
  57381. name: "Reshiram",
  57382. },
  57383. "samurott": {
  57384. name: "Samurott",
  57385. },
  57386. }
  57387. ))
  57388. characterMakers.push(() => makeCharacter(
  57389. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57390. {
  57391. front: {
  57392. height: math.unit(4, "feet"),
  57393. name: "Front",
  57394. image: {
  57395. source: "./media/characters/ash-leung/front.svg",
  57396. extra: 1916/1792,
  57397. bottom: 50/1966
  57398. }
  57399. },
  57400. },
  57401. [
  57402. {
  57403. name: "Atomic",
  57404. height: math.unit(1, "angstrom")
  57405. },
  57406. {
  57407. name: "Microscopic",
  57408. height: math.unit(4000, "angstroms")
  57409. },
  57410. {
  57411. name: "Speck",
  57412. height: math.unit(1, "mm")
  57413. },
  57414. {
  57415. name: "Small",
  57416. height: math.unit(1, "inch")
  57417. },
  57418. {
  57419. name: "Normal",
  57420. height: math.unit(4, "feet"),
  57421. default: true
  57422. },
  57423. ]
  57424. ))
  57425. characterMakers.push(() => makeCharacter(
  57426. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57427. {
  57428. frontDressed: {
  57429. height: math.unit(2.08, "meters"),
  57430. weight: math.unit(175, "lb"),
  57431. name: "Front (Dressed)",
  57432. image: {
  57433. source: "./media/characters/carie/front-dressed.svg",
  57434. extra: 456/417,
  57435. bottom: 7/463
  57436. }
  57437. },
  57438. backDressed: {
  57439. height: math.unit(2.08, "meters"),
  57440. weight: math.unit(175, "lb"),
  57441. name: "Back (Dressed)",
  57442. image: {
  57443. source: "./media/characters/carie/back-dressed.svg",
  57444. extra: 455/414,
  57445. bottom: 11/466
  57446. }
  57447. },
  57448. front: {
  57449. height: math.unit(2, "meters"),
  57450. weight: math.unit(175, "lb"),
  57451. name: "Front",
  57452. image: {
  57453. source: "./media/characters/carie/front.svg",
  57454. extra: 438/399,
  57455. bottom: 12/450
  57456. }
  57457. },
  57458. back: {
  57459. height: math.unit(2, "meters"),
  57460. weight: math.unit(175, "lb"),
  57461. name: "Back",
  57462. image: {
  57463. source: "./media/characters/carie/back.svg",
  57464. extra: 438/397,
  57465. bottom: 7/445
  57466. }
  57467. },
  57468. },
  57469. [
  57470. {
  57471. name: "Normal",
  57472. height: math.unit(2.08, "meters"),
  57473. default: true
  57474. },
  57475. {
  57476. name: "Macro",
  57477. height: math.unit(2.08e3, "meters")
  57478. },
  57479. {
  57480. name: "Mega Macro",
  57481. height: math.unit(2.08e6, "meters")
  57482. },
  57483. {
  57484. name: "Giga Macro",
  57485. height: math.unit(2.08e9, "meters")
  57486. },
  57487. {
  57488. name: "Tera Macro",
  57489. height: math.unit(2.08e12, "meters")
  57490. },
  57491. {
  57492. name: "Peta Macro",
  57493. height: math.unit(2.08e15, "meters")
  57494. },
  57495. {
  57496. name: "Exa Macro",
  57497. height: math.unit(2.08e18, "meters")
  57498. },
  57499. {
  57500. name: "Zetta Macro",
  57501. height: math.unit(2.08e21, "meters")
  57502. },
  57503. {
  57504. name: "Yotta Macro",
  57505. height: math.unit(2.08e24, "meters")
  57506. },
  57507. ]
  57508. ))
  57509. characterMakers.push(() => makeCharacter(
  57510. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57511. {
  57512. front: {
  57513. height: math.unit(5 + 2/12, "feet"),
  57514. weight: math.unit(120, "lb"),
  57515. name: "Front",
  57516. image: {
  57517. source: "./media/characters/sai-bree/front.svg",
  57518. extra: 1843/1702,
  57519. bottom: 91/1934
  57520. }
  57521. },
  57522. back: {
  57523. height: math.unit(5 + 2/12, "feet"),
  57524. weight: math.unit(120, "lb"),
  57525. name: "Back",
  57526. image: {
  57527. source: "./media/characters/sai-bree/back.svg",
  57528. extra: 1809/1637,
  57529. bottom: 56/1865
  57530. }
  57531. },
  57532. },
  57533. [
  57534. {
  57535. name: "Normal",
  57536. height: math.unit(5 + 2/12, "feet"),
  57537. default: true
  57538. },
  57539. {
  57540. name: "Macro",
  57541. height: math.unit(500, "feet")
  57542. },
  57543. ]
  57544. ))
  57545. characterMakers.push(() => makeCharacter(
  57546. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57547. {
  57548. side: {
  57549. height: math.unit(0.77, "meters"),
  57550. weight: math.unit(120, "lb"),
  57551. name: "Side",
  57552. image: {
  57553. source: "./media/characters/davwyn/side.svg",
  57554. extra: 1557/1225,
  57555. bottom: 131/1688
  57556. }
  57557. },
  57558. front: {
  57559. height: math.unit(0.835410, "meters"),
  57560. weight: math.unit(120, "lb"),
  57561. name: "Front",
  57562. image: {
  57563. source: "./media/characters/davwyn/front.svg",
  57564. extra: 870/843,
  57565. bottom: 175/1045
  57566. }
  57567. },
  57568. },
  57569. [
  57570. {
  57571. name: "Minidrake",
  57572. height: math.unit(0.77/4, "meters")
  57573. },
  57574. {
  57575. name: "Normal",
  57576. height: math.unit(0.77, "meters"),
  57577. default: true
  57578. },
  57579. ]
  57580. ))
  57581. characterMakers.push(() => makeCharacter(
  57582. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57583. {
  57584. front: {
  57585. height: math.unit(10 + 3/12, "feet"),
  57586. weight: math.unit(2857, "lb"),
  57587. name: "Front",
  57588. image: {
  57589. source: "./media/characters/balans/front.svg",
  57590. extra: 427/402,
  57591. bottom: 26/453
  57592. }
  57593. },
  57594. side: {
  57595. height: math.unit(10 + 3/12, "feet"),
  57596. weight: math.unit(2857, "lb"),
  57597. name: "Side",
  57598. image: {
  57599. source: "./media/characters/balans/side.svg",
  57600. extra: 397/371,
  57601. bottom: 17/414
  57602. }
  57603. },
  57604. back: {
  57605. height: math.unit(10 + 3/12, "feet"),
  57606. weight: math.unit(2857, "lb"),
  57607. name: "Back",
  57608. image: {
  57609. source: "./media/characters/balans/back.svg",
  57610. extra: 408/381,
  57611. bottom: 14/422
  57612. }
  57613. },
  57614. hand: {
  57615. height: math.unit(1.15, "feet"),
  57616. name: "Hand",
  57617. image: {
  57618. source: "./media/characters/balans/hand.svg"
  57619. }
  57620. },
  57621. footRest: {
  57622. height: math.unit(3.1, "feet"),
  57623. name: "Foot (Rest)",
  57624. image: {
  57625. source: "./media/characters/balans/foot-rest.svg"
  57626. }
  57627. },
  57628. footActive: {
  57629. height: math.unit(3.5, "feet"),
  57630. name: "Foot (Active)",
  57631. image: {
  57632. source: "./media/characters/balans/foot-active.svg"
  57633. }
  57634. },
  57635. },
  57636. [
  57637. {
  57638. name: "Normal",
  57639. height: math.unit(10 + 3/12, "feet"),
  57640. default: true
  57641. },
  57642. ]
  57643. ))
  57644. characterMakers.push(() => makeCharacter(
  57645. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57646. {
  57647. side: {
  57648. height: math.unit(9, "meters"),
  57649. weight: math.unit(114, "tonnes"),
  57650. name: "Side",
  57651. image: {
  57652. source: "./media/characters/eldkveikir/side.svg",
  57653. extra: 1927/338,
  57654. bottom: 42/1969
  57655. }
  57656. },
  57657. sitting: {
  57658. height: math.unit(13.4, "meters"),
  57659. weight: math.unit(114, "tonnes"),
  57660. name: "Sitting",
  57661. image: {
  57662. source: "./media/characters/eldkveikir/sitting.svg",
  57663. extra: 1108/963,
  57664. bottom: 610/1718
  57665. }
  57666. },
  57667. maw: {
  57668. height: math.unit(8.36, "meters"),
  57669. name: "Maw",
  57670. image: {
  57671. source: "./media/characters/eldkveikir/maw.svg"
  57672. }
  57673. },
  57674. hand: {
  57675. height: math.unit(4.84, "meters"),
  57676. name: "Hand",
  57677. image: {
  57678. source: "./media/characters/eldkveikir/hand.svg"
  57679. }
  57680. },
  57681. foot: {
  57682. height: math.unit(6.9, "meters"),
  57683. name: "Foot",
  57684. image: {
  57685. source: "./media/characters/eldkveikir/foot.svg"
  57686. }
  57687. },
  57688. genitals: {
  57689. height: math.unit(9.6, "meters"),
  57690. name: "Genitals",
  57691. image: {
  57692. source: "./media/characters/eldkveikir/genitals.svg"
  57693. }
  57694. },
  57695. },
  57696. [
  57697. {
  57698. name: "Normal",
  57699. height: math.unit(9, "meters"),
  57700. default: true
  57701. },
  57702. ]
  57703. ))
  57704. characterMakers.push(() => makeCharacter(
  57705. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57706. {
  57707. front: {
  57708. height: math.unit(14, "feet"),
  57709. weight: math.unit(4100, "lb"),
  57710. name: "Front",
  57711. image: {
  57712. source: "./media/characters/arrow/front.svg",
  57713. extra: 330/318,
  57714. bottom: 56/386
  57715. }
  57716. },
  57717. },
  57718. [
  57719. {
  57720. name: "Normal",
  57721. height: math.unit(14, "feet"),
  57722. default: true
  57723. },
  57724. {
  57725. name: "Minimacro",
  57726. height: math.unit(63, "feet")
  57727. },
  57728. {
  57729. name: "Macro",
  57730. height: math.unit(630, "feet")
  57731. },
  57732. {
  57733. name: "Megamacro",
  57734. height: math.unit(12600, "feet")
  57735. },
  57736. {
  57737. name: "Gigamacro",
  57738. height: math.unit(18000, "miles")
  57739. },
  57740. ]
  57741. ))
  57742. characterMakers.push(() => makeCharacter(
  57743. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57744. {
  57745. front: {
  57746. height: math.unit(10, "feet"),
  57747. weight: math.unit(2.4, "tons"),
  57748. name: "Front",
  57749. image: {
  57750. source: "./media/characters/3yk-k0-unit/front.svg",
  57751. extra: 573/561,
  57752. bottom: 33/606
  57753. }
  57754. },
  57755. back: {
  57756. height: math.unit(10, "feet"),
  57757. weight: math.unit(2.4, "tons"),
  57758. name: "Back",
  57759. image: {
  57760. source: "./media/characters/3yk-k0-unit/back.svg",
  57761. extra: 614/573,
  57762. bottom: 32/646
  57763. }
  57764. },
  57765. maw: {
  57766. height: math.unit(2.15, "feet"),
  57767. name: "Maw",
  57768. image: {
  57769. source: "./media/characters/3yk-k0-unit/maw.svg"
  57770. }
  57771. },
  57772. },
  57773. [
  57774. {
  57775. name: "Normal",
  57776. height: math.unit(10, "feet"),
  57777. default: true
  57778. },
  57779. ]
  57780. ))
  57781. characterMakers.push(() => makeCharacter(
  57782. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57783. {
  57784. front: {
  57785. height: math.unit(8 + 8/12, "feet"),
  57786. name: "Front",
  57787. image: {
  57788. source: "./media/characters/nemo/front.svg",
  57789. extra: 1308/1217,
  57790. bottom: 57/1365
  57791. }
  57792. },
  57793. },
  57794. [
  57795. {
  57796. name: "Normal",
  57797. height: math.unit(8 + 8/12, "feet"),
  57798. default: true
  57799. },
  57800. ]
  57801. ))
  57802. characterMakers.push(() => makeCharacter(
  57803. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57804. {
  57805. front: {
  57806. height: math.unit(8, "feet"),
  57807. weight: math.unit(760, "lb"),
  57808. name: "Front",
  57809. image: {
  57810. source: "./media/characters/rexx/front.svg",
  57811. extra: 786/750,
  57812. bottom: 17/803
  57813. },
  57814. extraAttributes: {
  57815. "pawLength": {
  57816. name: "Paw Length",
  57817. power: 1,
  57818. type: "length",
  57819. base: math.unit(27, "inches")
  57820. },
  57821. }
  57822. },
  57823. },
  57824. [
  57825. {
  57826. name: "Micro",
  57827. height: math.unit(2, "inches")
  57828. },
  57829. {
  57830. name: "Normal",
  57831. height: math.unit(8, "feet"),
  57832. default: true
  57833. },
  57834. {
  57835. name: "Macro",
  57836. height: math.unit(150, "feet")
  57837. },
  57838. ]
  57839. ))
  57840. characterMakers.push(() => makeCharacter(
  57841. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57842. {
  57843. front: {
  57844. height: math.unit(18, "feet"),
  57845. weight: math.unit(1975, "lb"),
  57846. name: "Front",
  57847. image: {
  57848. source: "./media/characters/draco/front.svg",
  57849. extra: 1325/1241,
  57850. bottom: 83/1408
  57851. }
  57852. },
  57853. back: {
  57854. height: math.unit(18, "feet"),
  57855. weight: math.unit(1975, "lb"),
  57856. name: "Back",
  57857. image: {
  57858. source: "./media/characters/draco/back.svg",
  57859. extra: 1332/1250,
  57860. bottom: 43/1375
  57861. }
  57862. },
  57863. dick: {
  57864. height: math.unit(7.5, "feet"),
  57865. name: "Dick",
  57866. image: {
  57867. source: "./media/characters/draco/dick.svg"
  57868. }
  57869. },
  57870. },
  57871. [
  57872. {
  57873. name: "Normal",
  57874. height: math.unit(18, "feet"),
  57875. default: true
  57876. },
  57877. ]
  57878. ))
  57879. characterMakers.push(() => makeCharacter(
  57880. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57881. {
  57882. front: {
  57883. height: math.unit(3.2, "meters"),
  57884. name: "Front",
  57885. image: {
  57886. source: "./media/characters/harriett/front.svg",
  57887. extra: 1966/1915,
  57888. bottom: 9/1975
  57889. }
  57890. },
  57891. },
  57892. [
  57893. {
  57894. name: "Normal",
  57895. height: math.unit(3.2, "meters"),
  57896. default: true
  57897. },
  57898. ]
  57899. ))
  57900. characterMakers.push(() => makeCharacter(
  57901. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57902. {
  57903. sitting: {
  57904. height: math.unit(0.8, "meter"),
  57905. name: "Sitting",
  57906. image: {
  57907. source: "./media/characters/serpentus/sitting.svg",
  57908. extra: 293/290,
  57909. bottom: 140/433
  57910. }
  57911. },
  57912. },
  57913. [
  57914. {
  57915. name: "Normal",
  57916. height: math.unit(0.8, "meter"),
  57917. default: true
  57918. },
  57919. ]
  57920. ))
  57921. characterMakers.push(() => makeCharacter(
  57922. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57923. {
  57924. front: {
  57925. height: math.unit(5.7174385736, "feet"),
  57926. name: "Front",
  57927. image: {
  57928. source: "./media/characters/nova-polecat/front.svg",
  57929. extra: 1317/1216,
  57930. bottom: 92/1409
  57931. }
  57932. },
  57933. },
  57934. [
  57935. {
  57936. name: "Normal",
  57937. height: math.unit(5.7174385736, "feet"),
  57938. default: true
  57939. },
  57940. ]
  57941. ))
  57942. characterMakers.push(() => makeCharacter(
  57943. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57944. {
  57945. front: {
  57946. height: math.unit(5 + 4/12, "feet"),
  57947. weight: math.unit(250, "lb"),
  57948. name: "Front",
  57949. image: {
  57950. source: "./media/characters/mook/front.svg",
  57951. extra: 1088/1037,
  57952. bottom: 132/1220
  57953. }
  57954. },
  57955. back: {
  57956. height: math.unit(5 + 1/12, "feet"),
  57957. weight: math.unit(250, "lb"),
  57958. name: "Back",
  57959. image: {
  57960. source: "./media/characters/mook/back.svg",
  57961. extra: 1184/905,
  57962. bottom: 96/1280
  57963. }
  57964. },
  57965. head: {
  57966. height: math.unit(1.85, "feet"),
  57967. name: "Head",
  57968. image: {
  57969. source: "./media/characters/mook/head.svg"
  57970. }
  57971. },
  57972. hand: {
  57973. height: math.unit(1.9, "feet"),
  57974. name: "Hand",
  57975. image: {
  57976. source: "./media/characters/mook/hand.svg"
  57977. }
  57978. },
  57979. palm: {
  57980. height: math.unit(1.84, "feet"),
  57981. name: "Palm",
  57982. image: {
  57983. source: "./media/characters/mook/palm.svg"
  57984. }
  57985. },
  57986. foot: {
  57987. height: math.unit(1.44, "feet"),
  57988. name: "Foot",
  57989. image: {
  57990. source: "./media/characters/mook/foot.svg"
  57991. }
  57992. },
  57993. sole: {
  57994. height: math.unit(1.44, "feet"),
  57995. name: "Sole",
  57996. image: {
  57997. source: "./media/characters/mook/sole.svg"
  57998. }
  57999. },
  58000. },
  58001. [
  58002. {
  58003. name: "Normal",
  58004. height: math.unit(5 + 4/12, "feet"),
  58005. default: true
  58006. },
  58007. {
  58008. name: "Big",
  58009. height: math.unit(12, "feet")
  58010. },
  58011. ]
  58012. ))
  58013. characterMakers.push(() => makeCharacter(
  58014. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58015. {
  58016. front: {
  58017. height: math.unit(6 + 10/12, "feet"),
  58018. weight: math.unit(233, "lb"),
  58019. name: "Front",
  58020. image: {
  58021. source: "./media/characters/kayla/front.svg",
  58022. extra: 1850/1775,
  58023. bottom: 65/1915
  58024. }
  58025. },
  58026. },
  58027. [
  58028. {
  58029. name: "Normal",
  58030. height: math.unit(6 + 10/12, "feet"),
  58031. default: true
  58032. },
  58033. {
  58034. name: "Amazonian",
  58035. height: math.unit(12 + 5/12, "feet")
  58036. },
  58037. {
  58038. name: "Mini Giantess",
  58039. height: math.unit(26, "feet")
  58040. },
  58041. {
  58042. name: "Giantess",
  58043. height: math.unit(200, "feet")
  58044. },
  58045. {
  58046. name: "Mega Giantess",
  58047. height: math.unit(2500, "feet")
  58048. },
  58049. {
  58050. name: "City Sized",
  58051. height: math.unit(50, "miles")
  58052. },
  58053. {
  58054. name: "Country Sized",
  58055. height: math.unit(500, "miles")
  58056. },
  58057. {
  58058. name: "Continent Sized",
  58059. height: math.unit(2500, "miles")
  58060. },
  58061. {
  58062. name: "Planet Sized",
  58063. height: math.unit(10000, "miles")
  58064. },
  58065. {
  58066. name: "Star Sized",
  58067. height: math.unit(5e6, "miles")
  58068. },
  58069. {
  58070. name: "Solar System Sized",
  58071. height: math.unit(125, "AU")
  58072. },
  58073. {
  58074. name: "Galaxy Sized",
  58075. height: math.unit(300e3, "lightyears")
  58076. },
  58077. {
  58078. name: "Universe Sized",
  58079. height: math.unit(200e9, "lightyears")
  58080. },
  58081. {
  58082. name: "Multiverse Sized",
  58083. height: math.unit(20, "exauniverses")
  58084. },
  58085. {
  58086. name: "Mother of Existence",
  58087. height: math.unit(1e6, "yottauniverses")
  58088. },
  58089. ]
  58090. ))
  58091. characterMakers.push(() => makeCharacter(
  58092. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58093. {
  58094. side: {
  58095. height: math.unit(9.5, "meters"),
  58096. name: "Side",
  58097. image: {
  58098. source: "./media/characters/kulve-ragnarok/side.svg",
  58099. extra: 364/326,
  58100. bottom: 50/414
  58101. }
  58102. },
  58103. },
  58104. [
  58105. {
  58106. name: "Normal",
  58107. height: math.unit(9.5, "meters"),
  58108. default: true
  58109. },
  58110. ]
  58111. ))
  58112. characterMakers.push(() => makeCharacter(
  58113. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58114. {
  58115. front: {
  58116. height: math.unit(8 + 9/12, "feet"),
  58117. name: "Front",
  58118. image: {
  58119. source: "./media/characters/atlas-goat/front.svg",
  58120. extra: 1462/1323,
  58121. bottom: 12/1474
  58122. }
  58123. },
  58124. },
  58125. [
  58126. {
  58127. name: "Normal",
  58128. height: math.unit(8 + 9/12, "feet"),
  58129. default: true
  58130. },
  58131. {
  58132. name: "Skyline",
  58133. height: math.unit(845, "feet")
  58134. },
  58135. {
  58136. name: "Orbital",
  58137. height: math.unit(93000, "miles")
  58138. },
  58139. {
  58140. name: "Constellation",
  58141. height: math.unit(27000, "lightyears")
  58142. },
  58143. ]
  58144. ))
  58145. characterMakers.push(() => makeCharacter(
  58146. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58147. {
  58148. side: {
  58149. height: math.unit(1.8, "meters"),
  58150. weight: math.unit(120, "kg"),
  58151. name: "Side",
  58152. image: {
  58153. source: "./media/characters/xie-ling/side.svg",
  58154. extra: 646/574,
  58155. bottom: 44/690
  58156. }
  58157. },
  58158. },
  58159. [
  58160. {
  58161. name: "Tiny",
  58162. height: math.unit(1.80, "meters")
  58163. },
  58164. {
  58165. name: "Small",
  58166. height: math.unit(6, "meters")
  58167. },
  58168. {
  58169. name: "Medium",
  58170. height: math.unit(15, "meters")
  58171. },
  58172. {
  58173. name: "Normal",
  58174. height: math.unit(30, "meters"),
  58175. default: true
  58176. },
  58177. {
  58178. name: "Above Normal",
  58179. height: math.unit(60, "meters")
  58180. },
  58181. {
  58182. name: "Big",
  58183. height: math.unit(220, "meters")
  58184. },
  58185. {
  58186. name: "Giant",
  58187. height: math.unit(2.2, "km")
  58188. },
  58189. {
  58190. name: "Macro",
  58191. height: math.unit(25, "km")
  58192. },
  58193. {
  58194. name: "Mega Macro",
  58195. height: math.unit(350, "km")
  58196. },
  58197. {
  58198. name: "Mega Macro+",
  58199. height: math.unit(5000, "km")
  58200. },
  58201. {
  58202. name: "Goddess",
  58203. height: math.unit(3, "multiverses")
  58204. },
  58205. ]
  58206. ))
  58207. characterMakers.push(() => makeCharacter(
  58208. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58209. {
  58210. frontSfw: {
  58211. height: math.unit(5 + 11/12, "feet"),
  58212. weight: math.unit(210, "lb"),
  58213. name: "Front",
  58214. image: {
  58215. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58216. extra: 1928/1821,
  58217. bottom: 45/1973
  58218. }
  58219. },
  58220. backSfw: {
  58221. height: math.unit(5 + 11/12, "feet"),
  58222. weight: math.unit(210, "lb"),
  58223. name: "Back",
  58224. image: {
  58225. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58226. extra: 1920/1813,
  58227. bottom: 34/1954
  58228. }
  58229. },
  58230. frontNsfw: {
  58231. height: math.unit(5 + 11/12, "feet"),
  58232. weight: math.unit(210, "lb"),
  58233. name: "Front (NSFW)",
  58234. image: {
  58235. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58236. extra: 1928/1821,
  58237. bottom: 45/1973
  58238. }
  58239. },
  58240. backNsfw: {
  58241. height: math.unit(5 + 11/12, "feet"),
  58242. weight: math.unit(210, "lb"),
  58243. name: "Back (NSFW)",
  58244. image: {
  58245. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58246. extra: 1920/1813,
  58247. bottom: 34/1954
  58248. }
  58249. },
  58250. },
  58251. [
  58252. {
  58253. name: "Normal",
  58254. height: math.unit(5 + 11/12, "feet"),
  58255. default: true
  58256. },
  58257. {
  58258. name: "Goddess",
  58259. height: math.unit(20 + 3/12, "feet")
  58260. },
  58261. {
  58262. name: "Breaker of Man",
  58263. height: math.unit(329 + 9/12, "feet")
  58264. },
  58265. {
  58266. name: "Solar Justice",
  58267. height: math.unit(0.6, "solarradii")
  58268. },
  58269. {
  58270. name: "She Who Judges",
  58271. height: math.unit(1, "universe")
  58272. },
  58273. ]
  58274. ))
  58275. characterMakers.push(() => makeCharacter(
  58276. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58277. {
  58278. casual_front: {
  58279. height: math.unit(6 + 1/12, "feet"),
  58280. weight: math.unit(190, "lb"),
  58281. preyCapacity: math.unit(1, "people"),
  58282. name: "Front",
  58283. image: {
  58284. source: "./media/characters/managarmr/casual-front.svg",
  58285. extra: 411/381,
  58286. bottom: 15/426
  58287. },
  58288. extraAttributes: {
  58289. "pawSize": {
  58290. name: "Paw Size",
  58291. power: 1,
  58292. type: "length",
  58293. base: math.unit(0.2, "meters")
  58294. },
  58295. },
  58296. form: "casual",
  58297. },
  58298. casual_back: {
  58299. height: math.unit(6 + 1/12, "feet"),
  58300. weight: math.unit(190, "lb"),
  58301. preyCapacity: math.unit(1, "people"),
  58302. name: "Back",
  58303. image: {
  58304. source: "./media/characters/managarmr/casual-back.svg",
  58305. extra: 413/383,
  58306. bottom: 13/426
  58307. },
  58308. extraAttributes: {
  58309. "pawSize": {
  58310. name: "Paw Size",
  58311. power: 1,
  58312. type: "length",
  58313. base: math.unit(0.2, "meters")
  58314. },
  58315. },
  58316. form: "casual",
  58317. },
  58318. base_front: {
  58319. height: math.unit(7, "feet"),
  58320. weight: math.unit(210, "lb"),
  58321. preyCapacity: math.unit(2, "people"),
  58322. name: "Front",
  58323. image: {
  58324. source: "./media/characters/managarmr/base-front.svg",
  58325. extra: 580/485,
  58326. bottom: 32/612
  58327. },
  58328. extraAttributes: {
  58329. "wingspan": {
  58330. name: "Wingspan",
  58331. power: 1,
  58332. type: "length",
  58333. base: math.unit(4, "meters")
  58334. },
  58335. "pawSize": {
  58336. name: "Paw Size",
  58337. power: 1,
  58338. type: "length",
  58339. base: math.unit(0.2, "meters")
  58340. },
  58341. },
  58342. form: "base",
  58343. },
  58344. "true-divine_front": {
  58345. height: math.unit(40, "feet"),
  58346. weight: math.unit(39000, "lb"),
  58347. preyCapacity: math.unit(375, "people"),
  58348. name: "Front",
  58349. image: {
  58350. source: "./media/characters/managarmr/true-divine-front.svg",
  58351. extra: 725/573,
  58352. bottom: 120/845
  58353. },
  58354. extraAttributes: {
  58355. "wingspan": {
  58356. name: "Wingspan",
  58357. power: 1,
  58358. type: "length",
  58359. base: math.unit(20, "meters")
  58360. },
  58361. "pawSize": {
  58362. name: "Paw Size",
  58363. power: 1,
  58364. type: "length",
  58365. base: math.unit(1.5, "meters")
  58366. },
  58367. },
  58368. form: "true-divine",
  58369. },
  58370. },
  58371. [
  58372. {
  58373. name: "Normal",
  58374. height: math.unit(6 + 1/12, "feet"),
  58375. form: "casual",
  58376. default: true
  58377. },
  58378. {
  58379. name: "Normal",
  58380. height: math.unit(7, "feet"),
  58381. form: "base",
  58382. default: true
  58383. },
  58384. ],
  58385. {
  58386. "casual": {
  58387. name: "Casual",
  58388. default: true
  58389. },
  58390. "base": {
  58391. name: "Base",
  58392. },
  58393. "true-divine": {
  58394. name: "True Divine",
  58395. },
  58396. }
  58397. ))
  58398. characterMakers.push(() => makeCharacter(
  58399. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58400. {
  58401. front: {
  58402. height: math.unit(1.8, "meters"),
  58403. weight: math.unit(110, "kg"),
  58404. name: "Front",
  58405. image: {
  58406. source: "./media/characters/mystra/front.svg",
  58407. extra: 529/442,
  58408. bottom: 31/560
  58409. }
  58410. },
  58411. frontLewd: {
  58412. height: math.unit(1.8, "meters"),
  58413. weight: math.unit(110, "kg"),
  58414. name: "Front (Lewd)",
  58415. image: {
  58416. source: "./media/characters/mystra/front-lewd.svg",
  58417. extra: 529/442,
  58418. bottom: 31/560
  58419. }
  58420. },
  58421. head: {
  58422. height: math.unit(1.63, "feet"),
  58423. name: "Head",
  58424. image: {
  58425. source: "./media/characters/mystra/head.svg"
  58426. }
  58427. },
  58428. paw: {
  58429. height: math.unit(1.9, "feet"),
  58430. name: "Paw",
  58431. image: {
  58432. source: "./media/characters/mystra/paw.svg"
  58433. }
  58434. },
  58435. },
  58436. [
  58437. {
  58438. name: "Incognito",
  58439. height: math.unit(2.3, "meters")
  58440. },
  58441. {
  58442. name: "Small Macro",
  58443. height: math.unit(300, "meters")
  58444. },
  58445. {
  58446. name: "Small Mega",
  58447. height: math.unit(2, "km")
  58448. },
  58449. {
  58450. name: "Mega",
  58451. height: math.unit(30, "km")
  58452. },
  58453. {
  58454. name: "Small Giga",
  58455. height: math.unit(100, "km")
  58456. },
  58457. {
  58458. name: "Giga",
  58459. height: math.unit(1000, "km"),
  58460. default: true
  58461. },
  58462. {
  58463. name: "Continental",
  58464. height: math.unit(5000, "km")
  58465. },
  58466. {
  58467. name: "Terra",
  58468. height: math.unit(20000, "km")
  58469. },
  58470. {
  58471. name: "Solar",
  58472. height: math.unit(2e6, "km")
  58473. },
  58474. {
  58475. name: "Galactic",
  58476. height: math.unit(528502, "lightyears")
  58477. },
  58478. {
  58479. name: "Universal",
  58480. height: math.unit(20, "universes")
  58481. },
  58482. ]
  58483. ))
  58484. characterMakers.push(() => makeCharacter(
  58485. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58486. {
  58487. front: {
  58488. height: math.unit(2, "meters"),
  58489. weight: math.unit(140, "kg"),
  58490. name: "Front",
  58491. image: {
  58492. source: "./media/characters/caleb/front.svg",
  58493. extra: 873/817,
  58494. bottom: 47/920
  58495. }
  58496. },
  58497. back: {
  58498. height: math.unit(2, "meters"),
  58499. weight: math.unit(140, "kg"),
  58500. name: "Back",
  58501. image: {
  58502. source: "./media/characters/caleb/back.svg",
  58503. extra: 877/828,
  58504. bottom: 24/901
  58505. }
  58506. },
  58507. snakeTail: {
  58508. height: math.unit(1.44, "feet"),
  58509. name: "Snake Tail",
  58510. image: {
  58511. source: "./media/characters/caleb/snake-tail.svg"
  58512. }
  58513. },
  58514. dick: {
  58515. height: math.unit(2.6, "feet"),
  58516. name: "Dick",
  58517. image: {
  58518. source: "./media/characters/caleb/dick.svg"
  58519. }
  58520. },
  58521. },
  58522. [
  58523. {
  58524. name: "Incognito",
  58525. height: math.unit(3, "meters")
  58526. },
  58527. {
  58528. name: "Home Size",
  58529. height: math.unit(200, "meters"),
  58530. default: true
  58531. },
  58532. {
  58533. name: "Macro",
  58534. height: math.unit(500, "meters")
  58535. },
  58536. {
  58537. name: "Big Macro",
  58538. height: math.unit(5, "km")
  58539. },
  58540. {
  58541. name: "Giga",
  58542. height: math.unit(250, "km")
  58543. },
  58544. {
  58545. name: "Giga+",
  58546. height: math.unit(5000, "km")
  58547. },
  58548. {
  58549. name: "Small Terra",
  58550. height: math.unit(35e3, "km")
  58551. },
  58552. {
  58553. name: "Terra",
  58554. height: math.unit(2e6, "km")
  58555. },
  58556. {
  58557. name: "Terra+",
  58558. height: math.unit(1.5e6, "km")
  58559. },
  58560. ]
  58561. ))
  58562. characterMakers.push(() => makeCharacter(
  58563. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58564. {
  58565. front: {
  58566. height: math.unit(2, "meters"),
  58567. weight: math.unit(120, "kg"),
  58568. name: "Front",
  58569. image: {
  58570. source: "./media/characters/gilirian/front.svg",
  58571. extra: 805/737,
  58572. bottom: 13/818
  58573. }
  58574. },
  58575. side: {
  58576. height: math.unit(2, "meters"),
  58577. weight: math.unit(120, "kg"),
  58578. name: "Side",
  58579. image: {
  58580. source: "./media/characters/gilirian/side.svg",
  58581. extra: 810/746,
  58582. bottom: 6/816
  58583. }
  58584. },
  58585. back: {
  58586. height: math.unit(2, "meters"),
  58587. weight: math.unit(120, "kg"),
  58588. name: "Back",
  58589. image: {
  58590. source: "./media/characters/gilirian/back.svg",
  58591. extra: 815/745,
  58592. bottom: 15/830
  58593. }
  58594. },
  58595. frontNsfw: {
  58596. height: math.unit(2, "meters"),
  58597. weight: math.unit(120, "kg"),
  58598. name: "Front (NSFW)",
  58599. image: {
  58600. source: "./media/characters/gilirian/front-nsfw.svg",
  58601. extra: 805/737,
  58602. bottom: 13/818
  58603. }
  58604. },
  58605. sideNsfw: {
  58606. height: math.unit(2, "meters"),
  58607. weight: math.unit(120, "kg"),
  58608. name: "Side (NSFW)",
  58609. image: {
  58610. source: "./media/characters/gilirian/side-nsfw.svg",
  58611. extra: 810/746,
  58612. bottom: 6/816
  58613. }
  58614. },
  58615. },
  58616. [
  58617. {
  58618. name: "Incognito",
  58619. height: math.unit(2, "meters"),
  58620. default: true
  58621. },
  58622. {
  58623. name: "Macro",
  58624. height: math.unit(250, "meters")
  58625. },
  58626. {
  58627. name: "Big Macro",
  58628. height: math.unit(1500, "meters")
  58629. },
  58630. {
  58631. name: "Mega",
  58632. height: math.unit(40, "km")
  58633. },
  58634. {
  58635. name: "Giga",
  58636. height: math.unit(300, "km")
  58637. },
  58638. {
  58639. name: "Extra Giga",
  58640. height: math.unit(5000, "km")
  58641. },
  58642. {
  58643. name: "Small Terra",
  58644. height: math.unit(10e3, "km")
  58645. },
  58646. {
  58647. name: "Terra",
  58648. height: math.unit(3e5, "km")
  58649. },
  58650. {
  58651. name: "Galactic",
  58652. height: math.unit(369950, "lightyears")
  58653. },
  58654. ]
  58655. ))
  58656. characterMakers.push(() => makeCharacter(
  58657. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58658. {
  58659. front: {
  58660. height: math.unit(2.5, "meters"),
  58661. weight: math.unit(230, "lb"),
  58662. name: "Front",
  58663. image: {
  58664. source: "./media/characters/tarken/front.svg",
  58665. extra: 764/720,
  58666. bottom: 49/813
  58667. }
  58668. },
  58669. back: {
  58670. height: math.unit(2.5, "meters"),
  58671. weight: math.unit(230, "lb"),
  58672. name: "Back",
  58673. image: {
  58674. source: "./media/characters/tarken/back.svg",
  58675. extra: 756/720,
  58676. bottom: 35/791
  58677. }
  58678. },
  58679. frontNsfw: {
  58680. height: math.unit(2.5, "meters"),
  58681. weight: math.unit(230, "lb"),
  58682. name: "Front (NSFW)",
  58683. image: {
  58684. source: "./media/characters/tarken/front-nsfw.svg",
  58685. extra: 764/720,
  58686. bottom: 49/813
  58687. }
  58688. },
  58689. backNsfw: {
  58690. height: math.unit(2.5, "meters"),
  58691. weight: math.unit(230, "lb"),
  58692. name: "Back (NSFW)",
  58693. image: {
  58694. source: "./media/characters/tarken/back-nsfw.svg",
  58695. extra: 756/720,
  58696. bottom: 35/791
  58697. }
  58698. },
  58699. head: {
  58700. height: math.unit(2.22, "feet"),
  58701. name: "Head",
  58702. image: {
  58703. source: "./media/characters/tarken/head.svg"
  58704. }
  58705. },
  58706. tail: {
  58707. height: math.unit(5.25, "feet"),
  58708. name: "Tail",
  58709. image: {
  58710. source: "./media/characters/tarken/tail.svg"
  58711. }
  58712. },
  58713. dick: {
  58714. height: math.unit(1.95, "feet"),
  58715. name: "Dick",
  58716. image: {
  58717. source: "./media/characters/tarken/dick.svg"
  58718. }
  58719. },
  58720. hand: {
  58721. height: math.unit(1.78, "feet"),
  58722. name: "Hand",
  58723. image: {
  58724. source: "./media/characters/tarken/hand.svg"
  58725. }
  58726. },
  58727. beam: {
  58728. height: math.unit(1.5, "feet"),
  58729. name: "Beam",
  58730. image: {
  58731. source: "./media/characters/tarken/beam.svg"
  58732. }
  58733. },
  58734. },
  58735. [
  58736. {
  58737. name: "Original Size",
  58738. height: math.unit(2.5, "meters")
  58739. },
  58740. {
  58741. name: "Macro",
  58742. height: math.unit(150, "meters"),
  58743. default: true
  58744. },
  58745. {
  58746. name: "Macro+",
  58747. height: math.unit(300, "meters")
  58748. },
  58749. {
  58750. name: "Mega",
  58751. height: math.unit(2, "km")
  58752. },
  58753. {
  58754. name: "Mega+",
  58755. height: math.unit(35, "km")
  58756. },
  58757.  {
  58758. name: "Mega++",
  58759. height: math.unit(60, "km")
  58760. },
  58761. {
  58762. name: "Giga",
  58763. height: math.unit(200, "km")
  58764. },
  58765. {
  58766. name: "Giga+",
  58767. height: math.unit(2500, "km")
  58768. },
  58769. {
  58770. name: "Giga++",
  58771. height: math.unit(6600, "km")
  58772. },
  58773. {
  58774. name: "Terra",
  58775. height: math.unit(20000, "km")
  58776. },
  58777. {
  58778. name: "Terra+",
  58779. height: math.unit(300000, "km")
  58780. },
  58781. ]
  58782. ))
  58783. characterMakers.push(() => makeCharacter(
  58784. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58785. {
  58786. magpie_dressed: {
  58787. height: math.unit(1.7, "meters"),
  58788. weight: math.unit(70, "kg"),
  58789. name: "Dressed",
  58790. image: {
  58791. source: "./media/characters/otreus/magpie-dressed.svg",
  58792. extra: 691/672,
  58793. bottom: 116/807
  58794. },
  58795. form: "magpie",
  58796. default: true
  58797. },
  58798. magpie_nude: {
  58799. height: math.unit(1.7, "meters"),
  58800. weight: math.unit(70, "kg"),
  58801. name: "Nude",
  58802. image: {
  58803. source: "./media/characters/otreus/magpie-nude.svg",
  58804. extra: 691/672,
  58805. bottom: 116/807
  58806. },
  58807. form: "magpie",
  58808. },
  58809. magpie_dressedLewd: {
  58810. height: math.unit(1.7, "meters"),
  58811. weight: math.unit(70, "kg"),
  58812. name: "Dressed (Lewd)",
  58813. image: {
  58814. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58815. extra: 691/672,
  58816. bottom: 116/807
  58817. },
  58818. form: "magpie",
  58819. },
  58820. magpie_nudeLewd: {
  58821. height: math.unit(1.7, "meters"),
  58822. weight: math.unit(70, "kg"),
  58823. name: "Nude (Lewd)",
  58824. image: {
  58825. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58826. extra: 691/672,
  58827. bottom: 116/807
  58828. },
  58829. form: "magpie",
  58830. },
  58831. magpie_leftFoot: {
  58832. height: math.unit(1.58, "feet"),
  58833. name: "Left Foot",
  58834. image: {
  58835. source: "./media/characters/otreus/magpie-left-foot.svg"
  58836. },
  58837. form: "magpie",
  58838. },
  58839. magpie_rightFoot: {
  58840. height: math.unit(1.58, "feet"),
  58841. name: "Right Foot",
  58842. image: {
  58843. source: "./media/characters/otreus/magpie-right-foot.svg"
  58844. },
  58845. form: "magpie",
  58846. },
  58847. magpie_wingspan: {
  58848. height: math.unit(2, "meters"),
  58849. weight: math.unit(70, "kg"),
  58850. name: "Wingspan",
  58851. image: {
  58852. source: "./media/characters/otreus/magpie-wingspan.svg"
  58853. },
  58854. extraAttributes: {
  58855. "wingspan": {
  58856. name: "Wingspan",
  58857. power: 1,
  58858. type: "length",
  58859. base: math.unit(3.35, "meters")
  58860. },
  58861. },
  58862. form: "magpie",
  58863. },
  58864. hippogriff_dressed: {
  58865. height: math.unit(1.7, "meters"),
  58866. weight: math.unit(70, "kg"),
  58867. name: "Dressed",
  58868. image: {
  58869. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58870. extra: 710/689,
  58871. bottom: 67/777
  58872. },
  58873. form: "hippogriff",
  58874. default: true
  58875. },
  58876. hippogriff_nude: {
  58877. height: math.unit(1.7, "meters"),
  58878. weight: math.unit(70, "kg"),
  58879. name: "Nude",
  58880. image: {
  58881. source: "./media/characters/otreus/hippogriff-nude.svg",
  58882. extra: 710/689,
  58883. bottom: 67/777
  58884. },
  58885. form: "hippogriff",
  58886. },
  58887. hippogriff_dressedLewd: {
  58888. height: math.unit(1.7, "meters"),
  58889. weight: math.unit(70, "kg"),
  58890. name: "Dressed (Lewd)",
  58891. image: {
  58892. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58893. extra: 710/689,
  58894. bottom: 67/777
  58895. },
  58896. form: "hippogriff",
  58897. },
  58898. hippogriff_nudeLewd: {
  58899. height: math.unit(1.7, "meters"),
  58900. weight: math.unit(70, "kg"),
  58901. name: "Nude (Lewd)",
  58902. image: {
  58903. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58904. extra: 710/689,
  58905. bottom: 67/777
  58906. },
  58907. form: "hippogriff",
  58908. },
  58909. },
  58910. [
  58911. {
  58912. name: "Original Size",
  58913. height: math.unit(1.7, "meters"),
  58914. allForms: true
  58915. },
  58916. {
  58917. name: "Incognito Size",
  58918. height: math.unit(2, "meters"),
  58919. allForms: true
  58920. },
  58921. {
  58922. name: "Mega",
  58923. height: math.unit(2, "km"),
  58924. allForms: true
  58925. },
  58926. {
  58927. name: "Mega+",
  58928. height: math.unit(40, "km"),
  58929. allForms: true
  58930. },
  58931. {
  58932. name: "Giga",
  58933. height: math.unit(250, "km"),
  58934. allForms: true
  58935. },
  58936. {
  58937. name: "Giga+",
  58938. height: math.unit(3000, "km"),
  58939. allForms: true
  58940. },
  58941. {
  58942. name: "Terra",
  58943. height: math.unit(20000, "km"),
  58944. allForms: true
  58945. },
  58946. {
  58947. name: "Solar (Home Size)",
  58948. height: math.unit(3e6, "km"),
  58949. allForms: true,
  58950. default: true
  58951. },
  58952. ],
  58953. {
  58954. "magpie": {
  58955. name: "Magpie",
  58956. default: true
  58957. },
  58958. "hippogriff": {
  58959. name: "Hippogriff",
  58960. },
  58961. }
  58962. ))
  58963. characterMakers.push(() => makeCharacter(
  58964. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58965. {
  58966. frontDressed: {
  58967. height: math.unit(1.8, "meters"),
  58968. weight: math.unit(90, "kg"),
  58969. name: "Front (Dressed)",
  58970. image: {
  58971. source: "./media/characters/thalia/front-dressed.svg",
  58972. extra: 478/402,
  58973. bottom: 55/533
  58974. }
  58975. },
  58976. backDressed: {
  58977. height: math.unit(1.8, "meters"),
  58978. weight: math.unit(90, "kg"),
  58979. name: "Back (Dressed)",
  58980. image: {
  58981. source: "./media/characters/thalia/back-dressed.svg",
  58982. extra: 500/424,
  58983. bottom: 15/515
  58984. }
  58985. },
  58986. frontNude: {
  58987. height: math.unit(1.8, "meters"),
  58988. weight: math.unit(90, "kg"),
  58989. name: "Front (Nude)",
  58990. image: {
  58991. source: "./media/characters/thalia/front-nude.svg",
  58992. extra: 478/402,
  58993. bottom: 55/533
  58994. }
  58995. },
  58996. backNude: {
  58997. height: math.unit(1.8, "meters"),
  58998. weight: math.unit(90, "kg"),
  58999. name: "Back (Nude)",
  59000. image: {
  59001. source: "./media/characters/thalia/back-nude.svg",
  59002. extra: 500/424,
  59003. bottom: 15/515
  59004. }
  59005. },
  59006. },
  59007. [
  59008. {
  59009. name: "Incognito",
  59010. height: math.unit(3, "meters")
  59011. },
  59012. {
  59013. name: "Macro",
  59014. height: math.unit(500, "meters")
  59015. },
  59016. {
  59017. name: "Mega",
  59018. height: math.unit(5, "km")
  59019. },
  59020. {
  59021. name: "Mega+",
  59022. height: math.unit(30, "km")
  59023. },
  59024. {
  59025. name: "Giga",
  59026. height: math.unit(350, "km")
  59027. },
  59028. {
  59029. name: "Giga+",
  59030. height: math.unit(4000, "km")
  59031. },
  59032. {
  59033. name: "Terra",
  59034. height: math.unit(35000, "km")
  59035. },
  59036. {
  59037. name: "Original Size",
  59038. height: math.unit(130000, "km")
  59039. },
  59040. {
  59041. name: "Solar (Home Size)",
  59042. height: math.unit(4e6, "km"),
  59043. default: true
  59044. },
  59045. ]
  59046. ))
  59047. characterMakers.push(() => makeCharacter(
  59048. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59049. {
  59050. front: {
  59051. height: math.unit(1.8, "meters"),
  59052. weight: math.unit(95, "kg"),
  59053. name: "Front",
  59054. image: {
  59055. source: "./media/characters/shango/front.svg",
  59056. extra: 1925/1774,
  59057. bottom: 67/1992
  59058. }
  59059. },
  59060. back: {
  59061. height: math.unit(1.8, "meters"),
  59062. weight: math.unit(95, "kg"),
  59063. name: "Back",
  59064. image: {
  59065. source: "./media/characters/shango/back.svg",
  59066. extra: 1915/1766,
  59067. bottom: 52/1967
  59068. }
  59069. },
  59070. frontLewd: {
  59071. height: math.unit(1.8, "meters"),
  59072. weight: math.unit(95, "kg"),
  59073. name: "Front (Lewd)",
  59074. image: {
  59075. source: "./media/characters/shango/front-lewd.svg",
  59076. extra: 1925/1774,
  59077. bottom: 67/1992
  59078. }
  59079. },
  59080. backLewd: {
  59081. height: math.unit(1.8, "meters"),
  59082. weight: math.unit(95, "kg"),
  59083. name: "Back (Lewd)",
  59084. image: {
  59085. source: "./media/characters/shango/back-lewd.svg",
  59086. extra: 1915/1766,
  59087. bottom: 52/1967
  59088. }
  59089. },
  59090. maw: {
  59091. height: math.unit(1.64, "feet"),
  59092. name: "Maw",
  59093. image: {
  59094. source: "./media/characters/shango/maw.svg"
  59095. }
  59096. },
  59097. dick: {
  59098. height: math.unit(2.14, "feet"),
  59099. name: "Dick",
  59100. image: {
  59101. source: "./media/characters/shango/dick.svg"
  59102. }
  59103. },
  59104. },
  59105. [
  59106. {
  59107. name: "Incognito",
  59108. height: math.unit(1.8, "meters")
  59109. },
  59110. {
  59111. name: "Home Size",
  59112. height: math.unit(60, "meters"),
  59113. default: true
  59114. },
  59115. {
  59116. name: "Macro",
  59117. height: math.unit(450, "meters")
  59118. },
  59119. {
  59120. name: "Mega",
  59121. height: math.unit(6, "km")
  59122. },
  59123. {
  59124. name: "Mega+",
  59125. height: math.unit(35, "km")
  59126. },
  59127. {
  59128. name: "Giga",
  59129. height: math.unit(500, "km")
  59130. },
  59131. {
  59132. name: "Giga+",
  59133. height: math.unit(5000, "km")
  59134. },
  59135. {
  59136. name: "Terra",
  59137. height: math.unit(60000, "km")
  59138. },
  59139. {
  59140. name: "Terra+",
  59141. height: math.unit(400000, "km")
  59142. },
  59143. ]
  59144. ))
  59145. characterMakers.push(() => makeCharacter(
  59146. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59147. {
  59148. front: {
  59149. height: math.unit(2, "meters"),
  59150. weight: math.unit(95, "kg"),
  59151. name: "Front",
  59152. image: {
  59153. source: "./media/characters/osiris-gryphon/front.svg",
  59154. extra: 1508/1313,
  59155. bottom: 87/1595
  59156. }
  59157. },
  59158. back: {
  59159. height: math.unit(2, "meters"),
  59160. weight: math.unit(95, "kg"),
  59161. name: "Back",
  59162. image: {
  59163. source: "./media/characters/osiris-gryphon/back.svg",
  59164. extra: 1436/1309,
  59165. bottom: 64/1500
  59166. }
  59167. },
  59168. frontLewd: {
  59169. height: math.unit(2, "meters"),
  59170. weight: math.unit(95, "kg"),
  59171. name: "Front-lewd",
  59172. image: {
  59173. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59174. extra: 1508/1313,
  59175. bottom: 87/1595
  59176. }
  59177. },
  59178. wing: {
  59179. height: math.unit(6.3333, "feet"),
  59180. name: "Wing",
  59181. image: {
  59182. source: "./media/characters/osiris-gryphon/wing.svg"
  59183. }
  59184. },
  59185. },
  59186. [
  59187. {
  59188. name: "Incognito",
  59189. height: math.unit(2, "meters")
  59190. },
  59191. {
  59192. name: "Home Size",
  59193. height: math.unit(30, "meters"),
  59194. default: true
  59195. },
  59196. {
  59197. name: "Macro",
  59198. height: math.unit(100, "meters")
  59199. },
  59200. {
  59201. name: "Macro+",
  59202. height: math.unit(350, "meters")
  59203. },
  59204. {
  59205. name: "Mega",
  59206. height: math.unit(40, "km")
  59207. },
  59208. {
  59209. name: "Giga",
  59210. height: math.unit(300, "km")
  59211. },
  59212. {
  59213. name: "Giga+",
  59214. height: math.unit(2000, "km")
  59215. },
  59216. {
  59217. name: "Terra",
  59218. height: math.unit(30000, "km")
  59219. },
  59220. ]
  59221. ))
  59222. characterMakers.push(() => makeCharacter(
  59223. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59224. {
  59225. front: {
  59226. height: math.unit(2.5, "meters"),
  59227. weight: math.unit(200, "kg"),
  59228. name: "Front",
  59229. image: {
  59230. source: "./media/characters/atlas-dragon/front.svg",
  59231. extra: 745/462,
  59232. bottom: 36/781
  59233. }
  59234. },
  59235. back: {
  59236. height: math.unit(2.5, "meters"),
  59237. weight: math.unit(200, "kg"),
  59238. name: "Back",
  59239. image: {
  59240. source: "./media/characters/atlas-dragon/back.svg",
  59241. extra: 848/822,
  59242. bottom: 57/905
  59243. }
  59244. },
  59245. frontLewd: {
  59246. height: math.unit(2.5, "meters"),
  59247. weight: math.unit(200, "kg"),
  59248. name: "Front (Lewd)",
  59249. image: {
  59250. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59251. extra: 745/462,
  59252. bottom: 36/781
  59253. }
  59254. },
  59255. backLewd: {
  59256. height: math.unit(2.5, "meters"),
  59257. weight: math.unit(200, "kg"),
  59258. name: "Back (Lewd)",
  59259. image: {
  59260. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59261. extra: 848/822,
  59262. bottom: 57/905
  59263. }
  59264. },
  59265. },
  59266. [
  59267. {
  59268. name: "Incognito",
  59269. height: math.unit(2.5, "meters")
  59270. },
  59271. {
  59272. name: "Small Macro",
  59273. height: math.unit(50, "meters")
  59274. },
  59275. {
  59276. name: "Macro",
  59277. height: math.unit(350, "meters")
  59278. },
  59279. {
  59280. name: "Mega",
  59281. height: math.unit(5.5, "kilometers")
  59282. },
  59283. {
  59284. name: "Mega+",
  59285. height: math.unit(50, "km")
  59286. },
  59287. {
  59288. name: "Giga",
  59289. height: math.unit(350, "km")
  59290. },
  59291. {
  59292. name: "Giga+",
  59293. height: math.unit(2000, "km")
  59294. },
  59295. {
  59296. name: "Giga++",
  59297. height: math.unit(6500, "km")
  59298. },
  59299. {
  59300. name: "Terra",
  59301. height: math.unit(30000, "km")
  59302. },
  59303. {
  59304. name: "Terra+",
  59305. height: math.unit(250000, "km")
  59306. },
  59307. {
  59308. name: "True Size",
  59309. height: math.unit(100, "multiverses"),
  59310. default: true
  59311. },
  59312. ]
  59313. ))
  59314. characterMakers.push(() => makeCharacter(
  59315. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59316. {
  59317. front: {
  59318. height: math.unit(1.8, "m"),
  59319. weight: math.unit(120, "kg"),
  59320. name: "Front",
  59321. image: {
  59322. source: "./media/characters/chey/front.svg",
  59323. extra: 1359/1270,
  59324. bottom: 18/1377
  59325. }
  59326. },
  59327. arm: {
  59328. height: math.unit(2.05, "feet"),
  59329. name: "Arm",
  59330. image: {
  59331. source: "./media/characters/chey/arm.svg"
  59332. }
  59333. },
  59334. head: {
  59335. height: math.unit(1.89, "feet"),
  59336. name: "Head",
  59337. image: {
  59338. source: "./media/characters/chey/head.svg"
  59339. }
  59340. },
  59341. },
  59342. [
  59343. {
  59344. name: "Original Size",
  59345. height: math.unit(5, "cm")
  59346. },
  59347. {
  59348. name: "Incognito Size",
  59349. height: math.unit(2.4, "m")
  59350. },
  59351. {
  59352. name: "Home Size",
  59353. height: math.unit(200, "meters"),
  59354. default: true
  59355. },
  59356. {
  59357. name: "Mega",
  59358. height: math.unit(2, "km")
  59359. },
  59360. {
  59361. name: "Giga (Preferred Size)",
  59362. height: math.unit(2000, "km")
  59363. },
  59364. {
  59365. name: "Giga+",
  59366. height: math.unit(6000, "km")
  59367. },
  59368. {
  59369. name: "Terra",
  59370. height: math.unit(17000, "km")
  59371. },
  59372. {
  59373. name: "Terra+",
  59374. height: math.unit(75000, "km")
  59375. },
  59376. {
  59377. name: "Terra++",
  59378. height: math.unit(225000, "km")
  59379. },
  59380. ]
  59381. ))
  59382. characterMakers.push(() => makeCharacter(
  59383. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59384. {
  59385. side: {
  59386. height: math.unit(7.8, "meters"),
  59387. name: "Side",
  59388. image: {
  59389. source: "./media/characters/ragnarok/side.svg",
  59390. extra: 725/621,
  59391. bottom: 72/797
  59392. }
  59393. },
  59394. },
  59395. [
  59396. {
  59397. name: "Normal",
  59398. height: math.unit(7.8, "meters"),
  59399. default: true
  59400. },
  59401. ]
  59402. ))
  59403. characterMakers.push(() => makeCharacter(
  59404. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59405. {
  59406. hyena_front: {
  59407. height: math.unit(2.1, "meters"),
  59408. weight: math.unit(110, "kg"),
  59409. name: "Front",
  59410. image: {
  59411. source: "./media/characters/nima/hyena-front.svg",
  59412. extra: 1904/1796,
  59413. bottom: 67/1971
  59414. },
  59415. form: "hyena",
  59416. },
  59417. hyena_back: {
  59418. height: math.unit(2.1, "meters"),
  59419. weight: math.unit(110, "kg"),
  59420. name: "Back",
  59421. image: {
  59422. source: "./media/characters/nima/hyena-back.svg",
  59423. extra: 1964/1884,
  59424. bottom: 35/1999
  59425. },
  59426. form: "hyena",
  59427. },
  59428. shark_front: {
  59429. height: math.unit(1.95, "meters"),
  59430. weight: math.unit(110, "kg"),
  59431. name: "Front",
  59432. image: {
  59433. source: "./media/characters/nima/shark-front.svg",
  59434. extra: 2238/2013,
  59435. bottom: 0/223
  59436. },
  59437. form: "shark",
  59438. },
  59439. paw: {
  59440. height: math.unit(1, "feet"),
  59441. name: "Paw",
  59442. image: {
  59443. source: "./media/characters/nima/paw.svg"
  59444. }
  59445. },
  59446. circlet: {
  59447. height: math.unit(0.3, "feet"),
  59448. name: "Circlet",
  59449. image: {
  59450. source: "./media/characters/nima/circlet.svg"
  59451. }
  59452. },
  59453. necklace: {
  59454. height: math.unit(1.2, "feet"),
  59455. name: "Necklace",
  59456. image: {
  59457. source: "./media/characters/nima/necklace.svg"
  59458. }
  59459. },
  59460. bracelet: {
  59461. height: math.unit(0.51, "feet"),
  59462. name: "Bracelet",
  59463. image: {
  59464. source: "./media/characters/nima/bracelet.svg"
  59465. }
  59466. },
  59467. armband: {
  59468. height: math.unit(1.3, "feet"),
  59469. name: "Armband",
  59470. image: {
  59471. source: "./media/characters/nima/armband.svg"
  59472. }
  59473. },
  59474. },
  59475. [
  59476. {
  59477. name: "Incognito",
  59478. height: math.unit(2.1, "meters"),
  59479. allForms: true
  59480. },
  59481. {
  59482. name: "Small Macro",
  59483. height: math.unit(50, "meters"),
  59484. allForms: true
  59485. },
  59486. {
  59487. name: "Macro",
  59488. height: math.unit(200, "meters"),
  59489. allForms: true
  59490. },
  59491. {
  59492. name: "Mega",
  59493. height: math.unit(2.5, "km"),
  59494. allForms: true
  59495. },
  59496. {
  59497. name: "Mega+",
  59498. height: math.unit(30, "km"),
  59499. allForms: true
  59500. },
  59501. {
  59502. name: "Giga (Home Size)",
  59503. height: math.unit(400, "km"),
  59504. allForms: true,
  59505. default: true
  59506. },
  59507. {
  59508. name: "Giga+",
  59509. height: math.unit(2500, "km"),
  59510. allForms: true
  59511. },
  59512. {
  59513. name: "Giga++",
  59514. height: math.unit(8000, "km"),
  59515. allForms: true
  59516. },
  59517. {
  59518. name: "Terra",
  59519. height: math.unit(20000, "km"),
  59520. allForms: true
  59521. },
  59522. {
  59523. name: "Terra+",
  59524. height: math.unit(70000, "km"),
  59525. allForms: true
  59526. },
  59527. {
  59528. name: "Terra++",
  59529. height: math.unit(600000, "km"),
  59530. allForms: true
  59531. },
  59532. {
  59533. name: "Galactic",
  59534. height: math.unit(40, "galaxies"),
  59535. allForms: true
  59536. },
  59537. {
  59538. name: "Universal",
  59539. height: math.unit(40, "universes"),
  59540. allForms: true
  59541. },
  59542. ],
  59543. {
  59544. "hyena": {
  59545. name: "Hyena",
  59546. default: true
  59547. },
  59548. "shark": {
  59549. name: "Shark",
  59550. },
  59551. }
  59552. ))
  59553. characterMakers.push(() => makeCharacter(
  59554. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59555. {
  59556. anthro_front: {
  59557. height: math.unit(1.5, "meters"),
  59558. name: "Front",
  59559. image: {
  59560. source: "./media/characters/adelaide/anthro-front.svg",
  59561. extra: 860/783,
  59562. bottom: 60/920
  59563. },
  59564. form: "anthro",
  59565. default: true
  59566. },
  59567. hand: {
  59568. height: math.unit(0.65, "feet"),
  59569. name: "Hand",
  59570. image: {
  59571. source: "./media/characters/adelaide/hand.svg"
  59572. },
  59573. form: "anthro"
  59574. },
  59575. foot: {
  59576. height: math.unit(1.38 * 259 / 314, "feet"),
  59577. name: "Foot",
  59578. image: {
  59579. source: "./media/characters/adelaide/foot.svg",
  59580. extra: 259/259,
  59581. bottom: 55/314
  59582. },
  59583. form: "anthro"
  59584. },
  59585. feather: {
  59586. height: math.unit(0.85, "feet"),
  59587. name: "Feather",
  59588. image: {
  59589. source: "./media/characters/adelaide/feather.svg"
  59590. },
  59591. form: "anthro"
  59592. },
  59593. feral_side: {
  59594. height: math.unit(1, "meters"),
  59595. name: "Side",
  59596. image: {
  59597. source: "./media/characters/adelaide/feral-side.svg",
  59598. extra: 550/467,
  59599. bottom: 37/587
  59600. },
  59601. form: "feral",
  59602. default: true
  59603. },
  59604. feral_hand: {
  59605. height: math.unit(0.58, "feet"),
  59606. name: "Hand",
  59607. image: {
  59608. source: "./media/characters/adelaide/hand.svg"
  59609. },
  59610. form: "feral"
  59611. },
  59612. feral_foot: {
  59613. height: math.unit(1.2 * 259 / 314, "feet"),
  59614. name: "Foot",
  59615. image: {
  59616. source: "./media/characters/adelaide/foot.svg",
  59617. extra: 259/259,
  59618. bottom: 55/314
  59619. },
  59620. form: "feral"
  59621. },
  59622. feral_feather: {
  59623. height: math.unit(0.63, "feet"),
  59624. name: "Feather",
  59625. image: {
  59626. source: "./media/characters/adelaide/feather.svg"
  59627. },
  59628. form: "feral"
  59629. },
  59630. },
  59631. [
  59632. {
  59633. name: "Normal",
  59634. height: math.unit(1.5, "meters"),
  59635. form: "anthro",
  59636. default: true
  59637. },
  59638. {
  59639. name: "Normal",
  59640. height: math.unit(1, "meters"),
  59641. form: "feral",
  59642. default: true
  59643. },
  59644. ],
  59645. {
  59646. "anthro": {
  59647. name: "Anthro",
  59648. default: true
  59649. },
  59650. "feral": {
  59651. name: "Feral",
  59652. },
  59653. }
  59654. ))
  59655. characterMakers.push(() => makeCharacter(
  59656. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59657. {
  59658. front: {
  59659. height: math.unit(2.5, "meters"),
  59660. name: "Front",
  59661. image: {
  59662. source: "./media/characters/goa/front.svg",
  59663. extra: 1109/1013,
  59664. bottom: 150/1259
  59665. }
  59666. },
  59667. },
  59668. [
  59669. {
  59670. name: "Normal",
  59671. height: math.unit(2.5, "meters"),
  59672. default: true
  59673. },
  59674. ]
  59675. ))
  59676. characterMakers.push(() => makeCharacter(
  59677. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59678. {
  59679. front: {
  59680. height: math.unit(2, "meters"),
  59681. weight: math.unit(100, "kg"),
  59682. name: "Front",
  59683. image: {
  59684. source: "./media/characters/kiki-weavile/front.svg",
  59685. extra: 357/332,
  59686. bottom: 60/417
  59687. }
  59688. },
  59689. },
  59690. [
  59691. {
  59692. name: "Normal",
  59693. height: math.unit(2, "meters"),
  59694. default: true
  59695. },
  59696. ]
  59697. ))
  59698. characterMakers.push(() => makeCharacter(
  59699. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59700. {
  59701. side: {
  59702. height: math.unit(1.6, "meters"),
  59703. name: "Side",
  59704. image: {
  59705. source: "./media/characters/liza/side.svg",
  59706. extra: 943/915,
  59707. bottom: 72/1015
  59708. }
  59709. },
  59710. },
  59711. [
  59712. {
  59713. name: "Normal",
  59714. height: math.unit(1.6, "meters"),
  59715. default: true
  59716. },
  59717. ]
  59718. ))
  59719. characterMakers.push(() => makeCharacter(
  59720. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59721. {
  59722. side: {
  59723. height: math.unit(2.5, "meters"),
  59724. preyCapacity: math.unit(1, "people"),
  59725. name: "Side",
  59726. image: {
  59727. source: "./media/characters/persephone-sweetbreath/side.svg",
  59728. extra: 796/700,
  59729. bottom: 44/840
  59730. }
  59731. },
  59732. sideVore: {
  59733. height: math.unit(2.5, "meters"),
  59734. preyCapacity: math.unit(1, "people"),
  59735. name: "Side (Full)",
  59736. image: {
  59737. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  59738. extra: 796/700,
  59739. bottom: 44/840
  59740. }
  59741. },
  59742. },
  59743. [
  59744. {
  59745. name: "Normal",
  59746. height: math.unit(2.5, "meters"),
  59747. default: true
  59748. },
  59749. ]
  59750. ))
  59751. characterMakers.push(() => makeCharacter(
  59752. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59753. {
  59754. front: {
  59755. height: math.unit(32, "meters"),
  59756. name: "Front",
  59757. image: {
  59758. source: "./media/characters/pierce/front.svg",
  59759. extra: 1695/1475,
  59760. bottom: 185/1880
  59761. }
  59762. },
  59763. side: {
  59764. height: math.unit(32, "meters"),
  59765. name: "Side",
  59766. image: {
  59767. source: "./media/characters/pierce/side.svg",
  59768. extra: 974/859,
  59769. bottom: 43/1017
  59770. }
  59771. },
  59772. frontWingless: {
  59773. height: math.unit(32, "meters"),
  59774. name: "Front (Wingless)",
  59775. image: {
  59776. source: "./media/characters/pierce/front-wingless.svg",
  59777. extra: 1695/1475,
  59778. bottom: 185/1880
  59779. }
  59780. },
  59781. sideWingless: {
  59782. height: math.unit(32, "meters"),
  59783. name: "Side (Wingless)",
  59784. image: {
  59785. source: "./media/characters/pierce/side-wingless.svg",
  59786. extra: 974/859,
  59787. bottom: 43/1017
  59788. }
  59789. },
  59790. maw: {
  59791. height: math.unit(19.3, "meters"),
  59792. name: "Maw",
  59793. image: {
  59794. source: "./media/characters/pierce/maw.svg"
  59795. }
  59796. },
  59797. },
  59798. [
  59799. {
  59800. name: "Small",
  59801. height: math.unit(8.5, "meters")
  59802. },
  59803. {
  59804. name: "Normal",
  59805. height: math.unit(32, "meters"),
  59806. default: true
  59807. },
  59808. ]
  59809. ))
  59810. characterMakers.push(() => makeCharacter(
  59811. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59812. {
  59813. front: {
  59814. height: math.unit(2.3, "meters"),
  59815. weight: math.unit(165, "kg"),
  59816. name: "Front",
  59817. image: {
  59818. source: "./media/characters/shira/front.svg",
  59819. extra: 924/919,
  59820. bottom: 17/941
  59821. },
  59822. form: "cobra",
  59823. default: true
  59824. },
  59825. back: {
  59826. height: math.unit(2.3, "meters"),
  59827. weight: math.unit(165, "kg"),
  59828. name: "Back",
  59829. image: {
  59830. source: "./media/characters/shira/back.svg",
  59831. extra: 928/922,
  59832. bottom: 18/946
  59833. },
  59834. form: "cobra"
  59835. },
  59836. frontLewd: {
  59837. height: math.unit(2.3, "meters"),
  59838. weight: math.unit(165, "kg"),
  59839. name: "Front (Lewd)",
  59840. image: {
  59841. source: "./media/characters/shira/front-lewd.svg",
  59842. extra: 924/919,
  59843. bottom: 17/941
  59844. },
  59845. form: "cobra"
  59846. },
  59847. backLewd: {
  59848. height: math.unit(2.3, "meters"),
  59849. weight: math.unit(165, "kg"),
  59850. name: "Back (Lewd)",
  59851. image: {
  59852. source: "./media/characters/shira/back-lewd.svg",
  59853. extra: 928/922,
  59854. bottom: 18/946
  59855. },
  59856. form: "cobra"
  59857. },
  59858. maw: {
  59859. height: math.unit(1.14, "feet"),
  59860. name: "Maw",
  59861. image: {
  59862. source: "./media/characters/shira/maw.svg"
  59863. },
  59864. form: "cobra"
  59865. },
  59866. magma_front: {
  59867. height: math.unit(2.3, "meters"),
  59868. weight: math.unit(165, "kg"),
  59869. name: "Front",
  59870. image: {
  59871. source: "./media/characters/shira/magma-front.svg",
  59872. extra: 1870/1693,
  59873. bottom: 24/1894
  59874. },
  59875. form: "magma",
  59876. },
  59877. magma_back: {
  59878. height: math.unit(2.3, "meters"),
  59879. weight: math.unit(165, "kg"),
  59880. name: "Back",
  59881. image: {
  59882. source: "./media/characters/shira/magma-back.svg",
  59883. extra: 1918/1756,
  59884. bottom: 46/1964
  59885. },
  59886. form: "magma",
  59887. },
  59888. },
  59889. [
  59890. {
  59891. name: "Incognito",
  59892. height: math.unit(2.3, "meters"),
  59893. allForms: true
  59894. },
  59895. {
  59896. name: "Home Size",
  59897. height: math.unit(150, "meters"),
  59898. default: true,
  59899. allForms: true
  59900. },
  59901. {
  59902. name: "Macro",
  59903. height: math.unit(2, "km"),
  59904. allForms: true
  59905. },
  59906. {
  59907. name: "Mega",
  59908. height: math.unit(30, "km"),
  59909. allForms: true
  59910. },
  59911. {
  59912. name: "Giga",
  59913. height: math.unit(450, "km"),
  59914. allForms: true
  59915. },
  59916. {
  59917. name: "Giga+",
  59918. height: math.unit(3000, "km"),
  59919. allForms: true
  59920. },
  59921. {
  59922. name: "Giga++",
  59923. height: math.unit(6000, "km"),
  59924. allForms: true
  59925. },
  59926. {
  59927. name: "Terra",
  59928. height: math.unit(80000, "km"),
  59929. allForms: true
  59930. },
  59931. {
  59932. name: "Terra+",
  59933. height: math.unit(350000, "km"),
  59934. allForms: true
  59935. },
  59936. {
  59937. name: "Solar",
  59938. height: math.unit(1e6, "km"),
  59939. allForms: true
  59940. },
  59941. ],
  59942. {
  59943. "cobra": {
  59944. name: "Cobra",
  59945. default: true
  59946. },
  59947. "magma": {
  59948. name: "Magma Dragon",
  59949. },
  59950. }
  59951. ))
  59952. characterMakers.push(() => makeCharacter(
  59953. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  59954. {
  59955. front: {
  59956. height: math.unit(2, "meters"),
  59957. weight: math.unit(160, "kg"),
  59958. name: "Front",
  59959. image: {
  59960. source: "./media/characters/daxerios/front.svg",
  59961. extra: 1334/1277,
  59962. bottom: 45/1379
  59963. }
  59964. },
  59965. frontLewd: {
  59966. height: math.unit(2, "meters"),
  59967. weight: math.unit(160, "kg"),
  59968. name: "Front (Lewd)",
  59969. image: {
  59970. source: "./media/characters/daxerios/front-lewd.svg",
  59971. extra: 1334/1277,
  59972. bottom: 45/1379
  59973. }
  59974. },
  59975. dick: {
  59976. height: math.unit(2.35, "feet"),
  59977. name: "Dick",
  59978. image: {
  59979. source: "./media/characters/daxerios/dick.svg"
  59980. }
  59981. },
  59982. },
  59983. [
  59984. {
  59985. name: "\"Small\"",
  59986. height: math.unit(5, "meters")
  59987. },
  59988. {
  59989. name: "Original Size",
  59990. height: math.unit(500, "meters"),
  59991. default: true
  59992. },
  59993. {
  59994. name: "Mega",
  59995. height: math.unit(2, "km")
  59996. },
  59997. {
  59998. name: "Mega+",
  59999. height: math.unit(35, "km")
  60000. },
  60001. {
  60002. name: "Giga",
  60003. height: math.unit(250, "km")
  60004. },
  60005. {
  60006. name: "Giga+",
  60007. height: math.unit(3000, "km")
  60008. },
  60009. {
  60010. name: "Terra",
  60011. height: math.unit(25000, "km")
  60012. },
  60013. {
  60014. name: "Terra+",
  60015. height: math.unit(300000, "km")
  60016. },
  60017. {
  60018. name: "Solar",
  60019. height: math.unit(1e6, "km")
  60020. },
  60021. ]
  60022. ))
  60023. characterMakers.push(() => makeCharacter(
  60024. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60025. {
  60026. front: {
  60027. height: math.unit(8 + 4/12, "feet"),
  60028. weight: math.unit(464, "lb"),
  60029. name: "Front",
  60030. image: {
  60031. source: "./media/characters/caveat/front.svg",
  60032. extra: 1861/1678,
  60033. bottom: 40/1901
  60034. }
  60035. },
  60036. },
  60037. [
  60038. {
  60039. name: "Normal",
  60040. height: math.unit(8 + 4/12, "feet"),
  60041. default: true
  60042. },
  60043. ]
  60044. ))
  60045. characterMakers.push(() => makeCharacter(
  60046. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60047. {
  60048. front: {
  60049. height: math.unit(12, "feet"),
  60050. weight: math.unit(1800, "lb"),
  60051. name: "Front",
  60052. image: {
  60053. source: "./media/characters/centbair/front.svg",
  60054. extra: 781/663,
  60055. bottom: 25/806
  60056. }
  60057. },
  60058. frontNsfw: {
  60059. height: math.unit(12, "feet"),
  60060. weight: math.unit(1800, "lb"),
  60061. name: "Front (NSFW)",
  60062. image: {
  60063. source: "./media/characters/centbair/front-nsfw.svg",
  60064. extra: 781/663,
  60065. bottom: 25/806
  60066. }
  60067. },
  60068. back: {
  60069. height: math.unit(12, "feet"),
  60070. weight: math.unit(1800, "lb"),
  60071. name: "Back",
  60072. image: {
  60073. source: "./media/characters/centbair/back.svg",
  60074. extra: 808/761,
  60075. bottom: 19/827
  60076. }
  60077. },
  60078. dick: {
  60079. height: math.unit(6.5, "feet"),
  60080. name: "Dick",
  60081. image: {
  60082. source: "./media/characters/centbair/dick.svg"
  60083. }
  60084. },
  60085. slit: {
  60086. height: math.unit(3.25, "feet"),
  60087. name: "Slit",
  60088. image: {
  60089. source: "./media/characters/centbair/slit.svg"
  60090. }
  60091. },
  60092. },
  60093. [
  60094. {
  60095. name: "Normal",
  60096. height: math.unit(12, "feet"),
  60097. default: true
  60098. },
  60099. ]
  60100. ))
  60101. characterMakers.push(() => makeCharacter(
  60102. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60103. {
  60104. front: {
  60105. height: math.unit(5 + 7/12, "feet"),
  60106. name: "Front",
  60107. image: {
  60108. source: "./media/characters/andy/front.svg",
  60109. extra: 634/588,
  60110. bottom: 36/670
  60111. },
  60112. extraAttributes: {
  60113. "pawLength": {
  60114. name: "Paw Length",
  60115. power: 1,
  60116. type: "length",
  60117. base: math.unit(1, "feet")
  60118. },
  60119. }
  60120. },
  60121. side: {
  60122. height: math.unit(5 + 7/12, "feet"),
  60123. name: "Side",
  60124. image: {
  60125. source: "./media/characters/andy/side.svg",
  60126. extra: 641/596,
  60127. bottom: 34/675
  60128. },
  60129. extraAttributes: {
  60130. "pawLength": {
  60131. name: "Paw Length",
  60132. power: 1,
  60133. type: "length",
  60134. base: math.unit(1, "feet")
  60135. },
  60136. }
  60137. },
  60138. back: {
  60139. height: math.unit(5 + 7/12, "feet"),
  60140. name: "Back",
  60141. image: {
  60142. source: "./media/characters/andy/back.svg",
  60143. extra: 618/583,
  60144. bottom: 39/657
  60145. },
  60146. extraAttributes: {
  60147. "pawLength": {
  60148. name: "Paw Length",
  60149. power: 1,
  60150. type: "length",
  60151. base: math.unit(1, "feet")
  60152. },
  60153. }
  60154. },
  60155. paw: {
  60156. height: math.unit(1.13, "feet"),
  60157. name: "Paw",
  60158. image: {
  60159. source: "./media/characters/andy/paw.svg"
  60160. }
  60161. },
  60162. },
  60163. [
  60164. {
  60165. name: "Micro",
  60166. height: math.unit(4, "inches")
  60167. },
  60168. {
  60169. name: "Normal",
  60170. height: math.unit(5 + 7/12, "feet"),
  60171. default: true
  60172. },
  60173. {
  60174. name: "Macro",
  60175. height: math.unit(390.42, "feet")
  60176. },
  60177. ]
  60178. ))
  60179. characterMakers.push(() => makeCharacter(
  60180. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60181. {
  60182. front: {
  60183. height: math.unit(7, "feet"),
  60184. weight: math.unit(250, "lb"),
  60185. name: "Front",
  60186. image: {
  60187. source: "./media/characters/vix-titan/front.svg",
  60188. extra: 460/428,
  60189. bottom: 15/475
  60190. },
  60191. extraAttributes: {
  60192. "pawWidth": {
  60193. name: "Paw Width",
  60194. power: 1,
  60195. type: "length",
  60196. base: math.unit(0.75, "feet")
  60197. },
  60198. }
  60199. },
  60200. },
  60201. [
  60202. {
  60203. name: "Normal",
  60204. height: math.unit(7, "feet"),
  60205. default: true
  60206. },
  60207. {
  60208. name: "Giant",
  60209. height: math.unit(1500, "feet")
  60210. },
  60211. {
  60212. name: "Mega",
  60213. height: math.unit(10, "miles")
  60214. },
  60215. {
  60216. name: "Giga",
  60217. height: math.unit(150, "miles")
  60218. },
  60219. {
  60220. name: "Tera",
  60221. height: math.unit(144000, "miles")
  60222. },
  60223. ]
  60224. ))
  60225. characterMakers.push(() => makeCharacter(
  60226. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60227. {
  60228. front: {
  60229. height: math.unit(6 + 2/12, "feet"),
  60230. name: "Front",
  60231. image: {
  60232. source: "./media/characters/reiku/front.svg",
  60233. extra: 1910/1757,
  60234. bottom: 103/2013
  60235. },
  60236. extraAttributes: {
  60237. "thighThickness": {
  60238. name: "Thigh Thickness",
  60239. power: 1,
  60240. type: "length",
  60241. base: math.unit(1.12, "feet")
  60242. },
  60243. "assThickness": {
  60244. name: "Ass Thickness",
  60245. power: 1,
  60246. type: "length",
  60247. base: math.unit(1.12*2, "feet")
  60248. },
  60249. }
  60250. },
  60251. side: {
  60252. height: math.unit(6 + 2/12, "feet"),
  60253. name: "Side",
  60254. image: {
  60255. source: "./media/characters/reiku/side.svg",
  60256. extra: 1846/1748,
  60257. bottom: 99/1945
  60258. },
  60259. extraAttributes: {
  60260. "thighThickness": {
  60261. name: "Thigh Thickness",
  60262. power: 1,
  60263. type: "length",
  60264. base: math.unit(1.12, "feet")
  60265. },
  60266. "assThickness": {
  60267. name: "Ass Thickness",
  60268. power: 1,
  60269. type: "length",
  60270. base: math.unit(1.12*2, "feet")
  60271. },
  60272. }
  60273. },
  60274. back: {
  60275. height: math.unit(6 + 2/12, "feet"),
  60276. name: "Back",
  60277. image: {
  60278. source: "./media/characters/reiku/back.svg",
  60279. extra: 1941/1786,
  60280. bottom: 34/1975
  60281. },
  60282. extraAttributes: {
  60283. "thighThickness": {
  60284. name: "Thigh Thickness",
  60285. power: 1,
  60286. type: "length",
  60287. base: math.unit(1.12, "feet")
  60288. },
  60289. "assThickness": {
  60290. name: "Ass Thickness",
  60291. power: 1,
  60292. type: "length",
  60293. base: math.unit(1.12*2, "feet")
  60294. },
  60295. }
  60296. },
  60297. head: {
  60298. height: math.unit(1.8, "feet"),
  60299. name: "Head",
  60300. image: {
  60301. source: "./media/characters/reiku/head.svg"
  60302. }
  60303. },
  60304. tailTop: {
  60305. height: math.unit(8.4, "feet"),
  60306. name: "Tail (Top)",
  60307. image: {
  60308. source: "./media/characters/reiku/tail-top.svg"
  60309. }
  60310. },
  60311. tailBottom: {
  60312. height: math.unit(8.4, "feet"),
  60313. name: "Tail (Bottom)",
  60314. image: {
  60315. source: "./media/characters/reiku/tail-bottom.svg"
  60316. }
  60317. },
  60318. foot: {
  60319. height: math.unit(2.6, "feet"),
  60320. name: "Foot",
  60321. image: {
  60322. source: "./media/characters/reiku/foot.svg"
  60323. }
  60324. },
  60325. footCurled: {
  60326. height: math.unit(2.3, "feet"),
  60327. name: "Foot (Curled)",
  60328. image: {
  60329. source: "./media/characters/reiku/foot-curled.svg"
  60330. }
  60331. },
  60332. footSide: {
  60333. height: math.unit(1.26, "feet"),
  60334. name: "Foot (Side)",
  60335. image: {
  60336. source: "./media/characters/reiku/foot-side.svg"
  60337. }
  60338. },
  60339. },
  60340. [
  60341. {
  60342. name: "Normal",
  60343. height: math.unit(6 + 2/12, "feet"),
  60344. default: true
  60345. },
  60346. ]
  60347. ))
  60348. characterMakers.push(() => makeCharacter(
  60349. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60350. {
  60351. front: {
  60352. height: math.unit(7, "feet"),
  60353. weight: math.unit(500, "kg"),
  60354. name: "Front",
  60355. image: {
  60356. source: "./media/characters/cialda/front.svg",
  60357. extra: 912/745,
  60358. bottom: 55/967
  60359. }
  60360. },
  60361. },
  60362. [
  60363. {
  60364. name: "Normal",
  60365. height: math.unit(7, "feet"),
  60366. default: true
  60367. },
  60368. ]
  60369. ))
  60370. characterMakers.push(() => makeCharacter(
  60371. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60372. {
  60373. side: {
  60374. height: math.unit(6, "feet"),
  60375. weight: math.unit(600, "lb"),
  60376. preyCapacity: math.unit(25, "liters"),
  60377. name: "Side",
  60378. image: {
  60379. source: "./media/characters/darkkin/side.svg",
  60380. extra: 1597/1447,
  60381. bottom: 101/1698
  60382. }
  60383. },
  60384. },
  60385. [
  60386. {
  60387. name: "Canon Height",
  60388. height: math.unit(568, "feet"),
  60389. default: true
  60390. },
  60391. ]
  60392. ))
  60393. characterMakers.push(() => makeCharacter(
  60394. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60395. {
  60396. front: {
  60397. height: math.unit(6, "feet"),
  60398. weight: math.unit(1500, "lb"),
  60399. preyCapacity: math.unit(3, "people"),
  60400. name: "Front",
  60401. image: {
  60402. source: "./media/characters/livnia/front.svg",
  60403. extra: 934/932,
  60404. bottom: 83/1017
  60405. }
  60406. },
  60407. back: {
  60408. height: math.unit(6, "feet"),
  60409. weight: math.unit(1500, "lb"),
  60410. preyCapacity: math.unit(3, "people"),
  60411. name: "Back",
  60412. image: {
  60413. source: "./media/characters/livnia/back.svg",
  60414. extra: 916/915,
  60415. bottom: 58/974
  60416. }
  60417. },
  60418. head: {
  60419. height: math.unit(1.53, "feet"),
  60420. name: "Head",
  60421. image: {
  60422. source: "./media/characters/livnia/head.svg"
  60423. }
  60424. },
  60425. maw: {
  60426. height: math.unit(0.78, "feet"),
  60427. name: "Maw",
  60428. image: {
  60429. source: "./media/characters/livnia/maw.svg"
  60430. }
  60431. },
  60432. genitals: {
  60433. height: math.unit(0.35, "feet"),
  60434. name: "Genitals",
  60435. image: {
  60436. source: "./media/characters/livnia/genitals.svg"
  60437. }
  60438. },
  60439. },
  60440. [
  60441. {
  60442. name: "Normal",
  60443. height: math.unit(1000, "feet"),
  60444. default: true
  60445. },
  60446. ]
  60447. ))
  60448. characterMakers.push(() => makeCharacter(
  60449. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60450. {
  60451. front: {
  60452. height: math.unit(4, "feet"),
  60453. weight: math.unit(73, "lb"),
  60454. name: "Front",
  60455. image: {
  60456. source: "./media/characters/hayaku/front.svg",
  60457. extra: 1011/888,
  60458. bottom: 33/1044
  60459. }
  60460. },
  60461. back: {
  60462. height: math.unit(4, "feet"),
  60463. weight: math.unit(73, "lb"),
  60464. name: "Back",
  60465. image: {
  60466. source: "./media/characters/hayaku/back.svg",
  60467. extra: 1040/930,
  60468. bottom: 20/1060
  60469. }
  60470. },
  60471. },
  60472. [
  60473. {
  60474. name: "Normal",
  60475. height: math.unit(4, "feet"),
  60476. default: true
  60477. },
  60478. ]
  60479. ))
  60480. characterMakers.push(() => makeCharacter(
  60481. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60482. {
  60483. front: {
  60484. height: math.unit(6 + 7/12, "feet"),
  60485. weight: math.unit(300, "lb"),
  60486. name: "Front",
  60487. image: {
  60488. source: "./media/characters/athena-bryzant/front.svg",
  60489. extra: 870/835,
  60490. bottom: 33/903
  60491. }
  60492. },
  60493. back: {
  60494. height: math.unit(6 + 7/12, "feet"),
  60495. weight: math.unit(300, "lb"),
  60496. name: "Back",
  60497. image: {
  60498. source: "./media/characters/athena-bryzant/back.svg",
  60499. extra: 858/823,
  60500. bottom: 30/888
  60501. }
  60502. },
  60503. head: {
  60504. height: math.unit(2.38, "feet"),
  60505. name: "Head",
  60506. image: {
  60507. source: "./media/characters/athena-bryzant/head.svg"
  60508. }
  60509. },
  60510. wings: {
  60511. height: math.unit(2.85, "feet"),
  60512. name: "Wings",
  60513. image: {
  60514. source: "./media/characters/athena-bryzant/wings.svg"
  60515. }
  60516. },
  60517. },
  60518. [
  60519. {
  60520. name: "Normal",
  60521. height: math.unit(6 + 7/12, "feet"),
  60522. default: true
  60523. },
  60524. {
  60525. name: "Big",
  60526. height: math.unit(8, "feet")
  60527. },
  60528. {
  60529. name: "Very Big",
  60530. height: math.unit(11, "feet")
  60531. },
  60532. ]
  60533. ))
  60534. characterMakers.push(() => makeCharacter(
  60535. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60536. {
  60537. side: {
  60538. height: math.unit(3, "meters"),
  60539. weight: math.unit(7500, "kg"),
  60540. preyCapacity: math.unit(1e12, "people"),
  60541. name: "Side",
  60542. image: {
  60543. source: "./media/characters/zel-kesh/side.svg",
  60544. extra: 910/407,
  60545. bottom: 147/1057
  60546. }
  60547. },
  60548. },
  60549. [
  60550. {
  60551. name: "Normal",
  60552. height: math.unit(3, "meters"),
  60553. default: true
  60554. },
  60555. ]
  60556. ))
  60557. characterMakers.push(() => makeCharacter(
  60558. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60559. {
  60560. front: {
  60561. height: math.unit(2, "meters"),
  60562. weight: math.unit(95, "kg"),
  60563. name: "Front",
  60564. image: {
  60565. source: "./media/characters/kane-fox/front.svg",
  60566. extra: 945/888,
  60567. bottom: 27/972
  60568. }
  60569. },
  60570. back: {
  60571. height: math.unit(2, "meters"),
  60572. weight: math.unit(95, "kg"),
  60573. name: "Back",
  60574. image: {
  60575. source: "./media/characters/kane-fox/back.svg",
  60576. extra: 959/914,
  60577. bottom: 15/974
  60578. }
  60579. },
  60580. frontLewd: {
  60581. height: math.unit(2, "meters"),
  60582. weight: math.unit(95, "kg"),
  60583. name: "Front (Lewd)",
  60584. image: {
  60585. source: "./media/characters/kane-fox/front-lewd.svg",
  60586. extra: 945/888,
  60587. bottom: 27/972
  60588. }
  60589. },
  60590. },
  60591. [
  60592. {
  60593. name: "Home Size",
  60594. height: math.unit(2, "meters"),
  60595. default: true
  60596. },
  60597. {
  60598. name: "Macro",
  60599. height: math.unit(200, "meters")
  60600. },
  60601. {
  60602. name: "Small Mega",
  60603. height: math.unit(3, "km")
  60604. },
  60605. {
  60606. name: "Mega",
  60607. height: math.unit(50, "km")
  60608. },
  60609. {
  60610. name: "Giga",
  60611. height: math.unit(200, "km")
  60612. },
  60613. {
  60614. name: "Giga+",
  60615. height: math.unit(2500, "km")
  60616. },
  60617. {
  60618. name: "Terra",
  60619. height: math.unit(70000, "km")
  60620. },
  60621. {
  60622. name: "Terra+",
  60623. height: math.unit(150000, "km")
  60624. },
  60625. {
  60626. name: "Terra++",
  60627. height: math.unit(400000, "km")
  60628. },
  60629. ]
  60630. ))
  60631. characterMakers.push(() => makeCharacter(
  60632. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60633. {
  60634. otter_front: {
  60635. height: math.unit(1.8, "meters"),
  60636. weight: math.unit(90, "kg"),
  60637. name: "Front",
  60638. image: {
  60639. source: "./media/characters/ayranus/otter-front.svg",
  60640. extra: 468/452,
  60641. bottom: 43/511
  60642. },
  60643. form: "otter",
  60644. },
  60645. otter_frontLewd: {
  60646. height: math.unit(1.8, "meters"),
  60647. weight: math.unit(90, "kg"),
  60648. name: "Front (Lewd)",
  60649. image: {
  60650. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60651. extra: 468/452,
  60652. bottom: 43/511
  60653. },
  60654. form: "otter",
  60655. },
  60656. lionbat_front: {
  60657. height: math.unit(1.8, "meters"),
  60658. weight: math.unit(90, "kg"),
  60659. name: "Front (Lewd)",
  60660. image: {
  60661. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60662. extra: 797/740,
  60663. bottom: 78/875
  60664. },
  60665. form: "lionbat",
  60666. },
  60667. paw: {
  60668. height: math.unit(1.5, "feet"),
  60669. name: "Paw",
  60670. image: {
  60671. source: "./media/characters/ayranus/paw.svg"
  60672. },
  60673. },
  60674. },
  60675. [
  60676. {
  60677. name: "Incognito",
  60678. height: math.unit(1.8, "meters"),
  60679. allForms: true
  60680. },
  60681. {
  60682. name: "Macro",
  60683. height: math.unit(60, "meters"),
  60684. allForms: true
  60685. },
  60686. {
  60687. name: "Macro+",
  60688. height: math.unit(200, "meters"),
  60689. allForms: true
  60690. },
  60691. {
  60692. name: "Mega",
  60693. height: math.unit(35, "km"),
  60694. allForms: true
  60695. },
  60696. {
  60697. name: "Giga",
  60698. height: math.unit(220, "km"),
  60699. allForms: true
  60700. },
  60701. {
  60702. name: "Giga+",
  60703. height: math.unit(1500, "km"),
  60704. allForms: true
  60705. },
  60706. {
  60707. name: "Terra",
  60708. height: math.unit(13000, "km"),
  60709. allForms: true
  60710. },
  60711. {
  60712. name: "Terra+",
  60713. height: math.unit(500000, "km"),
  60714. allForms: true
  60715. },
  60716. {
  60717. name: "Galactic",
  60718. height: math.unit(486080, "parsecs"),
  60719. default: true,
  60720. allForms: true
  60721. },
  60722. ],
  60723. {
  60724. "otter": {
  60725. name: "Otter",
  60726. default: true
  60727. },
  60728. "lionbat": {
  60729. name: "Lionbat",
  60730. },
  60731. }
  60732. ))
  60733. characterMakers.push(() => makeCharacter(
  60734. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  60735. {
  60736. front: {
  60737. height: math.unit(7 + 4/12, "feet"),
  60738. weight: math.unit(400, "lb"),
  60739. name: "Front",
  60740. image: {
  60741. source: "./media/characters/proxy/front.svg",
  60742. extra: 1605/1542,
  60743. bottom: 55/1660
  60744. }
  60745. },
  60746. side: {
  60747. height: math.unit(7 + 4/12, "feet"),
  60748. weight: math.unit(400, "lb"),
  60749. name: "Side",
  60750. image: {
  60751. source: "./media/characters/proxy/side.svg",
  60752. extra: 794/759,
  60753. bottom: 6/800
  60754. }
  60755. },
  60756. hand: {
  60757. height: math.unit(1.54, "feet"),
  60758. name: "Hand",
  60759. image: {
  60760. source: "./media/characters/proxy/hand.svg"
  60761. }
  60762. },
  60763. paw: {
  60764. height: math.unit(1.53, "feet"),
  60765. name: "Paw",
  60766. image: {
  60767. source: "./media/characters/proxy/paw.svg"
  60768. }
  60769. },
  60770. maw: {
  60771. height: math.unit(1.9, "feet"),
  60772. name: "Maw",
  60773. image: {
  60774. source: "./media/characters/proxy/maw.svg"
  60775. }
  60776. },
  60777. },
  60778. [
  60779. {
  60780. name: "Normal",
  60781. height: math.unit(7 + 4/12, "feet"),
  60782. default: true
  60783. },
  60784. ]
  60785. ))
  60786. characterMakers.push(() => makeCharacter(
  60787. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  60788. {
  60789. front: {
  60790. height: math.unit(4, "meters"),
  60791. name: "Front",
  60792. image: {
  60793. source: "./media/characters/crocozilla/front.svg",
  60794. extra: 1790/1742,
  60795. bottom: 78/1868
  60796. }
  60797. },
  60798. },
  60799. [
  60800. {
  60801. name: "Normal",
  60802. height: math.unit(4, "meters"),
  60803. default: true
  60804. },
  60805. ]
  60806. ))
  60807. characterMakers.push(() => makeCharacter(
  60808. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  60809. {
  60810. front: {
  60811. height: math.unit(1.8, "meters"),
  60812. weight: math.unit(120, "kg"),
  60813. name: "Front",
  60814. image: {
  60815. source: "./media/characters/kurz/front.svg",
  60816. extra: 1960/1824,
  60817. bottom: 41/2001
  60818. }
  60819. },
  60820. back: {
  60821. height: math.unit(1.8, "meters"),
  60822. weight: math.unit(120, "kg"),
  60823. name: "Back",
  60824. image: {
  60825. source: "./media/characters/kurz/back.svg",
  60826. extra: 1906/1787,
  60827. bottom: 60/1966
  60828. }
  60829. },
  60830. frontLewd: {
  60831. height: math.unit(1.8, "meters"),
  60832. weight: math.unit(120, "kg"),
  60833. name: "Front (Lewd)",
  60834. image: {
  60835. source: "./media/characters/kurz/front-lewd.svg",
  60836. extra: 1960/1824,
  60837. bottom: 41/2001
  60838. }
  60839. },
  60840. maw: {
  60841. height: math.unit(0.69, "meters"),
  60842. name: "Maw",
  60843. image: {
  60844. source: "./media/characters/kurz/maw.svg"
  60845. }
  60846. },
  60847. },
  60848. [
  60849. {
  60850. name: "Original Size",
  60851. height: math.unit(1.8, "meters")
  60852. },
  60853. {
  60854. name: "Incognito Size",
  60855. height: math.unit(2.4, "meters"),
  60856. default: true
  60857. },
  60858. {
  60859. name: "Macro",
  60860. height: math.unit(30, "meters")
  60861. },
  60862. {
  60863. name: "Macro+",
  60864. height: math.unit(250, "meters")
  60865. },
  60866. {
  60867. name: "Mega",
  60868. height: math.unit(2, "km")
  60869. },
  60870. {
  60871. name: "Mega+",
  60872. height: math.unit(35, "km")
  60873. },
  60874. {
  60875. name: "Mega++",
  60876. height: math.unit(75, "km")
  60877. },
  60878. {
  60879. name: "Giga",
  60880. height: math.unit(250, "km")
  60881. },
  60882. {
  60883. name: "Terra",
  60884. height: math.unit(15000, "km")
  60885. },
  60886. {
  60887. name: "Terra+",
  60888. height: math.unit(2250000, "km")
  60889. },
  60890. ]
  60891. ))
  60892. characterMakers.push(() => makeCharacter(
  60893. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  60894. {
  60895. front: {
  60896. height: math.unit(16 + 3/12, "feet"),
  60897. weight: math.unit(3575, "lb"),
  60898. name: "Front",
  60899. image: {
  60900. source: "./media/characters/nikita/front.svg",
  60901. extra: 1064/955,
  60902. bottom: 47/1111
  60903. }
  60904. },
  60905. },
  60906. [
  60907. {
  60908. name: "Normal",
  60909. height: math.unit(16 + 3/12, "feet"),
  60910. default: true
  60911. },
  60912. {
  60913. name: "Big",
  60914. height: math.unit(21, "feet")
  60915. },
  60916. {
  60917. name: "Biggest",
  60918. height: math.unit(50, "feet")
  60919. },
  60920. ]
  60921. ))
  60922. characterMakers.push(() => makeCharacter(
  60923. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  60924. {
  60925. front: {
  60926. height: math.unit(1.92, "m"),
  60927. weight: math.unit(76, "kg"),
  60928. name: "Front",
  60929. image: {
  60930. source: "./media/characters/kyara/front.svg",
  60931. extra: 1550/1438,
  60932. bottom: 139/1689
  60933. }
  60934. },
  60935. back: {
  60936. height: math.unit(1.92, "m"),
  60937. weight: math.unit(76, "kg"),
  60938. name: "Back",
  60939. image: {
  60940. source: "./media/characters/kyara/back.svg",
  60941. extra: 1523/1427,
  60942. bottom: 83/1606
  60943. }
  60944. },
  60945. head: {
  60946. height: math.unit(1.22, "feet"),
  60947. name: "Head",
  60948. image: {
  60949. source: "./media/characters/kyara/head.svg"
  60950. }
  60951. },
  60952. maw: {
  60953. height: math.unit(0.73, "feet"),
  60954. name: "Maw",
  60955. image: {
  60956. source: "./media/characters/kyara/maw.svg"
  60957. }
  60958. },
  60959. paws: {
  60960. height: math.unit(0.95, "feet"),
  60961. name: "Paws",
  60962. image: {
  60963. source: "./media/characters/kyara/paws.svg"
  60964. }
  60965. },
  60966. },
  60967. [
  60968. {
  60969. name: "Normal",
  60970. height: math.unit(1.92, "meters"),
  60971. default: true
  60972. },
  60973. {
  60974. name: "Mini Macro",
  60975. height: math.unit(192, "meters")
  60976. },
  60977. {
  60978. name: "Macro",
  60979. height: math.unit(480, "meters")
  60980. },
  60981. {
  60982. name: "Mega Macro",
  60983. height: math.unit(1440, "meters")
  60984. },
  60985. ]
  60986. ))
  60987. characterMakers.push(() => makeCharacter(
  60988. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  60989. {
  60990. front: {
  60991. height: math.unit(6, "feet"),
  60992. weight: math.unit(160, "lbs"),
  60993. preyCapacity: math.unit(0.05, "people"),
  60994. name: "Front",
  60995. image: {
  60996. source: "./media/characters/layla-amari/front.svg",
  60997. extra: 1922/1723,
  60998. bottom: 90/2012
  60999. }
  61000. },
  61001. back: {
  61002. height: math.unit(6, "feet"),
  61003. weight: math.unit(160, "lbs"),
  61004. preyCapacity: math.unit(0.05, "people"),
  61005. name: "Back",
  61006. image: {
  61007. source: "./media/characters/layla-amari/back.svg",
  61008. extra: 1917/1718,
  61009. bottom: 50/1967
  61010. }
  61011. },
  61012. frontDressed: {
  61013. height: math.unit(6, "feet"),
  61014. weight: math.unit(160, "lbs"),
  61015. preyCapacity: math.unit(0.05, "people"),
  61016. name: "Front (Dressed)",
  61017. image: {
  61018. source: "./media/characters/layla-amari/front-dressed.svg",
  61019. extra: 1922/1723,
  61020. bottom: 90/2012
  61021. }
  61022. },
  61023. face: {
  61024. height: math.unit(0.93, "feet"),
  61025. name: "Face",
  61026. image: {
  61027. source: "./media/characters/layla-amari/face.svg"
  61028. }
  61029. },
  61030. hand: {
  61031. height: math.unit(0.66 , "feet"),
  61032. name: "Hand",
  61033. image: {
  61034. source: "./media/characters/layla-amari/hand.svg"
  61035. }
  61036. },
  61037. foot: {
  61038. height: math.unit(1, "feet"),
  61039. name: "Foot",
  61040. image: {
  61041. source: "./media/characters/layla-amari/foot.svg"
  61042. }
  61043. },
  61044. necklace: {
  61045. height: math.unit(0.32, "feet"),
  61046. name: "Necklace",
  61047. image: {
  61048. source: "./media/characters/layla-amari/necklace.svg"
  61049. }
  61050. },
  61051. nipple: {
  61052. height: math.unit(0.2, "feet"),
  61053. name: "Nipple",
  61054. image: {
  61055. source: "./media/characters/layla-amari/nipple.svg"
  61056. }
  61057. },
  61058. slit: {
  61059. height: math.unit(0.26, "feet"),
  61060. name: "Slit",
  61061. image: {
  61062. source: "./media/characters/layla-amari/slit.svg"
  61063. }
  61064. },
  61065. },
  61066. [
  61067. {
  61068. name: "Natural",
  61069. height: math.unit(825, "feet"),
  61070. default: true
  61071. },
  61072. {
  61073. name: "Enhanced",
  61074. height: math.unit(8250, "feet")
  61075. },
  61076. {
  61077. name: "Apparent Size",
  61078. height: math.unit(9.04363e+8, "meters")
  61079. },
  61080. ]
  61081. ))
  61082. characterMakers.push(() => makeCharacter(
  61083. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61084. {
  61085. front: {
  61086. height: math.unit(1.3, "meters"),
  61087. name: "Front",
  61088. image: {
  61089. source: "./media/characters/percy/front.svg",
  61090. extra: 1444/1289,
  61091. bottom: 54/1498
  61092. }
  61093. },
  61094. },
  61095. [
  61096. {
  61097. name: "Normal",
  61098. height: math.unit(1.3, "meters"),
  61099. default: true
  61100. },
  61101. ]
  61102. ))
  61103. characterMakers.push(() => makeCharacter(
  61104. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61105. {
  61106. side: {
  61107. height: math.unit(10, "meters"),
  61108. name: "Side",
  61109. image: {
  61110. source: "./media/characters/grev/side.svg",
  61111. extra: 653/266,
  61112. bottom: 77/730
  61113. }
  61114. },
  61115. head: {
  61116. height: math.unit(16.2, "m"),
  61117. name: "Head",
  61118. image: {
  61119. source: "./media/characters/grev/head.svg"
  61120. }
  61121. },
  61122. dick: {
  61123. height: math.unit(2.8135932034, "m"),
  61124. name: "Dick",
  61125. image: {
  61126. source: "./media/characters/grev/dick.svg"
  61127. }
  61128. },
  61129. },
  61130. [
  61131. {
  61132. name: "Friend-Sized",
  61133. height: math.unit(80, "cm")
  61134. },
  61135. {
  61136. name: "Normal",
  61137. height: math.unit(10, "meters"),
  61138. default: true
  61139. },
  61140. {
  61141. name: "Macro",
  61142. height: math.unit(200, "meters")
  61143. },
  61144. ]
  61145. ))
  61146. characterMakers.push(() => makeCharacter(
  61147. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61148. {
  61149. front: {
  61150. height: math.unit(19.75, "feet"),
  61151. weight: math.unit(20000, "lb"),
  61152. name: "Front",
  61153. image: {
  61154. source: "./media/characters/azuuca/front.svg",
  61155. extra: 1593/1511,
  61156. bottom: 55/1648
  61157. }
  61158. },
  61159. },
  61160. [
  61161. {
  61162. name: "Normal",
  61163. height: math.unit(19.75, "feet"),
  61164. default: true
  61165. },
  61166. ]
  61167. ))
  61168. characterMakers.push(() => makeCharacter(
  61169. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61170. {
  61171. front: {
  61172. height: math.unit(15, "feet"),
  61173. weight: math.unit(1500, "lb"),
  61174. name: "Front",
  61175. image: {
  61176. source: "./media/characters/valuria/front.svg",
  61177. extra: 1588/1486,
  61178. bottom: 31/1619
  61179. }
  61180. },
  61181. },
  61182. [
  61183. {
  61184. name: "Normal",
  61185. height: math.unit(15, "feet"),
  61186. default: true
  61187. },
  61188. {
  61189. name: "Small",
  61190. height: math.unit(500, "feet")
  61191. },
  61192. {
  61193. name: "Macro",
  61194. height: math.unit(4000, "feet")
  61195. },
  61196. {
  61197. name: "Mega Macro",
  61198. height: math.unit(2000, "miles")
  61199. },
  61200. {
  61201. name: "Giga Macro",
  61202. height: math.unit(3e6, "miles")
  61203. },
  61204. ]
  61205. ))
  61206. characterMakers.push(() => makeCharacter(
  61207. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61208. {
  61209. front: {
  61210. height: math.unit(3500, "solarradii"),
  61211. name: "Front",
  61212. image: {
  61213. source: "./media/characters/terigaia/front.svg",
  61214. extra: 1531/1451,
  61215. bottom: 98/1629
  61216. }
  61217. },
  61218. },
  61219. [
  61220. {
  61221. name: "Normal",
  61222. height: math.unit(3500, "solarradii"),
  61223. default: true
  61224. },
  61225. ]
  61226. ))
  61227. characterMakers.push(() => makeCharacter(
  61228. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61229. {
  61230. front: {
  61231. height: math.unit(9.34, "feet"),
  61232. weight: math.unit(600, "lb"),
  61233. name: "Front",
  61234. image: {
  61235. source: "./media/characters/blair-blaziken/front.svg",
  61236. extra: 1557/1462,
  61237. bottom: 55/1612
  61238. }
  61239. },
  61240. },
  61241. [
  61242. {
  61243. name: "Normal",
  61244. height: math.unit(9.34, "feet"),
  61245. default: true
  61246. },
  61247. ]
  61248. ))
  61249. characterMakers.push(() => makeCharacter(
  61250. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61251. {
  61252. pistrogre_front: {
  61253. height: math.unit(10, "feet"),
  61254. weight: math.unit(10, "tons"),
  61255. name: "Front",
  61256. image: {
  61257. source: "./media/characters/braxia/pistrogre-front.svg",
  61258. extra: 1531/1334,
  61259. bottom: 114/1645
  61260. },
  61261. form: "pistrogre",
  61262. default: true
  61263. },
  61264. human_front: {
  61265. height: math.unit(10, "feet"),
  61266. weight: math.unit(10, "tons"),
  61267. name: "Front",
  61268. image: {
  61269. source: "./media/characters/braxia/human-front.svg",
  61270. extra: 1574/1501,
  61271. bottom: 37/1611
  61272. },
  61273. form: "human",
  61274. default: true
  61275. },
  61276. },
  61277. [
  61278. {
  61279. name: "Normal",
  61280. height: math.unit(10, "feet"),
  61281. default: true,
  61282. allForms: true
  61283. },
  61284. {
  61285. name: "Macro",
  61286. height: math.unit(1000, "feet"),
  61287. allForms: true
  61288. },
  61289. {
  61290. name: "Mega Macro",
  61291. height: math.unit(100, "miles"),
  61292. allForms: true
  61293. },
  61294. {
  61295. name: "Cosmic",
  61296. height: math.unit(1000000, "lightyears"),
  61297. allForms: true
  61298. },
  61299. {
  61300. name: "ϐѮԆԬӁꭍϞԢ",
  61301. height: math.unit(1000, "multiverses"),
  61302. allForms: true
  61303. },
  61304. ],
  61305. {
  61306. "pistrogre": {
  61307. name: "Pistrogre",
  61308. default: true
  61309. },
  61310. "human": {
  61311. name: "Human",
  61312. },
  61313. }
  61314. ))
  61315. characterMakers.push(() => makeCharacter(
  61316. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61317. {
  61318. front: {
  61319. height: math.unit(6 + 1/12, "feet"),
  61320. weight: math.unit(280, "lb"),
  61321. name: "Front",
  61322. image: {
  61323. source: "./media/characters/kiriga-yato/front.svg",
  61324. extra: 445/394,
  61325. bottom: 11/456
  61326. }
  61327. },
  61328. },
  61329. [
  61330. {
  61331. name: "Descended",
  61332. height: math.unit(3, "feet")
  61333. },
  61334. {
  61335. name: "Average",
  61336. height: math.unit(6 + 1/12, "feet"),
  61337. default: true
  61338. },
  61339. {
  61340. name: "Ascended",
  61341. height: math.unit(9 + 2/12, "feet")
  61342. },
  61343. ]
  61344. ))
  61345. characterMakers.push(() => makeCharacter(
  61346. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61347. {
  61348. front: {
  61349. height: math.unit(6, "feet"),
  61350. weight: math.unit(150, "lb"),
  61351. name: "Front",
  61352. image: {
  61353. source: "./media/characters/kylie/front.svg",
  61354. extra: 1114/1046,
  61355. bottom: 65/1179
  61356. },
  61357. extraAttributes: {
  61358. "hoofSize": {
  61359. name: "Hoof Size",
  61360. power: 2,
  61361. type: "area",
  61362. base: math.unit(0.034, "m^2")
  61363. },
  61364. "footSize": {
  61365. name: "Foot Size",
  61366. power: 2,
  61367. type: "area",
  61368. base: math.unit(0.75, "m^2")
  61369. },
  61370. }
  61371. },
  61372. side: {
  61373. height: math.unit(6, "feet"),
  61374. weight: math.unit(150, "lb"),
  61375. name: "Side",
  61376. image: {
  61377. source: "./media/characters/kylie/side.svg",
  61378. extra: 1178/1110,
  61379. bottom: 21/1199
  61380. },
  61381. extraAttributes: {
  61382. "hoofSize": {
  61383. name: "Hoof Size",
  61384. power: 2,
  61385. type: "area",
  61386. base: math.unit(0.034, "m^2")
  61387. },
  61388. "footSize": {
  61389. name: "Foot Size",
  61390. power: 2,
  61391. type: "area",
  61392. base: math.unit(0.75, "m^2")
  61393. },
  61394. }
  61395. },
  61396. back: {
  61397. height: math.unit(6, "feet"),
  61398. weight: math.unit(150, "lb"),
  61399. name: "Back",
  61400. image: {
  61401. source: "./media/characters/kylie/back.svg",
  61402. extra: 1115/1047,
  61403. bottom: 66/1181
  61404. },
  61405. extraAttributes: {
  61406. "hoofSize": {
  61407. name: "Hoof Size",
  61408. power: 2,
  61409. type: "area",
  61410. base: math.unit(0.034, "m^2")
  61411. },
  61412. "footSize": {
  61413. name: "Foot Size",
  61414. power: 2,
  61415. type: "area",
  61416. base: math.unit(0.75, "m^2")
  61417. },
  61418. }
  61419. },
  61420. head: {
  61421. height: math.unit(1.85, "feet"),
  61422. name: "Head",
  61423. image: {
  61424. source: "./media/characters/kylie/head.svg"
  61425. }
  61426. },
  61427. },
  61428. [
  61429. {
  61430. name: "Normal",
  61431. height: math.unit(90, "meters"),
  61432. default: true
  61433. },
  61434. ]
  61435. ))
  61436. characterMakers.push(() => makeCharacter(
  61437. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61438. {
  61439. front: {
  61440. height: math.unit(245, "feet"),
  61441. weight: math.unit(400000, "lb"),
  61442. name: "Front",
  61443. image: {
  61444. source: "./media/characters/sabado/front.svg",
  61445. extra: 1309/1164,
  61446. bottom: 29/1338
  61447. }
  61448. },
  61449. },
  61450. [
  61451. {
  61452. name: "Normal",
  61453. height: math.unit(245, "feet"),
  61454. default: true
  61455. },
  61456. ]
  61457. ))
  61458. characterMakers.push(() => makeCharacter(
  61459. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  61460. {
  61461. shark_front: {
  61462. height: math.unit(2, "meters"),
  61463. weight: math.unit(200, "kg"),
  61464. name: "Front",
  61465. image: {
  61466. source: "./media/characters/zechal/shark-front.svg",
  61467. extra: 969/925,
  61468. bottom: 74/1043
  61469. },
  61470. form: "shark",
  61471. },
  61472. shark_back: {
  61473. height: math.unit(2, "meters"),
  61474. weight: math.unit(200, "kg"),
  61475. name: "Back",
  61476. image: {
  61477. source: "./media/characters/zechal/shark-back.svg",
  61478. extra: 994/949,
  61479. bottom: 176/1170
  61480. },
  61481. form: "shark",
  61482. },
  61483. shark_frontLewd: {
  61484. height: math.unit(2, "meters"),
  61485. weight: math.unit(200, "kg"),
  61486. name: "Front (Lewd)",
  61487. image: {
  61488. source: "./media/characters/zechal/shark-front-lewd.svg",
  61489. extra: 969/925,
  61490. bottom: 74/1043
  61491. },
  61492. form: "shark",
  61493. },
  61494. shark_side: {
  61495. height: math.unit(1.56, "meters"),
  61496. weight: math.unit(200, "kg"),
  61497. name: "Side",
  61498. image: {
  61499. source: "./media/characters/zechal/shark-side.svg"
  61500. },
  61501. form: "shark",
  61502. },
  61503. dragon_front: {
  61504. height: math.unit(2, "meters"),
  61505. weight: math.unit(200, "kg"),
  61506. name: "Front",
  61507. image: {
  61508. source: "./media/characters/zechal/dragon-front.svg",
  61509. extra: 1041/925,
  61510. bottom: 74/1115
  61511. },
  61512. form: "dragon",
  61513. },
  61514. dragon_back: {
  61515. height: math.unit(2, "meters"),
  61516. weight: math.unit(200, "kg"),
  61517. name: "Back",
  61518. image: {
  61519. source: "./media/characters/zechal/dragon-back.svg",
  61520. extra: 1061/949,
  61521. bottom: 176/1237
  61522. },
  61523. form: "dragon",
  61524. },
  61525. dragon_frontLewd: {
  61526. height: math.unit(2, "meters"),
  61527. weight: math.unit(200, "kg"),
  61528. name: "Front (Lewd)",
  61529. image: {
  61530. source: "./media/characters/zechal/dragon-front-lewd.svg",
  61531. extra: 1041/925,
  61532. bottom: 74/1115
  61533. },
  61534. form: "dragon",
  61535. },
  61536. dragon_side: {
  61537. height: math.unit(1.56, "meters"),
  61538. weight: math.unit(200, "kg"),
  61539. name: "Side",
  61540. image: {
  61541. source: "./media/characters/zechal/dragon-side.svg"
  61542. },
  61543. form: "dragon",
  61544. },
  61545. foot: {
  61546. height: math.unit(0.5, "meters"),
  61547. name: "Foot",
  61548. image: {
  61549. source: "./media/characters/zechal/foot.svg"
  61550. }
  61551. },
  61552. sheathFront: {
  61553. height: math.unit(0.45, "meters"),
  61554. name: "Sheath (Front)",
  61555. image: {
  61556. source: "./media/characters/zechal/sheath-front.svg"
  61557. }
  61558. },
  61559. sheathSide: {
  61560. height: math.unit(0.45, "meters"),
  61561. name: "Sheath (Side)",
  61562. image: {
  61563. source: "./media/characters/zechal/sheath-side.svg"
  61564. }
  61565. },
  61566. },
  61567. [
  61568. {
  61569. name: "Incognito",
  61570. height: math.unit(2, "meters"),
  61571. allForms: true
  61572. },
  61573. {
  61574. name: "Small Rampage",
  61575. height: math.unit(25, "meters"),
  61576. allForms: true
  61577. },
  61578. {
  61579. name: "Home Size",
  61580. height: math.unit(250, "meters"),
  61581. allForms: true,
  61582. default: true
  61583. },
  61584. {
  61585. name: "Macro+",
  61586. height: math.unit(700, "meters"),
  61587. allForms: true
  61588. },
  61589. {
  61590. name: "Small Mega",
  61591. height: math.unit(3, "km"),
  61592. allForms: true
  61593. },
  61594. {
  61595. name: "Mega",
  61596. height: math.unit(15, "km"),
  61597. allForms: true
  61598. },
  61599. {
  61600. name: "Giga",
  61601. height: math.unit(300, "km"),
  61602. allForms: true
  61603. },
  61604. {
  61605. name: "Giga+",
  61606. height: math.unit(1750, "km"),
  61607. allForms: true
  61608. },
  61609. {
  61610. name: "Continental",
  61611. height: math.unit(5000, "km"),
  61612. allForms: true
  61613. },
  61614. {
  61615. name: "Terra",
  61616. height: math.unit(20000, "km"),
  61617. allForms: true
  61618. },
  61619. {
  61620. name: "Terra+",
  61621. height: math.unit(300000, "km"),
  61622. allForms: true
  61623. },
  61624. {
  61625. name: "Solar",
  61626. height: math.unit(40000000, "km"),
  61627. allForms: true
  61628. },
  61629. {
  61630. name: "Galactic",
  61631. height: math.unit(810133, "parsecs"),
  61632. allForms: true
  61633. },
  61634. {
  61635. name: "Universal",
  61636. height: math.unit(25, "universes"),
  61637. allForms: true
  61638. },
  61639. ],
  61640. {
  61641. "shark": {
  61642. name: "Shark",
  61643. default: true
  61644. },
  61645. "dragon": {
  61646. name: "Dragon",
  61647. },
  61648. }
  61649. ))
  61650. characterMakers.push(() => makeCharacter(
  61651. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  61652. {
  61653. front: {
  61654. height: math.unit(2.2, "meters"),
  61655. weight: math.unit(150, "kg"),
  61656. name: "Front",
  61657. image: {
  61658. source: "./media/characters/sergis/front.svg",
  61659. extra: 1314/1312,
  61660. bottom: 112/1426
  61661. }
  61662. },
  61663. back: {
  61664. height: math.unit(2.2, "meters"),
  61665. weight: math.unit(150, "kg"),
  61666. name: "Back",
  61667. image: {
  61668. source: "./media/characters/sergis/back.svg",
  61669. extra: 1335/1333,
  61670. bottom: 19/1354
  61671. }
  61672. },
  61673. frontLewd: {
  61674. height: math.unit(2.2, "meters"),
  61675. weight: math.unit(150, "kg"),
  61676. name: "Front (Lewd)",
  61677. image: {
  61678. source: "./media/characters/sergis/front-lewd.svg",
  61679. extra: 1314/1312,
  61680. bottom: 112/1426
  61681. }
  61682. },
  61683. frontDressed: {
  61684. height: math.unit(2.2, "meters"),
  61685. weight: math.unit(150, "kg"),
  61686. name: "Front (Dressed)",
  61687. image: {
  61688. source: "./media/characters/sergis/front-dressed.svg",
  61689. extra: 1330/1328,
  61690. bottom: 95/1425
  61691. }
  61692. },
  61693. frontDressedLewd: {
  61694. height: math.unit(2.2, "meters"),
  61695. weight: math.unit(150, "kg"),
  61696. name: "Front (Dressed, Lewd)",
  61697. image: {
  61698. source: "./media/characters/sergis/front-dressed-lewd.svg",
  61699. extra: 1330/1328,
  61700. bottom: 95/1425
  61701. }
  61702. },
  61703. maw: {
  61704. height: math.unit(0.48, "meters"),
  61705. name: "Maw",
  61706. image: {
  61707. source: "./media/characters/sergis/maw.svg"
  61708. }
  61709. },
  61710. sheath: {
  61711. height: math.unit(0.38, "meters"),
  61712. name: "Sheath",
  61713. image: {
  61714. source: "./media/characters/sergis/sheath.svg"
  61715. }
  61716. },
  61717. },
  61718. [
  61719. {
  61720. name: "Incognito Size",
  61721. height: math.unit(2.2, "meters")
  61722. },
  61723. {
  61724. name: "Small Macro",
  61725. height: math.unit(40, "meters")
  61726. },
  61727. {
  61728. name: "Macro",
  61729. height: math.unit(150, "meters")
  61730. },
  61731. {
  61732. name: "Macro+",
  61733. height: math.unit(300, "meters")
  61734. },
  61735. {
  61736. name: "Mega",
  61737. height: math.unit(2.5, "km")
  61738. },
  61739. {
  61740. name: "Mega+",
  61741. height: math.unit(30, "km")
  61742. },
  61743. {
  61744. name: "Home Size",
  61745. height: math.unit(300, "km"),
  61746. default: true
  61747. },
  61748. {
  61749. name: "Giga+",
  61750. height: math.unit(1000, "km")
  61751. },
  61752. {
  61753. name: "Giga++",
  61754. height: math.unit(6000, "km")
  61755. },
  61756. {
  61757. name: "Terra",
  61758. height: math.unit(70000, "km")
  61759. },
  61760. {
  61761. name: "Terra+",
  61762. height: math.unit(200000, "km")
  61763. },
  61764. {
  61765. name: "Galactic",
  61766. height: math.unit(634200, "lightyears")
  61767. },
  61768. ]
  61769. ))
  61770. characterMakers.push(() => makeCharacter(
  61771. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  61772. {
  61773. standard: {
  61774. height: math.unit(1 + 5/12, "feet"),
  61775. name: "Standard",
  61776. image: {
  61777. source: "./media/characters/spade/standard.svg",
  61778. extra: 1794/1703,
  61779. bottom: 115/1909
  61780. }
  61781. },
  61782. disguised: {
  61783. height: math.unit(1 + 5/12, "feet"),
  61784. name: "Disguised",
  61785. image: {
  61786. source: "./media/characters/spade/disguised.svg",
  61787. extra: 1794/1700,
  61788. bottom: 98/1892
  61789. }
  61790. },
  61791. },
  61792. [
  61793. {
  61794. name: "Normal",
  61795. height: math.unit(1 + 5/12, "feet"),
  61796. default: true
  61797. },
  61798. ]
  61799. ))
  61800. characterMakers.push(() => makeCharacter(
  61801. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  61802. {
  61803. frontNsfw: {
  61804. height: math.unit(5, "meters"),
  61805. weight: math.unit(2000, "kg"),
  61806. preyCapacity: math.unit(5, "people"),
  61807. name: "Front (NSFW)",
  61808. image: {
  61809. source: "./media/characters/zeanlain/front-nsfw.svg",
  61810. extra: 1087/938,
  61811. bottom: 93/1180
  61812. },
  61813. extraAttributes: {
  61814. "wingspan": {
  61815. name: "Wingspan",
  61816. power: 1,
  61817. type: "length",
  61818. base: math.unit(10, "meters")
  61819. },
  61820. "footSize": {
  61821. name: "Foot Size",
  61822. power: 1,
  61823. type: "length",
  61824. base: math.unit(0.68, "meters")
  61825. },
  61826. "cockLength": {
  61827. name: "Cock Length",
  61828. power: 1,
  61829. type: "length",
  61830. base: math.unit(1.69, "meters")
  61831. },
  61832. "ballVolume": {
  61833. name: "Ball Volume",
  61834. power: 3,
  61835. type: "volume",
  61836. base: math.unit(0.028, "m^3")
  61837. },
  61838. }
  61839. },
  61840. front: {
  61841. height: math.unit(5, "meters"),
  61842. weight: math.unit(2000, "kg"),
  61843. preyCapacity: math.unit(3, "people"),
  61844. name: "Front",
  61845. image: {
  61846. source: "./media/characters/zeanlain/front.svg",
  61847. extra: 1087/938,
  61848. bottom: 93/1180
  61849. },
  61850. extraAttributes: {
  61851. "wingspan": {
  61852. name: "Wingspan",
  61853. power: 1,
  61854. type: "length",
  61855. base: math.unit(10, "meters")
  61856. },
  61857. "footSize": {
  61858. name: "Foot Size",
  61859. power: 1,
  61860. type: "length",
  61861. base: math.unit(0.68, "meters")
  61862. },
  61863. }
  61864. },
  61865. },
  61866. [
  61867. {
  61868. name: "Normal",
  61869. height: math.unit(5, "meters"),
  61870. default: true
  61871. },
  61872. ]
  61873. ))
  61874. characterMakers.push(() => makeCharacter(
  61875. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  61876. {
  61877. front: {
  61878. height: math.unit(10, "meters"),
  61879. weight: math.unit(250000, "kg"),
  61880. name: "Front",
  61881. image: {
  61882. source: "./media/characters/airamis/front.svg",
  61883. extra: 865/835,
  61884. bottom: 13/878
  61885. }
  61886. },
  61887. },
  61888. [
  61889. {
  61890. name: "Normal",
  61891. height: math.unit(10, "meters"),
  61892. default: true
  61893. },
  61894. ]
  61895. ))
  61896. characterMakers.push(() => makeCharacter(
  61897. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  61898. {
  61899. front: {
  61900. height: math.unit(3 + 3/12, "feet"),
  61901. weight: math.unit(75, "lb"),
  61902. name: "Front",
  61903. image: {
  61904. source: "./media/characters/corra-tourmaline/front.svg",
  61905. extra: 1037/864,
  61906. bottom: 39/1076
  61907. }
  61908. },
  61909. back: {
  61910. height: math.unit(3 + 3/12, "feet"),
  61911. weight: math.unit(75, "lb"),
  61912. name: "Back",
  61913. image: {
  61914. source: "./media/characters/corra-tourmaline/back.svg",
  61915. extra: 1022/849,
  61916. bottom: 26/1048
  61917. }
  61918. },
  61919. dressed: {
  61920. height: math.unit(3 + 3/12, "feet"),
  61921. weight: math.unit(75, "lb"),
  61922. name: "Dressed",
  61923. image: {
  61924. source: "./media/characters/corra-tourmaline/dressed.svg",
  61925. extra: 1037/864,
  61926. bottom: 39/1076
  61927. }
  61928. },
  61929. beans: {
  61930. height: math.unit(0.37, "feet"),
  61931. name: "Beans",
  61932. image: {
  61933. source: "./media/characters/corra-tourmaline/beans.svg"
  61934. }
  61935. },
  61936. },
  61937. [
  61938. {
  61939. name: "Normal",
  61940. height: math.unit(3 + 3/12, "feet"),
  61941. default: true
  61942. },
  61943. {
  61944. name: "Macro",
  61945. height: math.unit(32, "feet")
  61946. },
  61947. ]
  61948. ))
  61949. characterMakers.push(() => makeCharacter(
  61950. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  61951. {
  61952. front: {
  61953. height: math.unit(6 + 2/12, "feet"),
  61954. weight: math.unit(203, "lb"),
  61955. name: "Front",
  61956. image: {
  61957. source: "./media/characters/maki-kawa/front.svg",
  61958. extra: 950/890,
  61959. bottom: 62/1012
  61960. }
  61961. },
  61962. back: {
  61963. height: math.unit(6 + 2/12, "feet"),
  61964. weight: math.unit(203, "lb"),
  61965. name: "Back",
  61966. image: {
  61967. source: "./media/characters/maki-kawa/back.svg",
  61968. extra: 953/878,
  61969. bottom: 49/1002
  61970. }
  61971. },
  61972. frontBarista: {
  61973. height: math.unit(6 + 2/12, "feet"),
  61974. weight: math.unit(203, "lb"),
  61975. name: "Front (Barista)",
  61976. image: {
  61977. source: "./media/characters/maki-kawa/front-barista.svg",
  61978. extra: 943/883,
  61979. bottom: 69/1012
  61980. }
  61981. },
  61982. backBarista: {
  61983. height: math.unit(6 + 2/12, "feet"),
  61984. weight: math.unit(203, "lb"),
  61985. name: "Back (Barista)",
  61986. image: {
  61987. source: "./media/characters/maki-kawa/back-barista.svg",
  61988. extra: 953/878,
  61989. bottom: 49/1002
  61990. }
  61991. },
  61992. frontWrestler: {
  61993. height: math.unit(6 + 2/12, "feet"),
  61994. weight: math.unit(203, "lb"),
  61995. name: "Front (Wrestler)",
  61996. image: {
  61997. source: "./media/characters/maki-kawa/front-wrestler.svg",
  61998. extra: 950/890,
  61999. bottom: 62/1012
  62000. }
  62001. },
  62002. backWrestler: {
  62003. height: math.unit(6 + 2/12, "feet"),
  62004. weight: math.unit(203, "lb"),
  62005. name: "Back (Wrestler)",
  62006. image: {
  62007. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62008. extra: 953/878,
  62009. bottom: 49/1002
  62010. }
  62011. },
  62012. headFront: {
  62013. height: math.unit(1.64, "feet"),
  62014. name: "Head (Front)",
  62015. image: {
  62016. source: "./media/characters/maki-kawa/head-front.svg"
  62017. }
  62018. },
  62019. headSide: {
  62020. height: math.unit(1.59, "feet"),
  62021. name: "Head (Side)",
  62022. image: {
  62023. source: "./media/characters/maki-kawa/head-side.svg"
  62024. }
  62025. },
  62026. paw: {
  62027. height: math.unit(0.9, "feet"),
  62028. name: "Paw",
  62029. image: {
  62030. source: "./media/characters/maki-kawa/paw.svg"
  62031. }
  62032. },
  62033. },
  62034. [
  62035. {
  62036. name: "Normal",
  62037. height: math.unit(6 + 2/12, "feet"),
  62038. default: true
  62039. },
  62040. {
  62041. name: "Macro",
  62042. height: math.unit(617, "feet")
  62043. },
  62044. ]
  62045. ))
  62046. characterMakers.push(() => makeCharacter(
  62047. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62048. {
  62049. front: {
  62050. height: math.unit(10, "feet"),
  62051. weight: math.unit(1500, "lb"),
  62052. name: "Front",
  62053. image: {
  62054. source: "./media/characters/lennox/front.svg",
  62055. extra: 1623/1496,
  62056. bottom: 18/1641
  62057. }
  62058. },
  62059. back: {
  62060. height: math.unit(10, "feet"),
  62061. weight: math.unit(1500, "lb"),
  62062. name: "Back",
  62063. image: {
  62064. source: "./media/characters/lennox/back.svg",
  62065. extra: 1641/1481,
  62066. bottom: 13/1654
  62067. }
  62068. },
  62069. maw: {
  62070. height: math.unit(2.94, "feet"),
  62071. name: "Maw",
  62072. image: {
  62073. source: "./media/characters/lennox/maw.svg"
  62074. }
  62075. },
  62076. },
  62077. [
  62078. {
  62079. name: "Micro",
  62080. height: math.unit(1, "inch")
  62081. },
  62082. {
  62083. name: "Normal",
  62084. height: math.unit(10, "feet"),
  62085. default: true
  62086. },
  62087. {
  62088. name: "Macro",
  62089. height: math.unit(200, "feet")
  62090. },
  62091. ]
  62092. ))
  62093. characterMakers.push(() => makeCharacter(
  62094. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62095. {
  62096. frontDressed: {
  62097. height: math.unit(15 + 7/12, "feet"),
  62098. weight: math.unit(5000, "lb"),
  62099. name: "Front (Dressed)",
  62100. image: {
  62101. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62102. extra: 1136/1023,
  62103. bottom: 51/1187
  62104. }
  62105. },
  62106. backDressed: {
  62107. height: math.unit(15 + 7/12, "feet"),
  62108. weight: math.unit(5000, "lb"),
  62109. name: "Back (Dressed)",
  62110. image: {
  62111. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62112. extra: 2359/2143,
  62113. bottom: 103/2462
  62114. }
  62115. },
  62116. front: {
  62117. height: math.unit(15 + 7/12, "feet"),
  62118. weight: math.unit(5000, "lb"),
  62119. name: "Front",
  62120. image: {
  62121. source: "./media/characters/vyse-iron-thunder/front.svg",
  62122. extra: 1136/1023,
  62123. bottom: 51/1187
  62124. }
  62125. },
  62126. hand: {
  62127. height: math.unit(2.36, "feet"),
  62128. name: "Hand",
  62129. image: {
  62130. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62131. }
  62132. },
  62133. foot: {
  62134. height: math.unit(1.72, "feet"),
  62135. name: "Foot",
  62136. image: {
  62137. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62138. }
  62139. },
  62140. mouth: {
  62141. height: math.unit(2, "feet"),
  62142. name: "Mouth",
  62143. image: {
  62144. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62145. }
  62146. },
  62147. eye: {
  62148. height: math.unit(0.58, "feet"),
  62149. name: "Eye",
  62150. image: {
  62151. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62152. }
  62153. },
  62154. },
  62155. [
  62156. {
  62157. name: "Normal",
  62158. height: math.unit(15 + 7/12, "feet"),
  62159. default: true
  62160. },
  62161. {
  62162. name: "Macro",
  62163. height: math.unit(157, "feet")
  62164. },
  62165. {
  62166. name: "Macro+",
  62167. height: math.unit(1570, "feet")
  62168. },
  62169. {
  62170. name: "Macro++",
  62171. height: math.unit(15700, "feet")
  62172. },
  62173. {
  62174. name: "Macro+++",
  62175. height: math.unit(157000, "feet")
  62176. },
  62177. {
  62178. name: "Macro++++",
  62179. height: math.unit(1570000, "feet")
  62180. },
  62181. ]
  62182. ))
  62183. characterMakers.push(() => makeCharacter(
  62184. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62185. {
  62186. side: {
  62187. height: math.unit(6, "feet"),
  62188. weight: math.unit(115, "lb"),
  62189. name: "Side",
  62190. image: {
  62191. source: "./media/characters/moonbeam/side.svg",
  62192. extra: 839/485,
  62193. bottom: 60/899
  62194. }
  62195. },
  62196. },
  62197. [
  62198. {
  62199. name: "Normal",
  62200. height: math.unit(6, "feet"),
  62201. default: true
  62202. },
  62203. ]
  62204. ))
  62205. characterMakers.push(() => makeCharacter(
  62206. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62207. {
  62208. front: {
  62209. height: math.unit(3500, "miles"),
  62210. weight: math.unit(1659, "petatonnes"),
  62211. name: "Front",
  62212. image: {
  62213. source: "./media/characters/baltica/front.svg",
  62214. extra: 429/428,
  62215. bottom: 41/470
  62216. }
  62217. },
  62218. back: {
  62219. height: math.unit(3500, "miles"),
  62220. weight: math.unit(1659, "petatonnes"),
  62221. name: "Back",
  62222. image: {
  62223. source: "./media/characters/baltica/back.svg",
  62224. extra: 452/451,
  62225. bottom: 8/460
  62226. }
  62227. },
  62228. },
  62229. [
  62230. {
  62231. name: "Gigamacro",
  62232. height: math.unit(3500, "miles"),
  62233. default: true
  62234. },
  62235. ]
  62236. ))
  62237. characterMakers.push(() => makeCharacter(
  62238. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62239. {
  62240. front: {
  62241. height: math.unit(6 + 10/12, "feet"),
  62242. weight: math.unit(200, "lb"),
  62243. name: "Front",
  62244. image: {
  62245. source: "./media/characters/shadow-wolf/front.svg",
  62246. extra: 1931/1760,
  62247. bottom: 88/2019
  62248. }
  62249. },
  62250. },
  62251. [
  62252. {
  62253. name: "Normal",
  62254. height: math.unit(6 + 10/12, "feet"),
  62255. default: true
  62256. },
  62257. ]
  62258. ))
  62259. characterMakers.push(() => makeCharacter(
  62260. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62261. {
  62262. front: {
  62263. height: math.unit(5 + 10/12, "feet"),
  62264. name: "Front",
  62265. image: {
  62266. source: "./media/characters/quincy-praying-mantis/front.svg",
  62267. extra: 1055/891,
  62268. bottom: 92/1147
  62269. }
  62270. },
  62271. soles: {
  62272. height: math.unit(0.85, "feet"),
  62273. name: "Soles",
  62274. image: {
  62275. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62276. extra: 429/324,
  62277. bottom: 89/518
  62278. },
  62279. extraAttributes: {
  62280. "shoeSize": {
  62281. name: "Shoe Size",
  62282. power: 1,
  62283. type: "length",
  62284. base: math.unit(23, "ShoeSizeMensUS"),
  62285. defaultUnit: "ShoeSizeMensUS"
  62286. },
  62287. }
  62288. },
  62289. foot: {
  62290. height: math.unit(0.72, "feet"),
  62291. name: "Foot",
  62292. image: {
  62293. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62294. extra: 349/349,
  62295. bottom: 76/425
  62296. }
  62297. },
  62298. },
  62299. [
  62300. {
  62301. name: "Normal",
  62302. height: math.unit(5 + 10/12, "feet"),
  62303. default: true
  62304. },
  62305. ]
  62306. ))
  62307. characterMakers.push(() => makeCharacter(
  62308. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62309. {
  62310. front: {
  62311. height: math.unit(6, "feet"),
  62312. name: "Front",
  62313. image: {
  62314. source: "./media/characters/christopher-redwood/front.svg",
  62315. extra: 1402/1341,
  62316. bottom: 23/1425
  62317. }
  62318. },
  62319. back: {
  62320. height: math.unit(6, "feet"),
  62321. name: "Back",
  62322. image: {
  62323. source: "./media/characters/christopher-redwood/back.svg",
  62324. extra: 1406/1345,
  62325. bottom: 36/1442
  62326. }
  62327. },
  62328. head: {
  62329. height: math.unit(1.685, "feet"),
  62330. name: "Head",
  62331. image: {
  62332. source: "./media/characters/christopher-redwood/head.svg"
  62333. }
  62334. },
  62335. },
  62336. [
  62337. {
  62338. name: "Normal",
  62339. height: math.unit(6, "feet"),
  62340. default: true
  62341. },
  62342. ]
  62343. ))
  62344. characterMakers.push(() => makeCharacter(
  62345. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  62346. {
  62347. front: {
  62348. height: math.unit(1.9, "meters"),
  62349. weight: math.unit(140, "lb"),
  62350. name: "Front",
  62351. image: {
  62352. source: "./media/characters/kara-fox/front.svg",
  62353. extra: 766/711,
  62354. bottom: 41/807
  62355. }
  62356. },
  62357. back: {
  62358. height: math.unit(1.9, "meters"),
  62359. weight: math.unit(140, "lb"),
  62360. name: "Back",
  62361. image: {
  62362. source: "./media/characters/kara-fox/back.svg",
  62363. extra: 766/596,
  62364. bottom: 29/795
  62365. }
  62366. },
  62367. maw: {
  62368. height: math.unit(0.78, "feet"),
  62369. name: "Maw",
  62370. image: {
  62371. source: "./media/characters/kara-fox/maw.svg"
  62372. }
  62373. },
  62374. pawpads: {
  62375. height: math.unit(0.96, "feet"),
  62376. name: "Pawpads",
  62377. image: {
  62378. source: "./media/characters/kara-fox/pawpads.svg"
  62379. }
  62380. },
  62381. },
  62382. [
  62383. {
  62384. name: "Normal",
  62385. height: math.unit(1.9, "meters"),
  62386. default: true
  62387. },
  62388. {
  62389. name: "Giantess",
  62390. height: math.unit(80, "meters")
  62391. },
  62392. ]
  62393. ))
  62394. characterMakers.push(() => makeCharacter(
  62395. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  62396. {
  62397. front: {
  62398. height: math.unit(12, "feet"),
  62399. name: "Front",
  62400. image: {
  62401. source: "./media/characters/naomi-espeon/front.svg",
  62402. extra: 892/797,
  62403. bottom: 5/897
  62404. }
  62405. },
  62406. back: {
  62407. height: math.unit(12, "feet"),
  62408. name: "Back",
  62409. image: {
  62410. source: "./media/characters/naomi-espeon/back.svg",
  62411. extra: 890/785,
  62412. bottom: 12/902
  62413. }
  62414. },
  62415. },
  62416. [
  62417. {
  62418. name: "Normal",
  62419. height: math.unit(12, "feet"),
  62420. default: true
  62421. },
  62422. ]
  62423. ))
  62424. characterMakers.push(() => makeCharacter(
  62425. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  62426. {
  62427. anthro_front: {
  62428. height: math.unit(8, "feet"),
  62429. weight: math.unit(625, "lb"),
  62430. name: "Front",
  62431. image: {
  62432. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  62433. extra: 638/574,
  62434. bottom: 73/711
  62435. },
  62436. form: "anthro",
  62437. default: true
  62438. },
  62439. anthro_back: {
  62440. height: math.unit(8, "feet"),
  62441. weight: math.unit(625, "lb"),
  62442. name: "Back",
  62443. image: {
  62444. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  62445. extra: 674/614,
  62446. bottom: 7/681
  62447. },
  62448. form: "anthro",
  62449. },
  62450. taur_side: {
  62451. height: math.unit(16, "feet"),
  62452. weight: math.unit(4.5, "tons"),
  62453. name: "Side",
  62454. image: {
  62455. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  62456. extra: 704/646,
  62457. bottom: 132/836
  62458. },
  62459. form: "taur",
  62460. default: true
  62461. },
  62462. },
  62463. [
  62464. {
  62465. name: "Normal",
  62466. height: math.unit(8, "feet"),
  62467. default: true,
  62468. form: "anthro"
  62469. },
  62470. {
  62471. name: "Normal",
  62472. height: math.unit(16, "feet"),
  62473. default: true,
  62474. form: "taur"
  62475. },
  62476. ],
  62477. {
  62478. "anthro": {
  62479. name: "Anthro",
  62480. default: true
  62481. },
  62482. "taur": {
  62483. name: "Taur",
  62484. },
  62485. }
  62486. ))
  62487. characterMakers.push(() => makeCharacter(
  62488. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  62489. {
  62490. front: {
  62491. height: math.unit(190, "cm"),
  62492. weight: math.unit(110, "kg"),
  62493. name: "Front",
  62494. image: {
  62495. source: "./media/characters/amelie/front.svg",
  62496. extra: 530/442,
  62497. bottom: 35/565
  62498. }
  62499. },
  62500. },
  62501. [
  62502. {
  62503. name: "Normal",
  62504. height: math.unit(190, "cm"),
  62505. default: true
  62506. },
  62507. ]
  62508. ))
  62509. characterMakers.push(() => makeCharacter(
  62510. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  62511. {
  62512. front: {
  62513. height: math.unit(21, "feet"),
  62514. weight: math.unit(30000, "lb"),
  62515. name: "Front",
  62516. image: {
  62517. source: "./media/characters/valence/front.svg",
  62518. extra: 1430/1306,
  62519. bottom: 51/1481
  62520. }
  62521. },
  62522. },
  62523. [
  62524. {
  62525. name: "Normal",
  62526. height: math.unit(21, "feet"),
  62527. default: true
  62528. },
  62529. ]
  62530. ))
  62531. characterMakers.push(() => makeCharacter(
  62532. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  62533. {
  62534. front: {
  62535. height: math.unit(5 + 9/12, "feet"),
  62536. weight: math.unit(170, "lb"),
  62537. name: "Front",
  62538. image: {
  62539. source: "./media/characters/aurora-adkins/front.svg",
  62540. extra: 1141/1089,
  62541. bottom: 41/1182
  62542. }
  62543. },
  62544. },
  62545. [
  62546. {
  62547. name: "Tiny",
  62548. height: math.unit(7, "mm")
  62549. },
  62550. {
  62551. name: "Small",
  62552. height: math.unit(3.4, "inches")
  62553. },
  62554. {
  62555. name: "Normal",
  62556. height: math.unit(5 + 9/12, "feet"),
  62557. default: true
  62558. },
  62559. {
  62560. name: "Big",
  62561. height: math.unit(31, "feet")
  62562. },
  62563. {
  62564. name: "Giant",
  62565. height: math.unit(300, "feet")
  62566. },
  62567. ]
  62568. ))
  62569. characterMakers.push(() => makeCharacter(
  62570. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  62571. {
  62572. front: {
  62573. height: math.unit(5 + 6/12, "feet"),
  62574. weight: math.unit(210, "lb"),
  62575. name: "Front",
  62576. image: {
  62577. source: "./media/characters/cyber/front.svg",
  62578. extra: 1968/1798,
  62579. bottom: 10/1978
  62580. },
  62581. extraAttributes: {
  62582. "shoeSize": {
  62583. name: "Shoe Size",
  62584. power: 1,
  62585. type: "length",
  62586. base: math.unit(30, "ShoeSizeMensUS")
  62587. },
  62588. }
  62589. },
  62590. },
  62591. [
  62592. {
  62593. name: "Normal",
  62594. height: math.unit(5 + 6/12, "feet"),
  62595. default: true
  62596. },
  62597. ]
  62598. ))
  62599. characterMakers.push(() => makeCharacter(
  62600. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  62601. {
  62602. front: {
  62603. height: math.unit(6 + 6/12, "feet"),
  62604. weight: math.unit(140, "lb"),
  62605. name: "Front",
  62606. image: {
  62607. source: "./media/characters/sapphire-wairimea/front.svg",
  62608. extra: 475/458,
  62609. bottom: 14/489
  62610. }
  62611. },
  62612. },
  62613. [
  62614. {
  62615. name: "Normal",
  62616. height: math.unit(6 + 6/12, "feet")
  62617. },
  62618. {
  62619. name: "Macro",
  62620. height: math.unit(132, "feet"),
  62621. default: true
  62622. },
  62623. ]
  62624. ))
  62625. characterMakers.push(() => makeCharacter(
  62626. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  62627. {
  62628. front: {
  62629. height: math.unit(1.6, "meters"),
  62630. weight: math.unit(100, "lb"),
  62631. name: "Front",
  62632. image: {
  62633. source: "./media/characters/cirkazi/front.svg",
  62634. extra: 489/477,
  62635. bottom: 0/489
  62636. }
  62637. },
  62638. },
  62639. [
  62640. {
  62641. name: "Normal",
  62642. height: math.unit(1.6, "meters")
  62643. },
  62644. {
  62645. name: "Macro",
  62646. height: math.unit(800, "feet"),
  62647. default: true
  62648. },
  62649. ]
  62650. ))
  62651. characterMakers.push(() => makeCharacter(
  62652. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  62653. {
  62654. front: {
  62655. height: math.unit(5 + 10/12, "feet"),
  62656. weight: math.unit(145, "lb"),
  62657. name: "Front",
  62658. image: {
  62659. source: "./media/characters/corrin-cavelli/front.svg",
  62660. extra: 483/464,
  62661. bottom: 6/489
  62662. }
  62663. },
  62664. },
  62665. [
  62666. {
  62667. name: "Human",
  62668. height: math.unit(5 + 10/12, "feet")
  62669. },
  62670. {
  62671. name: "Giant",
  62672. height: math.unit(210, "feet"),
  62673. default: true
  62674. },
  62675. ]
  62676. ))
  62677. characterMakers.push(() => makeCharacter(
  62678. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  62679. {
  62680. back: {
  62681. height: math.unit(5 + 6/12, "feet"),
  62682. weight: math.unit(115, "lb"),
  62683. name: "Back",
  62684. image: {
  62685. source: "./media/characters/lori-lopez/back.svg",
  62686. extra: 483/474,
  62687. bottom: 6/489
  62688. }
  62689. },
  62690. },
  62691. [
  62692. {
  62693. name: "Human",
  62694. height: math.unit(5 + 6/12, "feet")
  62695. },
  62696. {
  62697. name: "Macro",
  62698. height: math.unit(198, "feet"),
  62699. default: true
  62700. },
  62701. ]
  62702. ))
  62703. characterMakers.push(() => makeCharacter(
  62704. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  62705. {
  62706. front: {
  62707. height: math.unit(6, "feet"),
  62708. weight: math.unit(220, "lb"),
  62709. name: "Front",
  62710. image: {
  62711. source: "./media/characters/sylvia-beauregard/front.svg",
  62712. extra: 483/479,
  62713. bottom: 6/489
  62714. }
  62715. },
  62716. },
  62717. [
  62718. {
  62719. name: "Macro",
  62720. height: math.unit(2071, "feet"),
  62721. default: true
  62722. },
  62723. ]
  62724. ))
  62725. characterMakers.push(() => makeCharacter(
  62726. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  62727. {
  62728. back: {
  62729. height: math.unit(5 + 6/12, "feet"),
  62730. weight: math.unit(160, "lb"),
  62731. name: "Back",
  62732. image: {
  62733. source: "./media/characters/akiko-takahashi/back.svg",
  62734. extra: 459/454,
  62735. bottom: 27/486
  62736. }
  62737. },
  62738. },
  62739. [
  62740. {
  62741. name: "Human",
  62742. height: math.unit(5 + 6/12, "feet")
  62743. },
  62744. {
  62745. name: "Macro",
  62746. height: math.unit(198, "feet"),
  62747. default: true
  62748. },
  62749. {
  62750. name: "Megamacro",
  62751. height: math.unit(7128, "feet")
  62752. },
  62753. ]
  62754. ))
  62755. characterMakers.push(() => makeCharacter(
  62756. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  62757. {
  62758. front: {
  62759. height: math.unit(6, "feet"),
  62760. weight: math.unit(140, "lb"),
  62761. name: "Front",
  62762. image: {
  62763. source: "./media/characters/velvet-garza/front.svg",
  62764. extra: 480/462,
  62765. bottom: 7/487
  62766. }
  62767. },
  62768. },
  62769. [
  62770. {
  62771. name: "Macro",
  62772. height: math.unit(37, "feet"),
  62773. default: true
  62774. },
  62775. ]
  62776. ))
  62777. characterMakers.push(() => makeCharacter(
  62778. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  62779. {
  62780. front: {
  62781. height: math.unit(7 + 6/12, "feet"),
  62782. weight: math.unit(400, "lb"),
  62783. name: "Front",
  62784. image: {
  62785. source: "./media/characters/gaia/front.svg",
  62786. extra: 474/463,
  62787. bottom: 13/487
  62788. }
  62789. },
  62790. },
  62791. [
  62792. {
  62793. name: "MiniMacro",
  62794. height: math.unit(7 + 6/12, "feet")
  62795. },
  62796. {
  62797. name: "GigaMacro",
  62798. height: math.unit(14500, "feet"),
  62799. default: true
  62800. },
  62801. ]
  62802. ))
  62803. characterMakers.push(() => makeCharacter(
  62804. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  62805. {
  62806. front: {
  62807. height: math.unit(6, "feet"),
  62808. weight: math.unit(150, "lb"),
  62809. name: "Front",
  62810. image: {
  62811. source: "./media/characters/tim/front.svg",
  62812. extra: 1878/1743,
  62813. bottom: 9/1887
  62814. }
  62815. },
  62816. frontDressed: {
  62817. height: math.unit(6, "feet"),
  62818. weight: math.unit(150, "lb"),
  62819. name: "Front (Dressed)",
  62820. image: {
  62821. source: "./media/characters/tim/front-dressed.svg",
  62822. extra: 1765/1485,
  62823. bottom: 48/1813
  62824. }
  62825. },
  62826. backDressed: {
  62827. height: math.unit(6, "feet"),
  62828. weight: math.unit(150, "lb"),
  62829. name: "Back (Dressed)",
  62830. image: {
  62831. source: "./media/characters/tim/back-dressed.svg",
  62832. extra: 1750/1465,
  62833. bottom: 25/1775
  62834. }
  62835. },
  62836. dick: {
  62837. height: math.unit(1.5, "feet"),
  62838. weight: math.unit(6, "lb"),
  62839. name: "Dick",
  62840. image: {
  62841. source: "./media/characters/tim/dick.svg"
  62842. }
  62843. },
  62844. hand: {
  62845. height: math.unit(0.522, "feet"),
  62846. name: "Hand",
  62847. image: {
  62848. source: "./media/characters/tim/hand.svg"
  62849. }
  62850. },
  62851. palm: {
  62852. height: math.unit(0.48, "feet"),
  62853. name: "Palm",
  62854. image: {
  62855. source: "./media/characters/tim/palm.svg"
  62856. }
  62857. },
  62858. paw: {
  62859. height: math.unit(0.9, "feet"),
  62860. name: "Paw",
  62861. image: {
  62862. source: "./media/characters/tim/paw.svg"
  62863. }
  62864. },
  62865. sole: {
  62866. height: math.unit(0.88, "feet"),
  62867. name: "Sole",
  62868. image: {
  62869. source: "./media/characters/tim/sole.svg"
  62870. }
  62871. },
  62872. },
  62873. [
  62874. {
  62875. name: "Macro",
  62876. height: math.unit(1000, "feet")
  62877. },
  62878. {
  62879. name: "Megamacro",
  62880. height: math.unit(10000, "feet"),
  62881. default: true
  62882. },
  62883. {
  62884. name: "Megamacro+",
  62885. height: math.unit(50000, "feet")
  62886. },
  62887. {
  62888. name: "Gigamacro",
  62889. height: math.unit(150000, "km")
  62890. },
  62891. ]
  62892. ))
  62893. characterMakers.push(() => makeCharacter(
  62894. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  62895. {
  62896. front: {
  62897. height: math.unit(5 + 8/12, "feet"),
  62898. weight: math.unit(170, "lb"),
  62899. name: "Front",
  62900. image: {
  62901. source: "./media/characters/abel-delreoux/front.svg",
  62902. extra: 1615/1500,
  62903. bottom: 82/1697
  62904. }
  62905. },
  62906. back: {
  62907. height: math.unit(5 + 8/12, "feet"),
  62908. weight: math.unit(170, "lb"),
  62909. name: "Back",
  62910. image: {
  62911. source: "./media/characters/abel-delreoux/back.svg",
  62912. extra: 1644/1534,
  62913. bottom: 24/1668
  62914. }
  62915. },
  62916. casual: {
  62917. height: math.unit(5 + 8/12, "feet"),
  62918. weight: math.unit(170, "lb"),
  62919. name: "Casual",
  62920. image: {
  62921. source: "./media/characters/abel-delreoux/casual.svg",
  62922. extra: 1716/1598,
  62923. bottom: 29/1745
  62924. }
  62925. },
  62926. sleepy: {
  62927. height: math.unit(5 + 8/12, "feet"),
  62928. weight: math.unit(170, "lb"),
  62929. name: "Sleepy",
  62930. image: {
  62931. source: "./media/characters/abel-delreoux/sleepy.svg",
  62932. extra: 1649/1573,
  62933. bottom: 22/1671
  62934. }
  62935. },
  62936. fem: {
  62937. height: math.unit(5 + 8/12, "feet"),
  62938. weight: math.unit(170, "lb"),
  62939. name: "Fem",
  62940. image: {
  62941. source: "./media/characters/abel-delreoux/fem.svg",
  62942. extra: 1680/1564,
  62943. bottom: 17/1697
  62944. }
  62945. },
  62946. hand: {
  62947. height: math.unit(0.78, "feet"),
  62948. name: "Hand",
  62949. image: {
  62950. source: "./media/characters/abel-delreoux/hand.svg"
  62951. }
  62952. },
  62953. paw: {
  62954. height: math.unit(0.78, "feet"),
  62955. name: "Paw",
  62956. image: {
  62957. source: "./media/characters/abel-delreoux/paw.svg"
  62958. }
  62959. },
  62960. },
  62961. [
  62962. {
  62963. name: "Normal",
  62964. height: math.unit(5 + 8/12, "feet"),
  62965. default: true
  62966. },
  62967. ]
  62968. ))
  62969. characterMakers.push(() => makeCharacter(
  62970. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  62971. {
  62972. front: {
  62973. height: math.unit(6, "feet"),
  62974. weight: math.unit(159, "lb"),
  62975. name: "Front",
  62976. image: {
  62977. source: "./media/characters/meus/front.svg",
  62978. extra: 938/843,
  62979. bottom: 37/975
  62980. }
  62981. },
  62982. back: {
  62983. height: math.unit(6, "feet"),
  62984. weight: math.unit(159, "lb"),
  62985. name: "Back",
  62986. image: {
  62987. source: "./media/characters/meus/back.svg",
  62988. extra: 967/873,
  62989. bottom: 12/979
  62990. }
  62991. },
  62992. },
  62993. [
  62994. {
  62995. name: "Micro",
  62996. height: math.unit(2, "inches")
  62997. },
  62998. {
  62999. name: "Mini",
  63000. height: math.unit(6, "inches")
  63001. },
  63002. {
  63003. name: "Normal",
  63004. height: math.unit(6, "feet"),
  63005. default: true
  63006. },
  63007. {
  63008. name: "Macro",
  63009. height: math.unit(84, "feet")
  63010. },
  63011. ]
  63012. ))
  63013. characterMakers.push(() => makeCharacter(
  63014. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63015. {
  63016. front: {
  63017. height: math.unit(60, "cm"),
  63018. weight: math.unit(18, "kg"),
  63019. name: "Front",
  63020. image: {
  63021. source: "./media/characters/yamato/front.svg",
  63022. extra: 733/688,
  63023. bottom: 29/762
  63024. }
  63025. },
  63026. },
  63027. [
  63028. {
  63029. name: "Micro",
  63030. height: math.unit(6, "cm")
  63031. },
  63032. {
  63033. name: "Normal",
  63034. height: math.unit(60, "cm"),
  63035. default: true
  63036. },
  63037. ]
  63038. ))
  63039. characterMakers.push(() => makeCharacter(
  63040. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63041. {
  63042. front: {
  63043. height: math.unit(9, "feet"),
  63044. weight: math.unit(518, "lb"),
  63045. name: "Front",
  63046. image: {
  63047. source: "./media/characters/barus/front.svg",
  63048. extra: 1877/1795,
  63049. bottom: 55/1932
  63050. }
  63051. },
  63052. },
  63053. [
  63054. {
  63055. name: "Base Height",
  63056. height: math.unit(9, "feet"),
  63057. default: true
  63058. },
  63059. {
  63060. name: "Large",
  63061. height: math.unit(18, "feet")
  63062. },
  63063. {
  63064. name: "Giant",
  63065. height: math.unit(100, "feet")
  63066. },
  63067. {
  63068. name: "Huge",
  63069. height: math.unit(500, "feet")
  63070. },
  63071. {
  63072. name: "Enormous",
  63073. height: math.unit(300, "meters")
  63074. },
  63075. {
  63076. name: "Deity Among Man",
  63077. height: math.unit(3000, "meters")
  63078. },
  63079. ]
  63080. ))
  63081. //characters
  63082. function makeCharacters() {
  63083. const results = [];
  63084. characterMakers.forEach(character => {
  63085. results.push(character());
  63086. });
  63087. return results;
  63088. }