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.
 
 
 

63697 lines
1.6 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "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. }
  2331. //species
  2332. function getSpeciesInfo(speciesList) {
  2333. let result = new Set();
  2334. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2335. result.add(entry)
  2336. });
  2337. return Array.from(result);
  2338. };
  2339. function getSpeciesInfoHelper(species) {
  2340. if (!speciesData[species]) {
  2341. console.warn(species + " doesn't exist");
  2342. return [];
  2343. }
  2344. if (speciesData[species].parents) {
  2345. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2346. } else {
  2347. return [species];
  2348. }
  2349. }
  2350. characterMakers.push(() => makeCharacter(
  2351. {
  2352. name: "Fen",
  2353. species: ["crux"],
  2354. description: {
  2355. title: "Bio",
  2356. text: "Very furry. Sheds on everything."
  2357. },
  2358. tags: [
  2359. "anthro",
  2360. "goo"
  2361. ]
  2362. },
  2363. {
  2364. front: {
  2365. height: math.unit(12, "feet"),
  2366. weight: math.unit(2400, "lb"),
  2367. preyCapacity: math.unit(1, "people"),
  2368. name: "Front",
  2369. image: {
  2370. source: "./media/characters/fen/front.svg",
  2371. extra: 1804/1562,
  2372. bottom: 205/2009
  2373. },
  2374. extraAttributes: {
  2375. pawSize: {
  2376. name: "Paw Size",
  2377. power: 2,
  2378. type: "area",
  2379. base: math.unit(0.35, "m^2")
  2380. }
  2381. }
  2382. },
  2383. diving: {
  2384. height: math.unit(4.9, "meters"),
  2385. weight: math.unit(2400, "lb"),
  2386. name: "Diving",
  2387. image: {
  2388. source: "./media/characters/fen/diving.svg"
  2389. }
  2390. },
  2391. sleeby: {
  2392. height: math.unit(3.45, "meters"),
  2393. weight: math.unit(2400, "lb"),
  2394. name: "Sleeby",
  2395. image: {
  2396. source: "./media/characters/fen/sleeby.svg"
  2397. }
  2398. },
  2399. goo: {
  2400. height: math.unit(12, "feet"),
  2401. weight: math.unit(3600, "lb"),
  2402. volume: math.unit(1000, "liters"),
  2403. preyCapacity: math.unit(6, "people"),
  2404. name: "Goo",
  2405. image: {
  2406. source: "./media/characters/fen/goo.svg",
  2407. extra: 1307/1071,
  2408. bottom: 134/1441
  2409. }
  2410. },
  2411. horror: {
  2412. height: math.unit(13.6, "feet"),
  2413. weight: math.unit(2400, "lb"),
  2414. preyCapacity: math.unit(1, "people"),
  2415. name: "Horror",
  2416. image: {
  2417. source: "./media/characters/fen/horror.svg",
  2418. extra: 893/797,
  2419. bottom: 0/893
  2420. }
  2421. },
  2422. gooNsfw: {
  2423. height: math.unit(12, "feet"),
  2424. weight: math.unit(3750, "lb"),
  2425. volume: math.unit(1000, "liters"),
  2426. preyCapacity: math.unit(6, "people"),
  2427. name: "Goo (NSFW)",
  2428. image: {
  2429. source: "./media/characters/fen/goo-nsfw.svg",
  2430. extra: 1875/1734,
  2431. bottom: 122/1997
  2432. }
  2433. },
  2434. maw: {
  2435. height: math.unit(5.03, "feet"),
  2436. name: "Maw",
  2437. image: {
  2438. source: "./media/characters/fen/maw.svg"
  2439. }
  2440. },
  2441. gooCeiling: {
  2442. height: math.unit(6.6, "feet"),
  2443. weight: math.unit(3000, "lb"),
  2444. volume: math.unit(1000, "liters"),
  2445. preyCapacity: math.unit(6, "people"),
  2446. name: "Maw (Goo)",
  2447. image: {
  2448. source: "./media/characters/fen/goo-maw.svg"
  2449. }
  2450. },
  2451. paw: {
  2452. height: math.unit(3.77, "feet"),
  2453. name: "Paw",
  2454. image: {
  2455. source: "./media/characters/fen/paw.svg"
  2456. },
  2457. extraAttributes: {
  2458. "toeSize": {
  2459. name: "Toe Size",
  2460. power: 2,
  2461. type: "area",
  2462. base: math.unit(0.02875, "m^2")
  2463. },
  2464. "pawSize": {
  2465. name: "Paw Size",
  2466. power: 2,
  2467. type: "area",
  2468. base: math.unit(0.378, "m^2")
  2469. },
  2470. }
  2471. },
  2472. tail: {
  2473. height: math.unit(12.1, "feet"),
  2474. name: "Tail",
  2475. image: {
  2476. source: "./media/characters/fen/tail.svg"
  2477. }
  2478. },
  2479. tailFull: {
  2480. height: math.unit(12.1, "feet"),
  2481. name: "Full Tail",
  2482. image: {
  2483. source: "./media/characters/fen/tail-full.svg"
  2484. }
  2485. },
  2486. back: {
  2487. height: math.unit(12, "feet"),
  2488. weight: math.unit(2400, "lb"),
  2489. name: "Back",
  2490. image: {
  2491. source: "./media/characters/fen/back.svg",
  2492. },
  2493. info: {
  2494. description: {
  2495. mode: "append",
  2496. text: "\n\nHe is not currently looking at you."
  2497. }
  2498. }
  2499. },
  2500. full: {
  2501. height: math.unit(1.85, "meter"),
  2502. weight: math.unit(3200, "lb"),
  2503. preyCapacity: math.unit(3, "people"),
  2504. name: "Full",
  2505. image: {
  2506. source: "./media/characters/fen/full.svg",
  2507. extra: 1133/859,
  2508. bottom: 145/1278
  2509. },
  2510. info: {
  2511. description: {
  2512. mode: "append",
  2513. text: "\n\nMunch."
  2514. }
  2515. }
  2516. },
  2517. gooLounging: {
  2518. height: math.unit(4.53, "feet"),
  2519. weight: math.unit(3000, "lb"),
  2520. preyCapacity: math.unit(6, "people"),
  2521. name: "Goo (Lounging)",
  2522. image: {
  2523. source: "./media/characters/fen/goo-lounging.svg",
  2524. bottom: 116 / 613
  2525. }
  2526. },
  2527. lounging: {
  2528. height: math.unit(10.52, "feet"),
  2529. weight: math.unit(2400, "lb"),
  2530. name: "Lounging",
  2531. image: {
  2532. source: "./media/characters/fen/lounging.svg"
  2533. }
  2534. },
  2535. },
  2536. [
  2537. {
  2538. name: "Small",
  2539. height: math.unit(2.2428, "meter")
  2540. },
  2541. {
  2542. name: "Normal",
  2543. height: math.unit(12, "feet"),
  2544. default: true,
  2545. },
  2546. {
  2547. name: "Big",
  2548. height: math.unit(20, "feet")
  2549. },
  2550. {
  2551. name: "Minimacro",
  2552. height: math.unit(40, "feet"),
  2553. info: {
  2554. description: {
  2555. mode: "append",
  2556. text: "\n\nTOO DAMN BIG"
  2557. }
  2558. }
  2559. },
  2560. {
  2561. name: "Macro",
  2562. height: math.unit(100, "feet"),
  2563. info: {
  2564. description: {
  2565. mode: "append",
  2566. text: "\n\nTOO DAMN BIG"
  2567. }
  2568. }
  2569. },
  2570. {
  2571. name: "Megamacro",
  2572. height: math.unit(2, "miles")
  2573. },
  2574. {
  2575. name: "Gigamacro",
  2576. height: math.unit(10, "earths")
  2577. },
  2578. ]
  2579. ))
  2580. characterMakers.push(() => makeCharacter(
  2581. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2582. {
  2583. front: {
  2584. height: math.unit(183, "cm"),
  2585. weight: math.unit(80, "kg"),
  2586. name: "Front",
  2587. image: {
  2588. source: "./media/characters/sofia-fluttertail/front.svg",
  2589. bottom: 0.01,
  2590. extra: 2154 / 2081
  2591. }
  2592. },
  2593. frontAlt: {
  2594. height: math.unit(183, "cm"),
  2595. weight: math.unit(80, "kg"),
  2596. name: "Front (alt)",
  2597. image: {
  2598. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2599. }
  2600. },
  2601. back: {
  2602. height: math.unit(183, "cm"),
  2603. weight: math.unit(80, "kg"),
  2604. name: "Back",
  2605. image: {
  2606. source: "./media/characters/sofia-fluttertail/back.svg"
  2607. }
  2608. },
  2609. kneeling: {
  2610. height: math.unit(125, "cm"),
  2611. weight: math.unit(80, "kg"),
  2612. name: "Kneeling",
  2613. image: {
  2614. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2615. extra: 1033 / 977,
  2616. bottom: 23.7 / 1057
  2617. }
  2618. },
  2619. maw: {
  2620. height: math.unit(183 / 5, "cm"),
  2621. name: "Maw",
  2622. image: {
  2623. source: "./media/characters/sofia-fluttertail/maw.svg"
  2624. }
  2625. },
  2626. mawcloseup: {
  2627. height: math.unit(183 / 5 * 0.41, "cm"),
  2628. name: "Maw (Closeup)",
  2629. image: {
  2630. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2631. }
  2632. },
  2633. paws: {
  2634. height: math.unit(1.17, "feet"),
  2635. name: "Paws",
  2636. image: {
  2637. source: "./media/characters/sofia-fluttertail/paws.svg",
  2638. extra: 851 / 851,
  2639. bottom: 17 / 868
  2640. }
  2641. },
  2642. },
  2643. [
  2644. {
  2645. name: "Normal",
  2646. height: math.unit(1.83, "meter")
  2647. },
  2648. {
  2649. name: "Size Thief",
  2650. height: math.unit(18, "feet")
  2651. },
  2652. {
  2653. name: "50 Foot Collie",
  2654. height: math.unit(50, "feet")
  2655. },
  2656. {
  2657. name: "Macro",
  2658. height: math.unit(96, "feet"),
  2659. default: true
  2660. },
  2661. {
  2662. name: "Megamerger",
  2663. height: math.unit(650, "feet")
  2664. },
  2665. ]
  2666. ))
  2667. characterMakers.push(() => makeCharacter(
  2668. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2669. {
  2670. front: {
  2671. height: math.unit(7, "feet"),
  2672. weight: math.unit(100, "kg"),
  2673. name: "Front",
  2674. image: {
  2675. source: "./media/characters/march/front.svg",
  2676. extra: 1992/1851,
  2677. bottom: 39/2031
  2678. }
  2679. },
  2680. foot: {
  2681. height: math.unit(0.9, "feet"),
  2682. name: "Foot",
  2683. image: {
  2684. source: "./media/characters/march/foot.svg"
  2685. }
  2686. },
  2687. },
  2688. [
  2689. {
  2690. name: "Normal",
  2691. height: math.unit(7.9, "feet")
  2692. },
  2693. {
  2694. name: "Macro",
  2695. height: math.unit(220, "meters")
  2696. },
  2697. {
  2698. name: "Megamacro",
  2699. height: math.unit(2.98, "km"),
  2700. default: true
  2701. },
  2702. {
  2703. name: "Gigamacro",
  2704. height: math.unit(15963, "km")
  2705. },
  2706. {
  2707. name: "Teramacro",
  2708. height: math.unit(2980000000, "km")
  2709. },
  2710. {
  2711. name: "Examacro",
  2712. height: math.unit(250, "parsecs")
  2713. },
  2714. ]
  2715. ))
  2716. characterMakers.push(() => makeCharacter(
  2717. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2718. {
  2719. front: {
  2720. height: math.unit(6, "feet"),
  2721. weight: math.unit(60, "kg"),
  2722. name: "Front",
  2723. image: {
  2724. source: "./media/characters/noir/front.svg",
  2725. extra: 1,
  2726. bottom: 0.032
  2727. }
  2728. },
  2729. },
  2730. [
  2731. {
  2732. name: "Normal",
  2733. height: math.unit(6.6, "feet")
  2734. },
  2735. {
  2736. name: "Macro",
  2737. height: math.unit(500, "feet")
  2738. },
  2739. {
  2740. name: "Megamacro",
  2741. height: math.unit(2.5, "km"),
  2742. default: true
  2743. },
  2744. {
  2745. name: "Gigamacro",
  2746. height: math.unit(22500, "km")
  2747. },
  2748. {
  2749. name: "Teramacro",
  2750. height: math.unit(2500000000, "km")
  2751. },
  2752. {
  2753. name: "Examacro",
  2754. height: math.unit(200, "parsecs")
  2755. },
  2756. ]
  2757. ))
  2758. characterMakers.push(() => makeCharacter(
  2759. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2760. {
  2761. front: {
  2762. height: math.unit(7, "feet"),
  2763. weight: math.unit(100, "kg"),
  2764. name: "Front",
  2765. image: {
  2766. source: "./media/characters/okuri/front.svg",
  2767. extra: 739/665,
  2768. bottom: 39/778
  2769. }
  2770. },
  2771. back: {
  2772. height: math.unit(7, "feet"),
  2773. weight: math.unit(100, "kg"),
  2774. name: "Back",
  2775. image: {
  2776. source: "./media/characters/okuri/back.svg",
  2777. extra: 734/653,
  2778. bottom: 13/747
  2779. }
  2780. },
  2781. sitting: {
  2782. height: math.unit(2.95, "feet"),
  2783. weight: math.unit(100, "kg"),
  2784. name: "Sitting",
  2785. image: {
  2786. source: "./media/characters/okuri/sitting.svg",
  2787. extra: 370/318,
  2788. bottom: 99/469
  2789. }
  2790. },
  2791. },
  2792. [
  2793. {
  2794. name: "Smallest",
  2795. height: math.unit(5 + 2/12, "feet")
  2796. },
  2797. {
  2798. name: "Smaller",
  2799. height: math.unit(300, "feet")
  2800. },
  2801. {
  2802. name: "Small",
  2803. height: math.unit(1000, "feet")
  2804. },
  2805. {
  2806. name: "Macro",
  2807. height: math.unit(1, "mile")
  2808. },
  2809. {
  2810. name: "Mega Macro (Small)",
  2811. height: math.unit(20, "km")
  2812. },
  2813. {
  2814. name: "Mega Macro (Large)",
  2815. height: math.unit(600, "km")
  2816. },
  2817. {
  2818. name: "Giga Macro",
  2819. height: math.unit(10000, "km")
  2820. },
  2821. {
  2822. name: "Normal",
  2823. height: math.unit(577560, "km"),
  2824. default: true
  2825. },
  2826. {
  2827. name: "Large",
  2828. height: math.unit(4, "galaxies")
  2829. },
  2830. {
  2831. name: "Largest",
  2832. height: math.unit(15, "multiverses")
  2833. },
  2834. ]
  2835. ))
  2836. characterMakers.push(() => makeCharacter(
  2837. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2838. {
  2839. front: {
  2840. height: math.unit(7, "feet"),
  2841. weight: math.unit(100, "kg"),
  2842. name: "Front",
  2843. image: {
  2844. source: "./media/characters/manny/front.svg",
  2845. extra: 1,
  2846. bottom: 0.06
  2847. }
  2848. },
  2849. back: {
  2850. height: math.unit(7, "feet"),
  2851. weight: math.unit(100, "kg"),
  2852. name: "Back",
  2853. image: {
  2854. source: "./media/characters/manny/back.svg",
  2855. extra: 1,
  2856. bottom: 0.014
  2857. }
  2858. },
  2859. },
  2860. [
  2861. {
  2862. name: "Normal",
  2863. height: math.unit(7, "feet"),
  2864. },
  2865. {
  2866. name: "Macro",
  2867. height: math.unit(78, "feet"),
  2868. default: true
  2869. },
  2870. {
  2871. name: "Macro+",
  2872. height: math.unit(300, "meters")
  2873. },
  2874. {
  2875. name: "Macro++",
  2876. height: math.unit(2400, "meters")
  2877. },
  2878. {
  2879. name: "Megamacro",
  2880. height: math.unit(5167, "meters")
  2881. },
  2882. {
  2883. name: "Gigamacro",
  2884. height: math.unit(41769, "miles")
  2885. },
  2886. ]
  2887. ))
  2888. characterMakers.push(() => makeCharacter(
  2889. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2890. {
  2891. front: {
  2892. height: math.unit(7, "feet"),
  2893. weight: math.unit(100, "kg"),
  2894. name: "Front",
  2895. image: {
  2896. source: "./media/characters/adake/front-1.svg"
  2897. }
  2898. },
  2899. frontAlt: {
  2900. height: math.unit(7, "feet"),
  2901. weight: math.unit(100, "kg"),
  2902. name: "Front (Alt)",
  2903. image: {
  2904. source: "./media/characters/adake/front-2.svg",
  2905. extra: 1,
  2906. bottom: 0.01
  2907. }
  2908. },
  2909. back: {
  2910. height: math.unit(7, "feet"),
  2911. weight: math.unit(100, "kg"),
  2912. name: "Back",
  2913. image: {
  2914. source: "./media/characters/adake/back.svg",
  2915. }
  2916. },
  2917. kneel: {
  2918. height: math.unit(5.385, "feet"),
  2919. weight: math.unit(100, "kg"),
  2920. name: "Kneeling",
  2921. image: {
  2922. source: "./media/characters/adake/kneel.svg",
  2923. bottom: 0.052
  2924. }
  2925. },
  2926. },
  2927. [
  2928. {
  2929. name: "Normal",
  2930. height: math.unit(7, "feet"),
  2931. },
  2932. {
  2933. name: "Macro",
  2934. height: math.unit(78, "feet"),
  2935. default: true
  2936. },
  2937. {
  2938. name: "Macro+",
  2939. height: math.unit(300, "meters")
  2940. },
  2941. {
  2942. name: "Macro++",
  2943. height: math.unit(2400, "meters")
  2944. },
  2945. {
  2946. name: "Megamacro",
  2947. height: math.unit(5167, "meters")
  2948. },
  2949. {
  2950. name: "Gigamacro",
  2951. height: math.unit(41769, "miles")
  2952. },
  2953. ]
  2954. ))
  2955. characterMakers.push(() => makeCharacter(
  2956. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2957. {
  2958. front: {
  2959. height: math.unit(1.65, "meters"),
  2960. weight: math.unit(50, "kg"),
  2961. name: "Front",
  2962. image: {
  2963. source: "./media/characters/elijah/front.svg",
  2964. extra: 858 / 830,
  2965. bottom: 95.5 / 953.8559
  2966. }
  2967. },
  2968. back: {
  2969. height: math.unit(1.65, "meters"),
  2970. weight: math.unit(50, "kg"),
  2971. name: "Back",
  2972. image: {
  2973. source: "./media/characters/elijah/back.svg",
  2974. extra: 895 / 850,
  2975. bottom: 5.3 / 897.956
  2976. }
  2977. },
  2978. frontNsfw: {
  2979. height: math.unit(1.65, "meters"),
  2980. weight: math.unit(50, "kg"),
  2981. name: "Front (NSFW)",
  2982. image: {
  2983. source: "./media/characters/elijah/front-nsfw.svg",
  2984. extra: 858 / 830,
  2985. bottom: 95.5 / 953.8559
  2986. }
  2987. },
  2988. backNsfw: {
  2989. height: math.unit(1.65, "meters"),
  2990. weight: math.unit(50, "kg"),
  2991. name: "Back (NSFW)",
  2992. image: {
  2993. source: "./media/characters/elijah/back-nsfw.svg",
  2994. extra: 895 / 850,
  2995. bottom: 5.3 / 897.956
  2996. }
  2997. },
  2998. dick: {
  2999. height: math.unit(1, "feet"),
  3000. name: "Dick",
  3001. image: {
  3002. source: "./media/characters/elijah/dick.svg"
  3003. }
  3004. },
  3005. beakOpen: {
  3006. height: math.unit(1.25, "feet"),
  3007. name: "Beak (Open)",
  3008. image: {
  3009. source: "./media/characters/elijah/beak-open.svg"
  3010. }
  3011. },
  3012. beakShut: {
  3013. height: math.unit(1.25, "feet"),
  3014. name: "Beak (Shut)",
  3015. image: {
  3016. source: "./media/characters/elijah/beak-shut.svg"
  3017. }
  3018. },
  3019. footFlexing: {
  3020. height: math.unit(1.61, "feet"),
  3021. name: "Foot (Flexing)",
  3022. image: {
  3023. source: "./media/characters/elijah/foot-flexing.svg"
  3024. }
  3025. },
  3026. footStepping: {
  3027. height: math.unit(1.44, "feet"),
  3028. name: "Foot (Stepping)",
  3029. image: {
  3030. source: "./media/characters/elijah/foot-stepping.svg"
  3031. }
  3032. },
  3033. plantigradeLeg: {
  3034. height: math.unit(2.34, "feet"),
  3035. name: "Plantigrade Leg",
  3036. image: {
  3037. source: "./media/characters/elijah/plantigrade-leg.svg"
  3038. }
  3039. },
  3040. plantigradeFootLeft: {
  3041. height: math.unit(0.9, "feet"),
  3042. name: "Plantigrade Foot (Left)",
  3043. image: {
  3044. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3045. }
  3046. },
  3047. plantigradeFootRight: {
  3048. height: math.unit(0.9, "feet"),
  3049. name: "Plantigrade Foot (Right)",
  3050. image: {
  3051. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3052. }
  3053. },
  3054. },
  3055. [
  3056. {
  3057. name: "Normal",
  3058. height: math.unit(1.65, "meters")
  3059. },
  3060. {
  3061. name: "Macro",
  3062. height: math.unit(55, "meters"),
  3063. default: true
  3064. },
  3065. {
  3066. name: "Macro+",
  3067. height: math.unit(105, "meters")
  3068. },
  3069. ]
  3070. ))
  3071. characterMakers.push(() => makeCharacter(
  3072. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3073. {
  3074. front: {
  3075. height: math.unit(7 + 2/12, "feet"),
  3076. weight: math.unit(320, "kg"),
  3077. preyCapacity: math.unit(0.276549935, "people"),
  3078. name: "Front",
  3079. image: {
  3080. source: "./media/characters/rai/front.svg",
  3081. extra: 1802/1696,
  3082. bottom: 68/1870
  3083. },
  3084. form: "anthro",
  3085. default: true
  3086. },
  3087. frontDressed: {
  3088. height: math.unit(7 + 2/12, "feet"),
  3089. weight: math.unit(320, "kg"),
  3090. preyCapacity: math.unit(0.276549935, "people"),
  3091. name: "Front (Dressed)",
  3092. image: {
  3093. source: "./media/characters/rai/front-dressed.svg",
  3094. extra: 1802/1696,
  3095. bottom: 68/1870
  3096. },
  3097. form: "anthro"
  3098. },
  3099. side: {
  3100. height: math.unit(7 + 2/12, "feet"),
  3101. weight: math.unit(320, "kg"),
  3102. preyCapacity: math.unit(0.276549935, "people"),
  3103. name: "Side",
  3104. image: {
  3105. source: "./media/characters/rai/side.svg",
  3106. extra: 1789/1710,
  3107. bottom: 115/1904
  3108. },
  3109. form: "anthro"
  3110. },
  3111. back: {
  3112. height: math.unit(7 + 2/12, "feet"),
  3113. weight: math.unit(320, "kg"),
  3114. preyCapacity: math.unit(0.276549935, "people"),
  3115. name: "Back",
  3116. image: {
  3117. source: "./media/characters/rai/back.svg",
  3118. extra: 1770/1707,
  3119. bottom: 28/1798
  3120. },
  3121. form: "anthro"
  3122. },
  3123. feral: {
  3124. height: math.unit(9.5, "feet"),
  3125. weight: math.unit(640, "kg"),
  3126. preyCapacity: math.unit(4, "people"),
  3127. name: "Feral",
  3128. image: {
  3129. source: "./media/characters/rai/feral.svg",
  3130. extra: 945/553,
  3131. bottom: 176/1121
  3132. },
  3133. form: "feral",
  3134. default: true
  3135. },
  3136. dragon: {
  3137. height: math.unit(23, "feet"),
  3138. weight: math.unit(50000, "lb"),
  3139. name: "Dragon",
  3140. image: {
  3141. source: "./media/characters/rai/dragon.svg",
  3142. extra: 2498 / 2030,
  3143. bottom: 85.2 / 2584
  3144. },
  3145. form: "dragon",
  3146. default: true
  3147. },
  3148. maw: {
  3149. height: math.unit(1.69, "feet"),
  3150. name: "Maw",
  3151. image: {
  3152. source: "./media/characters/rai/maw.svg"
  3153. },
  3154. form: "anthro"
  3155. },
  3156. },
  3157. [
  3158. {
  3159. name: "Normal",
  3160. height: math.unit(7 + 2/12, "feet"),
  3161. form: "anthro"
  3162. },
  3163. {
  3164. name: "Big",
  3165. height: math.unit(11, "feet"),
  3166. form: "anthro"
  3167. },
  3168. {
  3169. name: "Minimacro",
  3170. height: math.unit(77, "feet"),
  3171. form: "anthro"
  3172. },
  3173. {
  3174. name: "Macro",
  3175. height: math.unit(302, "feet"),
  3176. default: true,
  3177. form: "anthro"
  3178. },
  3179. {
  3180. name: "Normal",
  3181. height: math.unit(9.5, "feet"),
  3182. form: "feral",
  3183. default: true
  3184. },
  3185. {
  3186. name: "Normal",
  3187. height: math.unit(23, "feet"),
  3188. form: "dragon",
  3189. default: true
  3190. }
  3191. ],
  3192. {
  3193. "anthro": {
  3194. name: "Anthro",
  3195. default: true
  3196. },
  3197. "feral": {
  3198. name: "Feral",
  3199. },
  3200. "dragon": {
  3201. name: "Dragon",
  3202. },
  3203. }
  3204. ))
  3205. characterMakers.push(() => makeCharacter(
  3206. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3207. {
  3208. frontDressed: {
  3209. height: math.unit(216, "feet"),
  3210. weight: math.unit(7000000, "lb"),
  3211. preyCapacity: math.unit(1321, "people"),
  3212. name: "Front (Dressed)",
  3213. image: {
  3214. source: "./media/characters/jazzy/front-dressed.svg",
  3215. extra: 2738 / 2651,
  3216. bottom: 41.8 / 2786
  3217. }
  3218. },
  3219. backDressed: {
  3220. height: math.unit(216, "feet"),
  3221. weight: math.unit(7000000, "lb"),
  3222. preyCapacity: math.unit(1321, "people"),
  3223. name: "Back (Dressed)",
  3224. image: {
  3225. source: "./media/characters/jazzy/back-dressed.svg",
  3226. extra: 2775 / 2673,
  3227. bottom: 36.8 / 2817
  3228. }
  3229. },
  3230. front: {
  3231. height: math.unit(216, "feet"),
  3232. weight: math.unit(7000000, "lb"),
  3233. preyCapacity: math.unit(1321, "people"),
  3234. name: "Front",
  3235. image: {
  3236. source: "./media/characters/jazzy/front.svg",
  3237. extra: 2738 / 2651,
  3238. bottom: 41.8 / 2786
  3239. }
  3240. },
  3241. back: {
  3242. height: math.unit(216, "feet"),
  3243. weight: math.unit(7000000, "lb"),
  3244. preyCapacity: math.unit(1321, "people"),
  3245. name: "Back",
  3246. image: {
  3247. source: "./media/characters/jazzy/back.svg",
  3248. extra: 2775 / 2673,
  3249. bottom: 36.8 / 2817
  3250. }
  3251. },
  3252. maw: {
  3253. height: math.unit(20, "feet"),
  3254. name: "Maw",
  3255. image: {
  3256. source: "./media/characters/jazzy/maw.svg"
  3257. }
  3258. },
  3259. paws: {
  3260. height: math.unit(27.5, "feet"),
  3261. name: "Paws",
  3262. image: {
  3263. source: "./media/characters/jazzy/paws.svg"
  3264. }
  3265. },
  3266. eye: {
  3267. height: math.unit(4.4, "feet"),
  3268. name: "Eye",
  3269. image: {
  3270. source: "./media/characters/jazzy/eye.svg"
  3271. }
  3272. },
  3273. droneOffense: {
  3274. height: math.unit(9.5, "inches"),
  3275. name: "Drone (Offense)",
  3276. image: {
  3277. source: "./media/characters/jazzy/drone-offense.svg"
  3278. }
  3279. },
  3280. droneRecon: {
  3281. height: math.unit(9.5, "inches"),
  3282. name: "Drone (Recon)",
  3283. image: {
  3284. source: "./media/characters/jazzy/drone-recon.svg"
  3285. }
  3286. },
  3287. droneDefense: {
  3288. height: math.unit(9.5, "inches"),
  3289. name: "Drone (Defense)",
  3290. image: {
  3291. source: "./media/characters/jazzy/drone-defense.svg"
  3292. }
  3293. },
  3294. },
  3295. [
  3296. {
  3297. name: "Macro",
  3298. height: math.unit(216, "feet"),
  3299. default: true
  3300. },
  3301. ]
  3302. ))
  3303. characterMakers.push(() => makeCharacter(
  3304. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3305. {
  3306. front: {
  3307. height: math.unit(9 + 6/12, "feet"),
  3308. weight: math.unit(700, "lb"),
  3309. name: "Front",
  3310. image: {
  3311. source: "./media/characters/flamm/front.svg",
  3312. extra: 1736/1596,
  3313. bottom: 93/1829
  3314. }
  3315. },
  3316. buff: {
  3317. height: math.unit(9 + 6/12, "feet"),
  3318. weight: math.unit(950, "lb"),
  3319. name: "Buff",
  3320. image: {
  3321. source: "./media/characters/flamm/buff.svg",
  3322. extra: 3018/2874,
  3323. bottom: 221/3239
  3324. }
  3325. },
  3326. },
  3327. [
  3328. {
  3329. name: "Normal",
  3330. height: math.unit(9.5, "feet")
  3331. },
  3332. {
  3333. name: "Macro",
  3334. height: math.unit(200, "feet"),
  3335. default: true
  3336. },
  3337. ]
  3338. ))
  3339. characterMakers.push(() => makeCharacter(
  3340. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3341. {
  3342. front: {
  3343. height: math.unit(5 + 3/12, "feet"),
  3344. weight: math.unit(60, "kg"),
  3345. name: "Front",
  3346. image: {
  3347. source: "./media/characters/zephiro/front.svg",
  3348. extra: 1873/1761,
  3349. bottom: 147/2020
  3350. }
  3351. },
  3352. side: {
  3353. height: math.unit(5 + 3/12, "feet"),
  3354. weight: math.unit(60, "kg"),
  3355. name: "Side",
  3356. image: {
  3357. source: "./media/characters/zephiro/side.svg",
  3358. extra: 1929/1827,
  3359. bottom: 65/1994
  3360. }
  3361. },
  3362. back: {
  3363. height: math.unit(5 + 3/12, "feet"),
  3364. weight: math.unit(60, "kg"),
  3365. name: "Back",
  3366. image: {
  3367. source: "./media/characters/zephiro/back.svg",
  3368. extra: 1926/1816,
  3369. bottom: 41/1967
  3370. }
  3371. },
  3372. hand: {
  3373. height: math.unit(0.68, "feet"),
  3374. name: "Hand",
  3375. image: {
  3376. source: "./media/characters/zephiro/hand.svg"
  3377. }
  3378. },
  3379. paw: {
  3380. height: math.unit(1, "feet"),
  3381. name: "Paw",
  3382. image: {
  3383. source: "./media/characters/zephiro/paw.svg"
  3384. }
  3385. },
  3386. beans: {
  3387. height: math.unit(0.93, "feet"),
  3388. name: "Beans",
  3389. image: {
  3390. source: "./media/characters/zephiro/beans.svg"
  3391. }
  3392. },
  3393. },
  3394. [
  3395. {
  3396. name: "Micro",
  3397. height: math.unit(3, "inches")
  3398. },
  3399. {
  3400. name: "Normal",
  3401. height: math.unit(5 + 3 / 12, "feet"),
  3402. default: true
  3403. },
  3404. {
  3405. name: "Macro",
  3406. height: math.unit(118, "feet")
  3407. },
  3408. ]
  3409. ))
  3410. characterMakers.push(() => makeCharacter(
  3411. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3412. {
  3413. front: {
  3414. height: math.unit(5, "feet"),
  3415. weight: math.unit(90, "kg"),
  3416. preyCapacity: math.unit(14, "people"),
  3417. name: "Front",
  3418. image: {
  3419. source: "./media/characters/fory/front.svg",
  3420. extra: 2862 / 2674,
  3421. bottom: 180 / 3043.8
  3422. },
  3423. form: "weaselbun",
  3424. default: true,
  3425. extraAttributes: {
  3426. "pawSize": {
  3427. name: "Paw Size",
  3428. power: 2,
  3429. type: "area",
  3430. base: math.unit(0.1596, "m^2")
  3431. },
  3432. "pawLength": {
  3433. name: "Paw Length",
  3434. power: 1,
  3435. type: "length",
  3436. base: math.unit(0.7, "m")
  3437. }
  3438. }
  3439. },
  3440. back: {
  3441. height: math.unit(5, "feet"),
  3442. weight: math.unit(90, "kg"),
  3443. preyCapacity: math.unit(14, "people"),
  3444. name: "Back",
  3445. image: {
  3446. source: "./media/characters/fory/back.svg",
  3447. extra: 1790/1672,
  3448. bottom: 84/1874
  3449. },
  3450. form: "weaselbun",
  3451. extraAttributes: {
  3452. "pawSize": {
  3453. name: "Paw Size",
  3454. power: 2,
  3455. type: "area",
  3456. base: math.unit(0.1596, "m^2")
  3457. },
  3458. "pawLength": {
  3459. name: "Paw Length",
  3460. power: 1,
  3461. type: "length",
  3462. base: math.unit(0.7, "m")
  3463. }
  3464. }
  3465. },
  3466. paw: {
  3467. height: math.unit(2.14, "feet"),
  3468. name: "Paw",
  3469. image: {
  3470. source: "./media/characters/fory/paw.svg"
  3471. },
  3472. form: "weaselbun",
  3473. extraAttributes: {
  3474. "pawSize": {
  3475. name: "Paw Size",
  3476. power: 2,
  3477. type: "area",
  3478. base: math.unit(0.1596, "m^2")
  3479. },
  3480. "pawLength": {
  3481. name: "Paw Length",
  3482. power: 1,
  3483. type: "length",
  3484. base: math.unit(0.48, "m")
  3485. }
  3486. }
  3487. },
  3488. bunBack: {
  3489. height: math.unit(3, "feet"),
  3490. weight: math.unit(20, "kg"),
  3491. preyCapacity: math.unit(3, "people"),
  3492. name: "Back",
  3493. image: {
  3494. source: "./media/characters/fory/bun-back.svg",
  3495. extra: 1749/1564,
  3496. bottom: 246/1995
  3497. },
  3498. form: "bun",
  3499. default: true,
  3500. extraAttributes: {
  3501. "pawSize": {
  3502. name: "Paw Size",
  3503. power: 2,
  3504. type: "area",
  3505. base: math.unit(0.072, "m^2")
  3506. },
  3507. "pawLength": {
  3508. name: "Paw Length",
  3509. power: 1,
  3510. type: "length",
  3511. base: math.unit(0.45, "m")
  3512. }
  3513. }
  3514. },
  3515. },
  3516. [
  3517. {
  3518. name: "Normal",
  3519. height: math.unit(5, "feet"),
  3520. form: "weaselbun"
  3521. },
  3522. {
  3523. name: "Macro",
  3524. height: math.unit(50, "feet"),
  3525. default: true,
  3526. form: "weaselbun"
  3527. },
  3528. {
  3529. name: "Megamacro",
  3530. height: math.unit(10, "miles"),
  3531. form: "weaselbun"
  3532. },
  3533. {
  3534. name: "Gigamacro",
  3535. height: math.unit(5, "earths"),
  3536. form: "weaselbun"
  3537. },
  3538. {
  3539. name: "Normal",
  3540. height: math.unit(3, "feet"),
  3541. default: true,
  3542. form: "bun"
  3543. },
  3544. {
  3545. name: "Fun-Size",
  3546. height: math.unit(12, "feet"),
  3547. form: "bun"
  3548. },
  3549. {
  3550. name: "Macro",
  3551. height: math.unit(100, "feet"),
  3552. form: "bun"
  3553. },
  3554. {
  3555. name: "Planetary",
  3556. height: math.unit(3, "earths"),
  3557. form: "bun"
  3558. },
  3559. ],
  3560. {
  3561. "weaselbun": {
  3562. name: "Weaselbun",
  3563. default: true
  3564. },
  3565. "bun": {
  3566. name: "Bun",
  3567. },
  3568. }
  3569. ))
  3570. characterMakers.push(() => makeCharacter(
  3571. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3572. {
  3573. front: {
  3574. height: math.unit(7, "feet"),
  3575. weight: math.unit(90, "kg"),
  3576. name: "Front",
  3577. image: {
  3578. source: "./media/characters/kurrikage/front.svg",
  3579. extra: 1845/1733,
  3580. bottom: 119/1964
  3581. }
  3582. },
  3583. back: {
  3584. height: math.unit(7, "feet"),
  3585. weight: math.unit(90, "kg"),
  3586. name: "Back",
  3587. image: {
  3588. source: "./media/characters/kurrikage/back.svg",
  3589. extra: 1790/1677,
  3590. bottom: 61/1851
  3591. }
  3592. },
  3593. dressed: {
  3594. height: math.unit(7, "feet"),
  3595. weight: math.unit(90, "kg"),
  3596. name: "Dressed",
  3597. image: {
  3598. source: "./media/characters/kurrikage/dressed.svg",
  3599. extra: 1845/1733,
  3600. bottom: 119/1964
  3601. }
  3602. },
  3603. foot: {
  3604. height: math.unit(1.5, "feet"),
  3605. name: "Foot",
  3606. image: {
  3607. source: "./media/characters/kurrikage/foot.svg"
  3608. }
  3609. },
  3610. staff: {
  3611. height: math.unit(6.7, "feet"),
  3612. name: "Staff",
  3613. image: {
  3614. source: "./media/characters/kurrikage/staff.svg"
  3615. }
  3616. },
  3617. peek: {
  3618. height: math.unit(1.05, "feet"),
  3619. name: "Peeking",
  3620. image: {
  3621. source: "./media/characters/kurrikage/peek.svg",
  3622. bottom: 0.08
  3623. }
  3624. },
  3625. },
  3626. [
  3627. {
  3628. name: "Normal",
  3629. height: math.unit(12, "feet"),
  3630. default: true
  3631. },
  3632. {
  3633. name: "Big",
  3634. height: math.unit(20, "feet")
  3635. },
  3636. {
  3637. name: "Macro",
  3638. height: math.unit(500, "feet")
  3639. },
  3640. {
  3641. name: "Megamacro",
  3642. height: math.unit(20, "miles")
  3643. },
  3644. ]
  3645. ))
  3646. characterMakers.push(() => makeCharacter(
  3647. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3648. {
  3649. front: {
  3650. height: math.unit(6, "feet"),
  3651. weight: math.unit(75, "kg"),
  3652. name: "Front",
  3653. image: {
  3654. source: "./media/characters/shingo/front.svg",
  3655. extra: 1900/1825,
  3656. bottom: 82/1982
  3657. }
  3658. },
  3659. side: {
  3660. height: math.unit(6, "feet"),
  3661. weight: math.unit(75, "kg"),
  3662. name: "Side",
  3663. image: {
  3664. source: "./media/characters/shingo/side.svg",
  3665. extra: 1930/1865,
  3666. bottom: 16/1946
  3667. }
  3668. },
  3669. back: {
  3670. height: math.unit(6, "feet"),
  3671. weight: math.unit(75, "kg"),
  3672. name: "Back",
  3673. image: {
  3674. source: "./media/characters/shingo/back.svg",
  3675. extra: 1922/1852,
  3676. bottom: 16/1938
  3677. }
  3678. },
  3679. frontDressed: {
  3680. height: math.unit(6, "feet"),
  3681. weight: math.unit(150, "lb"),
  3682. name: "Front-dressed",
  3683. image: {
  3684. source: "./media/characters/shingo/front-dressed.svg",
  3685. extra: 1900/1825,
  3686. bottom: 82/1982
  3687. }
  3688. },
  3689. paw: {
  3690. height: math.unit(1.29, "feet"),
  3691. name: "Paw",
  3692. image: {
  3693. source: "./media/characters/shingo/paw.svg"
  3694. }
  3695. },
  3696. hand: {
  3697. height: math.unit(1.07, "feet"),
  3698. name: "Hand",
  3699. image: {
  3700. source: "./media/characters/shingo/hand.svg"
  3701. }
  3702. },
  3703. frontAlt: {
  3704. height: math.unit(6, "feet"),
  3705. weight: math.unit(75, "kg"),
  3706. name: "Front (Alt)",
  3707. image: {
  3708. source: "./media/characters/shingo/front-alt.svg",
  3709. extra: 3511 / 3338,
  3710. bottom: 0.005
  3711. }
  3712. },
  3713. frontAlt2: {
  3714. height: math.unit(6, "feet"),
  3715. weight: math.unit(75, "kg"),
  3716. name: "Front (Alt 2)",
  3717. image: {
  3718. source: "./media/characters/shingo/front-alt-2.svg",
  3719. extra: 706/681,
  3720. bottom: 11/717
  3721. }
  3722. },
  3723. pawAlt: {
  3724. height: math.unit(1, "feet"),
  3725. name: "Paw (Alt)",
  3726. image: {
  3727. source: "./media/characters/shingo/paw-alt.svg"
  3728. }
  3729. },
  3730. },
  3731. [
  3732. {
  3733. name: "Micro",
  3734. height: math.unit(4, "inches")
  3735. },
  3736. {
  3737. name: "Normal",
  3738. height: math.unit(6, "feet"),
  3739. default: true
  3740. },
  3741. {
  3742. name: "Macro",
  3743. height: math.unit(108, "feet")
  3744. },
  3745. {
  3746. name: "Macro+",
  3747. height: math.unit(1500, "feet")
  3748. },
  3749. ]
  3750. ))
  3751. characterMakers.push(() => makeCharacter(
  3752. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3753. {
  3754. side: {
  3755. height: math.unit(6, "feet"),
  3756. weight: math.unit(75, "kg"),
  3757. name: "Side",
  3758. image: {
  3759. source: "./media/characters/aigey/side.svg"
  3760. }
  3761. },
  3762. },
  3763. [
  3764. {
  3765. name: "Macro",
  3766. height: math.unit(200, "feet"),
  3767. default: true
  3768. },
  3769. {
  3770. name: "Megamacro",
  3771. height: math.unit(100, "miles")
  3772. },
  3773. ]
  3774. )
  3775. )
  3776. characterMakers.push(() => makeCharacter(
  3777. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3778. {
  3779. front: {
  3780. height: math.unit(5 + 5 / 12, "feet"),
  3781. weight: math.unit(75, "kg"),
  3782. name: "Front",
  3783. image: {
  3784. source: "./media/characters/natasha/front.svg",
  3785. extra: 859 / 824,
  3786. bottom: 23 / 879.6
  3787. }
  3788. },
  3789. frontNsfw: {
  3790. height: math.unit(5 + 5 / 12, "feet"),
  3791. weight: math.unit(75, "kg"),
  3792. name: "Front (NSFW)",
  3793. image: {
  3794. source: "./media/characters/natasha/front-nsfw.svg",
  3795. extra: 859 / 824,
  3796. bottom: 23 / 879.6
  3797. }
  3798. },
  3799. frontErect: {
  3800. height: math.unit(5 + 5 / 12, "feet"),
  3801. weight: math.unit(75, "kg"),
  3802. name: "Front (Erect)",
  3803. image: {
  3804. source: "./media/characters/natasha/front-erect.svg",
  3805. extra: 859 / 824,
  3806. bottom: 23 / 879.6
  3807. }
  3808. },
  3809. back: {
  3810. height: math.unit(5 + 5 / 12, "feet"),
  3811. weight: math.unit(75, "kg"),
  3812. name: "Back",
  3813. image: {
  3814. source: "./media/characters/natasha/back.svg",
  3815. extra: 887.9 / 852.6,
  3816. bottom: 9.7 / 896.4
  3817. }
  3818. },
  3819. backAlt: {
  3820. height: math.unit(5 + 5 / 12, "feet"),
  3821. weight: math.unit(75, "kg"),
  3822. name: "Back (Alt)",
  3823. image: {
  3824. source: "./media/characters/natasha/back-alt.svg",
  3825. extra: 1236.7 / 1192,
  3826. bottom: 22.3 / 1258.2
  3827. }
  3828. },
  3829. dick: {
  3830. height: math.unit(1.772, "feet"),
  3831. name: "Dick",
  3832. image: {
  3833. source: "./media/characters/natasha/dick.svg"
  3834. }
  3835. },
  3836. paw: {
  3837. height: math.unit(0.250, "meters"),
  3838. name: "Paw",
  3839. image: {
  3840. source: "./media/characters/natasha/paw.svg"
  3841. },
  3842. extraAttributes: {
  3843. "toeSize": {
  3844. name: "Toe Size",
  3845. power: 2,
  3846. type: "area",
  3847. base: math.unit(0.0024, "m^2")
  3848. },
  3849. "padSize": {
  3850. name: "Pad Size",
  3851. power: 2,
  3852. type: "area",
  3853. base: math.unit(0.00889, "m^2")
  3854. },
  3855. "pawSize": {
  3856. name: "Paw Size",
  3857. power: 2,
  3858. type: "area",
  3859. base: math.unit(0.023667, "m^2")
  3860. },
  3861. }
  3862. },
  3863. },
  3864. [
  3865. {
  3866. name: "Shortstack",
  3867. height: math.unit(3, "feet"),
  3868. default: true
  3869. },
  3870. {
  3871. name: "Normal",
  3872. height: math.unit(5 + 5 / 12, "feet")
  3873. },
  3874. {
  3875. name: "Large",
  3876. height: math.unit(12, "feet")
  3877. },
  3878. {
  3879. name: "Macro",
  3880. height: math.unit(100, "feet")
  3881. },
  3882. {
  3883. name: "Macro+",
  3884. height: math.unit(260, "feet")
  3885. },
  3886. {
  3887. name: "Macro++",
  3888. height: math.unit(1, "mile")
  3889. },
  3890. ]
  3891. ))
  3892. characterMakers.push(() => makeCharacter(
  3893. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3894. {
  3895. front: {
  3896. height: math.unit(6, "feet"),
  3897. weight: math.unit(75, "kg"),
  3898. name: "Front",
  3899. image: {
  3900. source: "./media/characters/malik/front.svg",
  3901. extra: 1750/1561,
  3902. bottom: 80/1830
  3903. },
  3904. extraAttributes: {
  3905. "toeSize": {
  3906. name: "Toe Size",
  3907. power: 2,
  3908. type: "area",
  3909. base: math.unit(0.0159, "m^2")
  3910. },
  3911. "pawSize": {
  3912. name: "Paw Size",
  3913. power: 2,
  3914. type: "area",
  3915. base: math.unit(0.09834, "m^2")
  3916. },
  3917. }
  3918. },
  3919. side: {
  3920. height: math.unit(6, "feet"),
  3921. weight: math.unit(75, "kg"),
  3922. name: "Side",
  3923. image: {
  3924. source: "./media/characters/malik/side.svg",
  3925. extra: 1802/1685,
  3926. bottom: 42/1844
  3927. },
  3928. extraAttributes: {
  3929. "toeSize": {
  3930. name: "Toe Size",
  3931. power: 2,
  3932. type: "area",
  3933. base: math.unit(0.0159, "m^2")
  3934. },
  3935. "pawSize": {
  3936. name: "Paw Size",
  3937. power: 2,
  3938. type: "area",
  3939. base: math.unit(0.09834, "m^2")
  3940. },
  3941. }
  3942. },
  3943. back: {
  3944. height: math.unit(6, "feet"),
  3945. weight: math.unit(75, "kg"),
  3946. name: "Back",
  3947. image: {
  3948. source: "./media/characters/malik/back.svg",
  3949. extra: 1803/1607,
  3950. bottom: 33/1836
  3951. },
  3952. extraAttributes: {
  3953. "toeSize": {
  3954. name: "Toe Size",
  3955. power: 2,
  3956. type: "area",
  3957. base: math.unit(0.0159, "m^2")
  3958. },
  3959. "pawSize": {
  3960. name: "Paw Size",
  3961. power: 2,
  3962. type: "area",
  3963. base: math.unit(0.09834, "m^2")
  3964. },
  3965. }
  3966. },
  3967. },
  3968. [
  3969. {
  3970. name: "Macro",
  3971. height: math.unit(156, "feet"),
  3972. default: true
  3973. },
  3974. {
  3975. name: "Macro+",
  3976. height: math.unit(1188, "feet")
  3977. },
  3978. ]
  3979. ))
  3980. characterMakers.push(() => makeCharacter(
  3981. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3982. {
  3983. front: {
  3984. height: math.unit(6, "feet"),
  3985. weight: math.unit(75, "kg"),
  3986. name: "Front",
  3987. image: {
  3988. source: "./media/characters/sefer/front.svg",
  3989. extra: 848 / 659,
  3990. bottom: 28.3 / 876.442
  3991. }
  3992. },
  3993. back: {
  3994. height: math.unit(6, "feet"),
  3995. weight: math.unit(75, "kg"),
  3996. name: "Back",
  3997. image: {
  3998. source: "./media/characters/sefer/back.svg",
  3999. extra: 864 / 695,
  4000. bottom: 10 / 871
  4001. }
  4002. },
  4003. frontDressed: {
  4004. height: math.unit(6, "feet"),
  4005. weight: math.unit(75, "kg"),
  4006. name: "Dressed",
  4007. image: {
  4008. source: "./media/characters/sefer/dressed.svg",
  4009. extra: 839 / 653,
  4010. bottom: 37.6 / 878
  4011. }
  4012. },
  4013. },
  4014. [
  4015. {
  4016. name: "Normal",
  4017. height: math.unit(6, "feet"),
  4018. default: true
  4019. },
  4020. {
  4021. name: "Big",
  4022. height: math.unit(8, "meters")
  4023. },
  4024. ]
  4025. ))
  4026. characterMakers.push(() => makeCharacter(
  4027. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4028. {
  4029. body: {
  4030. height: math.unit(2.2428, "meter"),
  4031. weight: math.unit(124.738, "kg"),
  4032. name: "Body",
  4033. image: {
  4034. extra: 1225 / 1050,
  4035. source: "./media/characters/north/front.svg"
  4036. }
  4037. }
  4038. },
  4039. [
  4040. {
  4041. name: "Micro",
  4042. height: math.unit(4, "inches")
  4043. },
  4044. {
  4045. name: "Macro",
  4046. height: math.unit(63, "meters")
  4047. },
  4048. {
  4049. name: "Megamacro",
  4050. height: math.unit(101, "miles"),
  4051. default: true
  4052. }
  4053. ]
  4054. ))
  4055. characterMakers.push(() => makeCharacter(
  4056. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4057. {
  4058. angled: {
  4059. height: math.unit(4, "meter"),
  4060. weight: math.unit(150, "kg"),
  4061. name: "Angled",
  4062. image: {
  4063. source: "./media/characters/talan/angled-sfw.svg",
  4064. bottom: 29 / 3734
  4065. }
  4066. },
  4067. angledNsfw: {
  4068. height: math.unit(4, "meter"),
  4069. weight: math.unit(150, "kg"),
  4070. name: "Angled (NSFW)",
  4071. image: {
  4072. source: "./media/characters/talan/angled-nsfw.svg",
  4073. bottom: 29 / 3734
  4074. }
  4075. },
  4076. frontNsfw: {
  4077. height: math.unit(4, "meter"),
  4078. weight: math.unit(150, "kg"),
  4079. name: "Front (NSFW)",
  4080. image: {
  4081. source: "./media/characters/talan/front-nsfw.svg",
  4082. bottom: 29 / 3734
  4083. }
  4084. },
  4085. sideNsfw: {
  4086. height: math.unit(4, "meter"),
  4087. weight: math.unit(150, "kg"),
  4088. name: "Side (NSFW)",
  4089. image: {
  4090. source: "./media/characters/talan/side-nsfw.svg",
  4091. bottom: 29 / 3734
  4092. }
  4093. },
  4094. back: {
  4095. height: math.unit(4, "meter"),
  4096. weight: math.unit(150, "kg"),
  4097. name: "Back",
  4098. image: {
  4099. source: "./media/characters/talan/back.svg"
  4100. }
  4101. },
  4102. dickBottom: {
  4103. height: math.unit(0.621, "meter"),
  4104. name: "Dick (Bottom)",
  4105. image: {
  4106. source: "./media/characters/talan/dick-bottom.svg"
  4107. }
  4108. },
  4109. dickTop: {
  4110. height: math.unit(0.621, "meter"),
  4111. name: "Dick (Top)",
  4112. image: {
  4113. source: "./media/characters/talan/dick-top.svg"
  4114. }
  4115. },
  4116. dickSide: {
  4117. height: math.unit(0.305, "meter"),
  4118. name: "Dick (Side)",
  4119. image: {
  4120. source: "./media/characters/talan/dick-side.svg"
  4121. }
  4122. },
  4123. dickFront: {
  4124. height: math.unit(0.305, "meter"),
  4125. name: "Dick (Front)",
  4126. image: {
  4127. source: "./media/characters/talan/dick-front.svg"
  4128. }
  4129. },
  4130. },
  4131. [
  4132. {
  4133. name: "Normal",
  4134. height: math.unit(4, "meters")
  4135. },
  4136. {
  4137. name: "Macro",
  4138. height: math.unit(100, "meters")
  4139. },
  4140. {
  4141. name: "Megamacro",
  4142. height: math.unit(2, "miles"),
  4143. default: true
  4144. },
  4145. {
  4146. name: "Gigamacro",
  4147. height: math.unit(5000, "miles")
  4148. },
  4149. {
  4150. name: "Teramacro",
  4151. height: math.unit(100, "parsecs")
  4152. }
  4153. ]
  4154. ))
  4155. characterMakers.push(() => makeCharacter(
  4156. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4157. {
  4158. front: {
  4159. height: math.unit(2, "meter"),
  4160. weight: math.unit(90, "kg"),
  4161. name: "Front",
  4162. image: {
  4163. source: "./media/characters/gael'rathus/front.svg"
  4164. }
  4165. },
  4166. frontAlt: {
  4167. height: math.unit(2, "meter"),
  4168. weight: math.unit(90, "kg"),
  4169. name: "Front (alt)",
  4170. image: {
  4171. source: "./media/characters/gael'rathus/front-alt.svg"
  4172. }
  4173. },
  4174. frontAlt2: {
  4175. height: math.unit(2, "meter"),
  4176. weight: math.unit(90, "kg"),
  4177. name: "Front (alt 2)",
  4178. image: {
  4179. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4180. }
  4181. }
  4182. },
  4183. [
  4184. {
  4185. name: "Normal",
  4186. height: math.unit(9, "feet"),
  4187. default: true
  4188. },
  4189. {
  4190. name: "Large",
  4191. height: math.unit(25, "feet")
  4192. },
  4193. {
  4194. name: "Macro",
  4195. height: math.unit(0.25, "miles")
  4196. },
  4197. {
  4198. name: "Megamacro",
  4199. height: math.unit(10, "miles")
  4200. }
  4201. ]
  4202. ))
  4203. characterMakers.push(() => makeCharacter(
  4204. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4205. {
  4206. side: {
  4207. height: math.unit(2, "meter"),
  4208. weight: math.unit(140, "kg"),
  4209. name: "Side",
  4210. image: {
  4211. source: "./media/characters/sosha/side.svg",
  4212. extra: 1170/1006,
  4213. bottom: 94/1264
  4214. }
  4215. },
  4216. maw: {
  4217. height: math.unit(2.87, "feet"),
  4218. name: "Maw",
  4219. image: {
  4220. source: "./media/characters/sosha/maw.svg",
  4221. extra: 966/865,
  4222. bottom: 0/966
  4223. }
  4224. },
  4225. cooch: {
  4226. height: math.unit(5.6, "feet"),
  4227. name: "Cooch",
  4228. image: {
  4229. source: "./media/characters/sosha/cooch.svg"
  4230. }
  4231. },
  4232. },
  4233. [
  4234. {
  4235. name: "Normal",
  4236. height: math.unit(12, "feet"),
  4237. default: true
  4238. }
  4239. ]
  4240. ))
  4241. characterMakers.push(() => makeCharacter(
  4242. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4243. {
  4244. side: {
  4245. height: math.unit(5 + 5 / 12, "feet"),
  4246. weight: math.unit(170, "kg"),
  4247. name: "Side",
  4248. image: {
  4249. source: "./media/characters/runnola/side.svg",
  4250. extra: 741 / 448,
  4251. bottom: 0.05
  4252. }
  4253. },
  4254. },
  4255. [
  4256. {
  4257. name: "Small",
  4258. height: math.unit(3, "feet")
  4259. },
  4260. {
  4261. name: "Normal",
  4262. height: math.unit(5 + 5 / 12, "feet"),
  4263. default: true
  4264. },
  4265. {
  4266. name: "Big",
  4267. height: math.unit(10, "feet")
  4268. },
  4269. ]
  4270. ))
  4271. characterMakers.push(() => makeCharacter(
  4272. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4273. {
  4274. front: {
  4275. height: math.unit(2, "meter"),
  4276. weight: math.unit(50, "kg"),
  4277. name: "Front",
  4278. image: {
  4279. source: "./media/characters/kurribird/front.svg",
  4280. bottom: 0.015
  4281. }
  4282. },
  4283. frontAlt: {
  4284. height: math.unit(1.5, "meter"),
  4285. weight: math.unit(50, "kg"),
  4286. name: "Front (Alt)",
  4287. image: {
  4288. source: "./media/characters/kurribird/front-alt.svg",
  4289. extra: 1.45
  4290. }
  4291. },
  4292. },
  4293. [
  4294. {
  4295. name: "Normal",
  4296. height: math.unit(7, "feet")
  4297. },
  4298. {
  4299. name: "Big",
  4300. height: math.unit(12, "feet"),
  4301. default: true
  4302. },
  4303. {
  4304. name: "Macro",
  4305. height: math.unit(1500, "feet")
  4306. },
  4307. {
  4308. name: "Megamacro",
  4309. height: math.unit(2, "miles")
  4310. }
  4311. ]
  4312. ))
  4313. characterMakers.push(() => makeCharacter(
  4314. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4315. {
  4316. front: {
  4317. height: math.unit(2, "meter"),
  4318. weight: math.unit(80, "kg"),
  4319. name: "Front",
  4320. image: {
  4321. source: "./media/characters/elbial/front.svg",
  4322. extra: 1643 / 1556,
  4323. bottom: 60.2 / 1696
  4324. }
  4325. },
  4326. side: {
  4327. height: math.unit(2, "meter"),
  4328. weight: math.unit(80, "kg"),
  4329. name: "Side",
  4330. image: {
  4331. source: "./media/characters/elbial/side.svg",
  4332. extra: 1601/1528,
  4333. bottom: 97/1698
  4334. }
  4335. },
  4336. back: {
  4337. height: math.unit(2, "meter"),
  4338. weight: math.unit(80, "kg"),
  4339. name: "Back",
  4340. image: {
  4341. source: "./media/characters/elbial/back.svg",
  4342. extra: 1653/1569,
  4343. bottom: 20/1673
  4344. }
  4345. },
  4346. frontDressed: {
  4347. height: math.unit(2, "meter"),
  4348. weight: math.unit(80, "kg"),
  4349. name: "Front (Dressed)",
  4350. image: {
  4351. source: "./media/characters/elbial/front-dressed.svg",
  4352. extra: 1638/1569,
  4353. bottom: 70/1708
  4354. }
  4355. },
  4356. genitals: {
  4357. height: math.unit(2 / 3.367, "meter"),
  4358. name: "Genitals",
  4359. image: {
  4360. source: "./media/characters/elbial/genitals.svg"
  4361. }
  4362. },
  4363. },
  4364. [
  4365. {
  4366. name: "Large",
  4367. height: math.unit(100, "feet")
  4368. },
  4369. {
  4370. name: "Macro",
  4371. height: math.unit(500, "feet"),
  4372. default: true
  4373. },
  4374. {
  4375. name: "Megamacro",
  4376. height: math.unit(10, "miles")
  4377. },
  4378. {
  4379. name: "Gigamacro",
  4380. height: math.unit(25000, "miles")
  4381. },
  4382. {
  4383. name: "Full-Size",
  4384. height: math.unit(8000000, "gigaparsecs")
  4385. }
  4386. ]
  4387. ))
  4388. characterMakers.push(() => makeCharacter(
  4389. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4390. {
  4391. front: {
  4392. height: math.unit(2, "meter"),
  4393. weight: math.unit(60, "kg"),
  4394. name: "Front",
  4395. image: {
  4396. source: "./media/characters/noah/front.svg",
  4397. extra: 1383/1313,
  4398. bottom: 104/1487
  4399. }
  4400. },
  4401. hand: {
  4402. height: math.unit(0.6, "feet"),
  4403. name: "Hand",
  4404. image: {
  4405. source: "./media/characters/noah/hand.svg"
  4406. }
  4407. },
  4408. talons: {
  4409. height: math.unit(1.385, "feet"),
  4410. name: "Talons",
  4411. image: {
  4412. source: "./media/characters/noah/talons.svg"
  4413. }
  4414. },
  4415. beak: {
  4416. height: math.unit(0.43, "feet"),
  4417. name: "Beak",
  4418. image: {
  4419. source: "./media/characters/noah/beak.svg"
  4420. }
  4421. },
  4422. collar: {
  4423. height: math.unit(0.88, "feet"),
  4424. name: "Collar",
  4425. image: {
  4426. source: "./media/characters/noah/collar.svg"
  4427. }
  4428. },
  4429. eyeNarrow: {
  4430. height: math.unit(0.18, "feet"),
  4431. name: "Eye (Narrow)",
  4432. image: {
  4433. source: "./media/characters/noah/eye-narrow.svg"
  4434. }
  4435. },
  4436. eyeNormal: {
  4437. height: math.unit(0.18, "feet"),
  4438. name: "Eye (Normal)",
  4439. image: {
  4440. source: "./media/characters/noah/eye-normal.svg"
  4441. }
  4442. },
  4443. eyeWide: {
  4444. height: math.unit(0.18, "feet"),
  4445. name: "Eye (Wide)",
  4446. image: {
  4447. source: "./media/characters/noah/eye-wide.svg"
  4448. }
  4449. },
  4450. ear: {
  4451. height: math.unit(0.64, "feet"),
  4452. name: "Ear",
  4453. image: {
  4454. source: "./media/characters/noah/ear.svg"
  4455. }
  4456. },
  4457. },
  4458. [
  4459. {
  4460. name: "Large",
  4461. height: math.unit(50, "feet")
  4462. },
  4463. {
  4464. name: "Macro",
  4465. height: math.unit(750, "feet"),
  4466. default: true
  4467. },
  4468. {
  4469. name: "Megamacro",
  4470. height: math.unit(50, "miles")
  4471. },
  4472. {
  4473. name: "Gigamacro",
  4474. height: math.unit(100000, "miles")
  4475. },
  4476. {
  4477. name: "Full-Size",
  4478. height: math.unit(3000000000, "miles")
  4479. }
  4480. ]
  4481. ))
  4482. characterMakers.push(() => makeCharacter(
  4483. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4484. {
  4485. front: {
  4486. height: math.unit(2, "meter"),
  4487. weight: math.unit(80, "kg"),
  4488. name: "Front",
  4489. image: {
  4490. source: "./media/characters/natalya/front.svg"
  4491. }
  4492. },
  4493. back: {
  4494. height: math.unit(2, "meter"),
  4495. weight: math.unit(80, "kg"),
  4496. name: "Back",
  4497. image: {
  4498. source: "./media/characters/natalya/back.svg"
  4499. }
  4500. }
  4501. },
  4502. [
  4503. {
  4504. name: "Normal",
  4505. height: math.unit(150, "feet"),
  4506. default: true
  4507. },
  4508. {
  4509. name: "Megamacro",
  4510. height: math.unit(5, "miles")
  4511. },
  4512. {
  4513. name: "Full-Size",
  4514. height: math.unit(600, "kiloparsecs")
  4515. }
  4516. ]
  4517. ))
  4518. characterMakers.push(() => makeCharacter(
  4519. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4520. {
  4521. front: {
  4522. height: math.unit(2, "meter"),
  4523. weight: math.unit(50, "kg"),
  4524. name: "Front",
  4525. image: {
  4526. source: "./media/characters/erestrebah/front.svg",
  4527. extra: 1262/1162,
  4528. bottom: 96/1358
  4529. }
  4530. },
  4531. back: {
  4532. height: math.unit(2, "meter"),
  4533. weight: math.unit(50, "kg"),
  4534. name: "Back",
  4535. image: {
  4536. source: "./media/characters/erestrebah/back.svg",
  4537. extra: 1257/1139,
  4538. bottom: 13/1270
  4539. }
  4540. },
  4541. wing: {
  4542. height: math.unit(2, "meter"),
  4543. weight: math.unit(50, "kg"),
  4544. name: "Wing",
  4545. image: {
  4546. source: "./media/characters/erestrebah/wing.svg",
  4547. extra: 1262/1162,
  4548. bottom: 96/1358
  4549. }
  4550. },
  4551. mouth: {
  4552. height: math.unit(0.39, "feet"),
  4553. name: "Mouth",
  4554. image: {
  4555. source: "./media/characters/erestrebah/mouth.svg"
  4556. }
  4557. }
  4558. },
  4559. [
  4560. {
  4561. name: "Normal",
  4562. height: math.unit(10, "feet")
  4563. },
  4564. {
  4565. name: "Large",
  4566. height: math.unit(50, "feet"),
  4567. default: true
  4568. },
  4569. {
  4570. name: "Macro",
  4571. height: math.unit(300, "feet")
  4572. },
  4573. {
  4574. name: "Macro+",
  4575. height: math.unit(750, "feet")
  4576. },
  4577. {
  4578. name: "Megamacro",
  4579. height: math.unit(3, "miles")
  4580. }
  4581. ]
  4582. ))
  4583. characterMakers.push(() => makeCharacter(
  4584. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4585. {
  4586. front: {
  4587. height: math.unit(2, "meter"),
  4588. weight: math.unit(80, "kg"),
  4589. name: "Front",
  4590. image: {
  4591. source: "./media/characters/jennifer/front.svg",
  4592. bottom: 0.11,
  4593. extra: 1.16
  4594. }
  4595. },
  4596. frontAlt: {
  4597. height: math.unit(2, "meter"),
  4598. weight: math.unit(80, "kg"),
  4599. name: "Front (Alt)",
  4600. image: {
  4601. source: "./media/characters/jennifer/front-alt.svg"
  4602. }
  4603. }
  4604. },
  4605. [
  4606. {
  4607. name: "Canon Height",
  4608. height: math.unit(120, "feet"),
  4609. default: true
  4610. },
  4611. {
  4612. name: "Macro+",
  4613. height: math.unit(300, "feet")
  4614. },
  4615. {
  4616. name: "Megamacro",
  4617. height: math.unit(20000, "feet")
  4618. }
  4619. ]
  4620. ))
  4621. characterMakers.push(() => makeCharacter(
  4622. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4623. {
  4624. front: {
  4625. height: math.unit(2, "meter"),
  4626. weight: math.unit(50, "kg"),
  4627. name: "Front",
  4628. image: {
  4629. source: "./media/characters/kalista/front.svg",
  4630. extra: 1314/1145,
  4631. bottom: 101/1415
  4632. }
  4633. },
  4634. back: {
  4635. height: math.unit(2, "meter"),
  4636. weight: math.unit(50, "kg"),
  4637. name: "Back",
  4638. image: {
  4639. source: "./media/characters/kalista/back.svg",
  4640. extra: 1366 / 1156,
  4641. bottom: 33.9 / 1362.78
  4642. }
  4643. }
  4644. },
  4645. [
  4646. {
  4647. name: "Uncomfortably Small",
  4648. height: math.unit(10, "feet")
  4649. },
  4650. {
  4651. name: "Small",
  4652. height: math.unit(30, "feet")
  4653. },
  4654. {
  4655. name: "Macro",
  4656. height: math.unit(100, "feet"),
  4657. default: true
  4658. },
  4659. {
  4660. name: "Macro+",
  4661. height: math.unit(2000, "feet")
  4662. },
  4663. {
  4664. name: "True Form",
  4665. height: math.unit(8924, "miles")
  4666. }
  4667. ]
  4668. ))
  4669. characterMakers.push(() => makeCharacter(
  4670. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4671. {
  4672. front: {
  4673. height: math.unit(2, "meter"),
  4674. weight: math.unit(120, "kg"),
  4675. name: "Front",
  4676. image: {
  4677. source: "./media/characters/ggv/front.svg"
  4678. }
  4679. },
  4680. side: {
  4681. height: math.unit(2, "meter"),
  4682. weight: math.unit(120, "kg"),
  4683. name: "Side",
  4684. image: {
  4685. source: "./media/characters/ggv/side.svg"
  4686. }
  4687. }
  4688. },
  4689. [
  4690. {
  4691. name: "Extremely Puny",
  4692. height: math.unit(9 + 5 / 12, "feet")
  4693. },
  4694. {
  4695. name: "Horribly Small",
  4696. height: math.unit(47.7, "miles"),
  4697. default: true
  4698. },
  4699. {
  4700. name: "Reasonably Sized",
  4701. height: math.unit(25000, "parsecs")
  4702. },
  4703. {
  4704. name: "Slightly Uncompressed",
  4705. height: math.unit(7.77e31, "parsecs")
  4706. },
  4707. {
  4708. name: "Omniversal",
  4709. height: math.unit(1e300, "meters")
  4710. },
  4711. ]
  4712. ))
  4713. characterMakers.push(() => makeCharacter(
  4714. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4715. {
  4716. front: {
  4717. height: math.unit(2, "meter"),
  4718. weight: math.unit(75, "lb"),
  4719. name: "Front",
  4720. image: {
  4721. source: "./media/characters/napalm/front.svg"
  4722. }
  4723. },
  4724. back: {
  4725. height: math.unit(2, "meter"),
  4726. weight: math.unit(75, "lb"),
  4727. name: "Back",
  4728. image: {
  4729. source: "./media/characters/napalm/back.svg"
  4730. }
  4731. }
  4732. },
  4733. [
  4734. {
  4735. name: "Standard",
  4736. height: math.unit(55, "feet"),
  4737. default: true
  4738. }
  4739. ]
  4740. ))
  4741. characterMakers.push(() => makeCharacter(
  4742. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4743. {
  4744. front: {
  4745. height: math.unit(7 + 5 / 6, "feet"),
  4746. weight: math.unit(325, "lb"),
  4747. name: "Front",
  4748. image: {
  4749. source: "./media/characters/asana/front.svg",
  4750. extra: 1133 / 1060,
  4751. bottom: 15.2 / 1148.6
  4752. }
  4753. },
  4754. back: {
  4755. height: math.unit(7 + 5 / 6, "feet"),
  4756. weight: math.unit(325, "lb"),
  4757. name: "Back",
  4758. image: {
  4759. source: "./media/characters/asana/back.svg",
  4760. extra: 1114 / 1043,
  4761. bottom: 5 / 1120
  4762. }
  4763. },
  4764. dressedDark: {
  4765. height: math.unit(7 + 5 / 6, "feet"),
  4766. weight: math.unit(325, "lb"),
  4767. name: "Dressed (Dark)",
  4768. image: {
  4769. source: "./media/characters/asana/dressed-dark.svg",
  4770. extra: 1133 / 1060,
  4771. bottom: 15.2 / 1148.6
  4772. }
  4773. },
  4774. dressedLight: {
  4775. height: math.unit(7 + 5 / 6, "feet"),
  4776. weight: math.unit(325, "lb"),
  4777. name: "Dressed (Light)",
  4778. image: {
  4779. source: "./media/characters/asana/dressed-light.svg",
  4780. extra: 1133 / 1060,
  4781. bottom: 15.2 / 1148.6
  4782. }
  4783. },
  4784. },
  4785. [
  4786. {
  4787. name: "Standard",
  4788. height: math.unit(7 + 5 / 6, "feet"),
  4789. default: true
  4790. },
  4791. {
  4792. name: "Large",
  4793. height: math.unit(10, "meters")
  4794. },
  4795. {
  4796. name: "Macro",
  4797. height: math.unit(2500, "meters")
  4798. },
  4799. {
  4800. name: "Megamacro",
  4801. height: math.unit(5e6, "meters")
  4802. },
  4803. {
  4804. name: "Examacro",
  4805. height: math.unit(5e12, "lightyears")
  4806. },
  4807. {
  4808. name: "Max Size",
  4809. height: math.unit(1e31, "lightyears")
  4810. }
  4811. ]
  4812. ))
  4813. characterMakers.push(() => makeCharacter(
  4814. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4815. {
  4816. front: {
  4817. height: math.unit(2, "meter"),
  4818. weight: math.unit(60, "kg"),
  4819. name: "Front",
  4820. image: {
  4821. source: "./media/characters/ebony/front.svg",
  4822. bottom: 0.03,
  4823. extra: 1045 / 810 + 0.03
  4824. }
  4825. },
  4826. side: {
  4827. height: math.unit(2, "meter"),
  4828. weight: math.unit(60, "kg"),
  4829. name: "Side",
  4830. image: {
  4831. source: "./media/characters/ebony/side.svg",
  4832. bottom: 0.03,
  4833. extra: 1045 / 810 + 0.03
  4834. }
  4835. },
  4836. back: {
  4837. height: math.unit(2, "meter"),
  4838. weight: math.unit(60, "kg"),
  4839. name: "Back",
  4840. image: {
  4841. source: "./media/characters/ebony/back.svg",
  4842. bottom: 0.01,
  4843. extra: 1045 / 810 + 0.01
  4844. }
  4845. },
  4846. },
  4847. [
  4848. // TODO check why I did this lol
  4849. {
  4850. name: "Standard",
  4851. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4852. default: true
  4853. },
  4854. {
  4855. name: "Macro",
  4856. height: math.unit(200, "feet")
  4857. },
  4858. {
  4859. name: "Gigamacro",
  4860. height: math.unit(13000, "km")
  4861. }
  4862. ]
  4863. ))
  4864. characterMakers.push(() => makeCharacter(
  4865. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4866. {
  4867. front: {
  4868. height: math.unit(6, "feet"),
  4869. weight: math.unit(175, "lb"),
  4870. name: "Front",
  4871. image: {
  4872. source: "./media/characters/mountain/front.svg",
  4873. extra: 972 / 955,
  4874. bottom: 64 / 1036.6
  4875. }
  4876. },
  4877. back: {
  4878. height: math.unit(6, "feet"),
  4879. weight: math.unit(175, "lb"),
  4880. name: "Back",
  4881. image: {
  4882. source: "./media/characters/mountain/back.svg",
  4883. extra: 970 / 950,
  4884. bottom: 28.25 / 999
  4885. }
  4886. },
  4887. },
  4888. [
  4889. {
  4890. name: "Large",
  4891. height: math.unit(20, "meters")
  4892. },
  4893. {
  4894. name: "Macro",
  4895. height: math.unit(300, "meters")
  4896. },
  4897. {
  4898. name: "Gigamacro",
  4899. height: math.unit(10000, "km"),
  4900. default: true
  4901. },
  4902. {
  4903. name: "Examacro",
  4904. height: math.unit(10e9, "lightyears")
  4905. }
  4906. ]
  4907. ))
  4908. characterMakers.push(() => makeCharacter(
  4909. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4910. {
  4911. front: {
  4912. height: math.unit(8, "feet"),
  4913. weight: math.unit(500, "lb"),
  4914. name: "Front",
  4915. image: {
  4916. source: "./media/characters/rick/front.svg"
  4917. }
  4918. }
  4919. },
  4920. [
  4921. {
  4922. name: "Normal",
  4923. height: math.unit(8, "feet"),
  4924. default: true
  4925. },
  4926. {
  4927. name: "Macro",
  4928. height: math.unit(5, "km")
  4929. }
  4930. ]
  4931. ))
  4932. characterMakers.push(() => makeCharacter(
  4933. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4934. {
  4935. front: {
  4936. height: math.unit(8, "feet"),
  4937. weight: math.unit(120, "lb"),
  4938. name: "Front",
  4939. image: {
  4940. source: "./media/characters/ona/front.svg"
  4941. }
  4942. },
  4943. frontAlt: {
  4944. height: math.unit(8, "feet"),
  4945. weight: math.unit(120, "lb"),
  4946. name: "Front (Alt)",
  4947. image: {
  4948. source: "./media/characters/ona/front-alt.svg"
  4949. }
  4950. },
  4951. back: {
  4952. height: math.unit(8, "feet"),
  4953. weight: math.unit(120, "lb"),
  4954. name: "Back",
  4955. image: {
  4956. source: "./media/characters/ona/back.svg"
  4957. }
  4958. },
  4959. foot: {
  4960. height: math.unit(1.1, "feet"),
  4961. name: "Foot",
  4962. image: {
  4963. source: "./media/characters/ona/foot.svg"
  4964. }
  4965. }
  4966. },
  4967. [
  4968. {
  4969. name: "Megamacro",
  4970. height: math.unit(70, "km"),
  4971. default: true
  4972. },
  4973. {
  4974. name: "Gigamacro",
  4975. height: math.unit(681818, "miles")
  4976. },
  4977. {
  4978. name: "Examacro",
  4979. height: math.unit(3800000, "lightyears")
  4980. },
  4981. ]
  4982. ))
  4983. characterMakers.push(() => makeCharacter(
  4984. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4985. {
  4986. front: {
  4987. height: math.unit(12, "feet"),
  4988. weight: math.unit(3000, "lb"),
  4989. name: "Front",
  4990. image: {
  4991. source: "./media/characters/mech/front.svg",
  4992. extra: 2900 / 2770,
  4993. bottom: 110 / 3010
  4994. }
  4995. },
  4996. back: {
  4997. height: math.unit(12, "feet"),
  4998. weight: math.unit(3000, "lb"),
  4999. name: "Back",
  5000. image: {
  5001. source: "./media/characters/mech/back.svg",
  5002. extra: 3011 / 2890,
  5003. bottom: 94 / 3105
  5004. }
  5005. },
  5006. maw: {
  5007. height: math.unit(3.07, "feet"),
  5008. name: "Maw",
  5009. image: {
  5010. source: "./media/characters/mech/maw.svg"
  5011. }
  5012. },
  5013. head: {
  5014. height: math.unit(3.07, "feet"),
  5015. name: "Head",
  5016. image: {
  5017. source: "./media/characters/mech/head.svg"
  5018. }
  5019. },
  5020. dick: {
  5021. height: math.unit(1.43, "feet"),
  5022. name: "Dick",
  5023. image: {
  5024. source: "./media/characters/mech/dick.svg"
  5025. }
  5026. },
  5027. },
  5028. [
  5029. {
  5030. name: "Normal",
  5031. height: math.unit(12, "feet")
  5032. },
  5033. {
  5034. name: "Macro",
  5035. height: math.unit(300, "feet"),
  5036. default: true
  5037. },
  5038. {
  5039. name: "Macro+",
  5040. height: math.unit(1500, "feet")
  5041. },
  5042. ]
  5043. ))
  5044. characterMakers.push(() => makeCharacter(
  5045. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5046. {
  5047. front: {
  5048. height: math.unit(1.3, "meter"),
  5049. weight: math.unit(30, "kg"),
  5050. name: "Front",
  5051. image: {
  5052. source: "./media/characters/gregory/front.svg",
  5053. }
  5054. }
  5055. },
  5056. [
  5057. {
  5058. name: "Normal",
  5059. height: math.unit(1.3, "meter"),
  5060. default: true
  5061. },
  5062. {
  5063. name: "Macro",
  5064. height: math.unit(20, "meter")
  5065. }
  5066. ]
  5067. ))
  5068. characterMakers.push(() => makeCharacter(
  5069. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5070. {
  5071. front: {
  5072. height: math.unit(2.8, "meter"),
  5073. weight: math.unit(200, "kg"),
  5074. name: "Front",
  5075. image: {
  5076. source: "./media/characters/elory/front.svg",
  5077. }
  5078. }
  5079. },
  5080. [
  5081. {
  5082. name: "Normal",
  5083. height: math.unit(2.8, "meter"),
  5084. default: true
  5085. },
  5086. {
  5087. name: "Macro",
  5088. height: math.unit(38, "meter")
  5089. }
  5090. ]
  5091. ))
  5092. characterMakers.push(() => makeCharacter(
  5093. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5094. {
  5095. front: {
  5096. height: math.unit(470, "feet"),
  5097. weight: math.unit(924, "tons"),
  5098. name: "Front",
  5099. image: {
  5100. source: "./media/characters/angelpatamon/front.svg",
  5101. }
  5102. }
  5103. },
  5104. [
  5105. {
  5106. name: "Normal",
  5107. height: math.unit(470, "feet"),
  5108. default: true
  5109. },
  5110. {
  5111. name: "Deity Size I",
  5112. height: math.unit(28651.2, "km")
  5113. },
  5114. {
  5115. name: "Deity Size II",
  5116. height: math.unit(171907.2, "km")
  5117. }
  5118. ]
  5119. ))
  5120. characterMakers.push(() => makeCharacter(
  5121. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5122. {
  5123. side: {
  5124. height: math.unit(7.2, "meter"),
  5125. weight: math.unit(8.2, "tons"),
  5126. name: "Side",
  5127. image: {
  5128. source: "./media/characters/cryae/side.svg",
  5129. extra: 3500 / 1500
  5130. }
  5131. }
  5132. },
  5133. [
  5134. {
  5135. name: "Normal",
  5136. height: math.unit(7.2, "meter"),
  5137. default: true
  5138. }
  5139. ]
  5140. ))
  5141. characterMakers.push(() => makeCharacter(
  5142. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5143. {
  5144. front: {
  5145. height: math.unit(6, "feet"),
  5146. weight: math.unit(175, "lb"),
  5147. name: "Front",
  5148. image: {
  5149. source: "./media/characters/xera/front.svg",
  5150. extra: 2377 / 1972,
  5151. bottom: 75.5 / 2452
  5152. }
  5153. },
  5154. side: {
  5155. height: math.unit(6, "feet"),
  5156. weight: math.unit(175, "lb"),
  5157. name: "Side",
  5158. image: {
  5159. source: "./media/characters/xera/side.svg",
  5160. extra: 2345 / 2019,
  5161. bottom: 39.7 / 2384
  5162. }
  5163. },
  5164. back: {
  5165. height: math.unit(6, "feet"),
  5166. weight: math.unit(175, "lb"),
  5167. name: "Back",
  5168. image: {
  5169. source: "./media/characters/xera/back.svg",
  5170. extra: 2095 / 1984,
  5171. bottom: 67 / 2166
  5172. }
  5173. },
  5174. },
  5175. [
  5176. {
  5177. name: "Small",
  5178. height: math.unit(10, "feet")
  5179. },
  5180. {
  5181. name: "Macro",
  5182. height: math.unit(500, "meters"),
  5183. default: true
  5184. },
  5185. {
  5186. name: "Macro+",
  5187. height: math.unit(10, "km")
  5188. },
  5189. {
  5190. name: "Gigamacro",
  5191. height: math.unit(25000, "km")
  5192. },
  5193. {
  5194. name: "Teramacro",
  5195. height: math.unit(3e6, "km")
  5196. }
  5197. ]
  5198. ))
  5199. characterMakers.push(() => makeCharacter(
  5200. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5201. {
  5202. front: {
  5203. height: math.unit(6, "feet"),
  5204. weight: math.unit(175, "lb"),
  5205. name: "Front",
  5206. image: {
  5207. source: "./media/characters/nebula/front.svg",
  5208. extra: 2566 / 2362,
  5209. bottom: 81 / 2644
  5210. }
  5211. }
  5212. },
  5213. [
  5214. {
  5215. name: "Small",
  5216. height: math.unit(4.5, "meters")
  5217. },
  5218. {
  5219. name: "Macro",
  5220. height: math.unit(1500, "meters"),
  5221. default: true
  5222. },
  5223. {
  5224. name: "Megamacro",
  5225. height: math.unit(150, "km")
  5226. },
  5227. {
  5228. name: "Gigamacro",
  5229. height: math.unit(27000, "km")
  5230. }
  5231. ]
  5232. ))
  5233. characterMakers.push(() => makeCharacter(
  5234. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5235. {
  5236. front: {
  5237. height: math.unit(6, "feet"),
  5238. weight: math.unit(225, "lb"),
  5239. name: "Front",
  5240. image: {
  5241. source: "./media/characters/abysgar/front.svg",
  5242. extra: 1739/1614,
  5243. bottom: 71/1810
  5244. }
  5245. },
  5246. frontNsfw: {
  5247. height: math.unit(6, "feet"),
  5248. weight: math.unit(225, "lb"),
  5249. name: "Front (NSFW)",
  5250. image: {
  5251. source: "./media/characters/abysgar/front-nsfw.svg",
  5252. extra: 1739/1614,
  5253. bottom: 71/1810
  5254. }
  5255. },
  5256. back: {
  5257. height: math.unit(4.6, "feet"),
  5258. weight: math.unit(225, "lb"),
  5259. name: "Back",
  5260. image: {
  5261. source: "./media/characters/abysgar/back.svg",
  5262. extra: 1384/1327,
  5263. bottom: 0/1384
  5264. }
  5265. },
  5266. head: {
  5267. height: math.unit(1.25, "feet"),
  5268. name: "Head",
  5269. image: {
  5270. source: "./media/characters/abysgar/head.svg",
  5271. extra: 669/569,
  5272. bottom: 0/669
  5273. }
  5274. },
  5275. },
  5276. [
  5277. {
  5278. name: "Small",
  5279. height: math.unit(4.5, "meters")
  5280. },
  5281. {
  5282. name: "Macro",
  5283. height: math.unit(1250, "meters"),
  5284. default: true
  5285. },
  5286. {
  5287. name: "Megamacro",
  5288. height: math.unit(125, "km")
  5289. },
  5290. {
  5291. name: "Gigamacro",
  5292. height: math.unit(26000, "km")
  5293. }
  5294. ]
  5295. ))
  5296. characterMakers.push(() => makeCharacter(
  5297. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5298. {
  5299. front: {
  5300. height: math.unit(6, "feet"),
  5301. weight: math.unit(180, "lb"),
  5302. name: "Front",
  5303. image: {
  5304. source: "./media/characters/yakuz/front.svg"
  5305. }
  5306. }
  5307. },
  5308. [
  5309. {
  5310. name: "Small",
  5311. height: math.unit(5, "meters")
  5312. },
  5313. {
  5314. name: "Macro",
  5315. height: math.unit(1500, "meters"),
  5316. default: true
  5317. },
  5318. {
  5319. name: "Megamacro",
  5320. height: math.unit(200, "km")
  5321. },
  5322. {
  5323. name: "Gigamacro",
  5324. height: math.unit(100000, "km")
  5325. }
  5326. ]
  5327. ))
  5328. characterMakers.push(() => makeCharacter(
  5329. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5330. {
  5331. front: {
  5332. height: math.unit(6, "feet"),
  5333. weight: math.unit(175, "lb"),
  5334. name: "Front",
  5335. image: {
  5336. source: "./media/characters/mirova/front.svg",
  5337. extra: 3334 / 3071,
  5338. bottom: 42 / 3375.6
  5339. }
  5340. }
  5341. },
  5342. [
  5343. {
  5344. name: "Small",
  5345. height: math.unit(5, "meters")
  5346. },
  5347. {
  5348. name: "Macro",
  5349. height: math.unit(900, "meters"),
  5350. default: true
  5351. },
  5352. {
  5353. name: "Megamacro",
  5354. height: math.unit(135, "km")
  5355. },
  5356. {
  5357. name: "Gigamacro",
  5358. height: math.unit(20000, "km")
  5359. }
  5360. ]
  5361. ))
  5362. characterMakers.push(() => makeCharacter(
  5363. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5364. {
  5365. side: {
  5366. height: math.unit(28.35, "feet"),
  5367. weight: math.unit(99.75, "tons"),
  5368. name: "Side",
  5369. image: {
  5370. source: "./media/characters/asana-mech/side.svg",
  5371. extra: 923 / 699,
  5372. bottom: 50 / 975
  5373. }
  5374. },
  5375. chaingun: {
  5376. height: math.unit(7, "feet"),
  5377. weight: math.unit(2400, "lb"),
  5378. name: "Chaingun",
  5379. image: {
  5380. source: "./media/characters/asana-mech/chaingun.svg"
  5381. }
  5382. },
  5383. laser: {
  5384. height: math.unit(7.12, "feet"),
  5385. weight: math.unit(2000, "lb"),
  5386. name: "Laser",
  5387. image: {
  5388. source: "./media/characters/asana-mech/laser.svg"
  5389. }
  5390. },
  5391. },
  5392. [
  5393. {
  5394. name: "Normal",
  5395. height: math.unit(28.35, "feet"),
  5396. default: true
  5397. },
  5398. {
  5399. name: "Macro",
  5400. height: math.unit(2500, "feet")
  5401. },
  5402. {
  5403. name: "Megamacro",
  5404. height: math.unit(25, "miles")
  5405. },
  5406. {
  5407. name: "Examacro",
  5408. height: math.unit(6e8, "lightyears")
  5409. },
  5410. ]
  5411. ))
  5412. characterMakers.push(() => makeCharacter(
  5413. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5414. {
  5415. front: {
  5416. height: math.unit(5, "meters"),
  5417. weight: math.unit(1000, "kg"),
  5418. name: "Front",
  5419. image: {
  5420. source: "./media/characters/asche/front.svg",
  5421. extra: 1258 / 1190,
  5422. bottom: 47 / 1305
  5423. }
  5424. },
  5425. frontUnderwear: {
  5426. height: math.unit(5, "meters"),
  5427. weight: math.unit(1000, "kg"),
  5428. name: "Front (Underwear)",
  5429. image: {
  5430. source: "./media/characters/asche/front-underwear.svg",
  5431. extra: 1258 / 1190,
  5432. bottom: 47 / 1305
  5433. }
  5434. },
  5435. frontDressed: {
  5436. height: math.unit(5, "meters"),
  5437. weight: math.unit(1000, "kg"),
  5438. name: "Front (Dressed)",
  5439. image: {
  5440. source: "./media/characters/asche/front-dressed.svg",
  5441. extra: 1258 / 1190,
  5442. bottom: 47 / 1305
  5443. }
  5444. },
  5445. frontArmor: {
  5446. height: math.unit(5, "meters"),
  5447. weight: math.unit(1000, "kg"),
  5448. name: "Front (Armored)",
  5449. image: {
  5450. source: "./media/characters/asche/front-armored.svg",
  5451. extra: 1374 / 1308,
  5452. bottom: 23 / 1397
  5453. }
  5454. },
  5455. mp724: {
  5456. height: math.unit(0.96, "meters"),
  5457. weight: math.unit(38, "kg"),
  5458. name: "H&K MP724",
  5459. image: {
  5460. source: "./media/characters/asche/h&k-mp724.svg"
  5461. }
  5462. },
  5463. side: {
  5464. height: math.unit(5, "meters"),
  5465. weight: math.unit(1000, "kg"),
  5466. name: "Side",
  5467. image: {
  5468. source: "./media/characters/asche/side.svg",
  5469. extra: 1717 / 1609,
  5470. bottom: 0.005
  5471. }
  5472. },
  5473. back: {
  5474. height: math.unit(5, "meters"),
  5475. weight: math.unit(1000, "kg"),
  5476. name: "Back",
  5477. image: {
  5478. source: "./media/characters/asche/back.svg",
  5479. extra: 1570 / 1501
  5480. }
  5481. },
  5482. },
  5483. [
  5484. {
  5485. name: "DEFCON 5",
  5486. height: math.unit(5, "meters")
  5487. },
  5488. {
  5489. name: "DEFCON 4",
  5490. height: math.unit(500, "meters"),
  5491. default: true
  5492. },
  5493. {
  5494. name: "DEFCON 3",
  5495. height: math.unit(5, "km")
  5496. },
  5497. {
  5498. name: "DEFCON 2",
  5499. height: math.unit(500, "km")
  5500. },
  5501. {
  5502. name: "DEFCON 1",
  5503. height: math.unit(500000, "km")
  5504. },
  5505. {
  5506. name: "DEFCON 0",
  5507. height: math.unit(3, "gigaparsecs")
  5508. },
  5509. ]
  5510. ))
  5511. characterMakers.push(() => makeCharacter(
  5512. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5513. {
  5514. front: {
  5515. height: math.unit(7, "feet"),
  5516. weight: math.unit(92.7, "kg"),
  5517. name: "Front",
  5518. image: {
  5519. source: "./media/characters/gale/front.svg",
  5520. extra: 977/919,
  5521. bottom: 105/1082
  5522. }
  5523. },
  5524. side: {
  5525. height: math.unit(6.7, "feet"),
  5526. weight: math.unit(92.7, "kg"),
  5527. name: "Side",
  5528. image: {
  5529. source: "./media/characters/gale/side.svg",
  5530. extra: 978/922,
  5531. bottom: 140/1118
  5532. }
  5533. },
  5534. back: {
  5535. height: math.unit(7, "feet"),
  5536. weight: math.unit(92.7, "kg"),
  5537. name: "Back",
  5538. image: {
  5539. source: "./media/characters/gale/back.svg",
  5540. extra: 966/920,
  5541. bottom: 61/1027
  5542. }
  5543. },
  5544. maw: {
  5545. height: math.unit(2.23, "feet"),
  5546. name: "Maw",
  5547. image: {
  5548. source: "./media/characters/gale/maw.svg"
  5549. }
  5550. },
  5551. foot: {
  5552. height: math.unit(2.1, "feet"),
  5553. name: "Foot",
  5554. image: {
  5555. source: "./media/characters/gale/foot.svg"
  5556. }
  5557. },
  5558. },
  5559. [
  5560. {
  5561. name: "Normal",
  5562. height: math.unit(7, "feet")
  5563. },
  5564. {
  5565. name: "Macro",
  5566. height: math.unit(150, "feet"),
  5567. default: true
  5568. },
  5569. {
  5570. name: "Macro+",
  5571. height: math.unit(300, "feet")
  5572. },
  5573. ]
  5574. ))
  5575. characterMakers.push(() => makeCharacter(
  5576. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5577. {
  5578. front: {
  5579. height: math.unit(5 + 10/12, "feet"),
  5580. weight: math.unit(67, "kg"),
  5581. name: "Front",
  5582. image: {
  5583. source: "./media/characters/draylen/front.svg",
  5584. extra: 832/777,
  5585. bottom: 85/917
  5586. }
  5587. }
  5588. },
  5589. [
  5590. {
  5591. name: "Normal",
  5592. height: math.unit(5 + 10/12, "feet")
  5593. },
  5594. {
  5595. name: "Macro",
  5596. height: math.unit(150, "feet"),
  5597. default: true
  5598. }
  5599. ]
  5600. ))
  5601. characterMakers.push(() => makeCharacter(
  5602. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5603. {
  5604. front: {
  5605. height: math.unit(7 + 9 / 12, "feet"),
  5606. weight: math.unit(379, "lbs"),
  5607. name: "Front",
  5608. image: {
  5609. source: "./media/characters/chez/front.svg"
  5610. }
  5611. },
  5612. side: {
  5613. height: math.unit(7 + 9 / 12, "feet"),
  5614. weight: math.unit(379, "lbs"),
  5615. name: "Side",
  5616. image: {
  5617. source: "./media/characters/chez/side.svg"
  5618. }
  5619. }
  5620. },
  5621. [
  5622. {
  5623. name: "Normal",
  5624. height: math.unit(7 + 9 / 12, "feet"),
  5625. default: true
  5626. },
  5627. {
  5628. name: "God King",
  5629. height: math.unit(9750000, "meters")
  5630. }
  5631. ]
  5632. ))
  5633. characterMakers.push(() => makeCharacter(
  5634. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5635. {
  5636. front: {
  5637. height: math.unit(6, "feet"),
  5638. weight: math.unit(275, "lbs"),
  5639. name: "Front",
  5640. image: {
  5641. source: "./media/characters/kaylum/front.svg",
  5642. bottom: 0.01,
  5643. extra: 1166 / 1031
  5644. }
  5645. },
  5646. frontWingless: {
  5647. height: math.unit(6, "feet"),
  5648. weight: math.unit(275, "lbs"),
  5649. name: "Front (Wingless)",
  5650. image: {
  5651. source: "./media/characters/kaylum/front-wingless.svg",
  5652. bottom: 0.01,
  5653. extra: 1117 / 1031
  5654. }
  5655. }
  5656. },
  5657. [
  5658. {
  5659. name: "Normal",
  5660. height: math.unit(3.05, "meters")
  5661. },
  5662. {
  5663. name: "Master",
  5664. height: math.unit(5.5, "meters")
  5665. },
  5666. {
  5667. name: "Rampage",
  5668. height: math.unit(19, "meters")
  5669. },
  5670. {
  5671. name: "Macro Lite",
  5672. height: math.unit(37, "meters")
  5673. },
  5674. {
  5675. name: "Hyper Predator",
  5676. height: math.unit(61, "meters")
  5677. },
  5678. {
  5679. name: "Macro",
  5680. height: math.unit(138, "meters"),
  5681. default: true
  5682. }
  5683. ]
  5684. ))
  5685. characterMakers.push(() => makeCharacter(
  5686. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5687. {
  5688. front: {
  5689. height: math.unit(5 + 5 / 12, "feet"),
  5690. weight: math.unit(120, "lbs"),
  5691. name: "Front",
  5692. image: {
  5693. source: "./media/characters/geta/front.svg",
  5694. extra: 1003/933,
  5695. bottom: 21/1024
  5696. }
  5697. },
  5698. paw: {
  5699. height: math.unit(0.35, "feet"),
  5700. name: "Paw",
  5701. image: {
  5702. source: "./media/characters/geta/paw.svg"
  5703. }
  5704. },
  5705. },
  5706. [
  5707. {
  5708. name: "Micro",
  5709. height: math.unit(3, "inches"),
  5710. default: true
  5711. },
  5712. {
  5713. name: "Normal",
  5714. height: math.unit(5 + 5 / 12, "feet")
  5715. }
  5716. ]
  5717. ))
  5718. characterMakers.push(() => makeCharacter(
  5719. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5720. {
  5721. front: {
  5722. height: math.unit(6, "feet"),
  5723. weight: math.unit(300, "lbs"),
  5724. name: "Front",
  5725. image: {
  5726. source: "./media/characters/tyrnn/front.svg"
  5727. }
  5728. }
  5729. },
  5730. [
  5731. {
  5732. name: "Main Height",
  5733. height: math.unit(355, "feet"),
  5734. default: true
  5735. },
  5736. {
  5737. name: "Fave. Height",
  5738. height: math.unit(2400, "feet")
  5739. }
  5740. ]
  5741. ))
  5742. characterMakers.push(() => makeCharacter(
  5743. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5744. {
  5745. front: {
  5746. height: math.unit(6, "feet"),
  5747. weight: math.unit(300, "lbs"),
  5748. name: "Front",
  5749. image: {
  5750. source: "./media/characters/appledectomy/front.svg"
  5751. }
  5752. }
  5753. },
  5754. [
  5755. {
  5756. name: "Macro",
  5757. height: math.unit(2500, "feet")
  5758. },
  5759. {
  5760. name: "Megamacro",
  5761. height: math.unit(50, "miles"),
  5762. default: true
  5763. },
  5764. {
  5765. name: "Gigamacro",
  5766. height: math.unit(5000, "miles")
  5767. },
  5768. {
  5769. name: "Teramacro",
  5770. height: math.unit(250000, "miles")
  5771. },
  5772. ]
  5773. ))
  5774. characterMakers.push(() => makeCharacter(
  5775. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5776. {
  5777. front: {
  5778. height: math.unit(6, "feet"),
  5779. weight: math.unit(200, "lbs"),
  5780. name: "Front",
  5781. image: {
  5782. source: "./media/characters/vulpes/front.svg",
  5783. extra: 573 / 543,
  5784. bottom: 0.033
  5785. }
  5786. },
  5787. side: {
  5788. height: math.unit(6, "feet"),
  5789. weight: math.unit(200, "lbs"),
  5790. name: "Side",
  5791. image: {
  5792. source: "./media/characters/vulpes/side.svg",
  5793. extra: 577 / 549,
  5794. bottom: 11 / 588
  5795. }
  5796. },
  5797. back: {
  5798. height: math.unit(6, "feet"),
  5799. weight: math.unit(200, "lbs"),
  5800. name: "Back",
  5801. image: {
  5802. source: "./media/characters/vulpes/back.svg",
  5803. extra: 573 / 549,
  5804. bottom: 20 / 593
  5805. }
  5806. },
  5807. feet: {
  5808. height: math.unit(1.276, "feet"),
  5809. name: "Feet",
  5810. image: {
  5811. source: "./media/characters/vulpes/feet.svg"
  5812. }
  5813. },
  5814. maw: {
  5815. height: math.unit(1.18, "feet"),
  5816. name: "Maw",
  5817. image: {
  5818. source: "./media/characters/vulpes/maw.svg"
  5819. }
  5820. },
  5821. },
  5822. [
  5823. {
  5824. name: "Micro",
  5825. height: math.unit(2, "inches")
  5826. },
  5827. {
  5828. name: "Normal",
  5829. height: math.unit(6.3, "feet")
  5830. },
  5831. {
  5832. name: "Macro",
  5833. height: math.unit(850, "feet")
  5834. },
  5835. {
  5836. name: "Megamacro",
  5837. height: math.unit(7500, "feet"),
  5838. default: true
  5839. },
  5840. {
  5841. name: "Gigamacro",
  5842. height: math.unit(570000, "miles")
  5843. }
  5844. ]
  5845. ))
  5846. characterMakers.push(() => makeCharacter(
  5847. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5848. {
  5849. front: {
  5850. height: math.unit(6, "feet"),
  5851. weight: math.unit(210, "lbs"),
  5852. name: "Front",
  5853. image: {
  5854. source: "./media/characters/rain-fallen/front.svg"
  5855. }
  5856. },
  5857. side: {
  5858. height: math.unit(6, "feet"),
  5859. weight: math.unit(210, "lbs"),
  5860. name: "Side",
  5861. image: {
  5862. source: "./media/characters/rain-fallen/side.svg"
  5863. }
  5864. },
  5865. back: {
  5866. height: math.unit(6, "feet"),
  5867. weight: math.unit(210, "lbs"),
  5868. name: "Back",
  5869. image: {
  5870. source: "./media/characters/rain-fallen/back.svg"
  5871. }
  5872. },
  5873. feral: {
  5874. height: math.unit(9, "feet"),
  5875. weight: math.unit(700, "lbs"),
  5876. name: "Feral",
  5877. image: {
  5878. source: "./media/characters/rain-fallen/feral.svg"
  5879. }
  5880. },
  5881. },
  5882. [
  5883. {
  5884. name: "Meddling with Mortals",
  5885. height: math.unit(8 + 8/12, "feet")
  5886. },
  5887. {
  5888. name: "Normal",
  5889. height: math.unit(5, "meter")
  5890. },
  5891. {
  5892. name: "Macro",
  5893. height: math.unit(150, "meter"),
  5894. default: true
  5895. },
  5896. {
  5897. name: "Megamacro",
  5898. height: math.unit(278e6, "meter")
  5899. },
  5900. {
  5901. name: "Gigamacro",
  5902. height: math.unit(2e9, "meter")
  5903. },
  5904. {
  5905. name: "Teramacro",
  5906. height: math.unit(8e12, "meter")
  5907. },
  5908. {
  5909. name: "Devourer",
  5910. height: math.unit(14, "zettameters")
  5911. },
  5912. {
  5913. name: "Scarlet King",
  5914. height: math.unit(18, "yottameters")
  5915. },
  5916. {
  5917. name: "Void",
  5918. height: math.unit(1e88, "yottameters")
  5919. }
  5920. ]
  5921. ))
  5922. characterMakers.push(() => makeCharacter(
  5923. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5924. {
  5925. standing: {
  5926. height: math.unit(6, "feet"),
  5927. weight: math.unit(180, "lbs"),
  5928. name: "Standing",
  5929. image: {
  5930. source: "./media/characters/zaakira/standing.svg",
  5931. extra: 1599/1504,
  5932. bottom: 39/1638
  5933. }
  5934. },
  5935. laying: {
  5936. height: math.unit(3.3, "feet"),
  5937. weight: math.unit(180, "lbs"),
  5938. name: "Laying",
  5939. image: {
  5940. source: "./media/characters/zaakira/laying.svg"
  5941. }
  5942. },
  5943. },
  5944. [
  5945. {
  5946. name: "Normal",
  5947. height: math.unit(12, "feet")
  5948. },
  5949. {
  5950. name: "Macro",
  5951. height: math.unit(279, "feet"),
  5952. default: true
  5953. }
  5954. ]
  5955. ))
  5956. characterMakers.push(() => makeCharacter(
  5957. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5958. {
  5959. femSfw: {
  5960. height: math.unit(8, "feet"),
  5961. weight: math.unit(350, "lb"),
  5962. name: "Fem",
  5963. image: {
  5964. source: "./media/characters/sigvald/fem-sfw.svg",
  5965. extra: 182 / 164,
  5966. bottom: 8.7 / 190.5
  5967. }
  5968. },
  5969. femNsfw: {
  5970. height: math.unit(8, "feet"),
  5971. weight: math.unit(350, "lb"),
  5972. name: "Fem (NSFW)",
  5973. image: {
  5974. source: "./media/characters/sigvald/fem-nsfw.svg",
  5975. extra: 182 / 164,
  5976. bottom: 8.7 / 190.5
  5977. }
  5978. },
  5979. maleNsfw: {
  5980. height: math.unit(8, "feet"),
  5981. weight: math.unit(350, "lb"),
  5982. name: "Male (NSFW)",
  5983. image: {
  5984. source: "./media/characters/sigvald/male-nsfw.svg",
  5985. extra: 182 / 164,
  5986. bottom: 8.7 / 190.5
  5987. }
  5988. },
  5989. hermNsfw: {
  5990. height: math.unit(8, "feet"),
  5991. weight: math.unit(350, "lb"),
  5992. name: "Herm (NSFW)",
  5993. image: {
  5994. source: "./media/characters/sigvald/herm-nsfw.svg",
  5995. extra: 182 / 164,
  5996. bottom: 8.7 / 190.5
  5997. }
  5998. },
  5999. dick: {
  6000. height: math.unit(2.36, "feet"),
  6001. name: "Dick",
  6002. image: {
  6003. source: "./media/characters/sigvald/dick.svg"
  6004. }
  6005. },
  6006. eye: {
  6007. height: math.unit(0.31, "feet"),
  6008. name: "Eye",
  6009. image: {
  6010. source: "./media/characters/sigvald/eye.svg"
  6011. }
  6012. },
  6013. mouth: {
  6014. height: math.unit(0.92, "feet"),
  6015. name: "Mouth",
  6016. image: {
  6017. source: "./media/characters/sigvald/mouth.svg"
  6018. }
  6019. },
  6020. paws: {
  6021. height: math.unit(2.2, "feet"),
  6022. name: "Paws",
  6023. image: {
  6024. source: "./media/characters/sigvald/paws.svg"
  6025. }
  6026. }
  6027. },
  6028. [
  6029. {
  6030. name: "Normal",
  6031. height: math.unit(8, "feet")
  6032. },
  6033. {
  6034. name: "Large",
  6035. height: math.unit(12, "feet")
  6036. },
  6037. {
  6038. name: "Larger",
  6039. height: math.unit(20, "feet")
  6040. },
  6041. {
  6042. name: "Macro",
  6043. height: math.unit(150, "feet")
  6044. },
  6045. {
  6046. name: "Macro+",
  6047. height: math.unit(200, "feet"),
  6048. default: true
  6049. },
  6050. ]
  6051. ))
  6052. characterMakers.push(() => makeCharacter(
  6053. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6054. {
  6055. side: {
  6056. height: math.unit(12, "feet"),
  6057. weight: math.unit(2000, "kg"),
  6058. name: "Side",
  6059. image: {
  6060. source: "./media/characters/scott/side.svg",
  6061. extra: 754 / 724,
  6062. bottom: 0.069
  6063. }
  6064. },
  6065. upright: {
  6066. height: math.unit(12, "feet"),
  6067. weight: math.unit(2000, "kg"),
  6068. name: "Upright",
  6069. image: {
  6070. source: "./media/characters/scott/upright.svg",
  6071. extra: 3881 / 3722,
  6072. bottom: 0.05
  6073. }
  6074. },
  6075. },
  6076. [
  6077. {
  6078. name: "Normal",
  6079. height: math.unit(12, "feet"),
  6080. default: true
  6081. },
  6082. ]
  6083. ))
  6084. characterMakers.push(() => makeCharacter(
  6085. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6086. {
  6087. side: {
  6088. height: math.unit(8, "meters"),
  6089. weight: math.unit(84755, "lbs"),
  6090. name: "Side",
  6091. image: {
  6092. source: "./media/characters/tobias/side.svg",
  6093. extra: 1474 / 1096,
  6094. bottom: 38.9 / 1513.1235
  6095. }
  6096. },
  6097. maw: {
  6098. height: math.unit(2.3, "meters"),
  6099. name: "Maw",
  6100. image: {
  6101. source: "./media/characters/tobias/maw.svg"
  6102. }
  6103. },
  6104. burp: {
  6105. height: math.unit(2.85, "meters"),
  6106. name: "Burp",
  6107. image: {
  6108. source: "./media/characters/tobias/burp.svg"
  6109. }
  6110. },
  6111. },
  6112. [
  6113. {
  6114. name: "Normal",
  6115. height: math.unit(8, "meters"),
  6116. default: true
  6117. },
  6118. ]
  6119. ))
  6120. characterMakers.push(() => makeCharacter(
  6121. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6122. {
  6123. front: {
  6124. height: math.unit(5.5, "feet"),
  6125. weight: math.unit(400, "lbs"),
  6126. name: "Front",
  6127. image: {
  6128. source: "./media/characters/kieran/front.svg",
  6129. extra: 2694 / 2364,
  6130. bottom: 217 / 2908
  6131. }
  6132. },
  6133. side: {
  6134. height: math.unit(5.5, "feet"),
  6135. weight: math.unit(400, "lbs"),
  6136. name: "Side",
  6137. image: {
  6138. source: "./media/characters/kieran/side.svg",
  6139. extra: 875 / 777,
  6140. bottom: 84.6 / 959
  6141. }
  6142. },
  6143. },
  6144. [
  6145. {
  6146. name: "Normal",
  6147. height: math.unit(5.5, "feet"),
  6148. default: true
  6149. },
  6150. ]
  6151. ))
  6152. characterMakers.push(() => makeCharacter(
  6153. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6154. {
  6155. side: {
  6156. height: math.unit(2, "meters"),
  6157. weight: math.unit(70, "kg"),
  6158. name: "Side",
  6159. image: {
  6160. source: "./media/characters/sanya/side.svg",
  6161. bottom: 0.02,
  6162. extra: 1.02
  6163. }
  6164. },
  6165. },
  6166. [
  6167. {
  6168. name: "Small",
  6169. height: math.unit(2, "meters")
  6170. },
  6171. {
  6172. name: "Normal",
  6173. height: math.unit(3, "meters")
  6174. },
  6175. {
  6176. name: "Macro",
  6177. height: math.unit(16, "meters"),
  6178. default: true
  6179. },
  6180. ]
  6181. ))
  6182. characterMakers.push(() => makeCharacter(
  6183. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6184. {
  6185. front: {
  6186. height: math.unit(2, "meters"),
  6187. weight: math.unit(120, "kg"),
  6188. name: "Front",
  6189. image: {
  6190. source: "./media/characters/miranda/front.svg",
  6191. extra: 195 / 185,
  6192. bottom: 10.9 / 206.5
  6193. }
  6194. },
  6195. back: {
  6196. height: math.unit(2, "meters"),
  6197. weight: math.unit(120, "kg"),
  6198. name: "Back",
  6199. image: {
  6200. source: "./media/characters/miranda/back.svg",
  6201. extra: 201 / 193,
  6202. bottom: 2.3 / 203.7
  6203. }
  6204. },
  6205. },
  6206. [
  6207. {
  6208. name: "Normal",
  6209. height: math.unit(10, "feet"),
  6210. default: true
  6211. }
  6212. ]
  6213. ))
  6214. characterMakers.push(() => makeCharacter(
  6215. { name: "James", species: ["deer"], tags: ["anthro"] },
  6216. {
  6217. side: {
  6218. height: math.unit(2, "meters"),
  6219. weight: math.unit(100, "kg"),
  6220. name: "Front",
  6221. image: {
  6222. source: "./media/characters/james/front.svg",
  6223. extra: 10 / 8.5
  6224. }
  6225. },
  6226. },
  6227. [
  6228. {
  6229. name: "Normal",
  6230. height: math.unit(8.5, "feet"),
  6231. default: true
  6232. }
  6233. ]
  6234. ))
  6235. characterMakers.push(() => makeCharacter(
  6236. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6237. {
  6238. side: {
  6239. height: math.unit(9.5, "feet"),
  6240. weight: math.unit(2500, "lbs"),
  6241. name: "Side",
  6242. image: {
  6243. source: "./media/characters/heather/side.svg"
  6244. }
  6245. },
  6246. },
  6247. [
  6248. {
  6249. name: "Normal",
  6250. height: math.unit(9.5, "feet"),
  6251. default: true
  6252. }
  6253. ]
  6254. ))
  6255. characterMakers.push(() => makeCharacter(
  6256. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6257. {
  6258. side: {
  6259. height: math.unit(6.5, "feet"),
  6260. weight: math.unit(400, "lbs"),
  6261. name: "Side",
  6262. image: {
  6263. source: "./media/characters/lukas/side.svg",
  6264. extra: 7.25 / 6.5
  6265. }
  6266. },
  6267. },
  6268. [
  6269. {
  6270. name: "Normal",
  6271. height: math.unit(6.5, "feet"),
  6272. default: true
  6273. }
  6274. ]
  6275. ))
  6276. characterMakers.push(() => makeCharacter(
  6277. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6278. {
  6279. side: {
  6280. height: math.unit(5, "feet"),
  6281. weight: math.unit(3000, "lbs"),
  6282. name: "Side",
  6283. image: {
  6284. source: "./media/characters/louise/side.svg"
  6285. }
  6286. },
  6287. },
  6288. [
  6289. {
  6290. name: "Normal",
  6291. height: math.unit(5, "feet"),
  6292. default: true
  6293. }
  6294. ]
  6295. ))
  6296. characterMakers.push(() => makeCharacter(
  6297. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6298. {
  6299. side: {
  6300. height: math.unit(6, "feet"),
  6301. weight: math.unit(150, "lbs"),
  6302. name: "Side",
  6303. image: {
  6304. source: "./media/characters/ramona/side.svg",
  6305. extra: 871/854,
  6306. bottom: 41/912
  6307. }
  6308. },
  6309. },
  6310. [
  6311. {
  6312. name: "Normal",
  6313. height: math.unit(6 + 4/12, "feet")
  6314. },
  6315. {
  6316. name: "Minimacro",
  6317. height: math.unit(5.3, "meters"),
  6318. default: true
  6319. },
  6320. {
  6321. name: "Macro",
  6322. height: math.unit(20, "stories")
  6323. },
  6324. {
  6325. name: "Macro+",
  6326. height: math.unit(50, "stories")
  6327. },
  6328. ]
  6329. ))
  6330. characterMakers.push(() => makeCharacter(
  6331. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6332. {
  6333. standing: {
  6334. height: math.unit(5.75, "feet"),
  6335. weight: math.unit(160, "lbs"),
  6336. name: "Standing",
  6337. image: {
  6338. source: "./media/characters/deerpuff/standing.svg",
  6339. extra: 682 / 624
  6340. }
  6341. },
  6342. sitting: {
  6343. height: math.unit(5.75 / 1.79, "feet"),
  6344. weight: math.unit(160, "lbs"),
  6345. name: "Sitting",
  6346. image: {
  6347. source: "./media/characters/deerpuff/sitting.svg",
  6348. bottom: 44 / 400,
  6349. extra: 1
  6350. }
  6351. },
  6352. taurLaying: {
  6353. height: math.unit(6, "feet"),
  6354. weight: math.unit(400, "lbs"),
  6355. name: "Taur (Laying)",
  6356. image: {
  6357. source: "./media/characters/deerpuff/taur-laying.svg"
  6358. }
  6359. },
  6360. },
  6361. [
  6362. {
  6363. name: "Puffball",
  6364. height: math.unit(6, "inches")
  6365. },
  6366. {
  6367. name: "Normalpuff",
  6368. height: math.unit(5.75, "feet")
  6369. },
  6370. {
  6371. name: "Macropuff",
  6372. height: math.unit(1500, "feet"),
  6373. default: true
  6374. },
  6375. {
  6376. name: "Megapuff",
  6377. height: math.unit(500, "miles")
  6378. },
  6379. {
  6380. name: "Gigapuff",
  6381. height: math.unit(250000, "miles")
  6382. },
  6383. {
  6384. name: "Omegapuff",
  6385. height: math.unit(1000, "lightyears")
  6386. },
  6387. ]
  6388. ))
  6389. characterMakers.push(() => makeCharacter(
  6390. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6391. {
  6392. stomping: {
  6393. height: math.unit(6, "feet"),
  6394. weight: math.unit(170, "lbs"),
  6395. name: "Stomping",
  6396. image: {
  6397. source: "./media/characters/vivian/stomping.svg"
  6398. }
  6399. },
  6400. sitting: {
  6401. height: math.unit(6 / 1.75, "feet"),
  6402. weight: math.unit(170, "lbs"),
  6403. name: "Sitting",
  6404. image: {
  6405. source: "./media/characters/vivian/sitting.svg",
  6406. bottom: 1 / 6.4,
  6407. extra: 1,
  6408. }
  6409. },
  6410. },
  6411. [
  6412. {
  6413. name: "Normal",
  6414. height: math.unit(7, "feet"),
  6415. default: true
  6416. },
  6417. {
  6418. name: "Macro",
  6419. height: math.unit(10, "stories")
  6420. },
  6421. {
  6422. name: "Macro+",
  6423. height: math.unit(30, "stories")
  6424. },
  6425. {
  6426. name: "Megamacro",
  6427. height: math.unit(10, "miles")
  6428. },
  6429. {
  6430. name: "Megamacro+",
  6431. height: math.unit(2750000, "meters")
  6432. },
  6433. ]
  6434. ))
  6435. characterMakers.push(() => makeCharacter(
  6436. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6437. {
  6438. front: {
  6439. height: math.unit(6, "feet"),
  6440. weight: math.unit(160, "lbs"),
  6441. name: "Front",
  6442. image: {
  6443. source: "./media/characters/prince/front.svg",
  6444. extra: 1938/1682,
  6445. bottom: 45/1983
  6446. }
  6447. },
  6448. back: {
  6449. height: math.unit(6, "feet"),
  6450. weight: math.unit(160, "lbs"),
  6451. name: "Back",
  6452. image: {
  6453. source: "./media/characters/prince/back.svg",
  6454. extra: 1955/1726,
  6455. bottom: 6/1961
  6456. }
  6457. },
  6458. },
  6459. [
  6460. {
  6461. name: "Normal",
  6462. height: math.unit(7.75, "feet"),
  6463. default: true
  6464. },
  6465. {
  6466. name: "Not cute",
  6467. height: math.unit(17, "feet")
  6468. },
  6469. {
  6470. name: "I said NOT",
  6471. height: math.unit(91, "feet")
  6472. },
  6473. {
  6474. name: "Please stop",
  6475. height: math.unit(560, "feet")
  6476. },
  6477. {
  6478. name: "What have you done",
  6479. height: math.unit(2200, "feet")
  6480. },
  6481. {
  6482. name: "Deer God",
  6483. height: math.unit(3.6, "miles")
  6484. },
  6485. ]
  6486. ))
  6487. characterMakers.push(() => makeCharacter(
  6488. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6489. {
  6490. standing: {
  6491. height: math.unit(6, "feet"),
  6492. weight: math.unit(300, "lbs"),
  6493. name: "Standing",
  6494. image: {
  6495. source: "./media/characters/psymon/standing.svg",
  6496. extra: 1888 / 1810,
  6497. bottom: 0.05
  6498. }
  6499. },
  6500. slithering: {
  6501. height: math.unit(6, "feet"),
  6502. weight: math.unit(300, "lbs"),
  6503. name: "Slithering",
  6504. image: {
  6505. source: "./media/characters/psymon/slithering.svg",
  6506. extra: 1330 / 1224
  6507. }
  6508. },
  6509. slitheringAlt: {
  6510. height: math.unit(6, "feet"),
  6511. weight: math.unit(300, "lbs"),
  6512. name: "Slithering (Alt)",
  6513. image: {
  6514. source: "./media/characters/psymon/slithering-alt.svg",
  6515. extra: 1330 / 1224
  6516. }
  6517. },
  6518. },
  6519. [
  6520. {
  6521. name: "Normal",
  6522. height: math.unit(11.25, "feet"),
  6523. default: true
  6524. },
  6525. {
  6526. name: "Large",
  6527. height: math.unit(27, "feet")
  6528. },
  6529. {
  6530. name: "Giant",
  6531. height: math.unit(87, "feet")
  6532. },
  6533. {
  6534. name: "Macro",
  6535. height: math.unit(365, "feet")
  6536. },
  6537. {
  6538. name: "Megamacro",
  6539. height: math.unit(3, "miles")
  6540. },
  6541. {
  6542. name: "World Serpent",
  6543. height: math.unit(8000, "miles")
  6544. },
  6545. ]
  6546. ))
  6547. characterMakers.push(() => makeCharacter(
  6548. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6549. {
  6550. front: {
  6551. height: math.unit(6, "feet"),
  6552. weight: math.unit(180, "lbs"),
  6553. name: "Front",
  6554. image: {
  6555. source: "./media/characters/daimos/front.svg",
  6556. extra: 4160 / 3897,
  6557. bottom: 0.021
  6558. }
  6559. }
  6560. },
  6561. [
  6562. {
  6563. name: "Normal",
  6564. height: math.unit(8, "feet"),
  6565. default: true
  6566. },
  6567. {
  6568. name: "Big Dog",
  6569. height: math.unit(22, "feet")
  6570. },
  6571. {
  6572. name: "Macro",
  6573. height: math.unit(127, "feet")
  6574. },
  6575. {
  6576. name: "Megamacro",
  6577. height: math.unit(3600, "feet")
  6578. },
  6579. ]
  6580. ))
  6581. characterMakers.push(() => makeCharacter(
  6582. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6583. {
  6584. side: {
  6585. height: math.unit(6, "feet"),
  6586. weight: math.unit(180, "lbs"),
  6587. name: "Side",
  6588. image: {
  6589. source: "./media/characters/blake/side.svg",
  6590. extra: 1212 / 1120,
  6591. bottom: 0.05
  6592. }
  6593. },
  6594. crouched: {
  6595. height: math.unit(6 * 0.57, "feet"),
  6596. weight: math.unit(180, "lbs"),
  6597. name: "Crouched",
  6598. image: {
  6599. source: "./media/characters/blake/crouched.svg",
  6600. extra: 840 / 587,
  6601. bottom: 0.04
  6602. }
  6603. },
  6604. bent: {
  6605. height: math.unit(6 * 0.75, "feet"),
  6606. weight: math.unit(180, "lbs"),
  6607. name: "Bent",
  6608. image: {
  6609. source: "./media/characters/blake/bent.svg",
  6610. extra: 592 / 544,
  6611. bottom: 0.035
  6612. }
  6613. },
  6614. },
  6615. [
  6616. {
  6617. name: "Normal",
  6618. height: math.unit(8 + 1 / 6, "feet"),
  6619. default: true
  6620. },
  6621. {
  6622. name: "Big Backside",
  6623. height: math.unit(37, "feet")
  6624. },
  6625. {
  6626. name: "Subway Shredder",
  6627. height: math.unit(72, "feet")
  6628. },
  6629. {
  6630. name: "City Carver",
  6631. height: math.unit(1675, "feet")
  6632. },
  6633. {
  6634. name: "Tectonic Tweaker",
  6635. height: math.unit(2300, "miles")
  6636. },
  6637. ]
  6638. ))
  6639. characterMakers.push(() => makeCharacter(
  6640. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6641. {
  6642. front: {
  6643. height: math.unit(6, "feet"),
  6644. weight: math.unit(180, "lbs"),
  6645. name: "Front",
  6646. image: {
  6647. source: "./media/characters/guisetto/front.svg",
  6648. extra: 856 / 817,
  6649. bottom: 0.06
  6650. }
  6651. },
  6652. airborne: {
  6653. height: math.unit(6, "feet"),
  6654. weight: math.unit(180, "lbs"),
  6655. name: "Airborne",
  6656. image: {
  6657. source: "./media/characters/guisetto/airborne.svg",
  6658. extra: 584 / 525
  6659. }
  6660. },
  6661. },
  6662. [
  6663. {
  6664. name: "Normal",
  6665. height: math.unit(10 + 11 / 12, "feet"),
  6666. default: true
  6667. },
  6668. {
  6669. name: "Large",
  6670. height: math.unit(35, "feet")
  6671. },
  6672. {
  6673. name: "Macro",
  6674. height: math.unit(475, "feet")
  6675. },
  6676. ]
  6677. ))
  6678. characterMakers.push(() => makeCharacter(
  6679. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6680. {
  6681. front: {
  6682. height: math.unit(6, "feet"),
  6683. weight: math.unit(180, "lbs"),
  6684. name: "Front",
  6685. image: {
  6686. source: "./media/characters/luxor/front.svg",
  6687. extra: 2940 / 2152
  6688. }
  6689. },
  6690. back: {
  6691. height: math.unit(6, "feet"),
  6692. weight: math.unit(180, "lbs"),
  6693. name: "Back",
  6694. image: {
  6695. source: "./media/characters/luxor/back.svg",
  6696. extra: 1083 / 960
  6697. }
  6698. },
  6699. },
  6700. [
  6701. {
  6702. name: "Normal",
  6703. height: math.unit(5 + 5 / 6, "feet"),
  6704. default: true
  6705. },
  6706. {
  6707. name: "Lamp",
  6708. height: math.unit(50, "feet")
  6709. },
  6710. {
  6711. name: "Lämp",
  6712. height: math.unit(300, "feet")
  6713. },
  6714. {
  6715. name: "The sun is a lamp",
  6716. height: math.unit(250000, "miles")
  6717. },
  6718. ]
  6719. ))
  6720. characterMakers.push(() => makeCharacter(
  6721. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6722. {
  6723. front: {
  6724. height: math.unit(6, "feet"),
  6725. weight: math.unit(50, "lbs"),
  6726. name: "Front",
  6727. image: {
  6728. source: "./media/characters/huoyan/front.svg"
  6729. }
  6730. },
  6731. side: {
  6732. height: math.unit(6, "feet"),
  6733. weight: math.unit(180, "lbs"),
  6734. name: "Side",
  6735. image: {
  6736. source: "./media/characters/huoyan/side.svg"
  6737. }
  6738. },
  6739. },
  6740. [
  6741. {
  6742. name: "Chef",
  6743. height: math.unit(9, "feet")
  6744. },
  6745. {
  6746. name: "Normal",
  6747. height: math.unit(65, "feet"),
  6748. default: true
  6749. },
  6750. {
  6751. name: "Macro",
  6752. height: math.unit(780, "feet")
  6753. },
  6754. {
  6755. name: "Flaming Mountain",
  6756. height: math.unit(4.8, "miles")
  6757. },
  6758. {
  6759. name: "Celestial",
  6760. height: math.unit(765000, "miles")
  6761. },
  6762. ]
  6763. ))
  6764. characterMakers.push(() => makeCharacter(
  6765. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6766. {
  6767. front: {
  6768. height: math.unit(5 + 3 / 4, "feet"),
  6769. weight: math.unit(120, "lbs"),
  6770. name: "Front",
  6771. image: {
  6772. source: "./media/characters/tails/front.svg"
  6773. }
  6774. }
  6775. },
  6776. [
  6777. {
  6778. name: "Normal",
  6779. height: math.unit(5 + 3 / 4, "feet"),
  6780. default: true
  6781. }
  6782. ]
  6783. ))
  6784. characterMakers.push(() => makeCharacter(
  6785. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6786. {
  6787. front: {
  6788. height: math.unit(4, "feet"),
  6789. weight: math.unit(50, "lbs"),
  6790. name: "Front",
  6791. image: {
  6792. source: "./media/characters/rainy/front.svg"
  6793. }
  6794. }
  6795. },
  6796. [
  6797. {
  6798. name: "Macro",
  6799. height: math.unit(800, "feet"),
  6800. default: true
  6801. }
  6802. ]
  6803. ))
  6804. characterMakers.push(() => makeCharacter(
  6805. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6806. {
  6807. front: {
  6808. height: math.unit(6, "feet"),
  6809. weight: math.unit(150, "lbs"),
  6810. name: "Front",
  6811. image: {
  6812. source: "./media/characters/rainier/front.svg"
  6813. }
  6814. }
  6815. },
  6816. [
  6817. {
  6818. name: "Micro",
  6819. height: math.unit(2, "mm"),
  6820. default: true
  6821. }
  6822. ]
  6823. ))
  6824. characterMakers.push(() => makeCharacter(
  6825. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6826. {
  6827. front: {
  6828. height: math.unit(8 + 4/12, "feet"),
  6829. weight: math.unit(450, "kilograms"),
  6830. volume: math.unit(5, "cups"),
  6831. name: "Front",
  6832. image: {
  6833. source: "./media/characters/andy-renard/front.svg",
  6834. extra: 1839/1726,
  6835. bottom: 134/1973
  6836. }
  6837. },
  6838. back: {
  6839. height: math.unit(8 + 4/12, "feet"),
  6840. weight: math.unit(450, "kilograms"),
  6841. volume: math.unit(5, "cups"),
  6842. name: "Back",
  6843. image: {
  6844. source: "./media/characters/andy-renard/back.svg",
  6845. extra: 1838/1710,
  6846. bottom: 105/1943
  6847. }
  6848. },
  6849. },
  6850. [
  6851. {
  6852. name: "Tall",
  6853. height: math.unit(8 + 4/12, "feet")
  6854. },
  6855. {
  6856. name: "Mini Macro",
  6857. height: math.unit(15, "feet"),
  6858. default: true
  6859. },
  6860. {
  6861. name: "Macro",
  6862. height: math.unit(100, "feet")
  6863. },
  6864. {
  6865. name: "Mega Macro",
  6866. height: math.unit(1000, "feet")
  6867. },
  6868. {
  6869. name: "Giga Macro",
  6870. height: math.unit(10, "miles")
  6871. },
  6872. {
  6873. name: "God Macro",
  6874. height: math.unit(1, "multiverse")
  6875. },
  6876. ]
  6877. ))
  6878. characterMakers.push(() => makeCharacter(
  6879. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6880. {
  6881. front: {
  6882. height: math.unit(6, "feet"),
  6883. weight: math.unit(210, "lbs"),
  6884. name: "Front",
  6885. image: {
  6886. source: "./media/characters/cimmaron/front-sfw.svg",
  6887. extra: 701 / 676,
  6888. bottom: 0.046
  6889. }
  6890. },
  6891. back: {
  6892. height: math.unit(6, "feet"),
  6893. weight: math.unit(210, "lbs"),
  6894. name: "Back",
  6895. image: {
  6896. source: "./media/characters/cimmaron/back-sfw.svg",
  6897. extra: 701 / 676,
  6898. bottom: 0.046
  6899. }
  6900. },
  6901. frontNsfw: {
  6902. height: math.unit(6, "feet"),
  6903. weight: math.unit(210, "lbs"),
  6904. name: "Front (NSFW)",
  6905. image: {
  6906. source: "./media/characters/cimmaron/front-nsfw.svg",
  6907. extra: 701 / 676,
  6908. bottom: 0.046
  6909. }
  6910. },
  6911. backNsfw: {
  6912. height: math.unit(6, "feet"),
  6913. weight: math.unit(210, "lbs"),
  6914. name: "Back (NSFW)",
  6915. image: {
  6916. source: "./media/characters/cimmaron/back-nsfw.svg",
  6917. extra: 701 / 676,
  6918. bottom: 0.046
  6919. }
  6920. },
  6921. dick: {
  6922. height: math.unit(1.714, "feet"),
  6923. name: "Dick",
  6924. image: {
  6925. source: "./media/characters/cimmaron/dick.svg"
  6926. }
  6927. },
  6928. },
  6929. [
  6930. {
  6931. name: "Normal",
  6932. height: math.unit(6, "feet"),
  6933. default: true
  6934. },
  6935. {
  6936. name: "Macro Mayor",
  6937. height: math.unit(350, "meters")
  6938. },
  6939. ]
  6940. ))
  6941. characterMakers.push(() => makeCharacter(
  6942. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6943. {
  6944. front: {
  6945. height: math.unit(6, "feet"),
  6946. weight: math.unit(200, "lbs"),
  6947. name: "Front",
  6948. image: {
  6949. source: "./media/characters/akari/front.svg",
  6950. extra: 962 / 901,
  6951. bottom: 0.04
  6952. }
  6953. }
  6954. },
  6955. [
  6956. {
  6957. name: "Micro",
  6958. height: math.unit(5, "inches"),
  6959. default: true
  6960. },
  6961. {
  6962. name: "Normal",
  6963. height: math.unit(7, "feet")
  6964. },
  6965. ]
  6966. ))
  6967. characterMakers.push(() => makeCharacter(
  6968. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6969. {
  6970. front: {
  6971. height: math.unit(6, "feet"),
  6972. weight: math.unit(140, "lbs"),
  6973. name: "Front",
  6974. image: {
  6975. source: "./media/characters/cynosura/front.svg",
  6976. extra: 437/410,
  6977. bottom: 9/446
  6978. }
  6979. },
  6980. back: {
  6981. height: math.unit(6, "feet"),
  6982. weight: math.unit(140, "lbs"),
  6983. name: "Back",
  6984. image: {
  6985. source: "./media/characters/cynosura/back.svg",
  6986. extra: 1304/1160,
  6987. bottom: 71/1375
  6988. }
  6989. },
  6990. },
  6991. [
  6992. {
  6993. name: "Micro",
  6994. height: math.unit(4, "inches")
  6995. },
  6996. {
  6997. name: "Normal",
  6998. height: math.unit(5.75, "feet"),
  6999. default: true
  7000. },
  7001. {
  7002. name: "Tall",
  7003. height: math.unit(10, "feet")
  7004. },
  7005. {
  7006. name: "Big",
  7007. height: math.unit(20, "feet")
  7008. },
  7009. {
  7010. name: "Macro",
  7011. height: math.unit(50, "feet")
  7012. },
  7013. ]
  7014. ))
  7015. characterMakers.push(() => makeCharacter(
  7016. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7017. {
  7018. front: {
  7019. height: math.unit(13 + 2/12, "feet"),
  7020. weight: math.unit(800, "kg"),
  7021. name: "Front",
  7022. image: {
  7023. source: "./media/characters/gin/front.svg",
  7024. extra: 1312/1191,
  7025. bottom: 45/1357
  7026. }
  7027. },
  7028. mouth: {
  7029. height: math.unit(2.39 * 1.8, "feet"),
  7030. name: "Mouth",
  7031. image: {
  7032. source: "./media/characters/gin/mouth.svg"
  7033. }
  7034. },
  7035. hand: {
  7036. height: math.unit(1.57 * 2.19, "feet"),
  7037. name: "Hand",
  7038. image: {
  7039. source: "./media/characters/gin/hand.svg"
  7040. }
  7041. },
  7042. foot: {
  7043. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7044. name: "Foot",
  7045. image: {
  7046. source: "./media/characters/gin/foot.svg"
  7047. }
  7048. },
  7049. sole: {
  7050. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7051. name: "Sole",
  7052. image: {
  7053. source: "./media/characters/gin/sole.svg"
  7054. }
  7055. },
  7056. },
  7057. [
  7058. {
  7059. name: "Very Small",
  7060. height: math.unit(13 + 2 / 12, "feet")
  7061. },
  7062. {
  7063. name: "Micro",
  7064. height: math.unit(600, "miles")
  7065. },
  7066. {
  7067. name: "Regular",
  7068. height: math.unit(20, "earths"),
  7069. default: true
  7070. },
  7071. {
  7072. name: "Macro",
  7073. height: math.unit(2.2, "solarradii")
  7074. },
  7075. {
  7076. name: "Teramacro",
  7077. height: math.unit(1.2, "galaxies")
  7078. },
  7079. {
  7080. name: "Omegamacro",
  7081. height: math.unit(200, "universes")
  7082. },
  7083. ]
  7084. ))
  7085. characterMakers.push(() => makeCharacter(
  7086. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7087. {
  7088. front: {
  7089. height: math.unit(6 + 1 / 6, "feet"),
  7090. weight: math.unit(178, "lbs"),
  7091. name: "Front",
  7092. image: {
  7093. source: "./media/characters/guy/front.svg"
  7094. }
  7095. }
  7096. },
  7097. [
  7098. {
  7099. name: "Normal",
  7100. height: math.unit(6 + 1 / 6, "feet"),
  7101. default: true
  7102. },
  7103. {
  7104. name: "Large",
  7105. height: math.unit(25 + 7 / 12, "feet")
  7106. },
  7107. {
  7108. name: "Macro",
  7109. height: math.unit(60 + 9 / 12, "feet")
  7110. },
  7111. {
  7112. name: "Macro+",
  7113. height: math.unit(246, "feet")
  7114. },
  7115. {
  7116. name: "Macro++",
  7117. height: math.unit(878, "feet")
  7118. }
  7119. ]
  7120. ))
  7121. characterMakers.push(() => makeCharacter(
  7122. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7123. {
  7124. front: {
  7125. height: math.unit(9, "feet"),
  7126. weight: math.unit(800, "lbs"),
  7127. name: "Front",
  7128. image: {
  7129. source: "./media/characters/tiberius/front.svg",
  7130. extra: 2295 / 2071
  7131. }
  7132. },
  7133. back: {
  7134. height: math.unit(9, "feet"),
  7135. weight: math.unit(800, "lbs"),
  7136. name: "Back",
  7137. image: {
  7138. source: "./media/characters/tiberius/back.svg",
  7139. extra: 2373 / 2160
  7140. }
  7141. },
  7142. },
  7143. [
  7144. {
  7145. name: "Normal",
  7146. height: math.unit(9, "feet"),
  7147. default: true
  7148. }
  7149. ]
  7150. ))
  7151. characterMakers.push(() => makeCharacter(
  7152. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7153. {
  7154. front: {
  7155. height: math.unit(6, "feet"),
  7156. weight: math.unit(600, "lbs"),
  7157. name: "Front",
  7158. image: {
  7159. source: "./media/characters/surgo/front.svg",
  7160. extra: 3591 / 2227
  7161. }
  7162. },
  7163. back: {
  7164. height: math.unit(6, "feet"),
  7165. weight: math.unit(600, "lbs"),
  7166. name: "Back",
  7167. image: {
  7168. source: "./media/characters/surgo/back.svg",
  7169. extra: 3557 / 2228
  7170. }
  7171. },
  7172. laying: {
  7173. height: math.unit(6 * 0.85, "feet"),
  7174. weight: math.unit(600, "lbs"),
  7175. name: "Laying",
  7176. image: {
  7177. source: "./media/characters/surgo/laying.svg"
  7178. }
  7179. },
  7180. },
  7181. [
  7182. {
  7183. name: "Normal",
  7184. height: math.unit(6, "feet"),
  7185. default: true
  7186. }
  7187. ]
  7188. ))
  7189. characterMakers.push(() => makeCharacter(
  7190. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7191. {
  7192. side: {
  7193. height: math.unit(6, "feet"),
  7194. weight: math.unit(150, "lbs"),
  7195. name: "Side",
  7196. image: {
  7197. source: "./media/characters/cibus/side.svg",
  7198. extra: 800 / 400
  7199. }
  7200. },
  7201. },
  7202. [
  7203. {
  7204. name: "Normal",
  7205. height: math.unit(6, "feet"),
  7206. default: true
  7207. }
  7208. ]
  7209. ))
  7210. characterMakers.push(() => makeCharacter(
  7211. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7212. {
  7213. front: {
  7214. height: math.unit(6, "feet"),
  7215. weight: math.unit(240, "lbs"),
  7216. name: "Front",
  7217. image: {
  7218. source: "./media/characters/nibbles/front.svg"
  7219. }
  7220. },
  7221. side: {
  7222. height: math.unit(6, "feet"),
  7223. weight: math.unit(240, "lbs"),
  7224. name: "Side",
  7225. image: {
  7226. source: "./media/characters/nibbles/side.svg"
  7227. }
  7228. },
  7229. },
  7230. [
  7231. {
  7232. name: "Normal",
  7233. height: math.unit(9, "feet"),
  7234. default: true
  7235. }
  7236. ]
  7237. ))
  7238. characterMakers.push(() => makeCharacter(
  7239. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7240. {
  7241. side: {
  7242. height: math.unit(5 + 1 / 6, "feet"),
  7243. weight: math.unit(130, "lbs"),
  7244. name: "Side",
  7245. image: {
  7246. source: "./media/characters/rikky/side.svg",
  7247. extra: 851 / 801
  7248. }
  7249. },
  7250. },
  7251. [
  7252. {
  7253. name: "Normal",
  7254. height: math.unit(5 + 1 / 6, "feet")
  7255. },
  7256. {
  7257. name: "Macro",
  7258. height: math.unit(152, "feet"),
  7259. default: true
  7260. },
  7261. {
  7262. name: "Megamacro",
  7263. height: math.unit(7, "miles")
  7264. }
  7265. ]
  7266. ))
  7267. characterMakers.push(() => makeCharacter(
  7268. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7269. {
  7270. side: {
  7271. height: math.unit(370, "cm"),
  7272. weight: math.unit(350, "lbs"),
  7273. name: "Side",
  7274. image: {
  7275. source: "./media/characters/malfressa/side.svg"
  7276. }
  7277. },
  7278. walking: {
  7279. height: math.unit(370, "cm"),
  7280. weight: math.unit(350, "lbs"),
  7281. name: "Walking",
  7282. image: {
  7283. source: "./media/characters/malfressa/walking.svg"
  7284. }
  7285. },
  7286. feral: {
  7287. height: math.unit(2500, "cm"),
  7288. weight: math.unit(100000, "lbs"),
  7289. name: "Feral",
  7290. image: {
  7291. source: "./media/characters/malfressa/feral.svg",
  7292. extra: 2108 / 837,
  7293. bottom: 0.02
  7294. }
  7295. },
  7296. },
  7297. [
  7298. {
  7299. name: "Normal",
  7300. height: math.unit(370, "cm")
  7301. },
  7302. {
  7303. name: "Macro",
  7304. height: math.unit(300, "meters"),
  7305. default: true
  7306. }
  7307. ]
  7308. ))
  7309. characterMakers.push(() => makeCharacter(
  7310. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7311. {
  7312. front: {
  7313. height: math.unit(6, "feet"),
  7314. weight: math.unit(60, "kg"),
  7315. name: "Front",
  7316. image: {
  7317. source: "./media/characters/jaro/front.svg",
  7318. extra: 845/817,
  7319. bottom: 45/890
  7320. }
  7321. },
  7322. back: {
  7323. height: math.unit(6, "feet"),
  7324. weight: math.unit(60, "kg"),
  7325. name: "Back",
  7326. image: {
  7327. source: "./media/characters/jaro/back.svg",
  7328. extra: 847/817,
  7329. bottom: 34/881
  7330. }
  7331. },
  7332. },
  7333. [
  7334. {
  7335. name: "Micro",
  7336. height: math.unit(7, "inches")
  7337. },
  7338. {
  7339. name: "Normal",
  7340. height: math.unit(5.5, "feet"),
  7341. default: true
  7342. },
  7343. {
  7344. name: "Minimacro",
  7345. height: math.unit(20, "feet")
  7346. },
  7347. {
  7348. name: "Macro",
  7349. height: math.unit(200, "meters")
  7350. }
  7351. ]
  7352. ))
  7353. characterMakers.push(() => makeCharacter(
  7354. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7355. {
  7356. front: {
  7357. height: math.unit(6, "feet"),
  7358. weight: math.unit(195, "lb"),
  7359. name: "Front",
  7360. image: {
  7361. source: "./media/characters/rogue/front.svg"
  7362. }
  7363. },
  7364. },
  7365. [
  7366. {
  7367. name: "Macro",
  7368. height: math.unit(90, "feet"),
  7369. default: true
  7370. },
  7371. ]
  7372. ))
  7373. characterMakers.push(() => makeCharacter(
  7374. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7375. {
  7376. standing: {
  7377. height: math.unit(5 + 8 / 12, "feet"),
  7378. weight: math.unit(140, "lb"),
  7379. name: "Standing",
  7380. image: {
  7381. source: "./media/characters/piper/standing.svg",
  7382. extra: 1440/1284,
  7383. bottom: 66/1506
  7384. }
  7385. },
  7386. running: {
  7387. height: math.unit(5 + 8 / 12, "feet"),
  7388. weight: math.unit(140, "lb"),
  7389. name: "Running",
  7390. image: {
  7391. source: "./media/characters/piper/running.svg",
  7392. extra: 3948/3655,
  7393. bottom: 0/3948
  7394. }
  7395. },
  7396. sole: {
  7397. height: math.unit(0.81, "feet"),
  7398. weight: math.unit(2, "kg"),
  7399. name: "Sole",
  7400. image: {
  7401. source: "./media/characters/piper/sole.svg"
  7402. }
  7403. },
  7404. nipple: {
  7405. height: math.unit(0.25, "feet"),
  7406. weight: math.unit(1.5, "lb"),
  7407. name: "Nipple",
  7408. image: {
  7409. source: "./media/characters/piper/nipple.svg"
  7410. }
  7411. },
  7412. head: {
  7413. height: math.unit(1.1, "feet"),
  7414. name: "Head",
  7415. image: {
  7416. source: "./media/characters/piper/head.svg"
  7417. }
  7418. },
  7419. },
  7420. [
  7421. {
  7422. name: "Micro",
  7423. height: math.unit(2, "inches")
  7424. },
  7425. {
  7426. name: "Normal",
  7427. height: math.unit(5 + 8 / 12, "feet")
  7428. },
  7429. {
  7430. name: "Macro",
  7431. height: math.unit(250, "feet"),
  7432. default: true
  7433. },
  7434. {
  7435. name: "Megamacro",
  7436. height: math.unit(7, "miles")
  7437. },
  7438. ]
  7439. ))
  7440. characterMakers.push(() => makeCharacter(
  7441. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7442. {
  7443. front: {
  7444. height: math.unit(6, "feet"),
  7445. weight: math.unit(220, "lb"),
  7446. name: "Front",
  7447. image: {
  7448. source: "./media/characters/gemini/front.svg"
  7449. }
  7450. },
  7451. back: {
  7452. height: math.unit(6, "feet"),
  7453. weight: math.unit(220, "lb"),
  7454. name: "Back",
  7455. image: {
  7456. source: "./media/characters/gemini/back.svg"
  7457. }
  7458. },
  7459. kneeling: {
  7460. height: math.unit(6 / 1.5, "feet"),
  7461. weight: math.unit(220, "lb"),
  7462. name: "Kneeling",
  7463. image: {
  7464. source: "./media/characters/gemini/kneeling.svg",
  7465. bottom: 0.02
  7466. }
  7467. },
  7468. },
  7469. [
  7470. {
  7471. name: "Macro",
  7472. height: math.unit(300, "meters"),
  7473. default: true
  7474. },
  7475. {
  7476. name: "Megamacro",
  7477. height: math.unit(6900, "meters")
  7478. },
  7479. ]
  7480. ))
  7481. characterMakers.push(() => makeCharacter(
  7482. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7483. {
  7484. anthro: {
  7485. height: math.unit(2.35, "meters"),
  7486. weight: math.unit(73, "kg"),
  7487. name: "Anthro",
  7488. image: {
  7489. source: "./media/characters/alicia/anthro.svg",
  7490. extra: 2571 / 2385,
  7491. bottom: 75 / 2648
  7492. }
  7493. },
  7494. paw: {
  7495. height: math.unit(1.32, "feet"),
  7496. name: "Paw",
  7497. image: {
  7498. source: "./media/characters/alicia/paw.svg"
  7499. }
  7500. },
  7501. feral: {
  7502. height: math.unit(1.69, "meters"),
  7503. weight: math.unit(73, "kg"),
  7504. name: "Feral",
  7505. image: {
  7506. source: "./media/characters/alicia/feral.svg",
  7507. extra: 2123 / 1715,
  7508. bottom: 222 / 2349
  7509. }
  7510. },
  7511. },
  7512. [
  7513. {
  7514. name: "Normal",
  7515. height: math.unit(2.35, "meters")
  7516. },
  7517. {
  7518. name: "Macro",
  7519. height: math.unit(60, "meters"),
  7520. default: true
  7521. },
  7522. {
  7523. name: "Megamacro",
  7524. height: math.unit(10000, "kilometers")
  7525. },
  7526. ]
  7527. ))
  7528. characterMakers.push(() => makeCharacter(
  7529. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7530. {
  7531. front: {
  7532. height: math.unit(7, "feet"),
  7533. weight: math.unit(250, "lbs"),
  7534. name: "Front",
  7535. image: {
  7536. source: "./media/characters/archy/front.svg"
  7537. }
  7538. }
  7539. },
  7540. [
  7541. {
  7542. name: "Micro",
  7543. height: math.unit(1, "inch")
  7544. },
  7545. {
  7546. name: "Shorty",
  7547. height: math.unit(5, "feet")
  7548. },
  7549. {
  7550. name: "Normal",
  7551. height: math.unit(7, "feet")
  7552. },
  7553. {
  7554. name: "Macro",
  7555. height: math.unit(600, "meters"),
  7556. default: true
  7557. },
  7558. {
  7559. name: "Megamacro",
  7560. height: math.unit(1, "mile")
  7561. },
  7562. ]
  7563. ))
  7564. characterMakers.push(() => makeCharacter(
  7565. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7566. {
  7567. front: {
  7568. height: math.unit(1.65, "meters"),
  7569. weight: math.unit(74, "kg"),
  7570. name: "Front",
  7571. image: {
  7572. source: "./media/characters/berri/front.svg",
  7573. extra: 857 / 837,
  7574. bottom: 18 / 877
  7575. }
  7576. },
  7577. bum: {
  7578. height: math.unit(1.46, "feet"),
  7579. name: "Bum",
  7580. image: {
  7581. source: "./media/characters/berri/bum.svg"
  7582. }
  7583. },
  7584. mouth: {
  7585. height: math.unit(0.44, "feet"),
  7586. name: "Mouth",
  7587. image: {
  7588. source: "./media/characters/berri/mouth.svg"
  7589. }
  7590. },
  7591. paw: {
  7592. height: math.unit(0.826, "feet"),
  7593. name: "Paw",
  7594. image: {
  7595. source: "./media/characters/berri/paw.svg"
  7596. }
  7597. },
  7598. },
  7599. [
  7600. {
  7601. name: "Normal",
  7602. height: math.unit(1.65, "meters")
  7603. },
  7604. {
  7605. name: "Macro",
  7606. height: math.unit(60, "m"),
  7607. default: true
  7608. },
  7609. {
  7610. name: "Megamacro",
  7611. height: math.unit(9.213, "km")
  7612. },
  7613. {
  7614. name: "Planet Eater",
  7615. height: math.unit(489, "megameters")
  7616. },
  7617. {
  7618. name: "Teramacro",
  7619. height: math.unit(2471635000000, "meters")
  7620. },
  7621. {
  7622. name: "Examacro",
  7623. height: math.unit(8.0624e+26, "meters")
  7624. }
  7625. ]
  7626. ))
  7627. characterMakers.push(() => makeCharacter(
  7628. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7629. {
  7630. front: {
  7631. height: math.unit(1.72, "meters"),
  7632. weight: math.unit(68, "kg"),
  7633. name: "Front",
  7634. image: {
  7635. source: "./media/characters/lexi/front.svg"
  7636. }
  7637. }
  7638. },
  7639. [
  7640. {
  7641. name: "Very Smol",
  7642. height: math.unit(10, "mm")
  7643. },
  7644. {
  7645. name: "Micro",
  7646. height: math.unit(6.8, "cm"),
  7647. default: true
  7648. },
  7649. {
  7650. name: "Normal",
  7651. height: math.unit(1.72, "m")
  7652. }
  7653. ]
  7654. ))
  7655. characterMakers.push(() => makeCharacter(
  7656. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7657. {
  7658. front: {
  7659. height: math.unit(1.69, "meters"),
  7660. weight: math.unit(68, "kg"),
  7661. name: "Front",
  7662. image: {
  7663. source: "./media/characters/martin/front.svg",
  7664. extra: 596 / 581
  7665. }
  7666. }
  7667. },
  7668. [
  7669. {
  7670. name: "Micro",
  7671. height: math.unit(6.85, "cm"),
  7672. default: true
  7673. },
  7674. {
  7675. name: "Normal",
  7676. height: math.unit(1.69, "m")
  7677. }
  7678. ]
  7679. ))
  7680. characterMakers.push(() => makeCharacter(
  7681. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7682. {
  7683. front: {
  7684. height: math.unit(1.69, "meters"),
  7685. weight: math.unit(68, "kg"),
  7686. name: "Front",
  7687. image: {
  7688. source: "./media/characters/juno/front.svg"
  7689. }
  7690. }
  7691. },
  7692. [
  7693. {
  7694. name: "Micro",
  7695. height: math.unit(7, "cm")
  7696. },
  7697. {
  7698. name: "Normal",
  7699. height: math.unit(1.89, "m")
  7700. },
  7701. {
  7702. name: "Macro",
  7703. height: math.unit(353, "meters"),
  7704. default: true
  7705. }
  7706. ]
  7707. ))
  7708. characterMakers.push(() => makeCharacter(
  7709. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7710. {
  7711. front: {
  7712. height: math.unit(1.93, "meters"),
  7713. weight: math.unit(83, "kg"),
  7714. name: "Front",
  7715. image: {
  7716. source: "./media/characters/samantha/front.svg"
  7717. }
  7718. },
  7719. frontClothed: {
  7720. height: math.unit(1.93, "meters"),
  7721. weight: math.unit(83, "kg"),
  7722. name: "Front (Clothed)",
  7723. image: {
  7724. source: "./media/characters/samantha/front-clothed.svg"
  7725. }
  7726. },
  7727. back: {
  7728. height: math.unit(1.93, "meters"),
  7729. weight: math.unit(83, "kg"),
  7730. name: "Back",
  7731. image: {
  7732. source: "./media/characters/samantha/back.svg"
  7733. }
  7734. },
  7735. },
  7736. [
  7737. {
  7738. name: "Normal",
  7739. height: math.unit(1.93, "m")
  7740. },
  7741. {
  7742. name: "Macro",
  7743. height: math.unit(74, "meters"),
  7744. default: true
  7745. },
  7746. {
  7747. name: "Macro+",
  7748. height: math.unit(223, "meters"),
  7749. },
  7750. {
  7751. name: "Megamacro",
  7752. height: math.unit(8381, "meters"),
  7753. },
  7754. {
  7755. name: "Megamacro+",
  7756. height: math.unit(12000, "kilometers")
  7757. },
  7758. ]
  7759. ))
  7760. characterMakers.push(() => makeCharacter(
  7761. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7762. {
  7763. front: {
  7764. height: math.unit(1.92, "meters"),
  7765. weight: math.unit(80, "kg"),
  7766. name: "Front",
  7767. image: {
  7768. source: "./media/characters/dr-clay/front.svg"
  7769. }
  7770. },
  7771. frontClothed: {
  7772. height: math.unit(1.92, "meters"),
  7773. weight: math.unit(80, "kg"),
  7774. name: "Front (Clothed)",
  7775. image: {
  7776. source: "./media/characters/dr-clay/front-clothed.svg"
  7777. }
  7778. }
  7779. },
  7780. [
  7781. {
  7782. name: "Normal",
  7783. height: math.unit(1.92, "m")
  7784. },
  7785. {
  7786. name: "Macro",
  7787. height: math.unit(214, "meters"),
  7788. default: true
  7789. },
  7790. {
  7791. name: "Macro+",
  7792. height: math.unit(12.237, "meters"),
  7793. },
  7794. {
  7795. name: "Megamacro",
  7796. height: math.unit(557, "megameters"),
  7797. },
  7798. {
  7799. name: "Unimaginable",
  7800. height: math.unit(120e9, "lightyears")
  7801. },
  7802. ]
  7803. ))
  7804. characterMakers.push(() => makeCharacter(
  7805. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7806. {
  7807. front: {
  7808. height: math.unit(2, "meters"),
  7809. weight: math.unit(80, "kg"),
  7810. name: "Front",
  7811. image: {
  7812. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7813. }
  7814. }
  7815. },
  7816. [
  7817. {
  7818. name: "Teramacro",
  7819. height: math.unit(500000, "lightyears"),
  7820. default: true
  7821. },
  7822. ]
  7823. ))
  7824. characterMakers.push(() => makeCharacter(
  7825. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7826. {
  7827. crux: {
  7828. height: math.unit(2, "meters"),
  7829. weight: math.unit(150, "kg"),
  7830. name: "Crux",
  7831. image: {
  7832. source: "./media/characters/vemus/crux.svg",
  7833. extra: 1074/936,
  7834. bottom: 23/1097
  7835. }
  7836. },
  7837. skunkTanuki: {
  7838. height: math.unit(2, "meters"),
  7839. weight: math.unit(150, "kg"),
  7840. name: "Skunk-Tanuki",
  7841. image: {
  7842. source: "./media/characters/vemus/skunk-tanuki.svg",
  7843. extra: 926/893,
  7844. bottom: 20/946
  7845. }
  7846. },
  7847. },
  7848. [
  7849. {
  7850. name: "Normal",
  7851. height: math.unit(4, "meters"),
  7852. default: true
  7853. },
  7854. {
  7855. name: "Big",
  7856. height: math.unit(8, "meters")
  7857. },
  7858. {
  7859. name: "Macro",
  7860. height: math.unit(100, "meters")
  7861. },
  7862. {
  7863. name: "Macro+",
  7864. height: math.unit(1500, "meters")
  7865. },
  7866. {
  7867. name: "Stellar",
  7868. height: math.unit(14e8, "meters")
  7869. },
  7870. ]
  7871. ))
  7872. characterMakers.push(() => makeCharacter(
  7873. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7874. {
  7875. front: {
  7876. height: math.unit(2, "meters"),
  7877. weight: math.unit(70, "kg"),
  7878. name: "Front",
  7879. image: {
  7880. source: "./media/characters/beherit/front.svg",
  7881. extra: 1234/1109,
  7882. bottom: 55/1289
  7883. }
  7884. }
  7885. },
  7886. [
  7887. {
  7888. name: "Normal",
  7889. height: math.unit(6, "feet")
  7890. },
  7891. {
  7892. name: "Lorg",
  7893. height: math.unit(25, "feet"),
  7894. default: true
  7895. },
  7896. {
  7897. name: "Lorger",
  7898. height: math.unit(75, "feet")
  7899. },
  7900. {
  7901. name: "Macro",
  7902. height: math.unit(200, "meters")
  7903. },
  7904. ]
  7905. ))
  7906. characterMakers.push(() => makeCharacter(
  7907. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7908. {
  7909. front: {
  7910. height: math.unit(2, "meters"),
  7911. weight: math.unit(150, "kg"),
  7912. name: "Front",
  7913. image: {
  7914. source: "./media/characters/everett/front.svg",
  7915. extra: 1017/866,
  7916. bottom: 86/1103
  7917. }
  7918. },
  7919. paw: {
  7920. height: math.unit(2 / 3.6, "meters"),
  7921. name: "Paw",
  7922. image: {
  7923. source: "./media/characters/everett/paw.svg"
  7924. }
  7925. },
  7926. },
  7927. [
  7928. {
  7929. name: "Normal",
  7930. height: math.unit(15, "feet"),
  7931. default: true
  7932. },
  7933. {
  7934. name: "Lorg",
  7935. height: math.unit(70, "feet"),
  7936. default: true
  7937. },
  7938. {
  7939. name: "Lorger",
  7940. height: math.unit(250, "feet")
  7941. },
  7942. {
  7943. name: "Macro",
  7944. height: math.unit(500, "meters")
  7945. },
  7946. ]
  7947. ))
  7948. characterMakers.push(() => makeCharacter(
  7949. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7950. {
  7951. front: {
  7952. height: math.unit(2, "meters"),
  7953. weight: math.unit(86, "kg"),
  7954. name: "Front",
  7955. image: {
  7956. source: "./media/characters/rose/front.svg",
  7957. extra: 1785/1636,
  7958. bottom: 30/1815
  7959. },
  7960. form: "liom",
  7961. default: true
  7962. },
  7963. frontSporty: {
  7964. height: math.unit(2, "meters"),
  7965. weight: math.unit(86, "kg"),
  7966. name: "Front (Sporty)",
  7967. image: {
  7968. source: "./media/characters/rose/front-sporty.svg",
  7969. extra: 350/335,
  7970. bottom: 10/360
  7971. },
  7972. form: "liom"
  7973. },
  7974. frontAlt: {
  7975. height: math.unit(1.6, "meters"),
  7976. weight: math.unit(86, "kg"),
  7977. name: "Front (Alt)",
  7978. image: {
  7979. source: "./media/characters/rose/front-alt.svg",
  7980. extra: 299/283,
  7981. bottom: 3/302
  7982. },
  7983. form: "liom"
  7984. },
  7985. plush: {
  7986. height: math.unit(2, "meters"),
  7987. weight: math.unit(86/3, "kg"),
  7988. name: "Plush",
  7989. image: {
  7990. source: "./media/characters/rose/plush.svg",
  7991. extra: 361/337,
  7992. bottom: 11/372
  7993. },
  7994. form: "plush",
  7995. default: true
  7996. },
  7997. faeStanding: {
  7998. height: math.unit(10, "cm"),
  7999. weight: math.unit(10, "grams"),
  8000. name: "Standing",
  8001. image: {
  8002. source: "./media/characters/rose/fae-standing.svg",
  8003. extra: 1189/1060,
  8004. bottom: 27/1216
  8005. },
  8006. form: "fae",
  8007. default: true
  8008. },
  8009. faeSitting: {
  8010. height: math.unit(5, "cm"),
  8011. weight: math.unit(10, "grams"),
  8012. name: "Sitting",
  8013. image: {
  8014. source: "./media/characters/rose/fae-sitting.svg",
  8015. extra: 737/577,
  8016. bottom: 356/1093
  8017. },
  8018. form: "fae"
  8019. },
  8020. faePaw: {
  8021. height: math.unit(1.35, "cm"),
  8022. name: "Paw",
  8023. image: {
  8024. source: "./media/characters/rose/fae-paw.svg"
  8025. },
  8026. form: "fae"
  8027. },
  8028. },
  8029. [
  8030. {
  8031. name: "True Micro",
  8032. height: math.unit(9, "cm"),
  8033. form: "liom"
  8034. },
  8035. {
  8036. name: "Micro",
  8037. height: math.unit(16, "cm"),
  8038. form: "liom"
  8039. },
  8040. {
  8041. name: "Normal",
  8042. height: math.unit(1.85, "meters"),
  8043. default: true,
  8044. form: "liom"
  8045. },
  8046. {
  8047. name: "Mini-Macro",
  8048. height: math.unit(5, "meters"),
  8049. form: "liom"
  8050. },
  8051. {
  8052. name: "Macro",
  8053. height: math.unit(15, "meters"),
  8054. form: "liom"
  8055. },
  8056. {
  8057. name: "True Macro",
  8058. height: math.unit(40, "meters"),
  8059. form: "liom"
  8060. },
  8061. {
  8062. name: "City Scale",
  8063. height: math.unit(1, "km"),
  8064. form: "liom"
  8065. },
  8066. {
  8067. name: "Plushie",
  8068. height: math.unit(9, "cm"),
  8069. form: "plush",
  8070. default: true
  8071. },
  8072. {
  8073. name: "Fae",
  8074. height: math.unit(10, "cm"),
  8075. form: "fae",
  8076. default: true
  8077. },
  8078. ],
  8079. {
  8080. "liom": {
  8081. name: "Liom"
  8082. },
  8083. "plush": {
  8084. name: "Plush"
  8085. },
  8086. "fae": {
  8087. name: "Fae Fox",
  8088. default: true
  8089. }
  8090. }
  8091. ))
  8092. characterMakers.push(() => makeCharacter(
  8093. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8094. {
  8095. front: {
  8096. height: math.unit(2, "meters"),
  8097. weight: math.unit(350, "lbs"),
  8098. name: "Front",
  8099. image: {
  8100. source: "./media/characters/regal/front.svg"
  8101. }
  8102. },
  8103. back: {
  8104. height: math.unit(2, "meters"),
  8105. weight: math.unit(350, "lbs"),
  8106. name: "Back",
  8107. image: {
  8108. source: "./media/characters/regal/back.svg"
  8109. }
  8110. },
  8111. },
  8112. [
  8113. {
  8114. name: "Macro",
  8115. height: math.unit(350, "feet"),
  8116. default: true
  8117. }
  8118. ]
  8119. ))
  8120. characterMakers.push(() => makeCharacter(
  8121. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  8122. {
  8123. front: {
  8124. height: math.unit(4 + 11 / 12, "feet"),
  8125. weight: math.unit(100, "lbs"),
  8126. name: "Front",
  8127. image: {
  8128. source: "./media/characters/opal/front.svg"
  8129. }
  8130. },
  8131. frontAlt: {
  8132. height: math.unit(4 + 11 / 12, "feet"),
  8133. weight: math.unit(100, "lbs"),
  8134. name: "Front (Alt)",
  8135. image: {
  8136. source: "./media/characters/opal/front-alt.svg"
  8137. }
  8138. },
  8139. },
  8140. [
  8141. {
  8142. name: "Small",
  8143. height: math.unit(4 + 11 / 12, "feet")
  8144. },
  8145. {
  8146. name: "Normal",
  8147. height: math.unit(20, "feet"),
  8148. default: true
  8149. },
  8150. {
  8151. name: "Macro",
  8152. height: math.unit(120, "feet")
  8153. },
  8154. {
  8155. name: "Megamacro",
  8156. height: math.unit(80, "miles")
  8157. },
  8158. {
  8159. name: "True Size",
  8160. height: math.unit(100000, "lightyears")
  8161. },
  8162. ]
  8163. ))
  8164. characterMakers.push(() => makeCharacter(
  8165. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8166. {
  8167. front: {
  8168. height: math.unit(6, "feet"),
  8169. weight: math.unit(200, "lbs"),
  8170. name: "Front",
  8171. image: {
  8172. source: "./media/characters/vector-wuff/front.svg"
  8173. }
  8174. }
  8175. },
  8176. [
  8177. {
  8178. name: "Normal",
  8179. height: math.unit(2.8, "meters")
  8180. },
  8181. {
  8182. name: "Macro",
  8183. height: math.unit(450, "meters"),
  8184. default: true
  8185. },
  8186. {
  8187. name: "Megamacro",
  8188. height: math.unit(15, "kilometers")
  8189. }
  8190. ]
  8191. ))
  8192. characterMakers.push(() => makeCharacter(
  8193. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8194. {
  8195. front: {
  8196. height: math.unit(6, "feet"),
  8197. weight: math.unit(256, "lbs"),
  8198. name: "Front",
  8199. image: {
  8200. source: "./media/characters/dannik/front.svg"
  8201. }
  8202. }
  8203. },
  8204. [
  8205. {
  8206. name: "Macro",
  8207. height: math.unit(69.57, "meters"),
  8208. default: true
  8209. },
  8210. ]
  8211. ))
  8212. characterMakers.push(() => makeCharacter(
  8213. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8214. {
  8215. front: {
  8216. height: math.unit(6, "feet"),
  8217. weight: math.unit(120, "lbs"),
  8218. name: "Front",
  8219. image: {
  8220. source: "./media/characters/azura-saharah/front.svg"
  8221. }
  8222. },
  8223. back: {
  8224. height: math.unit(6, "feet"),
  8225. weight: math.unit(120, "lbs"),
  8226. name: "Back",
  8227. image: {
  8228. source: "./media/characters/azura-saharah/back.svg"
  8229. }
  8230. },
  8231. },
  8232. [
  8233. {
  8234. name: "Macro",
  8235. height: math.unit(100, "feet"),
  8236. default: true
  8237. },
  8238. ]
  8239. ))
  8240. characterMakers.push(() => makeCharacter(
  8241. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8242. {
  8243. side: {
  8244. height: math.unit(5 + 4 / 12, "feet"),
  8245. weight: math.unit(163, "lbs"),
  8246. name: "Side",
  8247. image: {
  8248. source: "./media/characters/kennedy/side.svg"
  8249. }
  8250. }
  8251. },
  8252. [
  8253. {
  8254. name: "Standard Doggo",
  8255. height: math.unit(5 + 4 / 12, "feet")
  8256. },
  8257. {
  8258. name: "Big Doggo",
  8259. height: math.unit(25 + 3 / 12, "feet"),
  8260. default: true
  8261. },
  8262. ]
  8263. ))
  8264. characterMakers.push(() => makeCharacter(
  8265. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8266. {
  8267. front: {
  8268. height: math.unit(5 + 5/12, "feet"),
  8269. weight: math.unit(100, "lbs"),
  8270. name: "Front",
  8271. image: {
  8272. source: "./media/characters/odios-de-lunar/front.svg",
  8273. extra: 1468/1323,
  8274. bottom: 22/1490
  8275. }
  8276. }
  8277. },
  8278. [
  8279. {
  8280. name: "Micro",
  8281. height: math.unit(3, "inches")
  8282. },
  8283. {
  8284. name: "Normal",
  8285. height: math.unit(5.5, "feet"),
  8286. default: true
  8287. },
  8288. {
  8289. name: "Macro",
  8290. height: math.unit(100, "feet")
  8291. },
  8292. ]
  8293. ))
  8294. characterMakers.push(() => makeCharacter(
  8295. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8296. {
  8297. back: {
  8298. height: math.unit(6, "feet"),
  8299. weight: math.unit(220, "lbs"),
  8300. name: "Back",
  8301. image: {
  8302. source: "./media/characters/mandake/back.svg"
  8303. }
  8304. }
  8305. },
  8306. [
  8307. {
  8308. name: "Normal",
  8309. height: math.unit(7, "feet"),
  8310. default: true
  8311. },
  8312. {
  8313. name: "Macro",
  8314. height: math.unit(78, "feet")
  8315. },
  8316. {
  8317. name: "Macro+",
  8318. height: math.unit(300, "meters")
  8319. },
  8320. {
  8321. name: "Macro++",
  8322. height: math.unit(2400, "feet")
  8323. },
  8324. {
  8325. name: "Megamacro",
  8326. height: math.unit(5167, "meters")
  8327. },
  8328. {
  8329. name: "Gigamacro",
  8330. height: math.unit(41769, "miles")
  8331. },
  8332. ]
  8333. ))
  8334. characterMakers.push(() => makeCharacter(
  8335. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8336. {
  8337. front: {
  8338. height: math.unit(6, "feet"),
  8339. weight: math.unit(120, "lbs"),
  8340. name: "Front",
  8341. image: {
  8342. source: "./media/characters/yozey/front.svg"
  8343. }
  8344. },
  8345. frontAlt: {
  8346. height: math.unit(6, "feet"),
  8347. weight: math.unit(120, "lbs"),
  8348. name: "Front (Alt)",
  8349. image: {
  8350. source: "./media/characters/yozey/front-alt.svg"
  8351. }
  8352. },
  8353. side: {
  8354. height: math.unit(6, "feet"),
  8355. weight: math.unit(120, "lbs"),
  8356. name: "Side",
  8357. image: {
  8358. source: "./media/characters/yozey/side.svg"
  8359. }
  8360. },
  8361. },
  8362. [
  8363. {
  8364. name: "Micro",
  8365. height: math.unit(3, "inches"),
  8366. default: true
  8367. },
  8368. {
  8369. name: "Normal",
  8370. height: math.unit(6, "feet")
  8371. }
  8372. ]
  8373. ))
  8374. characterMakers.push(() => makeCharacter(
  8375. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8376. {
  8377. front: {
  8378. height: math.unit(6, "feet"),
  8379. weight: math.unit(103, "lbs"),
  8380. name: "Front",
  8381. image: {
  8382. source: "./media/characters/valeska-voss/front.svg"
  8383. }
  8384. }
  8385. },
  8386. [
  8387. {
  8388. name: "Mini-Sized Sub",
  8389. height: math.unit(3.1, "inches")
  8390. },
  8391. {
  8392. name: "Mid-Sized Sub",
  8393. height: math.unit(6.2, "inches")
  8394. },
  8395. {
  8396. name: "Full-Sized Sub",
  8397. height: math.unit(9.3, "inches")
  8398. },
  8399. {
  8400. name: "Normal",
  8401. height: math.unit(5 + 2 / 12, "foot"),
  8402. default: true
  8403. },
  8404. ]
  8405. ))
  8406. characterMakers.push(() => makeCharacter(
  8407. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8408. {
  8409. front: {
  8410. height: math.unit(6, "feet"),
  8411. weight: math.unit(160, "lbs"),
  8412. name: "Front",
  8413. image: {
  8414. source: "./media/characters/gene-zeta/front.svg",
  8415. extra: 3006 / 2826,
  8416. bottom: 182 / 3188
  8417. }
  8418. }
  8419. },
  8420. [
  8421. {
  8422. name: "Micro",
  8423. height: math.unit(6, "inches")
  8424. },
  8425. {
  8426. name: "Normal",
  8427. height: math.unit(5 + 11 / 12, "foot"),
  8428. default: true
  8429. },
  8430. {
  8431. name: "Macro",
  8432. height: math.unit(140, "feet")
  8433. },
  8434. {
  8435. name: "Supercharged",
  8436. height: math.unit(2500, "feet")
  8437. },
  8438. ]
  8439. ))
  8440. characterMakers.push(() => makeCharacter(
  8441. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8442. {
  8443. front: {
  8444. height: math.unit(6, "feet"),
  8445. weight: math.unit(350, "lbs"),
  8446. name: "Front",
  8447. image: {
  8448. source: "./media/characters/razinox/front.svg",
  8449. extra: 1686 / 1548,
  8450. bottom: 28.2 / 1868
  8451. }
  8452. },
  8453. back: {
  8454. height: math.unit(6, "feet"),
  8455. weight: math.unit(350, "lbs"),
  8456. name: "Back",
  8457. image: {
  8458. source: "./media/characters/razinox/back.svg",
  8459. extra: 1660 / 1590,
  8460. bottom: 15 / 1665
  8461. }
  8462. },
  8463. },
  8464. [
  8465. {
  8466. name: "Normal",
  8467. height: math.unit(10 + 8 / 12, "foot")
  8468. },
  8469. {
  8470. name: "Minimacro",
  8471. height: math.unit(15, "foot")
  8472. },
  8473. {
  8474. name: "Macro",
  8475. height: math.unit(60, "foot"),
  8476. default: true
  8477. },
  8478. {
  8479. name: "Megamacro",
  8480. height: math.unit(5, "miles")
  8481. },
  8482. {
  8483. name: "Gigamacro",
  8484. height: math.unit(6000, "miles")
  8485. },
  8486. ]
  8487. ))
  8488. characterMakers.push(() => makeCharacter(
  8489. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8490. {
  8491. front: {
  8492. height: math.unit(6, "feet"),
  8493. weight: math.unit(150, "lbs"),
  8494. name: "Front",
  8495. image: {
  8496. source: "./media/characters/cobalt/front.svg"
  8497. }
  8498. }
  8499. },
  8500. [
  8501. {
  8502. name: "Normal",
  8503. height: math.unit(8 + 1 / 12, "foot")
  8504. },
  8505. {
  8506. name: "Macro",
  8507. height: math.unit(111, "foot"),
  8508. default: true
  8509. },
  8510. {
  8511. name: "Supracosmic",
  8512. height: math.unit(1e42, "feet")
  8513. },
  8514. ]
  8515. ))
  8516. characterMakers.push(() => makeCharacter(
  8517. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8518. {
  8519. front: {
  8520. height: math.unit(5, "inches"),
  8521. name: "Front",
  8522. image: {
  8523. source: "./media/characters/amanda/front.svg",
  8524. extra: 926/791,
  8525. bottom: 38/964
  8526. }
  8527. },
  8528. back: {
  8529. height: math.unit(5, "inches"),
  8530. name: "Back",
  8531. image: {
  8532. source: "./media/characters/amanda/back.svg",
  8533. extra: 909/805,
  8534. bottom: 43/952
  8535. }
  8536. },
  8537. },
  8538. [
  8539. {
  8540. name: "Micro",
  8541. height: math.unit(5, "inches"),
  8542. default: true
  8543. },
  8544. ]
  8545. ))
  8546. characterMakers.push(() => makeCharacter(
  8547. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8548. {
  8549. front: {
  8550. height: math.unit(2.75, "meters"),
  8551. weight: math.unit(1200, "lb"),
  8552. name: "Front",
  8553. image: {
  8554. source: "./media/characters/teal/front.svg",
  8555. extra: 2463 / 2320,
  8556. bottom: 166 / 2629
  8557. }
  8558. },
  8559. back: {
  8560. height: math.unit(2.75, "meters"),
  8561. weight: math.unit(1200, "lb"),
  8562. name: "Back",
  8563. image: {
  8564. source: "./media/characters/teal/back.svg",
  8565. extra: 2580 / 2489,
  8566. bottom: 151 / 2731
  8567. }
  8568. },
  8569. sitting: {
  8570. height: math.unit(1.9, "meters"),
  8571. weight: math.unit(1200, "lb"),
  8572. name: "Sitting",
  8573. image: {
  8574. source: "./media/characters/teal/sitting.svg",
  8575. extra: 623 / 590,
  8576. bottom: 121 / 744
  8577. }
  8578. },
  8579. standing: {
  8580. height: math.unit(2.75, "meters"),
  8581. weight: math.unit(1200, "lb"),
  8582. name: "Standing",
  8583. image: {
  8584. source: "./media/characters/teal/standing.svg",
  8585. extra: 923 / 893,
  8586. bottom: 60 / 983
  8587. }
  8588. },
  8589. stretching: {
  8590. height: math.unit(3.65, "meters"),
  8591. weight: math.unit(1200, "lb"),
  8592. name: "Stretching",
  8593. image: {
  8594. source: "./media/characters/teal/stretching.svg",
  8595. extra: 1276 / 1244,
  8596. bottom: 0 / 1276
  8597. }
  8598. },
  8599. legged: {
  8600. height: math.unit(1.3, "meters"),
  8601. weight: math.unit(100, "lb"),
  8602. name: "Legged",
  8603. image: {
  8604. source: "./media/characters/teal/legged.svg",
  8605. extra: 462 / 437,
  8606. bottom: 24 / 486
  8607. }
  8608. },
  8609. naga: {
  8610. height: math.unit(5.4, "meters"),
  8611. weight: math.unit(4000, "lb"),
  8612. name: "Naga",
  8613. image: {
  8614. source: "./media/characters/teal/naga.svg",
  8615. extra: 1902 / 1858,
  8616. bottom: 0 / 1902
  8617. }
  8618. },
  8619. hand: {
  8620. height: math.unit(0.52, "meters"),
  8621. name: "Hand",
  8622. image: {
  8623. source: "./media/characters/teal/hand.svg"
  8624. }
  8625. },
  8626. maw: {
  8627. height: math.unit(0.43, "meters"),
  8628. name: "Maw",
  8629. image: {
  8630. source: "./media/characters/teal/maw.svg"
  8631. }
  8632. },
  8633. slit: {
  8634. height: math.unit(0.25, "meters"),
  8635. name: "Slit",
  8636. image: {
  8637. source: "./media/characters/teal/slit.svg"
  8638. }
  8639. },
  8640. },
  8641. [
  8642. {
  8643. name: "Normal",
  8644. height: math.unit(2.75, "meters"),
  8645. default: true
  8646. },
  8647. {
  8648. name: "Macro",
  8649. height: math.unit(300, "feet")
  8650. },
  8651. {
  8652. name: "Macro+",
  8653. height: math.unit(2000, "feet")
  8654. },
  8655. ]
  8656. ))
  8657. characterMakers.push(() => makeCharacter(
  8658. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8659. {
  8660. frontCat: {
  8661. height: math.unit(6, "feet"),
  8662. weight: math.unit(180, "lbs"),
  8663. name: "Front (Cat)",
  8664. image: {
  8665. source: "./media/characters/ravin-amulet/front-cat.svg"
  8666. }
  8667. },
  8668. frontCatAlt: {
  8669. height: math.unit(6, "feet"),
  8670. weight: math.unit(180, "lbs"),
  8671. name: "Front (Alt, Cat)",
  8672. image: {
  8673. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8674. }
  8675. },
  8676. frontWerewolf: {
  8677. height: math.unit(6 * 1.2, "feet"),
  8678. weight: math.unit(225, "lbs"),
  8679. name: "Front (Werewolf)",
  8680. image: {
  8681. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8682. }
  8683. },
  8684. backWerewolf: {
  8685. height: math.unit(6 * 1.2, "feet"),
  8686. weight: math.unit(225, "lbs"),
  8687. name: "Back (Werewolf)",
  8688. image: {
  8689. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8690. }
  8691. },
  8692. },
  8693. [
  8694. {
  8695. name: "Nano",
  8696. height: math.unit(1, "micrometer")
  8697. },
  8698. {
  8699. name: "Micro",
  8700. height: math.unit(1, "inch")
  8701. },
  8702. {
  8703. name: "Normal",
  8704. height: math.unit(6, "feet"),
  8705. default: true
  8706. },
  8707. {
  8708. name: "Macro",
  8709. height: math.unit(60, "feet")
  8710. }
  8711. ]
  8712. ))
  8713. characterMakers.push(() => makeCharacter(
  8714. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8715. {
  8716. front: {
  8717. height: math.unit(6, "feet"),
  8718. weight: math.unit(165, "lbs"),
  8719. name: "Front",
  8720. image: {
  8721. source: "./media/characters/fluoresce/front.svg"
  8722. }
  8723. }
  8724. },
  8725. [
  8726. {
  8727. name: "Micro",
  8728. height: math.unit(6, "cm")
  8729. },
  8730. {
  8731. name: "Normal",
  8732. height: math.unit(5 + 7 / 12, "feet"),
  8733. default: true
  8734. },
  8735. {
  8736. name: "Macro",
  8737. height: math.unit(56, "feet")
  8738. },
  8739. {
  8740. name: "Megamacro",
  8741. height: math.unit(1.9, "miles")
  8742. },
  8743. ]
  8744. ))
  8745. characterMakers.push(() => makeCharacter(
  8746. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8747. {
  8748. front: {
  8749. height: math.unit(9 + 6 / 12, "feet"),
  8750. weight: math.unit(523, "lbs"),
  8751. name: "Side",
  8752. image: {
  8753. source: "./media/characters/aurora/side.svg",
  8754. extra: 474/393,
  8755. bottom: 5/479
  8756. }
  8757. }
  8758. },
  8759. [
  8760. {
  8761. name: "Normal",
  8762. height: math.unit(9 + 6 / 12, "feet")
  8763. },
  8764. {
  8765. name: "Macro",
  8766. height: math.unit(96, "feet"),
  8767. default: true
  8768. },
  8769. {
  8770. name: "Macro+",
  8771. height: math.unit(243, "feet")
  8772. },
  8773. ]
  8774. ))
  8775. characterMakers.push(() => makeCharacter(
  8776. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8777. {
  8778. front: {
  8779. height: math.unit(194, "cm"),
  8780. weight: math.unit(90, "kg"),
  8781. name: "Front",
  8782. image: {
  8783. source: "./media/characters/ranek/front.svg",
  8784. extra: 1862/1791,
  8785. bottom: 80/1942
  8786. }
  8787. },
  8788. back: {
  8789. height: math.unit(194, "cm"),
  8790. weight: math.unit(90, "kg"),
  8791. name: "Back",
  8792. image: {
  8793. source: "./media/characters/ranek/back.svg",
  8794. extra: 1853/1787,
  8795. bottom: 74/1927
  8796. }
  8797. },
  8798. feral: {
  8799. height: math.unit(30, "cm"),
  8800. weight: math.unit(1.6, "lbs"),
  8801. name: "Feral",
  8802. image: {
  8803. source: "./media/characters/ranek/feral.svg",
  8804. extra: 990/631,
  8805. bottom: 29/1019
  8806. }
  8807. },
  8808. },
  8809. [
  8810. {
  8811. name: "Normal",
  8812. height: math.unit(194, "cm"),
  8813. default: true
  8814. },
  8815. {
  8816. name: "Macro",
  8817. height: math.unit(100, "meters")
  8818. },
  8819. ]
  8820. ))
  8821. characterMakers.push(() => makeCharacter(
  8822. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8823. {
  8824. front: {
  8825. height: math.unit(5 + 6 / 12, "feet"),
  8826. weight: math.unit(153, "lbs"),
  8827. name: "Front",
  8828. image: {
  8829. source: "./media/characters/andrew-cooper/front.svg"
  8830. }
  8831. },
  8832. },
  8833. [
  8834. {
  8835. name: "Nano",
  8836. height: math.unit(1, "mm")
  8837. },
  8838. {
  8839. name: "Micro",
  8840. height: math.unit(2, "inches")
  8841. },
  8842. {
  8843. name: "Normal",
  8844. height: math.unit(5 + 6 / 12, "feet"),
  8845. default: true
  8846. }
  8847. ]
  8848. ))
  8849. characterMakers.push(() => makeCharacter(
  8850. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8851. {
  8852. front: {
  8853. height: math.unit(6, "feet"),
  8854. weight: math.unit(180, "lbs"),
  8855. name: "Front",
  8856. image: {
  8857. source: "./media/characters/akane-sato/front.svg",
  8858. extra: 1219 / 1140
  8859. }
  8860. },
  8861. back: {
  8862. height: math.unit(6, "feet"),
  8863. weight: math.unit(180, "lbs"),
  8864. name: "Back",
  8865. image: {
  8866. source: "./media/characters/akane-sato/back.svg",
  8867. extra: 1219 / 1170
  8868. }
  8869. },
  8870. },
  8871. [
  8872. {
  8873. name: "Normal",
  8874. height: math.unit(2.5, "meters")
  8875. },
  8876. {
  8877. name: "Macro",
  8878. height: math.unit(250, "meters"),
  8879. default: true
  8880. },
  8881. {
  8882. name: "Megamacro",
  8883. height: math.unit(25, "km")
  8884. },
  8885. ]
  8886. ))
  8887. characterMakers.push(() => makeCharacter(
  8888. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8889. {
  8890. front: {
  8891. height: math.unit(6, "feet"),
  8892. weight: math.unit(65, "kg"),
  8893. name: "Front",
  8894. image: {
  8895. source: "./media/characters/rook/front.svg",
  8896. extra: 960 / 950
  8897. }
  8898. }
  8899. },
  8900. [
  8901. {
  8902. name: "Normal",
  8903. height: math.unit(8.8, "feet")
  8904. },
  8905. {
  8906. name: "Macro",
  8907. height: math.unit(88, "feet"),
  8908. default: true
  8909. },
  8910. {
  8911. name: "Megamacro",
  8912. height: math.unit(8, "miles")
  8913. },
  8914. ]
  8915. ))
  8916. characterMakers.push(() => makeCharacter(
  8917. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8918. {
  8919. front: {
  8920. height: math.unit(12 + 2 / 12, "feet"),
  8921. weight: math.unit(808, "lbs"),
  8922. name: "Front",
  8923. image: {
  8924. source: "./media/characters/prodigy/front.svg"
  8925. }
  8926. }
  8927. },
  8928. [
  8929. {
  8930. name: "Normal",
  8931. height: math.unit(12 + 2 / 12, "feet"),
  8932. default: true
  8933. },
  8934. {
  8935. name: "Macro",
  8936. height: math.unit(143, "feet")
  8937. },
  8938. {
  8939. name: "Macro+",
  8940. height: math.unit(400, "feet")
  8941. },
  8942. ]
  8943. ))
  8944. characterMakers.push(() => makeCharacter(
  8945. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8946. {
  8947. front: {
  8948. height: math.unit(6, "feet"),
  8949. weight: math.unit(225, "lbs"),
  8950. name: "Front",
  8951. image: {
  8952. source: "./media/characters/daniel/front.svg"
  8953. }
  8954. },
  8955. leaning: {
  8956. height: math.unit(6, "feet"),
  8957. weight: math.unit(225, "lbs"),
  8958. name: "Leaning",
  8959. image: {
  8960. source: "./media/characters/daniel/leaning.svg"
  8961. }
  8962. },
  8963. },
  8964. [
  8965. {
  8966. name: "Macro",
  8967. height: math.unit(1000, "feet"),
  8968. default: true
  8969. },
  8970. ]
  8971. ))
  8972. characterMakers.push(() => makeCharacter(
  8973. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8974. {
  8975. front: {
  8976. height: math.unit(6, "feet"),
  8977. weight: math.unit(88, "lbs"),
  8978. name: "Front",
  8979. image: {
  8980. source: "./media/characters/chiros/front.svg",
  8981. extra: 306 / 226
  8982. }
  8983. },
  8984. side: {
  8985. height: math.unit(6, "feet"),
  8986. weight: math.unit(88, "lbs"),
  8987. name: "Side",
  8988. image: {
  8989. source: "./media/characters/chiros/side.svg",
  8990. extra: 306 / 226
  8991. }
  8992. },
  8993. },
  8994. [
  8995. {
  8996. name: "Normal",
  8997. height: math.unit(6, "cm"),
  8998. default: true
  8999. },
  9000. ]
  9001. ))
  9002. characterMakers.push(() => makeCharacter(
  9003. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9004. {
  9005. front: {
  9006. height: math.unit(6, "feet"),
  9007. weight: math.unit(100, "lbs"),
  9008. name: "Front",
  9009. image: {
  9010. source: "./media/characters/selka/front.svg",
  9011. extra: 947 / 887
  9012. }
  9013. }
  9014. },
  9015. [
  9016. {
  9017. name: "Normal",
  9018. height: math.unit(5, "cm"),
  9019. default: true
  9020. },
  9021. ]
  9022. ))
  9023. characterMakers.push(() => makeCharacter(
  9024. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9025. {
  9026. front: {
  9027. height: math.unit(8 + 3 / 12, "feet"),
  9028. weight: math.unit(424, "lbs"),
  9029. name: "Front",
  9030. image: {
  9031. source: "./media/characters/verin/front.svg",
  9032. extra: 1845 / 1550
  9033. }
  9034. },
  9035. frontArmored: {
  9036. height: math.unit(8 + 3 / 12, "feet"),
  9037. weight: math.unit(424, "lbs"),
  9038. name: "Front (Armored)",
  9039. image: {
  9040. source: "./media/characters/verin/front-armor.svg",
  9041. extra: 1845 / 1550,
  9042. bottom: 0.01
  9043. }
  9044. },
  9045. back: {
  9046. height: math.unit(8 + 3 / 12, "feet"),
  9047. weight: math.unit(424, "lbs"),
  9048. name: "Back",
  9049. image: {
  9050. source: "./media/characters/verin/back.svg",
  9051. bottom: 0.1,
  9052. extra: 1
  9053. }
  9054. },
  9055. foot: {
  9056. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9057. name: "Foot",
  9058. image: {
  9059. source: "./media/characters/verin/foot.svg"
  9060. }
  9061. },
  9062. },
  9063. [
  9064. {
  9065. name: "Normal",
  9066. height: math.unit(8 + 3 / 12, "feet")
  9067. },
  9068. {
  9069. name: "Minimacro",
  9070. height: math.unit(21, "feet"),
  9071. default: true
  9072. },
  9073. {
  9074. name: "Macro",
  9075. height: math.unit(626, "feet")
  9076. },
  9077. ]
  9078. ))
  9079. characterMakers.push(() => makeCharacter(
  9080. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9081. {
  9082. front: {
  9083. height: math.unit(2.718, "meters"),
  9084. weight: math.unit(150, "lbs"),
  9085. name: "Front",
  9086. image: {
  9087. source: "./media/characters/sovrim-terraquian/front.svg",
  9088. extra: 1752/1689,
  9089. bottom: 36/1788
  9090. }
  9091. },
  9092. back: {
  9093. height: math.unit(2.718, "meters"),
  9094. weight: math.unit(150, "lbs"),
  9095. name: "Back",
  9096. image: {
  9097. source: "./media/characters/sovrim-terraquian/back.svg",
  9098. extra: 1698/1657,
  9099. bottom: 58/1756
  9100. }
  9101. },
  9102. tongue: {
  9103. height: math.unit(2.865, "feet"),
  9104. name: "Tongue",
  9105. image: {
  9106. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9107. }
  9108. },
  9109. hand: {
  9110. height: math.unit(1.61, "feet"),
  9111. name: "Hand",
  9112. image: {
  9113. source: "./media/characters/sovrim-terraquian/hand.svg"
  9114. }
  9115. },
  9116. foot: {
  9117. height: math.unit(1.05, "feet"),
  9118. name: "Foot",
  9119. image: {
  9120. source: "./media/characters/sovrim-terraquian/foot.svg"
  9121. }
  9122. },
  9123. footAlt: {
  9124. height: math.unit(0.88, "feet"),
  9125. name: "Foot (Alt)",
  9126. image: {
  9127. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9128. }
  9129. },
  9130. },
  9131. [
  9132. {
  9133. name: "Micro",
  9134. height: math.unit(2, "inches")
  9135. },
  9136. {
  9137. name: "Small",
  9138. height: math.unit(1, "meter")
  9139. },
  9140. {
  9141. name: "Normal",
  9142. height: math.unit(Math.E, "meters"),
  9143. default: true
  9144. },
  9145. {
  9146. name: "Macro",
  9147. height: math.unit(20, "meters")
  9148. },
  9149. {
  9150. name: "Macro+",
  9151. height: math.unit(400, "meters")
  9152. },
  9153. ]
  9154. ))
  9155. characterMakers.push(() => makeCharacter(
  9156. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9157. {
  9158. front: {
  9159. height: math.unit(7, "feet"),
  9160. weight: math.unit(489, "lbs"),
  9161. name: "Front",
  9162. image: {
  9163. source: "./media/characters/reece-silvermane/front.svg",
  9164. bottom: 0.02,
  9165. extra: 1
  9166. }
  9167. },
  9168. },
  9169. [
  9170. {
  9171. name: "Macro",
  9172. height: math.unit(1.5, "miles"),
  9173. default: true
  9174. },
  9175. ]
  9176. ))
  9177. characterMakers.push(() => makeCharacter(
  9178. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9179. {
  9180. front: {
  9181. height: math.unit(6, "feet"),
  9182. weight: math.unit(78, "kg"),
  9183. name: "Front",
  9184. image: {
  9185. source: "./media/characters/kane/front.svg",
  9186. extra: 978 / 899
  9187. }
  9188. },
  9189. back: {
  9190. height: math.unit(6, "feet"),
  9191. weight: math.unit(78, "kg"),
  9192. name: "Back",
  9193. image: {
  9194. source: "./media/characters/kane/back.svg",
  9195. extra: 1966/1800,
  9196. bottom: 0/1966
  9197. }
  9198. },
  9199. head: {
  9200. height: math.unit(1.4, "feet"),
  9201. name: "Head",
  9202. image: {
  9203. source: "./media/characters/kane/head.svg"
  9204. }
  9205. },
  9206. },
  9207. [
  9208. {
  9209. name: "Normal",
  9210. height: math.unit(2.1, "m"),
  9211. },
  9212. {
  9213. name: "Macro",
  9214. height: math.unit(1, "km"),
  9215. default: true
  9216. },
  9217. ]
  9218. ))
  9219. characterMakers.push(() => makeCharacter(
  9220. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9221. {
  9222. front: {
  9223. height: math.unit(6, "feet"),
  9224. weight: math.unit(200, "kg"),
  9225. name: "Front",
  9226. image: {
  9227. source: "./media/characters/tegon/front.svg",
  9228. bottom: 0.01,
  9229. extra: 1
  9230. }
  9231. },
  9232. },
  9233. [
  9234. {
  9235. name: "Micro",
  9236. height: math.unit(1, "inch")
  9237. },
  9238. {
  9239. name: "Normal",
  9240. height: math.unit(6 + 3 / 12, "feet"),
  9241. default: true
  9242. },
  9243. {
  9244. name: "Macro",
  9245. height: math.unit(300, "feet")
  9246. },
  9247. {
  9248. name: "Megamacro",
  9249. height: math.unit(69, "miles")
  9250. },
  9251. ]
  9252. ))
  9253. characterMakers.push(() => makeCharacter(
  9254. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9255. {
  9256. side: {
  9257. height: math.unit(6, "feet"),
  9258. weight: math.unit(2304, "lbs"),
  9259. name: "Side",
  9260. image: {
  9261. source: "./media/characters/arcturax/side.svg",
  9262. extra: 790 / 376,
  9263. bottom: 0.01
  9264. }
  9265. },
  9266. },
  9267. [
  9268. {
  9269. name: "Micro",
  9270. height: math.unit(2, "inch")
  9271. },
  9272. {
  9273. name: "Normal",
  9274. height: math.unit(6, "feet")
  9275. },
  9276. {
  9277. name: "Macro",
  9278. height: math.unit(39, "feet"),
  9279. default: true
  9280. },
  9281. {
  9282. name: "Megamacro",
  9283. height: math.unit(7, "miles")
  9284. },
  9285. ]
  9286. ))
  9287. characterMakers.push(() => makeCharacter(
  9288. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9289. {
  9290. front: {
  9291. height: math.unit(6, "feet"),
  9292. weight: math.unit(50, "lbs"),
  9293. name: "Front",
  9294. image: {
  9295. source: "./media/characters/sentri/front.svg",
  9296. extra: 1750 / 1570,
  9297. bottom: 0.025
  9298. }
  9299. },
  9300. frontAlt: {
  9301. height: math.unit(6, "feet"),
  9302. weight: math.unit(50, "lbs"),
  9303. name: "Front (Alt)",
  9304. image: {
  9305. source: "./media/characters/sentri/front-alt.svg",
  9306. extra: 1750 / 1570,
  9307. bottom: 0.025
  9308. }
  9309. },
  9310. },
  9311. [
  9312. {
  9313. name: "Normal",
  9314. height: math.unit(15, "feet"),
  9315. default: true
  9316. },
  9317. {
  9318. name: "Macro",
  9319. height: math.unit(2500, "feet")
  9320. }
  9321. ]
  9322. ))
  9323. characterMakers.push(() => makeCharacter(
  9324. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9325. {
  9326. front: {
  9327. height: math.unit(5 + 8 / 12, "feet"),
  9328. weight: math.unit(130, "lbs"),
  9329. name: "Front",
  9330. image: {
  9331. source: "./media/characters/corvin/front.svg",
  9332. extra: 1803 / 1629
  9333. }
  9334. },
  9335. frontShirt: {
  9336. height: math.unit(5 + 8 / 12, "feet"),
  9337. weight: math.unit(130, "lbs"),
  9338. name: "Front (Shirt)",
  9339. image: {
  9340. source: "./media/characters/corvin/front-shirt.svg",
  9341. extra: 1803 / 1629
  9342. }
  9343. },
  9344. frontPoncho: {
  9345. height: math.unit(5 + 8 / 12, "feet"),
  9346. weight: math.unit(130, "lbs"),
  9347. name: "Front (Poncho)",
  9348. image: {
  9349. source: "./media/characters/corvin/front-poncho.svg",
  9350. extra: 1803 / 1629
  9351. }
  9352. },
  9353. side: {
  9354. height: math.unit(5 + 8 / 12, "feet"),
  9355. weight: math.unit(130, "lbs"),
  9356. name: "Side",
  9357. image: {
  9358. source: "./media/characters/corvin/side.svg",
  9359. extra: 1012 / 945
  9360. }
  9361. },
  9362. back: {
  9363. height: math.unit(5 + 8 / 12, "feet"),
  9364. weight: math.unit(130, "lbs"),
  9365. name: "Back",
  9366. image: {
  9367. source: "./media/characters/corvin/back.svg",
  9368. extra: 1803 / 1629
  9369. }
  9370. },
  9371. },
  9372. [
  9373. {
  9374. name: "Micro",
  9375. height: math.unit(3, "inches")
  9376. },
  9377. {
  9378. name: "Normal",
  9379. height: math.unit(5 + 8 / 12, "feet")
  9380. },
  9381. {
  9382. name: "Macro",
  9383. height: math.unit(300, "feet"),
  9384. default: true
  9385. },
  9386. {
  9387. name: "Megamacro",
  9388. height: math.unit(500, "miles")
  9389. }
  9390. ]
  9391. ))
  9392. characterMakers.push(() => makeCharacter(
  9393. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9394. {
  9395. front: {
  9396. height: math.unit(6, "feet"),
  9397. weight: math.unit(135, "lbs"),
  9398. name: "Front",
  9399. image: {
  9400. source: "./media/characters/q/front.svg",
  9401. extra: 854 / 752,
  9402. bottom: 0.005
  9403. }
  9404. },
  9405. back: {
  9406. height: math.unit(6, "feet"),
  9407. weight: math.unit(130, "lbs"),
  9408. name: "Back",
  9409. image: {
  9410. source: "./media/characters/q/back.svg",
  9411. extra: 854 / 752
  9412. }
  9413. },
  9414. },
  9415. [
  9416. {
  9417. name: "Macro",
  9418. height: math.unit(90, "feet"),
  9419. default: true
  9420. },
  9421. {
  9422. name: "Extra Macro",
  9423. height: math.unit(300, "feet"),
  9424. },
  9425. {
  9426. name: "BIG WALF",
  9427. height: math.unit(750, "feet"),
  9428. },
  9429. ]
  9430. ))
  9431. characterMakers.push(() => makeCharacter(
  9432. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9433. {
  9434. front: {
  9435. height: math.unit(3, "feet"),
  9436. weight: math.unit(28, "lbs"),
  9437. name: "Front",
  9438. image: {
  9439. source: "./media/characters/citrine/front.svg"
  9440. }
  9441. }
  9442. },
  9443. [
  9444. {
  9445. name: "Normal",
  9446. height: math.unit(3, "feet"),
  9447. default: true
  9448. }
  9449. ]
  9450. ))
  9451. characterMakers.push(() => makeCharacter(
  9452. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9453. {
  9454. front: {
  9455. height: math.unit(14, "feet"),
  9456. weight: math.unit(1450, "kg"),
  9457. preyCapacity: math.unit(15, "people"),
  9458. name: "Front",
  9459. image: {
  9460. source: "./media/characters/aura-starwind/front.svg",
  9461. extra: 1440/1327,
  9462. bottom: 11/1451
  9463. }
  9464. },
  9465. side: {
  9466. height: math.unit(14, "feet"),
  9467. weight: math.unit(1450, "kg"),
  9468. preyCapacity: math.unit(15, "people"),
  9469. name: "Side",
  9470. image: {
  9471. source: "./media/characters/aura-starwind/side.svg",
  9472. extra: 1654 / 1497
  9473. }
  9474. },
  9475. taur: {
  9476. height: math.unit(18, "feet"),
  9477. weight: math.unit(5500, "kg"),
  9478. preyCapacity: math.unit(50, "people"),
  9479. name: "Taur",
  9480. image: {
  9481. source: "./media/characters/aura-starwind/taur.svg",
  9482. extra: 1760 / 1650
  9483. }
  9484. },
  9485. feral: {
  9486. height: math.unit(46, "feet"),
  9487. weight: math.unit(25000, "kg"),
  9488. preyCapacity: math.unit(120, "people"),
  9489. name: "Feral",
  9490. image: {
  9491. source: "./media/characters/aura-starwind/feral.svg"
  9492. }
  9493. },
  9494. },
  9495. [
  9496. {
  9497. name: "Normal",
  9498. height: math.unit(14, "feet"),
  9499. default: true
  9500. },
  9501. {
  9502. name: "Macro",
  9503. height: math.unit(50, "meters")
  9504. },
  9505. {
  9506. name: "Megamacro",
  9507. height: math.unit(5000, "meters")
  9508. },
  9509. {
  9510. name: "Gigamacro",
  9511. height: math.unit(100000, "kilometers")
  9512. },
  9513. ]
  9514. ))
  9515. characterMakers.push(() => makeCharacter(
  9516. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9517. {
  9518. front: {
  9519. height: math.unit(2 + 7 / 12, "feet"),
  9520. weight: math.unit(32, "lbs"),
  9521. name: "Front",
  9522. image: {
  9523. source: "./media/characters/rivet/front.svg",
  9524. extra: 1716 / 1658,
  9525. bottom: 0.03
  9526. }
  9527. },
  9528. foot: {
  9529. height: math.unit(0.551, "feet"),
  9530. name: "Rivet's Foot",
  9531. image: {
  9532. source: "./media/characters/rivet/foot.svg"
  9533. },
  9534. rename: true
  9535. }
  9536. },
  9537. [
  9538. {
  9539. name: "Micro",
  9540. height: math.unit(1.5, "inches"),
  9541. },
  9542. {
  9543. name: "Normal",
  9544. height: math.unit(2 + 7 / 12, "feet"),
  9545. default: true
  9546. },
  9547. {
  9548. name: "Macro",
  9549. height: math.unit(85, "feet")
  9550. },
  9551. {
  9552. name: "Megamacro",
  9553. height: math.unit(2.2, "km")
  9554. }
  9555. ]
  9556. ))
  9557. characterMakers.push(() => makeCharacter(
  9558. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9559. {
  9560. front: {
  9561. height: math.unit(5 + 9 / 12, "feet"),
  9562. weight: math.unit(150, "lbs"),
  9563. name: "Front",
  9564. image: {
  9565. source: "./media/characters/coffee/front.svg",
  9566. extra: 946/880,
  9567. bottom: 66/1012
  9568. }
  9569. },
  9570. foot: {
  9571. height: math.unit(1.29, "feet"),
  9572. name: "Foot",
  9573. image: {
  9574. source: "./media/characters/coffee/foot.svg"
  9575. }
  9576. },
  9577. },
  9578. [
  9579. {
  9580. name: "Micro",
  9581. height: math.unit(2, "inches"),
  9582. },
  9583. {
  9584. name: "Normal",
  9585. height: math.unit(5 + 9 / 12, "feet"),
  9586. default: true
  9587. },
  9588. {
  9589. name: "Macro",
  9590. height: math.unit(800, "feet")
  9591. },
  9592. {
  9593. name: "Megamacro",
  9594. height: math.unit(25, "miles")
  9595. }
  9596. ]
  9597. ))
  9598. characterMakers.push(() => makeCharacter(
  9599. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9600. {
  9601. front: {
  9602. height: math.unit(6, "feet"),
  9603. weight: math.unit(200, "lbs"),
  9604. name: "Front",
  9605. image: {
  9606. source: "./media/characters/chari-gal/front.svg",
  9607. extra: 735/649,
  9608. bottom: 55/790
  9609. },
  9610. form: "normal",
  9611. default: true
  9612. },
  9613. back: {
  9614. height: math.unit(6, "feet"),
  9615. weight: math.unit(200, "lb"),
  9616. name: "Back",
  9617. image: {
  9618. source: "./media/characters/chari-gal/back.svg",
  9619. extra: 762/666,
  9620. bottom: 31/793
  9621. },
  9622. form: "normal"
  9623. },
  9624. mouth: {
  9625. height: math.unit(1.35, "feet"),
  9626. name: "Mouth",
  9627. image: {
  9628. source: "./media/characters/chari-gal/mouth.svg"
  9629. },
  9630. form: "normal"
  9631. },
  9632. gigantamax: {
  9633. height: math.unit(6 * 16, "feet"),
  9634. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9635. name: "Gigantamax",
  9636. image: {
  9637. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9638. extra: 1507/1149,
  9639. bottom: 254/1761
  9640. },
  9641. form: "gigantamax",
  9642. default: true
  9643. },
  9644. },
  9645. [
  9646. {
  9647. name: "Normal",
  9648. height: math.unit(5 + 7 / 12, "feet"),
  9649. form: "normal",
  9650. },
  9651. {
  9652. name: "Macro",
  9653. height: math.unit(200, "feet"),
  9654. default: true,
  9655. form: "normal"
  9656. },
  9657. {
  9658. name: "Normal",
  9659. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9660. form: "gigantamax",
  9661. },
  9662. {
  9663. name: "Macro",
  9664. height: math.unit(16 * 200, "feet"),
  9665. default: true,
  9666. form: "gigantamax"
  9667. },
  9668. ],
  9669. {
  9670. "normal": {
  9671. name: "Normal",
  9672. default: true
  9673. },
  9674. "gigantamax": {
  9675. name: "Gigantamax",
  9676. },
  9677. }
  9678. ))
  9679. characterMakers.push(() => makeCharacter(
  9680. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9681. {
  9682. front: {
  9683. height: math.unit(6, "feet"),
  9684. weight: math.unit(150, "lbs"),
  9685. name: "Front",
  9686. image: {
  9687. source: "./media/characters/nova/front.svg",
  9688. extra: 5000 / 4722,
  9689. bottom: 0.02
  9690. }
  9691. }
  9692. },
  9693. [
  9694. {
  9695. name: "Micro-",
  9696. height: math.unit(0.8, "inches")
  9697. },
  9698. {
  9699. name: "Micro",
  9700. height: math.unit(2, "inches"),
  9701. default: true
  9702. },
  9703. ]
  9704. ))
  9705. characterMakers.push(() => makeCharacter(
  9706. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9707. {
  9708. koboldFront: {
  9709. height: math.unit(3 + 1 / 12, "feet"),
  9710. weight: math.unit(21.7, "lbs"),
  9711. name: "Front",
  9712. image: {
  9713. source: "./media/characters/argent/kobold-front.svg",
  9714. extra: 1471 / 1331,
  9715. bottom: 100.8 / 1575.5
  9716. },
  9717. form: "kobold",
  9718. default: true
  9719. },
  9720. dragonFront: {
  9721. height: math.unit(75, "inches"),
  9722. name: "Front",
  9723. image: {
  9724. source: "./media/characters/argent/dragon-front.svg",
  9725. extra: 1389/1248,
  9726. bottom: 54/1443
  9727. },
  9728. form: "dragon",
  9729. },
  9730. dragonBack: {
  9731. height: math.unit(75, "inches"),
  9732. name: "Back",
  9733. image: {
  9734. source: "./media/characters/argent/dragon-back.svg",
  9735. extra: 1399/1271,
  9736. bottom: 23/1422
  9737. },
  9738. form: "dragon",
  9739. },
  9740. dragonDressed: {
  9741. height: math.unit(75, "inches"),
  9742. name: "Dressed",
  9743. image: {
  9744. source: "./media/characters/argent/dragon-dressed.svg",
  9745. extra: 1350/1215,
  9746. bottom: 26/1376
  9747. },
  9748. form: "dragon"
  9749. },
  9750. dragonHead: {
  9751. height: math.unit(23.5, "inches"),
  9752. name: "Head",
  9753. image: {
  9754. source: "./media/characters/argent/dragon-head.svg"
  9755. },
  9756. form: "dragon",
  9757. },
  9758. },
  9759. [
  9760. {
  9761. name: "Micro",
  9762. height: math.unit(2, "inches"),
  9763. form: "kobold",
  9764. },
  9765. {
  9766. name: "Normal",
  9767. height: math.unit(3 + 1 / 12, "feet"),
  9768. form: "kobold",
  9769. default: true
  9770. },
  9771. {
  9772. name: "Macro",
  9773. height: math.unit(120, "feet"),
  9774. form: "kobold",
  9775. },
  9776. {
  9777. name: "Speck",
  9778. height: math.unit(1, "mm"),
  9779. form: "dragon",
  9780. },
  9781. {
  9782. name: "Tiny",
  9783. height: math.unit(1, "cm"),
  9784. form: "dragon",
  9785. },
  9786. {
  9787. name: "Micro",
  9788. height: math.unit(5, "cm"),
  9789. form: "dragon",
  9790. },
  9791. {
  9792. name: "Normal",
  9793. height: math.unit(75, "inches"),
  9794. form: "dragon",
  9795. default: true
  9796. },
  9797. {
  9798. name: "Extra Tall",
  9799. height: math.unit(9, "feet"),
  9800. form: "dragon",
  9801. },
  9802. {
  9803. name: "Inconvenient",
  9804. height: math.unit(5, "meters"),
  9805. form: "dragon",
  9806. },
  9807. {
  9808. name: "Macro",
  9809. height: math.unit(70, "meters"),
  9810. form: "dragon",
  9811. },
  9812. {
  9813. name: "Macro+",
  9814. height: math.unit(250, "meters"),
  9815. form: "dragon",
  9816. },
  9817. {
  9818. name: "Megamacro",
  9819. height: math.unit(20, "km"),
  9820. form: "dragon",
  9821. },
  9822. {
  9823. name: "Mountainous",
  9824. height: math.unit(100, "km"),
  9825. form: "dragon",
  9826. },
  9827. {
  9828. name: "Continental",
  9829. height: math.unit(2, "megameters"),
  9830. form: "dragon",
  9831. },
  9832. {
  9833. name: "Too Big",
  9834. height: math.unit(900, "megameters"),
  9835. form: "dragon",
  9836. },
  9837. ],
  9838. {
  9839. "kobold": {
  9840. name: "Kobold",
  9841. default: true
  9842. },
  9843. "dragon": {
  9844. name: "Dragon",
  9845. },
  9846. }
  9847. ))
  9848. characterMakers.push(() => makeCharacter(
  9849. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9850. {
  9851. lamp: {
  9852. height: math.unit(7 * 1559 / 989, "feet"),
  9853. name: "Magic Lamp",
  9854. image: {
  9855. source: "./media/characters/mira-al-cul/lamp.svg",
  9856. extra: 1617 / 1559
  9857. }
  9858. },
  9859. front: {
  9860. height: math.unit(7, "feet"),
  9861. name: "Front",
  9862. image: {
  9863. source: "./media/characters/mira-al-cul/front.svg",
  9864. extra: 1044 / 990
  9865. }
  9866. },
  9867. },
  9868. [
  9869. {
  9870. name: "Heavily Restricted",
  9871. height: math.unit(7 * 1559 / 989, "feet")
  9872. },
  9873. {
  9874. name: "Freshly Freed",
  9875. height: math.unit(50 * 1559 / 989, "feet")
  9876. },
  9877. {
  9878. name: "World Encompassing",
  9879. height: math.unit(10000 * 1559 / 989, "miles")
  9880. },
  9881. {
  9882. name: "Galactic",
  9883. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9884. },
  9885. {
  9886. name: "Palmed Universe",
  9887. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9888. default: true
  9889. },
  9890. {
  9891. name: "Multiversal Matriarch",
  9892. height: math.unit(8.87e10, "yottameters")
  9893. },
  9894. {
  9895. name: "Void Mother",
  9896. height: math.unit(3.14e110, "yottaparsecs")
  9897. },
  9898. {
  9899. name: "Toying with Transcendence",
  9900. height: math.unit(1e307, "meters")
  9901. },
  9902. ]
  9903. ))
  9904. characterMakers.push(() => makeCharacter(
  9905. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9906. {
  9907. front: {
  9908. height: math.unit(17 + 1 / 12, "feet"),
  9909. weight: math.unit(476.2 * 5, "lbs"),
  9910. name: "Front",
  9911. image: {
  9912. source: "./media/characters/kuro-shi-uchū/front.svg",
  9913. extra: 2329 / 1835,
  9914. bottom: 0.02
  9915. }
  9916. },
  9917. },
  9918. [
  9919. {
  9920. name: "Micro",
  9921. height: math.unit(2, "inches")
  9922. },
  9923. {
  9924. name: "Normal",
  9925. height: math.unit(12, "meters")
  9926. },
  9927. {
  9928. name: "Planetary",
  9929. height: math.unit(0.00929, "AU"),
  9930. default: true
  9931. },
  9932. {
  9933. name: "Universal",
  9934. height: math.unit(20, "gigaparsecs")
  9935. },
  9936. ]
  9937. ))
  9938. characterMakers.push(() => makeCharacter(
  9939. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9940. {
  9941. front: {
  9942. height: math.unit(5 + 2 / 12, "feet"),
  9943. weight: math.unit(120, "lbs"),
  9944. name: "Front",
  9945. image: {
  9946. source: "./media/characters/katherine/front.svg",
  9947. extra: 2075 / 1969
  9948. }
  9949. },
  9950. dress: {
  9951. height: math.unit(5 + 2 / 12, "feet"),
  9952. weight: math.unit(120, "lbs"),
  9953. name: "Dress",
  9954. image: {
  9955. source: "./media/characters/katherine/dress.svg",
  9956. extra: 2258 / 2064
  9957. }
  9958. },
  9959. },
  9960. [
  9961. {
  9962. name: "Micro",
  9963. height: math.unit(1, "inches"),
  9964. default: true
  9965. },
  9966. {
  9967. name: "Normal",
  9968. height: math.unit(5 + 2 / 12, "feet")
  9969. },
  9970. {
  9971. name: "Macro",
  9972. height: math.unit(100, "meters")
  9973. },
  9974. {
  9975. name: "Megamacro",
  9976. height: math.unit(80, "miles")
  9977. },
  9978. ]
  9979. ))
  9980. characterMakers.push(() => makeCharacter(
  9981. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9982. {
  9983. front: {
  9984. height: math.unit(7 + 8 / 12, "feet"),
  9985. weight: math.unit(250, "lbs"),
  9986. name: "Front",
  9987. image: {
  9988. source: "./media/characters/yevis/front.svg",
  9989. extra: 1938 / 1755
  9990. }
  9991. }
  9992. },
  9993. [
  9994. {
  9995. name: "Mortal",
  9996. height: math.unit(7 + 8 / 12, "feet")
  9997. },
  9998. {
  9999. name: "Battle",
  10000. height: math.unit(25 + 11 / 12, "feet")
  10001. },
  10002. {
  10003. name: "Wrath",
  10004. height: math.unit(1654 + 11 / 12, "feet")
  10005. },
  10006. {
  10007. name: "Planet Destroyer",
  10008. height: math.unit(12000, "miles")
  10009. },
  10010. {
  10011. name: "Galaxy Conqueror",
  10012. height: math.unit(1.45, "zettameters"),
  10013. default: true
  10014. },
  10015. {
  10016. name: "Universal War",
  10017. height: math.unit(184, "gigaparsecs")
  10018. },
  10019. {
  10020. name: "Eternity War",
  10021. height: math.unit(1.98e55, "yottaparsecs")
  10022. },
  10023. ]
  10024. ))
  10025. characterMakers.push(() => makeCharacter(
  10026. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10027. {
  10028. front: {
  10029. height: math.unit(5 + 8 / 12, "feet"),
  10030. weight: math.unit(63, "kg"),
  10031. name: "Front",
  10032. image: {
  10033. source: "./media/characters/xavier/front.svg",
  10034. extra: 944 / 883
  10035. }
  10036. },
  10037. frontStretch: {
  10038. height: math.unit(5 + 8 / 12, "feet"),
  10039. weight: math.unit(63, "kg"),
  10040. name: "Stretching",
  10041. image: {
  10042. source: "./media/characters/xavier/front-stretch.svg",
  10043. extra: 962 / 820
  10044. }
  10045. },
  10046. },
  10047. [
  10048. {
  10049. name: "Normal",
  10050. height: math.unit(5 + 8 / 12, "feet")
  10051. },
  10052. {
  10053. name: "Macro",
  10054. height: math.unit(100, "meters"),
  10055. default: true
  10056. },
  10057. {
  10058. name: "McLargeHuge",
  10059. height: math.unit(10, "miles")
  10060. },
  10061. ]
  10062. ))
  10063. characterMakers.push(() => makeCharacter(
  10064. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10065. {
  10066. front: {
  10067. height: math.unit(5 + 5 / 12, "feet"),
  10068. weight: math.unit(150, "lb"),
  10069. name: "Front",
  10070. image: {
  10071. source: "./media/characters/joshii/front.svg",
  10072. extra: 765 / 653,
  10073. bottom: 51 / 816
  10074. }
  10075. },
  10076. foot: {
  10077. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10078. name: "Foot",
  10079. image: {
  10080. source: "./media/characters/joshii/foot.svg"
  10081. }
  10082. },
  10083. },
  10084. [
  10085. {
  10086. name: "Micro",
  10087. height: math.unit(2, "inches")
  10088. },
  10089. {
  10090. name: "Normal",
  10091. height: math.unit(5 + 5 / 12, "feet")
  10092. },
  10093. {
  10094. name: "Macro",
  10095. height: math.unit(785, "feet"),
  10096. default: true
  10097. },
  10098. {
  10099. name: "Megamacro",
  10100. height: math.unit(24.5, "miles")
  10101. },
  10102. ]
  10103. ))
  10104. characterMakers.push(() => makeCharacter(
  10105. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10106. {
  10107. front: {
  10108. height: math.unit(6, "feet"),
  10109. weight: math.unit(150, "lb"),
  10110. name: "Front",
  10111. image: {
  10112. source: "./media/characters/goddess-elizabeth/front.svg",
  10113. extra: 1800 / 1525,
  10114. bottom: 0.005
  10115. }
  10116. },
  10117. foot: {
  10118. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10119. name: "Foot",
  10120. image: {
  10121. source: "./media/characters/goddess-elizabeth/foot.svg"
  10122. }
  10123. },
  10124. mouth: {
  10125. height: math.unit(6, "feet"),
  10126. name: "Mouth",
  10127. image: {
  10128. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10129. }
  10130. },
  10131. },
  10132. [
  10133. {
  10134. name: "Micro",
  10135. height: math.unit(12, "feet")
  10136. },
  10137. {
  10138. name: "Normal",
  10139. height: math.unit(80, "miles"),
  10140. default: true
  10141. },
  10142. {
  10143. name: "Macro",
  10144. height: math.unit(15000, "parsecs")
  10145. },
  10146. ]
  10147. ))
  10148. characterMakers.push(() => makeCharacter(
  10149. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10150. {
  10151. front: {
  10152. height: math.unit(5 + 9 / 12, "feet"),
  10153. weight: math.unit(144, "lb"),
  10154. name: "Front",
  10155. image: {
  10156. source: "./media/characters/kara/front.svg"
  10157. }
  10158. },
  10159. feet: {
  10160. height: math.unit(6 / 6.765, "feet"),
  10161. name: "Kara's Feet",
  10162. rename: true,
  10163. image: {
  10164. source: "./media/characters/kara/feet.svg"
  10165. }
  10166. },
  10167. },
  10168. [
  10169. {
  10170. name: "Normal",
  10171. height: math.unit(5 + 9 / 12, "feet")
  10172. },
  10173. {
  10174. name: "Macro",
  10175. height: math.unit(174, "feet"),
  10176. default: true
  10177. },
  10178. ]
  10179. ))
  10180. characterMakers.push(() => makeCharacter(
  10181. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10182. {
  10183. front: {
  10184. height: math.unit(18, "feet"),
  10185. weight: math.unit(4050, "lb"),
  10186. name: "Front",
  10187. image: {
  10188. source: "./media/characters/tyrone/front.svg",
  10189. extra: 2405 / 2270,
  10190. bottom: 182 / 2587
  10191. }
  10192. },
  10193. },
  10194. [
  10195. {
  10196. name: "Normal",
  10197. height: math.unit(18, "feet"),
  10198. default: true
  10199. },
  10200. {
  10201. name: "Macro",
  10202. height: math.unit(300, "feet")
  10203. },
  10204. {
  10205. name: "Megamacro",
  10206. height: math.unit(15, "km")
  10207. },
  10208. {
  10209. name: "Gigamacro",
  10210. height: math.unit(500, "km")
  10211. },
  10212. {
  10213. name: "Teramacro",
  10214. height: math.unit(0.5, "gigameters")
  10215. },
  10216. {
  10217. name: "Omnimacro",
  10218. height: math.unit(1e252, "yottauniverse")
  10219. },
  10220. ]
  10221. ))
  10222. characterMakers.push(() => makeCharacter(
  10223. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10224. {
  10225. front: {
  10226. height: math.unit(7 + 8 / 12, "feet"),
  10227. weight: math.unit(120, "lb"),
  10228. name: "Front",
  10229. image: {
  10230. source: "./media/characters/danny/front.svg",
  10231. extra: 1490 / 1350
  10232. }
  10233. },
  10234. back: {
  10235. height: math.unit(7 + 8 / 12, "feet"),
  10236. weight: math.unit(120, "lb"),
  10237. name: "Back",
  10238. image: {
  10239. source: "./media/characters/danny/back.svg",
  10240. extra: 1490 / 1350
  10241. }
  10242. },
  10243. },
  10244. [
  10245. {
  10246. name: "Normal",
  10247. height: math.unit(7 + 8 / 12, "feet"),
  10248. default: true
  10249. },
  10250. ]
  10251. ))
  10252. characterMakers.push(() => makeCharacter(
  10253. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10254. {
  10255. front: {
  10256. height: math.unit(3.5, "inches"),
  10257. weight: math.unit(19, "grams"),
  10258. name: "Front",
  10259. image: {
  10260. source: "./media/characters/mallow/front.svg",
  10261. extra: 471 / 431
  10262. }
  10263. },
  10264. back: {
  10265. height: math.unit(3.5, "inches"),
  10266. weight: math.unit(19, "grams"),
  10267. name: "Back",
  10268. image: {
  10269. source: "./media/characters/mallow/back.svg",
  10270. extra: 471 / 431
  10271. }
  10272. },
  10273. },
  10274. [
  10275. {
  10276. name: "Normal",
  10277. height: math.unit(3.5, "inches"),
  10278. default: true
  10279. },
  10280. ]
  10281. ))
  10282. characterMakers.push(() => makeCharacter(
  10283. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10284. {
  10285. front: {
  10286. height: math.unit(9, "feet"),
  10287. weight: math.unit(230, "kg"),
  10288. name: "Front",
  10289. image: {
  10290. source: "./media/characters/starry-aqua/front.svg"
  10291. }
  10292. },
  10293. back: {
  10294. height: math.unit(9, "feet"),
  10295. weight: math.unit(230, "kg"),
  10296. name: "Back",
  10297. image: {
  10298. source: "./media/characters/starry-aqua/back.svg"
  10299. }
  10300. },
  10301. hand: {
  10302. height: math.unit(9 * 0.1168, "feet"),
  10303. name: "Hand",
  10304. image: {
  10305. source: "./media/characters/starry-aqua/hand.svg"
  10306. }
  10307. },
  10308. foot: {
  10309. height: math.unit(9 * 0.18, "feet"),
  10310. name: "Foot",
  10311. image: {
  10312. source: "./media/characters/starry-aqua/foot.svg"
  10313. }
  10314. }
  10315. },
  10316. [
  10317. {
  10318. name: "Micro",
  10319. height: math.unit(3, "inches")
  10320. },
  10321. {
  10322. name: "Normal",
  10323. height: math.unit(9, "feet")
  10324. },
  10325. {
  10326. name: "Macro",
  10327. height: math.unit(300, "feet"),
  10328. default: true
  10329. },
  10330. {
  10331. name: "Megamacro",
  10332. height: math.unit(3200, "feet")
  10333. }
  10334. ]
  10335. ))
  10336. characterMakers.push(() => makeCharacter(
  10337. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10338. {
  10339. front: {
  10340. height: math.unit(15, "feet"),
  10341. weight: math.unit(5026, "lb"),
  10342. name: "Front",
  10343. image: {
  10344. source: "./media/characters/luka-towers/front.svg",
  10345. extra: 1269/1133,
  10346. bottom: 51/1320
  10347. }
  10348. },
  10349. },
  10350. [
  10351. {
  10352. name: "Normal",
  10353. height: math.unit(15, "feet"),
  10354. default: true
  10355. },
  10356. {
  10357. name: "Minimacro",
  10358. height: math.unit(25, "feet")
  10359. },
  10360. {
  10361. name: "Macro",
  10362. height: math.unit(320, "feet")
  10363. },
  10364. {
  10365. name: "Megamacro",
  10366. height: math.unit(35000, "feet")
  10367. },
  10368. {
  10369. name: "Gigamacro",
  10370. height: math.unit(4000, "miles")
  10371. },
  10372. {
  10373. name: "Teramacro",
  10374. height: math.unit(15000, "miles")
  10375. },
  10376. ]
  10377. ))
  10378. characterMakers.push(() => makeCharacter(
  10379. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10380. {
  10381. front: {
  10382. height: math.unit(6, "feet"),
  10383. weight: math.unit(150, "lb"),
  10384. name: "Front",
  10385. image: {
  10386. source: "./media/characters/natalie-nightring/front.svg",
  10387. extra: 1,
  10388. bottom: 0.06
  10389. }
  10390. },
  10391. },
  10392. [
  10393. {
  10394. name: "Uh Oh",
  10395. height: math.unit(0.1, "mm")
  10396. },
  10397. {
  10398. name: "Small",
  10399. height: math.unit(3, "inches")
  10400. },
  10401. {
  10402. name: "Human Scale",
  10403. height: math.unit(6, "feet")
  10404. },
  10405. {
  10406. name: "Librarian",
  10407. height: math.unit(50, "feet"),
  10408. default: true
  10409. },
  10410. {
  10411. name: "Immense",
  10412. height: math.unit(200, "miles")
  10413. },
  10414. ]
  10415. ))
  10416. characterMakers.push(() => makeCharacter(
  10417. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10418. {
  10419. front: {
  10420. height: math.unit(6, "feet"),
  10421. weight: math.unit(180, "lbs"),
  10422. name: "Front",
  10423. image: {
  10424. source: "./media/characters/danni-rosie/front.svg",
  10425. extra: 1260 / 1128,
  10426. bottom: 0.022
  10427. }
  10428. },
  10429. },
  10430. [
  10431. {
  10432. name: "Micro",
  10433. height: math.unit(2, "inches"),
  10434. default: true
  10435. },
  10436. ]
  10437. ))
  10438. characterMakers.push(() => makeCharacter(
  10439. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10440. {
  10441. front: {
  10442. height: math.unit(5 + 9 / 12, "feet"),
  10443. weight: math.unit(220, "lb"),
  10444. name: "Front",
  10445. image: {
  10446. source: "./media/characters/samantha-kruse/front.svg",
  10447. extra: (985 / 935),
  10448. bottom: 0.03
  10449. }
  10450. },
  10451. frontUndressed: {
  10452. height: math.unit(5 + 9 / 12, "feet"),
  10453. weight: math.unit(220, "lb"),
  10454. name: "Front (Undressed)",
  10455. image: {
  10456. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10457. extra: (973 / 923),
  10458. bottom: 0.025
  10459. }
  10460. },
  10461. fat: {
  10462. height: math.unit(5 + 9 / 12, "feet"),
  10463. weight: math.unit(900, "lb"),
  10464. name: "Front (Fat)",
  10465. image: {
  10466. source: "./media/characters/samantha-kruse/fat.svg",
  10467. extra: 2688 / 2561
  10468. }
  10469. },
  10470. },
  10471. [
  10472. {
  10473. name: "Normal",
  10474. height: math.unit(5 + 9 / 12, "feet"),
  10475. default: true
  10476. }
  10477. ]
  10478. ))
  10479. characterMakers.push(() => makeCharacter(
  10480. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10481. {
  10482. back: {
  10483. height: math.unit(5 + 4 / 12, "feet"),
  10484. weight: math.unit(4963, "lb"),
  10485. name: "Back",
  10486. image: {
  10487. source: "./media/characters/amelia-rosie/back.svg",
  10488. extra: 1113 / 963,
  10489. bottom: 0.01
  10490. }
  10491. },
  10492. },
  10493. [
  10494. {
  10495. name: "Level 0",
  10496. height: math.unit(5 + 4 / 12, "feet")
  10497. },
  10498. {
  10499. name: "Level 1",
  10500. height: math.unit(164597, "feet"),
  10501. default: true
  10502. },
  10503. {
  10504. name: "Level 2",
  10505. height: math.unit(956243, "miles")
  10506. },
  10507. {
  10508. name: "Level 3",
  10509. height: math.unit(29421709423, "miles")
  10510. },
  10511. {
  10512. name: "Level 4",
  10513. height: math.unit(154, "lightyears")
  10514. },
  10515. {
  10516. name: "Level 5",
  10517. height: math.unit(4738272, "lightyears")
  10518. },
  10519. {
  10520. name: "Level 6",
  10521. height: math.unit(145787152896, "lightyears")
  10522. },
  10523. ]
  10524. ))
  10525. characterMakers.push(() => makeCharacter(
  10526. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10527. {
  10528. front: {
  10529. height: math.unit(5 + 11 / 12, "feet"),
  10530. weight: math.unit(65, "kg"),
  10531. name: "Front",
  10532. image: {
  10533. source: "./media/characters/rook-kitara/front.svg",
  10534. extra: 1347 / 1274,
  10535. bottom: 0.005
  10536. }
  10537. },
  10538. },
  10539. [
  10540. {
  10541. name: "Totally Unfair",
  10542. height: math.unit(1.8, "mm")
  10543. },
  10544. {
  10545. name: "Lap Rookie",
  10546. height: math.unit(1.4, "feet")
  10547. },
  10548. {
  10549. name: "Normal",
  10550. height: math.unit(5 + 11 / 12, "feet"),
  10551. default: true
  10552. },
  10553. {
  10554. name: "How Did This Happen",
  10555. height: math.unit(80, "miles")
  10556. }
  10557. ]
  10558. ))
  10559. characterMakers.push(() => makeCharacter(
  10560. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10561. {
  10562. front: {
  10563. height: math.unit(7, "feet"),
  10564. weight: math.unit(300, "lb"),
  10565. name: "Front",
  10566. image: {
  10567. source: "./media/characters/pisces/front.svg",
  10568. extra: 2255 / 2115,
  10569. bottom: 0.03
  10570. }
  10571. },
  10572. back: {
  10573. height: math.unit(7, "feet"),
  10574. weight: math.unit(300, "lb"),
  10575. name: "Back",
  10576. image: {
  10577. source: "./media/characters/pisces/back.svg",
  10578. extra: 2146 / 2055,
  10579. bottom: 0.04
  10580. }
  10581. },
  10582. },
  10583. [
  10584. {
  10585. name: "Normal",
  10586. height: math.unit(7, "feet"),
  10587. default: true
  10588. },
  10589. {
  10590. name: "Swimming Pool",
  10591. height: math.unit(12.2, "meters")
  10592. },
  10593. {
  10594. name: "Olympic Swimming Pool",
  10595. height: math.unit(56.3, "meters")
  10596. },
  10597. {
  10598. name: "Lake Superior",
  10599. height: math.unit(93900, "meters")
  10600. },
  10601. {
  10602. name: "Mediterranean Sea",
  10603. height: math.unit(644457, "meters")
  10604. },
  10605. {
  10606. name: "World's Oceans",
  10607. height: math.unit(4567491, "meters")
  10608. },
  10609. ]
  10610. ))
  10611. characterMakers.push(() => makeCharacter(
  10612. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10613. {
  10614. front: {
  10615. height: math.unit(2.3, "meters"),
  10616. weight: math.unit(120, "kg"),
  10617. name: "Front",
  10618. image: {
  10619. source: "./media/characters/zelas/front.svg"
  10620. }
  10621. },
  10622. side: {
  10623. height: math.unit(2.3, "meters"),
  10624. weight: math.unit(120, "kg"),
  10625. name: "Side",
  10626. image: {
  10627. source: "./media/characters/zelas/side.svg"
  10628. }
  10629. },
  10630. back: {
  10631. height: math.unit(2.3, "meters"),
  10632. weight: math.unit(120, "kg"),
  10633. name: "Back",
  10634. image: {
  10635. source: "./media/characters/zelas/back.svg"
  10636. }
  10637. },
  10638. foot: {
  10639. height: math.unit(1.116, "feet"),
  10640. name: "Foot",
  10641. image: {
  10642. source: "./media/characters/zelas/foot.svg"
  10643. }
  10644. },
  10645. },
  10646. [
  10647. {
  10648. name: "Normal",
  10649. height: math.unit(2.3, "meters")
  10650. },
  10651. {
  10652. name: "Macro",
  10653. height: math.unit(30, "meters"),
  10654. default: true
  10655. },
  10656. ]
  10657. ))
  10658. characterMakers.push(() => makeCharacter(
  10659. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10660. {
  10661. front: {
  10662. height: math.unit(1, "inch"),
  10663. weight: math.unit(0.21, "grams"),
  10664. name: "Front",
  10665. image: {
  10666. source: "./media/characters/talbot/front.svg",
  10667. extra: 594 / 544
  10668. }
  10669. },
  10670. },
  10671. [
  10672. {
  10673. name: "Micro",
  10674. height: math.unit(1, "inch"),
  10675. default: true
  10676. },
  10677. ]
  10678. ))
  10679. characterMakers.push(() => makeCharacter(
  10680. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10681. {
  10682. front: {
  10683. height: math.unit(3 + 3 / 12, "feet"),
  10684. weight: math.unit(51.8, "lb"),
  10685. name: "Front",
  10686. image: {
  10687. source: "./media/characters/fliss/front.svg",
  10688. extra: 840 / 640
  10689. }
  10690. },
  10691. },
  10692. [
  10693. {
  10694. name: "Teeny Tiny",
  10695. height: math.unit(1, "mm")
  10696. },
  10697. {
  10698. name: "Small",
  10699. height: math.unit(1, "inch"),
  10700. default: true
  10701. },
  10702. {
  10703. name: "Standard Sylveon",
  10704. height: math.unit(3 + 3 / 12, "feet")
  10705. },
  10706. {
  10707. name: "Large Nuisance",
  10708. height: math.unit(33, "feet")
  10709. },
  10710. {
  10711. name: "City Filler",
  10712. height: math.unit(3000, "feet")
  10713. },
  10714. {
  10715. name: "New Horizon",
  10716. height: math.unit(6000, "miles")
  10717. },
  10718. ]
  10719. ))
  10720. characterMakers.push(() => makeCharacter(
  10721. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10722. {
  10723. front: {
  10724. height: math.unit(5, "cm"),
  10725. weight: math.unit(1.94, "g"),
  10726. name: "Front",
  10727. image: {
  10728. source: "./media/characters/fleta/front.svg",
  10729. extra: 835 / 803
  10730. }
  10731. },
  10732. back: {
  10733. height: math.unit(5, "cm"),
  10734. weight: math.unit(1.94, "g"),
  10735. name: "Back",
  10736. image: {
  10737. source: "./media/characters/fleta/back.svg",
  10738. extra: 835 / 803
  10739. }
  10740. },
  10741. },
  10742. [
  10743. {
  10744. name: "Micro",
  10745. height: math.unit(5, "cm"),
  10746. default: true
  10747. },
  10748. ]
  10749. ))
  10750. characterMakers.push(() => makeCharacter(
  10751. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10752. {
  10753. front: {
  10754. height: math.unit(6, "feet"),
  10755. weight: math.unit(225, "lb"),
  10756. name: "Front",
  10757. image: {
  10758. source: "./media/characters/dominic/front.svg",
  10759. extra: 1770 / 1620,
  10760. bottom: 0.025
  10761. }
  10762. },
  10763. back: {
  10764. height: math.unit(6, "feet"),
  10765. weight: math.unit(225, "lb"),
  10766. name: "Back",
  10767. image: {
  10768. source: "./media/characters/dominic/back.svg",
  10769. extra: 1745 / 1620,
  10770. bottom: 0.065
  10771. }
  10772. },
  10773. },
  10774. [
  10775. {
  10776. name: "Nano",
  10777. height: math.unit(0.1, "mm")
  10778. },
  10779. {
  10780. name: "Micro-",
  10781. height: math.unit(1, "mm")
  10782. },
  10783. {
  10784. name: "Micro",
  10785. height: math.unit(4, "inches")
  10786. },
  10787. {
  10788. name: "Normal",
  10789. height: math.unit(6 + 4 / 12, "feet"),
  10790. default: true
  10791. },
  10792. {
  10793. name: "Macro",
  10794. height: math.unit(115, "feet")
  10795. },
  10796. {
  10797. name: "Macro+",
  10798. height: math.unit(955, "feet")
  10799. },
  10800. {
  10801. name: "Megamacro",
  10802. height: math.unit(8990, "feet")
  10803. },
  10804. {
  10805. name: "Gigmacro",
  10806. height: math.unit(9310, "miles")
  10807. },
  10808. {
  10809. name: "Teramacro",
  10810. height: math.unit(1567005010, "miles")
  10811. },
  10812. {
  10813. name: "Examacro",
  10814. height: math.unit(1425, "parsecs")
  10815. },
  10816. ]
  10817. ))
  10818. characterMakers.push(() => makeCharacter(
  10819. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10820. {
  10821. front: {
  10822. height: math.unit(400, "feet"),
  10823. weight: math.unit(44444444, "lb"),
  10824. name: "Front",
  10825. image: {
  10826. source: "./media/characters/major-colonel/front.svg"
  10827. }
  10828. },
  10829. back: {
  10830. height: math.unit(400, "feet"),
  10831. weight: math.unit(44444444, "lb"),
  10832. name: "Back",
  10833. image: {
  10834. source: "./media/characters/major-colonel/back.svg"
  10835. }
  10836. },
  10837. },
  10838. [
  10839. {
  10840. name: "Macro",
  10841. height: math.unit(400, "feet"),
  10842. default: true
  10843. },
  10844. ]
  10845. ))
  10846. characterMakers.push(() => makeCharacter(
  10847. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10848. {
  10849. catFront: {
  10850. height: math.unit(6, "feet"),
  10851. weight: math.unit(120, "lb"),
  10852. name: "Front (Cat Side)",
  10853. image: {
  10854. source: "./media/characters/axel-lycan/cat-front.svg",
  10855. extra: 430 / 402,
  10856. bottom: 43 / 472.35
  10857. }
  10858. },
  10859. catBack: {
  10860. height: math.unit(6, "feet"),
  10861. weight: math.unit(120, "lb"),
  10862. name: "Back (Cat Side)",
  10863. image: {
  10864. source: "./media/characters/axel-lycan/cat-back.svg",
  10865. extra: 447 / 419,
  10866. bottom: 23.3 / 469
  10867. }
  10868. },
  10869. wolfFront: {
  10870. height: math.unit(6, "feet"),
  10871. weight: math.unit(120, "lb"),
  10872. name: "Front (Wolf Side)",
  10873. image: {
  10874. source: "./media/characters/axel-lycan/wolf-front.svg",
  10875. extra: 485 / 456,
  10876. bottom: 19 / 504
  10877. }
  10878. },
  10879. wolfBack: {
  10880. height: math.unit(6, "feet"),
  10881. weight: math.unit(120, "lb"),
  10882. name: "Back (Wolf Side)",
  10883. image: {
  10884. source: "./media/characters/axel-lycan/wolf-back.svg",
  10885. extra: 475 / 438,
  10886. bottom: 39.2 / 514
  10887. }
  10888. },
  10889. },
  10890. [
  10891. {
  10892. name: "Macro",
  10893. height: math.unit(1, "km"),
  10894. default: true
  10895. },
  10896. ]
  10897. ))
  10898. characterMakers.push(() => makeCharacter(
  10899. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10900. {
  10901. front: {
  10902. height: math.unit(5 + 9 / 12, "feet"),
  10903. weight: math.unit(175, "lb"),
  10904. name: "Front",
  10905. image: {
  10906. source: "./media/characters/vanrel-hyena/front.svg",
  10907. extra: 1086 / 1010,
  10908. bottom: 0.04
  10909. }
  10910. },
  10911. },
  10912. [
  10913. {
  10914. name: "Normal",
  10915. height: math.unit(5 + 9 / 12, "feet"),
  10916. default: true
  10917. },
  10918. ]
  10919. ))
  10920. characterMakers.push(() => makeCharacter(
  10921. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10922. {
  10923. front: {
  10924. height: math.unit(6, "feet"),
  10925. weight: math.unit(103, "lb"),
  10926. name: "Front",
  10927. image: {
  10928. source: "./media/characters/abbott-absol/front.svg",
  10929. extra: 765/694,
  10930. bottom: 47/812
  10931. }
  10932. },
  10933. },
  10934. [
  10935. {
  10936. name: "Megamicro",
  10937. height: math.unit(0.1, "mm")
  10938. },
  10939. {
  10940. name: "Micro",
  10941. height: math.unit(1, "inch")
  10942. },
  10943. {
  10944. name: "Normal",
  10945. height: math.unit(6, "feet"),
  10946. default: true
  10947. },
  10948. ]
  10949. ))
  10950. characterMakers.push(() => makeCharacter(
  10951. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10952. {
  10953. front: {
  10954. height: math.unit(6, "feet"),
  10955. weight: math.unit(264, "lb"),
  10956. name: "Front",
  10957. image: {
  10958. source: "./media/characters/hector/front.svg",
  10959. extra: 2280 / 2130,
  10960. bottom: 0.07
  10961. }
  10962. },
  10963. },
  10964. [
  10965. {
  10966. name: "Normal",
  10967. height: math.unit(12.25, "foot"),
  10968. default: true
  10969. },
  10970. {
  10971. name: "Macro",
  10972. height: math.unit(160, "feet")
  10973. },
  10974. ]
  10975. ))
  10976. characterMakers.push(() => makeCharacter(
  10977. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10978. {
  10979. front: {
  10980. height: math.unit(6, "feet"),
  10981. weight: math.unit(150, "lb"),
  10982. name: "Front",
  10983. image: {
  10984. source: "./media/characters/sal/front.svg",
  10985. extra: 1846 / 1699,
  10986. bottom: 0.04
  10987. }
  10988. },
  10989. },
  10990. [
  10991. {
  10992. name: "Megamacro",
  10993. height: math.unit(10, "miles"),
  10994. default: true
  10995. },
  10996. ]
  10997. ))
  10998. characterMakers.push(() => makeCharacter(
  10999. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11000. {
  11001. front: {
  11002. height: math.unit(3, "meters"),
  11003. weight: math.unit(450, "kg"),
  11004. name: "front",
  11005. image: {
  11006. source: "./media/characters/ranger/front.svg",
  11007. extra: 2401 / 2243,
  11008. bottom: 0.05
  11009. }
  11010. },
  11011. },
  11012. [
  11013. {
  11014. name: "Normal",
  11015. height: math.unit(3, "meters"),
  11016. default: true
  11017. },
  11018. ]
  11019. ))
  11020. characterMakers.push(() => makeCharacter(
  11021. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11022. {
  11023. front: {
  11024. height: math.unit(14, "feet"),
  11025. weight: math.unit(800, "kg"),
  11026. name: "Front",
  11027. image: {
  11028. source: "./media/characters/theresa/front.svg",
  11029. extra: 3575 / 3346,
  11030. bottom: 0.03
  11031. }
  11032. },
  11033. },
  11034. [
  11035. {
  11036. name: "Normal",
  11037. height: math.unit(14, "feet"),
  11038. default: true
  11039. },
  11040. ]
  11041. ))
  11042. characterMakers.push(() => makeCharacter(
  11043. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11044. {
  11045. front: {
  11046. height: math.unit(6, "feet"),
  11047. weight: math.unit(3, "kg"),
  11048. name: "Front",
  11049. image: {
  11050. source: "./media/characters/ine/front.svg",
  11051. extra: 678 / 539,
  11052. bottom: 0.023
  11053. }
  11054. },
  11055. },
  11056. [
  11057. {
  11058. name: "Normal",
  11059. height: math.unit(2.265, "feet"),
  11060. default: true
  11061. },
  11062. ]
  11063. ))
  11064. characterMakers.push(() => makeCharacter(
  11065. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11066. {
  11067. front: {
  11068. height: math.unit(5, "feet"),
  11069. weight: math.unit(30, "kg"),
  11070. name: "Front",
  11071. image: {
  11072. source: "./media/characters/vial/front.svg",
  11073. extra: 1365 / 1277,
  11074. bottom: 0.04
  11075. }
  11076. },
  11077. },
  11078. [
  11079. {
  11080. name: "Normal",
  11081. height: math.unit(5, "feet"),
  11082. default: true
  11083. },
  11084. ]
  11085. ))
  11086. characterMakers.push(() => makeCharacter(
  11087. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11088. {
  11089. side: {
  11090. height: math.unit(3.4, "meters"),
  11091. weight: math.unit(1000, "lb"),
  11092. name: "Side",
  11093. image: {
  11094. source: "./media/characters/rovoska/side.svg",
  11095. extra: 4403 / 1515
  11096. }
  11097. },
  11098. },
  11099. [
  11100. {
  11101. name: "Normal",
  11102. height: math.unit(3.4, "meters"),
  11103. default: true
  11104. },
  11105. ]
  11106. ))
  11107. characterMakers.push(() => makeCharacter(
  11108. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11109. {
  11110. front: {
  11111. height: math.unit(8, "feet"),
  11112. weight: math.unit(315, "lb"),
  11113. name: "Front",
  11114. image: {
  11115. source: "./media/characters/gunner-rotthbauer/front.svg"
  11116. }
  11117. },
  11118. back: {
  11119. height: math.unit(8, "feet"),
  11120. weight: math.unit(315, "lb"),
  11121. name: "Back",
  11122. image: {
  11123. source: "./media/characters/gunner-rotthbauer/back.svg"
  11124. }
  11125. },
  11126. },
  11127. [
  11128. {
  11129. name: "Micro",
  11130. height: math.unit(3.5, "inches")
  11131. },
  11132. {
  11133. name: "Normal",
  11134. height: math.unit(8, "feet"),
  11135. default: true
  11136. },
  11137. {
  11138. name: "Macro",
  11139. height: math.unit(250, "feet")
  11140. },
  11141. {
  11142. name: "Megamacro",
  11143. height: math.unit(1, "AU")
  11144. },
  11145. ]
  11146. ))
  11147. characterMakers.push(() => makeCharacter(
  11148. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11149. {
  11150. front: {
  11151. height: math.unit(5 + 5 / 12, "feet"),
  11152. weight: math.unit(140, "lb"),
  11153. name: "Front",
  11154. image: {
  11155. source: "./media/characters/allatia/front.svg",
  11156. extra: 1227 / 1180,
  11157. bottom: 0.027
  11158. }
  11159. },
  11160. },
  11161. [
  11162. {
  11163. name: "Normal",
  11164. height: math.unit(5 + 5 / 12, "feet")
  11165. },
  11166. {
  11167. name: "Macro",
  11168. height: math.unit(250, "feet"),
  11169. default: true
  11170. },
  11171. {
  11172. name: "Megamacro",
  11173. height: math.unit(8, "miles")
  11174. }
  11175. ]
  11176. ))
  11177. characterMakers.push(() => makeCharacter(
  11178. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11179. {
  11180. front: {
  11181. height: math.unit(6, "feet"),
  11182. weight: math.unit(120, "lb"),
  11183. name: "Front",
  11184. image: {
  11185. source: "./media/characters/tene/front.svg",
  11186. extra: 814/750,
  11187. bottom: 36/850
  11188. }
  11189. },
  11190. stomping: {
  11191. height: math.unit(2.025, "meters"),
  11192. weight: math.unit(120, "lb"),
  11193. name: "Stomping",
  11194. image: {
  11195. source: "./media/characters/tene/stomping.svg",
  11196. extra: 885/821,
  11197. bottom: 15/900
  11198. }
  11199. },
  11200. sitting: {
  11201. height: math.unit(1, "meter"),
  11202. weight: math.unit(120, "lb"),
  11203. name: "Sitting",
  11204. image: {
  11205. source: "./media/characters/tene/sitting.svg",
  11206. extra: 396/366,
  11207. bottom: 79/475
  11208. }
  11209. },
  11210. smiling: {
  11211. height: math.unit(1.2, "feet"),
  11212. name: "Smiling",
  11213. image: {
  11214. source: "./media/characters/tene/smiling.svg",
  11215. extra: 1364/1071,
  11216. bottom: 0/1364
  11217. }
  11218. },
  11219. smug: {
  11220. height: math.unit(1.3, "feet"),
  11221. name: "Smug",
  11222. image: {
  11223. source: "./media/characters/tene/smug.svg",
  11224. extra: 1323/1082,
  11225. bottom: 0/1323
  11226. }
  11227. },
  11228. feral: {
  11229. height: math.unit(3.9, "feet"),
  11230. weight: math.unit(250, "lb"),
  11231. name: "Feral",
  11232. image: {
  11233. source: "./media/characters/tene/feral.svg",
  11234. extra: 717 / 458,
  11235. bottom: 0.179
  11236. }
  11237. },
  11238. },
  11239. [
  11240. {
  11241. name: "Normal",
  11242. height: math.unit(6, "feet")
  11243. },
  11244. {
  11245. name: "Macro",
  11246. height: math.unit(300, "feet"),
  11247. default: true
  11248. },
  11249. {
  11250. name: "Megamacro",
  11251. height: math.unit(5, "miles")
  11252. },
  11253. ]
  11254. ))
  11255. characterMakers.push(() => makeCharacter(
  11256. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11257. {
  11258. side: {
  11259. height: math.unit(6, "feet"),
  11260. name: "Side",
  11261. image: {
  11262. source: "./media/characters/evander/side.svg",
  11263. extra: 877 / 477
  11264. }
  11265. },
  11266. },
  11267. [
  11268. {
  11269. name: "Normal",
  11270. height: math.unit(0.83, "meters"),
  11271. default: true
  11272. },
  11273. ]
  11274. ))
  11275. characterMakers.push(() => makeCharacter(
  11276. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11277. {
  11278. front: {
  11279. height: math.unit(12, "feet"),
  11280. weight: math.unit(1000, "lb"),
  11281. name: "Front",
  11282. image: {
  11283. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11284. extra: 1762 / 1611
  11285. }
  11286. },
  11287. back: {
  11288. height: math.unit(12, "feet"),
  11289. weight: math.unit(1000, "lb"),
  11290. name: "Back",
  11291. image: {
  11292. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11293. extra: 1762 / 1611
  11294. }
  11295. },
  11296. },
  11297. [
  11298. {
  11299. name: "Normal",
  11300. height: math.unit(12, "feet"),
  11301. default: true
  11302. },
  11303. {
  11304. name: "Kaiju",
  11305. height: math.unit(150, "feet")
  11306. },
  11307. ]
  11308. ))
  11309. characterMakers.push(() => makeCharacter(
  11310. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11311. {
  11312. front: {
  11313. height: math.unit(6, "feet"),
  11314. weight: math.unit(150, "lb"),
  11315. name: "Front",
  11316. image: {
  11317. source: "./media/characters/zero-alurus/front.svg"
  11318. }
  11319. },
  11320. back: {
  11321. height: math.unit(6, "feet"),
  11322. weight: math.unit(150, "lb"),
  11323. name: "Back",
  11324. image: {
  11325. source: "./media/characters/zero-alurus/back.svg"
  11326. }
  11327. },
  11328. },
  11329. [
  11330. {
  11331. name: "Normal",
  11332. height: math.unit(5 + 10 / 12, "feet")
  11333. },
  11334. {
  11335. name: "Macro",
  11336. height: math.unit(60, "feet"),
  11337. default: true
  11338. },
  11339. {
  11340. name: "Macro+",
  11341. height: math.unit(450, "feet")
  11342. },
  11343. ]
  11344. ))
  11345. characterMakers.push(() => makeCharacter(
  11346. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11347. {
  11348. front: {
  11349. height: math.unit(6, "feet"),
  11350. weight: math.unit(200, "lb"),
  11351. name: "Front",
  11352. image: {
  11353. source: "./media/characters/mega-shi/front.svg",
  11354. extra: 1279 / 1250,
  11355. bottom: 0.02
  11356. }
  11357. },
  11358. back: {
  11359. height: math.unit(6, "feet"),
  11360. weight: math.unit(200, "lb"),
  11361. name: "Back",
  11362. image: {
  11363. source: "./media/characters/mega-shi/back.svg",
  11364. extra: 1279 / 1250,
  11365. bottom: 0.02
  11366. }
  11367. },
  11368. },
  11369. [
  11370. {
  11371. name: "Micro",
  11372. height: math.unit(16 + 6 / 12, "feet")
  11373. },
  11374. {
  11375. name: "Third Dimension",
  11376. height: math.unit(40, "meters")
  11377. },
  11378. {
  11379. name: "Normal",
  11380. height: math.unit(660, "feet"),
  11381. default: true
  11382. },
  11383. {
  11384. name: "Megamacro",
  11385. height: math.unit(10, "miles")
  11386. },
  11387. {
  11388. name: "Planetary Launch",
  11389. height: math.unit(500, "miles")
  11390. },
  11391. {
  11392. name: "Interstellar",
  11393. height: math.unit(1e9, "miles")
  11394. },
  11395. {
  11396. name: "Leaving the Universe",
  11397. height: math.unit(1, "gigaparsec")
  11398. },
  11399. {
  11400. name: "Travelling Universes",
  11401. height: math.unit(30e15, "parsecs")
  11402. },
  11403. ]
  11404. ))
  11405. characterMakers.push(() => makeCharacter(
  11406. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11407. {
  11408. front: {
  11409. height: math.unit(5 + 4/12, "feet"),
  11410. weight: math.unit(120, "lb"),
  11411. name: "Front",
  11412. image: {
  11413. source: "./media/characters/odyssey/front.svg",
  11414. extra: 1747/1571,
  11415. bottom: 47/1794
  11416. }
  11417. },
  11418. side: {
  11419. height: math.unit(5.1, "feet"),
  11420. weight: math.unit(120, "lb"),
  11421. name: "Side",
  11422. image: {
  11423. source: "./media/characters/odyssey/side.svg",
  11424. extra: 1847/1619,
  11425. bottom: 47/1894
  11426. }
  11427. },
  11428. lounging: {
  11429. height: math.unit(1.464, "feet"),
  11430. weight: math.unit(120, "lb"),
  11431. name: "Lounging",
  11432. image: {
  11433. source: "./media/characters/odyssey/lounging.svg",
  11434. extra: 1235/837,
  11435. bottom: 551/1786
  11436. }
  11437. },
  11438. },
  11439. [
  11440. {
  11441. name: "Normal",
  11442. height: math.unit(5 + 4 / 12, "feet")
  11443. },
  11444. {
  11445. name: "Macro",
  11446. height: math.unit(1, "km")
  11447. },
  11448. {
  11449. name: "Megamacro",
  11450. height: math.unit(3000, "km")
  11451. },
  11452. {
  11453. name: "Gigamacro",
  11454. height: math.unit(1, "AU"),
  11455. default: true
  11456. },
  11457. {
  11458. name: "Omniversal",
  11459. height: math.unit(100e14, "lightyears")
  11460. },
  11461. ]
  11462. ))
  11463. characterMakers.push(() => makeCharacter(
  11464. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11465. {
  11466. front: {
  11467. height: math.unit(5 + 10/12, "feet"),
  11468. name: "Front",
  11469. image: {
  11470. source: "./media/characters/mekuto/front.svg",
  11471. extra: 875/835,
  11472. bottom: 46/921
  11473. }
  11474. },
  11475. },
  11476. [
  11477. {
  11478. name: "Minimicro",
  11479. height: math.unit(0.2, "inches")
  11480. },
  11481. {
  11482. name: "Micro",
  11483. height: math.unit(1.5, "inches")
  11484. },
  11485. {
  11486. name: "Normal",
  11487. height: math.unit(5 + 10 / 12, "feet"),
  11488. default: true
  11489. },
  11490. {
  11491. name: "Minimacro",
  11492. height: math.unit(17 + 9 / 12, "feet")
  11493. },
  11494. {
  11495. name: "Macro",
  11496. height: math.unit(177.5, "feet")
  11497. },
  11498. {
  11499. name: "Megamacro",
  11500. height: math.unit(152, "miles")
  11501. },
  11502. ]
  11503. ))
  11504. characterMakers.push(() => makeCharacter(
  11505. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11506. {
  11507. front: {
  11508. height: math.unit(6.5, "inches"),
  11509. weight: math.unit(13, "oz"),
  11510. name: "Front",
  11511. image: {
  11512. source: "./media/characters/dafydd-tomos/front.svg",
  11513. extra: 2990 / 2603,
  11514. bottom: 0.03
  11515. }
  11516. },
  11517. },
  11518. [
  11519. {
  11520. name: "Micro",
  11521. height: math.unit(6.5, "inches"),
  11522. default: true
  11523. },
  11524. ]
  11525. ))
  11526. characterMakers.push(() => makeCharacter(
  11527. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11528. {
  11529. front: {
  11530. height: math.unit(6, "feet"),
  11531. weight: math.unit(150, "lb"),
  11532. name: "Front",
  11533. image: {
  11534. source: "./media/characters/splinter/front.svg",
  11535. extra: 2990 / 2882,
  11536. bottom: 0.04
  11537. }
  11538. },
  11539. back: {
  11540. height: math.unit(6, "feet"),
  11541. weight: math.unit(150, "lb"),
  11542. name: "Back",
  11543. image: {
  11544. source: "./media/characters/splinter/back.svg",
  11545. extra: 2990 / 2882,
  11546. bottom: 0.04
  11547. }
  11548. },
  11549. },
  11550. [
  11551. {
  11552. name: "Normal",
  11553. height: math.unit(6, "feet")
  11554. },
  11555. {
  11556. name: "Macro",
  11557. height: math.unit(230, "meters"),
  11558. default: true
  11559. },
  11560. ]
  11561. ))
  11562. characterMakers.push(() => makeCharacter(
  11563. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11564. {
  11565. front: {
  11566. height: math.unit(4 + 10 / 12, "feet"),
  11567. weight: math.unit(480, "lb"),
  11568. name: "Front",
  11569. image: {
  11570. source: "./media/characters/snow-gabumon/front.svg",
  11571. extra: 1140 / 963,
  11572. bottom: 0.058
  11573. }
  11574. },
  11575. back: {
  11576. height: math.unit(4 + 10 / 12, "feet"),
  11577. weight: math.unit(480, "lb"),
  11578. name: "Back",
  11579. image: {
  11580. source: "./media/characters/snow-gabumon/back.svg",
  11581. extra: 1115 / 962,
  11582. bottom: 0.041
  11583. }
  11584. },
  11585. frontUndresed: {
  11586. height: math.unit(4 + 10 / 12, "feet"),
  11587. weight: math.unit(480, "lb"),
  11588. name: "Front (Undressed)",
  11589. image: {
  11590. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11591. extra: 1061 / 960,
  11592. bottom: 0.045
  11593. }
  11594. },
  11595. },
  11596. [
  11597. {
  11598. name: "Micro",
  11599. height: math.unit(1, "inch")
  11600. },
  11601. {
  11602. name: "Normal",
  11603. height: math.unit(4 + 10 / 12, "feet"),
  11604. default: true
  11605. },
  11606. {
  11607. name: "Macro",
  11608. height: math.unit(200, "feet")
  11609. },
  11610. {
  11611. name: "Megamacro",
  11612. height: math.unit(120, "miles")
  11613. },
  11614. {
  11615. name: "Gigamacro",
  11616. height: math.unit(9800, "miles")
  11617. },
  11618. ]
  11619. ))
  11620. characterMakers.push(() => makeCharacter(
  11621. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11622. {
  11623. front: {
  11624. height: math.unit(1.7, "meters"),
  11625. weight: math.unit(140, "lb"),
  11626. name: "Front",
  11627. image: {
  11628. source: "./media/characters/moody/front.svg",
  11629. extra: 3226 / 3007,
  11630. bottom: 0.087
  11631. }
  11632. },
  11633. },
  11634. [
  11635. {
  11636. name: "Micro",
  11637. height: math.unit(1, "mm")
  11638. },
  11639. {
  11640. name: "Normal",
  11641. height: math.unit(1.7, "meters"),
  11642. default: true
  11643. },
  11644. {
  11645. name: "Macro",
  11646. height: math.unit(80, "meters")
  11647. },
  11648. {
  11649. name: "Macro+",
  11650. height: math.unit(500, "meters")
  11651. },
  11652. ]
  11653. ))
  11654. characterMakers.push(() => makeCharacter(
  11655. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11656. {
  11657. front: {
  11658. height: math.unit(6, "feet"),
  11659. weight: math.unit(150, "lb"),
  11660. name: "Front",
  11661. image: {
  11662. source: "./media/characters/zyas/front.svg",
  11663. extra: 1180 / 1120,
  11664. bottom: 0.045
  11665. }
  11666. },
  11667. },
  11668. [
  11669. {
  11670. name: "Normal",
  11671. height: math.unit(10, "feet"),
  11672. default: true
  11673. },
  11674. {
  11675. name: "Macro",
  11676. height: math.unit(500, "feet")
  11677. },
  11678. {
  11679. name: "Megamacro",
  11680. height: math.unit(5, "miles")
  11681. },
  11682. {
  11683. name: "Teramacro",
  11684. height: math.unit(150000, "miles")
  11685. },
  11686. ]
  11687. ))
  11688. characterMakers.push(() => makeCharacter(
  11689. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11690. {
  11691. front: {
  11692. height: math.unit(6, "feet"),
  11693. weight: math.unit(150, "lb"),
  11694. name: "Front",
  11695. image: {
  11696. source: "./media/characters/cuon/front.svg",
  11697. extra: 1390 / 1320,
  11698. bottom: 0.008
  11699. }
  11700. },
  11701. },
  11702. [
  11703. {
  11704. name: "Micro",
  11705. height: math.unit(3, "inches")
  11706. },
  11707. {
  11708. name: "Normal",
  11709. height: math.unit(18 + 9 / 12, "feet"),
  11710. default: true
  11711. },
  11712. {
  11713. name: "Macro",
  11714. height: math.unit(360, "feet")
  11715. },
  11716. {
  11717. name: "Megamacro",
  11718. height: math.unit(360, "miles")
  11719. },
  11720. ]
  11721. ))
  11722. characterMakers.push(() => makeCharacter(
  11723. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11724. {
  11725. front: {
  11726. height: math.unit(2.4, "meters"),
  11727. weight: math.unit(70, "kg"),
  11728. name: "Front",
  11729. image: {
  11730. source: "./media/characters/nyanuxk/front.svg",
  11731. extra: 1172 / 1084,
  11732. bottom: 0.065
  11733. }
  11734. },
  11735. side: {
  11736. height: math.unit(2.4, "meters"),
  11737. weight: math.unit(70, "kg"),
  11738. name: "Side",
  11739. image: {
  11740. source: "./media/characters/nyanuxk/side.svg",
  11741. extra: 1190 / 1132,
  11742. bottom: 0.007
  11743. }
  11744. },
  11745. back: {
  11746. height: math.unit(2.4, "meters"),
  11747. weight: math.unit(70, "kg"),
  11748. name: "Back",
  11749. image: {
  11750. source: "./media/characters/nyanuxk/back.svg",
  11751. extra: 1200 / 1141,
  11752. bottom: 0.015
  11753. }
  11754. },
  11755. foot: {
  11756. height: math.unit(0.52, "meters"),
  11757. name: "Foot",
  11758. image: {
  11759. source: "./media/characters/nyanuxk/foot.svg"
  11760. }
  11761. },
  11762. },
  11763. [
  11764. {
  11765. name: "Micro",
  11766. height: math.unit(2, "cm")
  11767. },
  11768. {
  11769. name: "Normal",
  11770. height: math.unit(2.4, "meters"),
  11771. default: true
  11772. },
  11773. {
  11774. name: "Smaller Macro",
  11775. height: math.unit(120, "meters")
  11776. },
  11777. {
  11778. name: "Bigger Macro",
  11779. height: math.unit(1.2, "km")
  11780. },
  11781. {
  11782. name: "Megamacro",
  11783. height: math.unit(15, "kilometers")
  11784. },
  11785. {
  11786. name: "Gigamacro",
  11787. height: math.unit(2000, "km")
  11788. },
  11789. {
  11790. name: "Teramacro",
  11791. height: math.unit(500000, "km")
  11792. },
  11793. ]
  11794. ))
  11795. characterMakers.push(() => makeCharacter(
  11796. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11797. {
  11798. side: {
  11799. height: math.unit(6, "feet"),
  11800. name: "Side",
  11801. image: {
  11802. source: "./media/characters/ailbhe/side.svg",
  11803. extra: 757 / 464,
  11804. bottom: 0.041
  11805. }
  11806. },
  11807. },
  11808. [
  11809. {
  11810. name: "Normal",
  11811. height: math.unit(1.07, "meters"),
  11812. default: true
  11813. },
  11814. ]
  11815. ))
  11816. characterMakers.push(() => makeCharacter(
  11817. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11818. {
  11819. front: {
  11820. height: math.unit(6, "feet"),
  11821. weight: math.unit(120, "kg"),
  11822. name: "Front",
  11823. image: {
  11824. source: "./media/characters/zevulfius/front.svg",
  11825. extra: 965 / 903
  11826. }
  11827. },
  11828. side: {
  11829. height: math.unit(6, "feet"),
  11830. weight: math.unit(120, "kg"),
  11831. name: "Side",
  11832. image: {
  11833. source: "./media/characters/zevulfius/side.svg",
  11834. extra: 939 / 900
  11835. }
  11836. },
  11837. back: {
  11838. height: math.unit(6, "feet"),
  11839. weight: math.unit(120, "kg"),
  11840. name: "Back",
  11841. image: {
  11842. source: "./media/characters/zevulfius/back.svg",
  11843. extra: 918 / 854,
  11844. bottom: 0.005
  11845. }
  11846. },
  11847. foot: {
  11848. height: math.unit(6 / 3.72, "feet"),
  11849. name: "Foot",
  11850. image: {
  11851. source: "./media/characters/zevulfius/foot.svg"
  11852. }
  11853. },
  11854. },
  11855. [
  11856. {
  11857. name: "Macro",
  11858. height: math.unit(750, "meters")
  11859. },
  11860. {
  11861. name: "Megamacro",
  11862. height: math.unit(20, "km"),
  11863. default: true
  11864. },
  11865. {
  11866. name: "Gigamacro",
  11867. height: math.unit(2000, "km")
  11868. },
  11869. {
  11870. name: "Teramacro",
  11871. height: math.unit(250000, "km")
  11872. },
  11873. ]
  11874. ))
  11875. characterMakers.push(() => makeCharacter(
  11876. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11877. {
  11878. front: {
  11879. height: math.unit(100, "feet"),
  11880. weight: math.unit(350, "kg"),
  11881. name: "Front",
  11882. image: {
  11883. source: "./media/characters/rikes/front.svg",
  11884. extra: 1565 / 1483,
  11885. bottom: 0.017
  11886. }
  11887. },
  11888. },
  11889. [
  11890. {
  11891. name: "Macro",
  11892. height: math.unit(100, "feet"),
  11893. default: true
  11894. },
  11895. ]
  11896. ))
  11897. characterMakers.push(() => makeCharacter(
  11898. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11899. {
  11900. front: {
  11901. height: math.unit(8, "feet"),
  11902. weight: math.unit(356, "lb"),
  11903. name: "Front",
  11904. image: {
  11905. source: "./media/characters/adam-silver-mane/front.svg",
  11906. extra: 1036/937,
  11907. bottom: 63/1099
  11908. }
  11909. },
  11910. side: {
  11911. height: math.unit(8, "feet"),
  11912. weight: math.unit(356, "lb"),
  11913. name: "Side",
  11914. image: {
  11915. source: "./media/characters/adam-silver-mane/side.svg",
  11916. extra: 997/901,
  11917. bottom: 59/1056
  11918. }
  11919. },
  11920. frontNsfw: {
  11921. height: math.unit(8, "feet"),
  11922. weight: math.unit(356, "lb"),
  11923. name: "Front (NSFW)",
  11924. image: {
  11925. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11926. extra: 1036/937,
  11927. bottom: 63/1099
  11928. }
  11929. },
  11930. sideNsfw: {
  11931. height: math.unit(8, "feet"),
  11932. weight: math.unit(356, "lb"),
  11933. name: "Side (NSFW)",
  11934. image: {
  11935. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11936. extra: 997/901,
  11937. bottom: 59/1056
  11938. }
  11939. },
  11940. dick: {
  11941. height: math.unit(2.1, "feet"),
  11942. name: "Dick",
  11943. image: {
  11944. source: "./media/characters/adam-silver-mane/dick.svg"
  11945. }
  11946. },
  11947. taur: {
  11948. height: math.unit(16, "feet"),
  11949. weight: math.unit(1500, "kg"),
  11950. name: "Taur",
  11951. image: {
  11952. source: "./media/characters/adam-silver-mane/taur.svg",
  11953. extra: 1713 / 1571,
  11954. bottom: 0.01
  11955. }
  11956. },
  11957. },
  11958. [
  11959. {
  11960. name: "Normal",
  11961. height: math.unit(8, "feet")
  11962. },
  11963. {
  11964. name: "Minimacro",
  11965. height: math.unit(80, "feet")
  11966. },
  11967. {
  11968. name: "MDA",
  11969. height: math.unit(80, "meters")
  11970. },
  11971. {
  11972. name: "Macro",
  11973. height: math.unit(800, "feet"),
  11974. default: true
  11975. },
  11976. {
  11977. name: "Megamacro",
  11978. height: math.unit(8000, "feet")
  11979. },
  11980. {
  11981. name: "Gigamacro",
  11982. height: math.unit(800, "miles")
  11983. },
  11984. {
  11985. name: "Teramacro",
  11986. height: math.unit(80000, "miles")
  11987. },
  11988. {
  11989. name: "Celestial",
  11990. height: math.unit(8e6, "miles")
  11991. },
  11992. {
  11993. name: "Star Dragon",
  11994. height: math.unit(800000, "parsecs")
  11995. },
  11996. {
  11997. name: "Godly",
  11998. height: math.unit(800, "teraparsecs")
  11999. },
  12000. ]
  12001. ))
  12002. characterMakers.push(() => makeCharacter(
  12003. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12004. {
  12005. front: {
  12006. height: math.unit(6, "feet"),
  12007. weight: math.unit(150, "lb"),
  12008. name: "Front",
  12009. image: {
  12010. source: "./media/characters/ky'owin/front.svg",
  12011. extra: 3862/3053,
  12012. bottom: 74/3936
  12013. }
  12014. },
  12015. },
  12016. [
  12017. {
  12018. name: "Normal",
  12019. height: math.unit(6 + 8 / 12, "feet")
  12020. },
  12021. {
  12022. name: "Large",
  12023. height: math.unit(68, "feet")
  12024. },
  12025. {
  12026. name: "Macro",
  12027. height: math.unit(132, "feet")
  12028. },
  12029. {
  12030. name: "Macro+",
  12031. height: math.unit(340, "feet")
  12032. },
  12033. {
  12034. name: "Macro++",
  12035. height: math.unit(680, "feet"),
  12036. default: true
  12037. },
  12038. {
  12039. name: "Megamacro",
  12040. height: math.unit(1, "mile")
  12041. },
  12042. {
  12043. name: "Megamacro+",
  12044. height: math.unit(10, "miles")
  12045. },
  12046. ]
  12047. ))
  12048. characterMakers.push(() => makeCharacter(
  12049. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12050. {
  12051. front: {
  12052. height: math.unit(4, "feet"),
  12053. weight: math.unit(50, "lb"),
  12054. name: "Front",
  12055. image: {
  12056. source: "./media/characters/mal/front.svg",
  12057. extra: 785 / 724,
  12058. bottom: 0.07
  12059. }
  12060. },
  12061. },
  12062. [
  12063. {
  12064. name: "Micro",
  12065. height: math.unit(4, "inches")
  12066. },
  12067. {
  12068. name: "Normal",
  12069. height: math.unit(4, "feet"),
  12070. default: true
  12071. },
  12072. {
  12073. name: "Macro",
  12074. height: math.unit(200, "feet")
  12075. },
  12076. ]
  12077. ))
  12078. characterMakers.push(() => makeCharacter(
  12079. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12080. {
  12081. front: {
  12082. height: math.unit(6, "feet"),
  12083. weight: math.unit(150, "lb"),
  12084. name: "Front",
  12085. image: {
  12086. source: "./media/characters/jordan-deware/front.svg",
  12087. extra: 1191 / 1012
  12088. }
  12089. },
  12090. },
  12091. [
  12092. {
  12093. name: "Nano",
  12094. height: math.unit(0.01, "mm")
  12095. },
  12096. {
  12097. name: "Minimicro",
  12098. height: math.unit(1, "mm")
  12099. },
  12100. {
  12101. name: "Micro",
  12102. height: math.unit(0.5, "inches")
  12103. },
  12104. {
  12105. name: "Normal",
  12106. height: math.unit(4, "feet"),
  12107. default: true
  12108. },
  12109. {
  12110. name: "Minimacro",
  12111. height: math.unit(40, "meters")
  12112. },
  12113. {
  12114. name: "Small Macro",
  12115. height: math.unit(400, "meters")
  12116. },
  12117. {
  12118. name: "Macro",
  12119. height: math.unit(4, "miles")
  12120. },
  12121. {
  12122. name: "Megamacro",
  12123. height: math.unit(40, "miles")
  12124. },
  12125. {
  12126. name: "Megamacro+",
  12127. height: math.unit(400, "miles")
  12128. },
  12129. {
  12130. name: "Gigamacro",
  12131. height: math.unit(400000, "miles")
  12132. },
  12133. ]
  12134. ))
  12135. characterMakers.push(() => makeCharacter(
  12136. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12137. {
  12138. side: {
  12139. height: math.unit(6, "feet"),
  12140. weight: math.unit(150, "lb"),
  12141. name: "Side",
  12142. image: {
  12143. source: "./media/characters/kimiko/side.svg",
  12144. extra: 600 / 358
  12145. }
  12146. },
  12147. },
  12148. [
  12149. {
  12150. name: "Normal",
  12151. height: math.unit(15, "feet"),
  12152. default: true
  12153. },
  12154. {
  12155. name: "Macro",
  12156. height: math.unit(220, "feet")
  12157. },
  12158. {
  12159. name: "Macro+",
  12160. height: math.unit(1450, "feet")
  12161. },
  12162. {
  12163. name: "Megamacro",
  12164. height: math.unit(11500, "feet")
  12165. },
  12166. {
  12167. name: "Gigamacro",
  12168. height: math.unit(9500, "miles")
  12169. },
  12170. {
  12171. name: "Teramacro",
  12172. height: math.unit(2208005005, "miles")
  12173. },
  12174. {
  12175. name: "Examacro",
  12176. height: math.unit(2750, "parsecs")
  12177. },
  12178. {
  12179. name: "Zettamacro",
  12180. height: math.unit(101500, "parsecs")
  12181. },
  12182. ]
  12183. ))
  12184. characterMakers.push(() => makeCharacter(
  12185. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12186. {
  12187. front: {
  12188. height: math.unit(6, "feet"),
  12189. weight: math.unit(70, "kg"),
  12190. name: "Front",
  12191. image: {
  12192. source: "./media/characters/andrew-sleepy/front.svg"
  12193. }
  12194. },
  12195. side: {
  12196. height: math.unit(6, "feet"),
  12197. weight: math.unit(70, "kg"),
  12198. name: "Side",
  12199. image: {
  12200. source: "./media/characters/andrew-sleepy/side.svg"
  12201. }
  12202. },
  12203. },
  12204. [
  12205. {
  12206. name: "Micro",
  12207. height: math.unit(1, "mm"),
  12208. default: true
  12209. },
  12210. ]
  12211. ))
  12212. characterMakers.push(() => makeCharacter(
  12213. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12214. {
  12215. front: {
  12216. height: math.unit(6, "feet"),
  12217. weight: math.unit(150, "lb"),
  12218. name: "Front",
  12219. image: {
  12220. source: "./media/characters/judio/front.svg",
  12221. extra: 1258 / 1110
  12222. }
  12223. },
  12224. },
  12225. [
  12226. {
  12227. name: "Normal",
  12228. height: math.unit(5 + 6 / 12, "feet")
  12229. },
  12230. {
  12231. name: "Macro",
  12232. height: math.unit(1000, "feet"),
  12233. default: true
  12234. },
  12235. {
  12236. name: "Megamacro",
  12237. height: math.unit(10, "miles")
  12238. },
  12239. ]
  12240. ))
  12241. characterMakers.push(() => makeCharacter(
  12242. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12243. {
  12244. frontDressed: {
  12245. height: math.unit(6, "feet"),
  12246. weight: math.unit(68, "kg"),
  12247. name: "Front (Dressed)",
  12248. image: {
  12249. source: "./media/characters/nomaxice/front-dressed.svg",
  12250. extra: 1137/824,
  12251. bottom: 74/1211
  12252. }
  12253. },
  12254. frontShorts: {
  12255. height: math.unit(6, "feet"),
  12256. weight: math.unit(68, "kg"),
  12257. name: "Front (Shorts)",
  12258. image: {
  12259. source: "./media/characters/nomaxice/front-shorts.svg",
  12260. extra: 1137/824,
  12261. bottom: 74/1211
  12262. }
  12263. },
  12264. back: {
  12265. height: math.unit(6, "feet"),
  12266. weight: math.unit(68, "kg"),
  12267. name: "Back",
  12268. image: {
  12269. source: "./media/characters/nomaxice/back.svg",
  12270. extra: 822/786,
  12271. bottom: 39/861
  12272. }
  12273. },
  12274. hand: {
  12275. height: math.unit(0.565, "feet"),
  12276. name: "Hand",
  12277. image: {
  12278. source: "./media/characters/nomaxice/hand.svg"
  12279. }
  12280. },
  12281. foot: {
  12282. height: math.unit(1, "feet"),
  12283. name: "Foot",
  12284. image: {
  12285. source: "./media/characters/nomaxice/foot.svg"
  12286. }
  12287. },
  12288. },
  12289. [
  12290. {
  12291. name: "Micro",
  12292. height: math.unit(8, "cm")
  12293. },
  12294. {
  12295. name: "Norm",
  12296. height: math.unit(1.82, "m")
  12297. },
  12298. {
  12299. name: "Norm+",
  12300. height: math.unit(8.8, "feet"),
  12301. default: true
  12302. },
  12303. {
  12304. name: "Big",
  12305. height: math.unit(8, "meters")
  12306. },
  12307. {
  12308. name: "Macro",
  12309. height: math.unit(18, "meters")
  12310. },
  12311. {
  12312. name: "Macro+",
  12313. height: math.unit(88, "meters")
  12314. },
  12315. ]
  12316. ))
  12317. characterMakers.push(() => makeCharacter(
  12318. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12319. {
  12320. front: {
  12321. height: math.unit(12, "feet"),
  12322. weight: math.unit(1.5, "tons"),
  12323. name: "Front",
  12324. image: {
  12325. source: "./media/characters/dydros/front.svg",
  12326. extra: 863 / 800,
  12327. bottom: 0.015
  12328. }
  12329. },
  12330. back: {
  12331. height: math.unit(12, "feet"),
  12332. weight: math.unit(1.5, "tons"),
  12333. name: "Back",
  12334. image: {
  12335. source: "./media/characters/dydros/back.svg",
  12336. extra: 900 / 843,
  12337. bottom: 0.005
  12338. }
  12339. },
  12340. },
  12341. [
  12342. {
  12343. name: "Normal",
  12344. height: math.unit(12, "feet"),
  12345. default: true
  12346. },
  12347. ]
  12348. ))
  12349. characterMakers.push(() => makeCharacter(
  12350. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12351. {
  12352. front: {
  12353. height: math.unit(6, "feet"),
  12354. weight: math.unit(100, "kg"),
  12355. name: "Front",
  12356. image: {
  12357. source: "./media/characters/riggi/front.svg",
  12358. extra: 5787 / 5303
  12359. }
  12360. },
  12361. hyper: {
  12362. height: math.unit(6 * 5 / 3, "feet"),
  12363. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12364. name: "Hyper",
  12365. image: {
  12366. source: "./media/characters/riggi/hyper.svg",
  12367. extra: 3595 / 3485
  12368. }
  12369. },
  12370. },
  12371. [
  12372. {
  12373. name: "Small Macro",
  12374. height: math.unit(50, "feet")
  12375. },
  12376. {
  12377. name: "Default",
  12378. height: math.unit(200, "feet"),
  12379. default: true
  12380. },
  12381. {
  12382. name: "Loom",
  12383. height: math.unit(10000, "feet")
  12384. },
  12385. {
  12386. name: "Cruising Altitude",
  12387. height: math.unit(30000, "feet")
  12388. },
  12389. {
  12390. name: "Megamacro",
  12391. height: math.unit(100, "miles")
  12392. },
  12393. {
  12394. name: "Continent Sized",
  12395. height: math.unit(2800, "miles")
  12396. },
  12397. {
  12398. name: "Earth Sized",
  12399. height: math.unit(8000, "miles")
  12400. },
  12401. ]
  12402. ))
  12403. characterMakers.push(() => makeCharacter(
  12404. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12405. {
  12406. front: {
  12407. height: math.unit(6, "feet"),
  12408. weight: math.unit(250, "lb"),
  12409. name: "Front",
  12410. image: {
  12411. source: "./media/characters/alexi/front.svg",
  12412. extra: 3483 / 3291,
  12413. bottom: 0.04
  12414. }
  12415. },
  12416. back: {
  12417. height: math.unit(6, "feet"),
  12418. weight: math.unit(250, "lb"),
  12419. name: "Back",
  12420. image: {
  12421. source: "./media/characters/alexi/back.svg",
  12422. extra: 3533 / 3356,
  12423. bottom: 0.021
  12424. }
  12425. },
  12426. frontTransforming: {
  12427. height: math.unit(8.58, "feet"),
  12428. weight: math.unit(1300, "lb"),
  12429. name: "Transforming",
  12430. image: {
  12431. source: "./media/characters/alexi/front-transforming.svg",
  12432. extra: 437 / 409,
  12433. bottom: 19 / 458.66
  12434. }
  12435. },
  12436. frontTransformed: {
  12437. height: math.unit(12.5, "feet"),
  12438. weight: math.unit(4000, "lb"),
  12439. name: "Transformed",
  12440. image: {
  12441. source: "./media/characters/alexi/front-transformed.svg",
  12442. extra: 639 / 614,
  12443. bottom: 30.55 / 671
  12444. }
  12445. },
  12446. },
  12447. [
  12448. {
  12449. name: "Normal",
  12450. height: math.unit(14, "feet"),
  12451. default: true
  12452. },
  12453. {
  12454. name: "Minimacro",
  12455. height: math.unit(30, "meters")
  12456. },
  12457. {
  12458. name: "Macro",
  12459. height: math.unit(500, "meters")
  12460. },
  12461. {
  12462. name: "Megamacro",
  12463. height: math.unit(9000, "km")
  12464. },
  12465. {
  12466. name: "Teramacro",
  12467. height: math.unit(384000, "km")
  12468. },
  12469. ]
  12470. ))
  12471. characterMakers.push(() => makeCharacter(
  12472. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12473. {
  12474. front: {
  12475. height: math.unit(6, "feet"),
  12476. weight: math.unit(150, "lb"),
  12477. name: "Front",
  12478. image: {
  12479. source: "./media/characters/kayroo/front.svg",
  12480. extra: 1153 / 1038,
  12481. bottom: 0.06
  12482. }
  12483. },
  12484. foot: {
  12485. height: math.unit(6, "feet"),
  12486. weight: math.unit(150, "lb"),
  12487. name: "Foot",
  12488. image: {
  12489. source: "./media/characters/kayroo/foot.svg"
  12490. }
  12491. },
  12492. },
  12493. [
  12494. {
  12495. name: "Normal",
  12496. height: math.unit(8, "feet"),
  12497. default: true
  12498. },
  12499. {
  12500. name: "Minimacro",
  12501. height: math.unit(250, "feet")
  12502. },
  12503. {
  12504. name: "Macro",
  12505. height: math.unit(2800, "feet")
  12506. },
  12507. {
  12508. name: "Megamacro",
  12509. height: math.unit(5200, "feet")
  12510. },
  12511. {
  12512. name: "Gigamacro",
  12513. height: math.unit(27000, "feet")
  12514. },
  12515. {
  12516. name: "Omega",
  12517. height: math.unit(45000, "feet")
  12518. },
  12519. ]
  12520. ))
  12521. characterMakers.push(() => makeCharacter(
  12522. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12523. {
  12524. front: {
  12525. height: math.unit(18, "feet"),
  12526. weight: math.unit(5800, "lb"),
  12527. name: "Front",
  12528. image: {
  12529. source: "./media/characters/rhys/front.svg",
  12530. extra: 3386 / 3090,
  12531. bottom: 0.07
  12532. }
  12533. },
  12534. },
  12535. [
  12536. {
  12537. name: "Normal",
  12538. height: math.unit(18, "feet"),
  12539. default: true
  12540. },
  12541. {
  12542. name: "Working Size",
  12543. height: math.unit(200, "feet")
  12544. },
  12545. {
  12546. name: "Demolition Size",
  12547. height: math.unit(2000, "feet")
  12548. },
  12549. {
  12550. name: "Maximum Licensed Size",
  12551. height: math.unit(5, "miles")
  12552. },
  12553. {
  12554. name: "Maximum Observed Size",
  12555. height: math.unit(10, "yottameters")
  12556. },
  12557. ]
  12558. ))
  12559. characterMakers.push(() => makeCharacter(
  12560. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12561. {
  12562. front: {
  12563. height: math.unit(6, "feet"),
  12564. weight: math.unit(250, "lb"),
  12565. name: "Front",
  12566. image: {
  12567. source: "./media/characters/toto/front.svg",
  12568. extra: 527 / 479,
  12569. bottom: 0.05
  12570. }
  12571. },
  12572. },
  12573. [
  12574. {
  12575. name: "Micro",
  12576. height: math.unit(3, "feet")
  12577. },
  12578. {
  12579. name: "Normal",
  12580. height: math.unit(10, "feet")
  12581. },
  12582. {
  12583. name: "Macro",
  12584. height: math.unit(150, "feet"),
  12585. default: true
  12586. },
  12587. {
  12588. name: "Megamacro",
  12589. height: math.unit(1200, "feet")
  12590. },
  12591. ]
  12592. ))
  12593. characterMakers.push(() => makeCharacter(
  12594. { name: "King", species: ["lion"], tags: ["anthro"] },
  12595. {
  12596. back: {
  12597. height: math.unit(6, "feet"),
  12598. weight: math.unit(150, "lb"),
  12599. name: "Back",
  12600. image: {
  12601. source: "./media/characters/king/back.svg"
  12602. }
  12603. },
  12604. },
  12605. [
  12606. {
  12607. name: "Micro",
  12608. height: math.unit(2, "inches")
  12609. },
  12610. {
  12611. name: "Normal",
  12612. height: math.unit(8, "feet")
  12613. },
  12614. {
  12615. name: "Macro",
  12616. height: math.unit(200, "feet"),
  12617. default: true
  12618. },
  12619. {
  12620. name: "Megamacro",
  12621. height: math.unit(50, "miles")
  12622. },
  12623. ]
  12624. ))
  12625. characterMakers.push(() => makeCharacter(
  12626. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12627. {
  12628. front: {
  12629. height: math.unit(11, "feet"),
  12630. weight: math.unit(1400, "lb"),
  12631. name: "Front",
  12632. image: {
  12633. source: "./media/characters/cordite/front.svg",
  12634. extra: 1919/1827,
  12635. bottom: 40/1959
  12636. }
  12637. },
  12638. side: {
  12639. height: math.unit(11, "feet"),
  12640. weight: math.unit(1400, "lb"),
  12641. name: "Side",
  12642. image: {
  12643. source: "./media/characters/cordite/side.svg",
  12644. extra: 1908/1793,
  12645. bottom: 38/1946
  12646. }
  12647. },
  12648. back: {
  12649. height: math.unit(11, "feet"),
  12650. weight: math.unit(1400, "lb"),
  12651. name: "Back",
  12652. image: {
  12653. source: "./media/characters/cordite/back.svg",
  12654. extra: 1938/1837,
  12655. bottom: 10/1948
  12656. }
  12657. },
  12658. feral: {
  12659. height: math.unit(2, "feet"),
  12660. weight: math.unit(90, "lb"),
  12661. name: "Feral",
  12662. image: {
  12663. source: "./media/characters/cordite/feral.svg",
  12664. extra: 1260 / 755,
  12665. bottom: 0.05
  12666. }
  12667. },
  12668. },
  12669. [
  12670. {
  12671. name: "Normal",
  12672. height: math.unit(11, "feet"),
  12673. default: true
  12674. },
  12675. ]
  12676. ))
  12677. characterMakers.push(() => makeCharacter(
  12678. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12679. {
  12680. front: {
  12681. height: math.unit(6, "feet"),
  12682. weight: math.unit(150, "lb"),
  12683. name: "Front",
  12684. image: {
  12685. source: "./media/characters/pianostrong/front.svg",
  12686. extra: 6577 / 6254,
  12687. bottom: 0.02
  12688. }
  12689. },
  12690. side: {
  12691. height: math.unit(6, "feet"),
  12692. weight: math.unit(150, "lb"),
  12693. name: "Side",
  12694. image: {
  12695. source: "./media/characters/pianostrong/side.svg",
  12696. extra: 6106 / 5730
  12697. }
  12698. },
  12699. back: {
  12700. height: math.unit(6, "feet"),
  12701. weight: math.unit(150, "lb"),
  12702. name: "Back",
  12703. image: {
  12704. source: "./media/characters/pianostrong/back.svg",
  12705. extra: 6085 / 5733,
  12706. bottom: 0.01
  12707. }
  12708. },
  12709. },
  12710. [
  12711. {
  12712. name: "Macro",
  12713. height: math.unit(100, "feet")
  12714. },
  12715. {
  12716. name: "Macro+",
  12717. height: math.unit(300, "feet"),
  12718. default: true
  12719. },
  12720. {
  12721. name: "Macro++",
  12722. height: math.unit(1000, "feet")
  12723. },
  12724. ]
  12725. ))
  12726. characterMakers.push(() => makeCharacter(
  12727. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12728. {
  12729. front: {
  12730. height: math.unit(6, "feet"),
  12731. weight: math.unit(150, "lb"),
  12732. name: "Front",
  12733. image: {
  12734. source: "./media/characters/kona/front.svg",
  12735. extra: 2960 / 2629,
  12736. bottom: 0.005
  12737. }
  12738. },
  12739. },
  12740. [
  12741. {
  12742. name: "Normal",
  12743. height: math.unit(11 + 8 / 12, "feet")
  12744. },
  12745. {
  12746. name: "Macro",
  12747. height: math.unit(850, "feet"),
  12748. default: true
  12749. },
  12750. {
  12751. name: "Macro+",
  12752. height: math.unit(1.5, "km"),
  12753. default: true
  12754. },
  12755. {
  12756. name: "Megamacro",
  12757. height: math.unit(80, "miles")
  12758. },
  12759. {
  12760. name: "Gigamacro",
  12761. height: math.unit(3500, "miles")
  12762. },
  12763. ]
  12764. ))
  12765. characterMakers.push(() => makeCharacter(
  12766. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12767. {
  12768. side: {
  12769. height: math.unit(1.9, "meters"),
  12770. weight: math.unit(326, "kg"),
  12771. name: "Side",
  12772. image: {
  12773. source: "./media/characters/levi/side.svg",
  12774. extra: 1704 / 1334,
  12775. bottom: 0.02
  12776. }
  12777. },
  12778. },
  12779. [
  12780. {
  12781. name: "Normal",
  12782. height: math.unit(1.9, "meters"),
  12783. default: true
  12784. },
  12785. {
  12786. name: "Macro",
  12787. height: math.unit(20, "meters")
  12788. },
  12789. {
  12790. name: "Macro+",
  12791. height: math.unit(200, "meters")
  12792. },
  12793. {
  12794. name: "Megamacro",
  12795. height: math.unit(2, "km")
  12796. },
  12797. {
  12798. name: "Megamacro+",
  12799. height: math.unit(20, "km")
  12800. },
  12801. {
  12802. name: "Gigamacro",
  12803. height: math.unit(2500, "km")
  12804. },
  12805. {
  12806. name: "Gigamacro+",
  12807. height: math.unit(120000, "km")
  12808. },
  12809. {
  12810. name: "Teramacro",
  12811. height: math.unit(7.77e6, "km")
  12812. },
  12813. ]
  12814. ))
  12815. characterMakers.push(() => makeCharacter(
  12816. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12817. {
  12818. front: {
  12819. height: math.unit(6 + 4/12, "feet"),
  12820. weight: math.unit(190, "lb"),
  12821. name: "Front",
  12822. image: {
  12823. source: "./media/characters/bmc/front.svg",
  12824. extra: 1626/1472,
  12825. bottom: 79/1705
  12826. }
  12827. },
  12828. back: {
  12829. height: math.unit(6 + 4/12, "feet"),
  12830. weight: math.unit(190, "lb"),
  12831. name: "Back",
  12832. image: {
  12833. source: "./media/characters/bmc/back.svg",
  12834. extra: 1640/1479,
  12835. bottom: 45/1685
  12836. }
  12837. },
  12838. frontArmor: {
  12839. height: math.unit(6 + 4/12, "feet"),
  12840. weight: math.unit(190, "lb"),
  12841. name: "Front-armor",
  12842. image: {
  12843. source: "./media/characters/bmc/front-armor.svg",
  12844. extra: 1538/1468,
  12845. bottom: 79/1617
  12846. }
  12847. },
  12848. },
  12849. [
  12850. {
  12851. name: "Human-sized",
  12852. height: math.unit(6 + 4 / 12, "feet")
  12853. },
  12854. {
  12855. name: "Interactive Size",
  12856. height: math.unit(25, "feet")
  12857. },
  12858. {
  12859. name: "Small",
  12860. height: math.unit(250, "feet")
  12861. },
  12862. {
  12863. name: "Normal",
  12864. height: math.unit(1250, "feet"),
  12865. default: true
  12866. },
  12867. {
  12868. name: "Good Day",
  12869. height: math.unit(88, "miles")
  12870. },
  12871. {
  12872. name: "Largest Measured Size",
  12873. height: math.unit(105.960, "galaxies")
  12874. },
  12875. ]
  12876. ))
  12877. characterMakers.push(() => makeCharacter(
  12878. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12879. {
  12880. front: {
  12881. height: math.unit(20, "feet"),
  12882. weight: math.unit(2016, "kg"),
  12883. name: "Front",
  12884. image: {
  12885. source: "./media/characters/sven-the-kaiju/front.svg",
  12886. extra: 1277/1250,
  12887. bottom: 35/1312
  12888. }
  12889. },
  12890. mouth: {
  12891. height: math.unit(1.85, "feet"),
  12892. name: "Mouth",
  12893. image: {
  12894. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12895. }
  12896. },
  12897. },
  12898. [
  12899. {
  12900. name: "Fairy",
  12901. height: math.unit(6, "inches")
  12902. },
  12903. {
  12904. name: "Normal",
  12905. height: math.unit(20, "feet"),
  12906. default: true
  12907. },
  12908. {
  12909. name: "Rampage",
  12910. height: math.unit(200, "feet")
  12911. },
  12912. {
  12913. name: "Archfey Forest Guardian",
  12914. height: math.unit(1, "mile")
  12915. },
  12916. ]
  12917. ))
  12918. characterMakers.push(() => makeCharacter(
  12919. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12920. {
  12921. front: {
  12922. height: math.unit(4, "meters"),
  12923. weight: math.unit(2, "tons"),
  12924. name: "Front",
  12925. image: {
  12926. source: "./media/characters/marik/front.svg",
  12927. extra: 1057 / 1003,
  12928. bottom: 0.08
  12929. }
  12930. },
  12931. },
  12932. [
  12933. {
  12934. name: "Normal",
  12935. height: math.unit(4, "meters"),
  12936. default: true
  12937. },
  12938. {
  12939. name: "Macro",
  12940. height: math.unit(20, "meters")
  12941. },
  12942. {
  12943. name: "Megamacro",
  12944. height: math.unit(50, "km")
  12945. },
  12946. {
  12947. name: "Gigamacro",
  12948. height: math.unit(100, "km")
  12949. },
  12950. {
  12951. name: "Alpha Macro",
  12952. height: math.unit(7.88e7, "yottameters")
  12953. },
  12954. ]
  12955. ))
  12956. characterMakers.push(() => makeCharacter(
  12957. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12958. {
  12959. front: {
  12960. height: math.unit(6, "feet"),
  12961. weight: math.unit(110, "lb"),
  12962. name: "Front",
  12963. image: {
  12964. source: "./media/characters/mel/front.svg",
  12965. extra: 736 / 617,
  12966. bottom: 0.017
  12967. }
  12968. },
  12969. },
  12970. [
  12971. {
  12972. name: "Pico",
  12973. height: math.unit(3, "pm")
  12974. },
  12975. {
  12976. name: "Nano",
  12977. height: math.unit(3, "nm")
  12978. },
  12979. {
  12980. name: "Micro",
  12981. height: math.unit(0.3, "mm"),
  12982. default: true
  12983. },
  12984. {
  12985. name: "Micro+",
  12986. height: math.unit(3, "mm")
  12987. },
  12988. {
  12989. name: "Normal",
  12990. height: math.unit(5 + 10.5 / 12, "feet")
  12991. },
  12992. ]
  12993. ))
  12994. characterMakers.push(() => makeCharacter(
  12995. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12996. {
  12997. kaiju: {
  12998. height: math.unit(1.75, "meters"),
  12999. weight: math.unit(55, "kg"),
  13000. name: "Kaiju",
  13001. image: {
  13002. source: "./media/characters/lykonous/kaiju.svg",
  13003. extra: 1055 / 946,
  13004. bottom: 0.135
  13005. }
  13006. },
  13007. },
  13008. [
  13009. {
  13010. name: "Normal",
  13011. height: math.unit(2.5, "meters"),
  13012. default: true
  13013. },
  13014. {
  13015. name: "Kaiju Dragon",
  13016. height: math.unit(60, "meters")
  13017. },
  13018. {
  13019. name: "Mega Kaiju",
  13020. height: math.unit(120, "km")
  13021. },
  13022. {
  13023. name: "Giga Kaiju",
  13024. height: math.unit(200, "megameters")
  13025. },
  13026. {
  13027. name: "Terra Kaiju",
  13028. height: math.unit(400, "gigameters")
  13029. },
  13030. {
  13031. name: "Kaiju Dragon God",
  13032. height: math.unit(13000, "exaparsecs")
  13033. },
  13034. ]
  13035. ))
  13036. characterMakers.push(() => makeCharacter(
  13037. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13038. {
  13039. front: {
  13040. height: math.unit(6, "feet"),
  13041. weight: math.unit(150, "lb"),
  13042. name: "Front",
  13043. image: {
  13044. source: "./media/characters/blü/front.svg",
  13045. extra: 1883 / 1564,
  13046. bottom: 0.031
  13047. }
  13048. },
  13049. },
  13050. [
  13051. {
  13052. name: "Normal",
  13053. height: math.unit(13, "feet"),
  13054. default: true
  13055. },
  13056. {
  13057. name: "Big Boi",
  13058. height: math.unit(150, "meters")
  13059. },
  13060. {
  13061. name: "Mini Stomper",
  13062. height: math.unit(300, "meters")
  13063. },
  13064. {
  13065. name: "Macro",
  13066. height: math.unit(1000, "meters")
  13067. },
  13068. {
  13069. name: "Megamacro",
  13070. height: math.unit(11000, "meters")
  13071. },
  13072. {
  13073. name: "Gigamacro",
  13074. height: math.unit(11000, "km")
  13075. },
  13076. {
  13077. name: "Teramacro",
  13078. height: math.unit(420000, "km")
  13079. },
  13080. {
  13081. name: "Examacro",
  13082. height: math.unit(120, "parsecs")
  13083. },
  13084. {
  13085. name: "God Tho",
  13086. height: math.unit(98000000000, "parsecs")
  13087. },
  13088. ]
  13089. ))
  13090. characterMakers.push(() => makeCharacter(
  13091. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13092. {
  13093. taurFront: {
  13094. height: math.unit(6, "feet"),
  13095. weight: math.unit(200, "lb"),
  13096. name: "Taur (Front)",
  13097. image: {
  13098. source: "./media/characters/scales/taur-front.svg",
  13099. extra: 1,
  13100. bottom: 0.05
  13101. }
  13102. },
  13103. taurBack: {
  13104. height: math.unit(6, "feet"),
  13105. weight: math.unit(200, "lb"),
  13106. name: "Taur (Back)",
  13107. image: {
  13108. source: "./media/characters/scales/taur-back.svg",
  13109. extra: 1,
  13110. bottom: 0.08
  13111. }
  13112. },
  13113. anthro: {
  13114. height: math.unit(6 * 7 / 12, "feet"),
  13115. weight: math.unit(100, "lb"),
  13116. name: "Anthro",
  13117. image: {
  13118. source: "./media/characters/scales/anthro.svg",
  13119. extra: 1,
  13120. bottom: 0.06
  13121. }
  13122. },
  13123. },
  13124. [
  13125. {
  13126. name: "Normal",
  13127. height: math.unit(12, "feet"),
  13128. default: true
  13129. },
  13130. ]
  13131. ))
  13132. characterMakers.push(() => makeCharacter(
  13133. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13134. {
  13135. front: {
  13136. height: math.unit(6, "feet"),
  13137. weight: math.unit(150, "lb"),
  13138. name: "Front",
  13139. image: {
  13140. source: "./media/characters/koragos/front.svg",
  13141. extra: 841 / 794,
  13142. bottom: 0.035
  13143. }
  13144. },
  13145. back: {
  13146. height: math.unit(6, "feet"),
  13147. weight: math.unit(150, "lb"),
  13148. name: "Back",
  13149. image: {
  13150. source: "./media/characters/koragos/back.svg",
  13151. extra: 841 / 810,
  13152. bottom: 0.022
  13153. }
  13154. },
  13155. },
  13156. [
  13157. {
  13158. name: "Normal",
  13159. height: math.unit(6 + 11 / 12, "feet"),
  13160. default: true
  13161. },
  13162. {
  13163. name: "Macro",
  13164. height: math.unit(490, "feet")
  13165. },
  13166. {
  13167. name: "Megamacro",
  13168. height: math.unit(10, "miles")
  13169. },
  13170. {
  13171. name: "Gigamacro",
  13172. height: math.unit(50, "miles")
  13173. },
  13174. ]
  13175. ))
  13176. characterMakers.push(() => makeCharacter(
  13177. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13178. {
  13179. front: {
  13180. height: math.unit(6, "feet"),
  13181. weight: math.unit(250, "lb"),
  13182. name: "Front",
  13183. image: {
  13184. source: "./media/characters/xylrem/front.svg",
  13185. extra: 3323 / 3050,
  13186. bottom: 0.065
  13187. }
  13188. },
  13189. },
  13190. [
  13191. {
  13192. name: "Micro",
  13193. height: math.unit(4, "feet")
  13194. },
  13195. {
  13196. name: "Normal",
  13197. height: math.unit(16, "feet"),
  13198. default: true
  13199. },
  13200. {
  13201. name: "Macro",
  13202. height: math.unit(2720, "feet")
  13203. },
  13204. {
  13205. name: "Megamacro",
  13206. height: math.unit(25000, "miles")
  13207. },
  13208. ]
  13209. ))
  13210. characterMakers.push(() => makeCharacter(
  13211. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13212. {
  13213. front: {
  13214. height: math.unit(8, "feet"),
  13215. weight: math.unit(250, "kg"),
  13216. name: "Front",
  13217. image: {
  13218. source: "./media/characters/ikideru/front.svg",
  13219. extra: 930 / 870,
  13220. bottom: 0.087
  13221. }
  13222. },
  13223. back: {
  13224. height: math.unit(8, "feet"),
  13225. weight: math.unit(250, "kg"),
  13226. name: "Back",
  13227. image: {
  13228. source: "./media/characters/ikideru/back.svg",
  13229. extra: 919 / 852,
  13230. bottom: 0.055
  13231. }
  13232. },
  13233. },
  13234. [
  13235. {
  13236. name: "Rare",
  13237. height: math.unit(8, "feet"),
  13238. default: true
  13239. },
  13240. {
  13241. name: "Playful Loom",
  13242. height: math.unit(80, "feet")
  13243. },
  13244. {
  13245. name: "City Leaner",
  13246. height: math.unit(230, "feet")
  13247. },
  13248. {
  13249. name: "Megamacro",
  13250. height: math.unit(2500, "feet")
  13251. },
  13252. {
  13253. name: "Gigamacro",
  13254. height: math.unit(26400, "feet")
  13255. },
  13256. {
  13257. name: "Tectonic Shifter",
  13258. height: math.unit(1.7, "megameters")
  13259. },
  13260. {
  13261. name: "Planet Carer",
  13262. height: math.unit(21, "megameters")
  13263. },
  13264. {
  13265. name: "God",
  13266. height: math.unit(11157.22, "parsecs")
  13267. },
  13268. ]
  13269. ))
  13270. characterMakers.push(() => makeCharacter(
  13271. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13272. {
  13273. front: {
  13274. height: math.unit(6, "feet"),
  13275. weight: math.unit(120, "lb"),
  13276. name: "Front",
  13277. image: {
  13278. source: "./media/characters/neo/front.svg"
  13279. }
  13280. },
  13281. },
  13282. [
  13283. {
  13284. name: "Micro",
  13285. height: math.unit(2, "inches"),
  13286. default: true
  13287. },
  13288. {
  13289. name: "Human Size",
  13290. height: math.unit(5 + 8 / 12, "feet")
  13291. },
  13292. ]
  13293. ))
  13294. characterMakers.push(() => makeCharacter(
  13295. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13296. {
  13297. front: {
  13298. height: math.unit(13 + 10 / 12, "feet"),
  13299. weight: math.unit(5320, "lb"),
  13300. name: "Front",
  13301. image: {
  13302. source: "./media/characters/chauncey-chantz/front.svg",
  13303. extra: 1587 / 1435,
  13304. bottom: 0.02
  13305. }
  13306. },
  13307. },
  13308. [
  13309. {
  13310. name: "Normal",
  13311. height: math.unit(13 + 10 / 12, "feet"),
  13312. default: true
  13313. },
  13314. {
  13315. name: "Macro",
  13316. height: math.unit(45, "feet")
  13317. },
  13318. {
  13319. name: "Megamacro",
  13320. height: math.unit(250, "miles")
  13321. },
  13322. {
  13323. name: "Planetary",
  13324. height: math.unit(10000, "miles")
  13325. },
  13326. {
  13327. name: "Galactic",
  13328. height: math.unit(40000, "parsecs")
  13329. },
  13330. {
  13331. name: "Universal",
  13332. height: math.unit(1, "yottameter")
  13333. },
  13334. ]
  13335. ))
  13336. characterMakers.push(() => makeCharacter(
  13337. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13338. {
  13339. front: {
  13340. height: math.unit(6, "feet"),
  13341. weight: math.unit(150, "lb"),
  13342. name: "Front",
  13343. image: {
  13344. source: "./media/characters/epifox/front.svg",
  13345. extra: 1,
  13346. bottom: 0.075
  13347. }
  13348. },
  13349. },
  13350. [
  13351. {
  13352. name: "Micro",
  13353. height: math.unit(6, "inches")
  13354. },
  13355. {
  13356. name: "Normal",
  13357. height: math.unit(12, "feet"),
  13358. default: true
  13359. },
  13360. {
  13361. name: "Macro",
  13362. height: math.unit(3810, "feet")
  13363. },
  13364. {
  13365. name: "Megamacro",
  13366. height: math.unit(500, "miles")
  13367. },
  13368. ]
  13369. ))
  13370. characterMakers.push(() => makeCharacter(
  13371. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13372. {
  13373. front: {
  13374. height: math.unit(1.8796, "m"),
  13375. weight: math.unit(230, "lb"),
  13376. name: "Front",
  13377. image: {
  13378. source: "./media/characters/colin-t/front.svg",
  13379. extra: 1272 / 1193,
  13380. bottom: 0.07
  13381. }
  13382. },
  13383. },
  13384. [
  13385. {
  13386. name: "Micro",
  13387. height: math.unit(0.571, "meters")
  13388. },
  13389. {
  13390. name: "Normal",
  13391. height: math.unit(1.8796, "meters"),
  13392. default: true
  13393. },
  13394. {
  13395. name: "Tall",
  13396. height: math.unit(4, "meters")
  13397. },
  13398. {
  13399. name: "Macro",
  13400. height: math.unit(67.241, "meters")
  13401. },
  13402. {
  13403. name: "Megamacro",
  13404. height: math.unit(371.856, "meters")
  13405. },
  13406. {
  13407. name: "Planetary",
  13408. height: math.unit(12631.5689, "km")
  13409. },
  13410. ]
  13411. ))
  13412. characterMakers.push(() => makeCharacter(
  13413. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13414. {
  13415. front: {
  13416. height: math.unit(1.85, "meters"),
  13417. weight: math.unit(80, "kg"),
  13418. name: "Front",
  13419. image: {
  13420. source: "./media/characters/matvei/front.svg",
  13421. extra: 456/447,
  13422. bottom: 8/464
  13423. }
  13424. },
  13425. back: {
  13426. height: math.unit(1.85, "meters"),
  13427. weight: math.unit(80, "kg"),
  13428. name: "Back",
  13429. image: {
  13430. source: "./media/characters/matvei/back.svg",
  13431. extra: 434/427,
  13432. bottom: 11/445
  13433. }
  13434. },
  13435. },
  13436. [
  13437. {
  13438. name: "Normal",
  13439. height: math.unit(1.85, "meters"),
  13440. default: true
  13441. },
  13442. ]
  13443. ))
  13444. characterMakers.push(() => makeCharacter(
  13445. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13446. {
  13447. front: {
  13448. height: math.unit(5 + 9 / 12, "feet"),
  13449. weight: math.unit(70, "lb"),
  13450. name: "Front",
  13451. image: {
  13452. source: "./media/characters/quincy/front.svg",
  13453. extra: 3041 / 2751
  13454. }
  13455. },
  13456. back: {
  13457. height: math.unit(5 + 9 / 12, "feet"),
  13458. weight: math.unit(70, "lb"),
  13459. name: "Back",
  13460. image: {
  13461. source: "./media/characters/quincy/back.svg",
  13462. extra: 3041 / 2751
  13463. }
  13464. },
  13465. flying: {
  13466. height: math.unit(5 + 4 / 12, "feet"),
  13467. weight: math.unit(70, "lb"),
  13468. name: "Flying",
  13469. image: {
  13470. source: "./media/characters/quincy/flying.svg",
  13471. extra: 1044 / 930
  13472. }
  13473. },
  13474. },
  13475. [
  13476. {
  13477. name: "Micro",
  13478. height: math.unit(3, "cm")
  13479. },
  13480. {
  13481. name: "Normal",
  13482. height: math.unit(5 + 9 / 12, "feet")
  13483. },
  13484. {
  13485. name: "Macro",
  13486. height: math.unit(200, "meters"),
  13487. default: true
  13488. },
  13489. {
  13490. name: "Megamacro",
  13491. height: math.unit(1000, "meters")
  13492. },
  13493. ]
  13494. ))
  13495. characterMakers.push(() => makeCharacter(
  13496. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13497. {
  13498. front: {
  13499. height: math.unit(3 + 11/12, "feet"),
  13500. weight: math.unit(50, "lb"),
  13501. name: "Front",
  13502. image: {
  13503. source: "./media/characters/vanrel/front.svg",
  13504. extra: 1104/949,
  13505. bottom: 52/1156
  13506. }
  13507. },
  13508. back: {
  13509. height: math.unit(3 + 11/12, "feet"),
  13510. weight: math.unit(50, "lb"),
  13511. name: "Back",
  13512. image: {
  13513. source: "./media/characters/vanrel/back.svg",
  13514. extra: 1119/976,
  13515. bottom: 37/1156
  13516. }
  13517. },
  13518. tome: {
  13519. height: math.unit(1.35, "feet"),
  13520. weight: math.unit(10, "lb"),
  13521. name: "Vanrel's Tome",
  13522. rename: true,
  13523. image: {
  13524. source: "./media/characters/vanrel/tome.svg"
  13525. }
  13526. },
  13527. beans: {
  13528. height: math.unit(0.89, "feet"),
  13529. name: "Beans",
  13530. image: {
  13531. source: "./media/characters/vanrel/beans.svg"
  13532. }
  13533. },
  13534. },
  13535. [
  13536. {
  13537. name: "Normal",
  13538. height: math.unit(3 + 11/12, "feet"),
  13539. default: true
  13540. },
  13541. ]
  13542. ))
  13543. characterMakers.push(() => makeCharacter(
  13544. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13545. {
  13546. front: {
  13547. height: math.unit(7 + 5 / 12, "feet"),
  13548. name: "Front",
  13549. image: {
  13550. source: "./media/characters/kuiper-vanrel/front.svg",
  13551. extra: 1219/1169,
  13552. bottom: 69/1288
  13553. }
  13554. },
  13555. back: {
  13556. height: math.unit(7 + 5 / 12, "feet"),
  13557. name: "Back",
  13558. image: {
  13559. source: "./media/characters/kuiper-vanrel/back.svg",
  13560. extra: 1236/1193,
  13561. bottom: 27/1263
  13562. }
  13563. },
  13564. foot: {
  13565. height: math.unit(0.55, "meters"),
  13566. name: "Foot",
  13567. image: {
  13568. source: "./media/characters/kuiper-vanrel/foot.svg",
  13569. }
  13570. },
  13571. battle: {
  13572. height: math.unit(6.824, "feet"),
  13573. name: "Battle",
  13574. image: {
  13575. source: "./media/characters/kuiper-vanrel/battle.svg",
  13576. extra: 1466 / 1327,
  13577. bottom: 29 / 1492.5
  13578. }
  13579. },
  13580. meerkui: {
  13581. height: math.unit(18, "inches"),
  13582. name: "Meerkui",
  13583. image: {
  13584. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13585. extra: 1354/1289,
  13586. bottom: 69/1423
  13587. }
  13588. },
  13589. },
  13590. [
  13591. {
  13592. name: "Normal",
  13593. height: math.unit(7 + 5 / 12, "feet"),
  13594. default: true
  13595. },
  13596. ]
  13597. ))
  13598. characterMakers.push(() => makeCharacter(
  13599. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13600. {
  13601. front: {
  13602. height: math.unit(8 + 5 / 12, "feet"),
  13603. name: "Front",
  13604. image: {
  13605. source: "./media/characters/keset-vanrel/front.svg",
  13606. extra: 1231/1148,
  13607. bottom: 82/1313
  13608. }
  13609. },
  13610. back: {
  13611. height: math.unit(8 + 5 / 12, "feet"),
  13612. name: "Back",
  13613. image: {
  13614. source: "./media/characters/keset-vanrel/back.svg",
  13615. extra: 1240/1174,
  13616. bottom: 33/1273
  13617. }
  13618. },
  13619. hand: {
  13620. height: math.unit(0.6, "meters"),
  13621. name: "Hand",
  13622. image: {
  13623. source: "./media/characters/keset-vanrel/hand.svg"
  13624. }
  13625. },
  13626. foot: {
  13627. height: math.unit(0.94978, "meters"),
  13628. name: "Foot",
  13629. image: {
  13630. source: "./media/characters/keset-vanrel/foot.svg"
  13631. }
  13632. },
  13633. battle: {
  13634. height: math.unit(7.408, "feet"),
  13635. name: "Battle",
  13636. image: {
  13637. source: "./media/characters/keset-vanrel/battle.svg",
  13638. extra: 1890 / 1386,
  13639. bottom: 73.28 / 1970
  13640. }
  13641. },
  13642. },
  13643. [
  13644. {
  13645. name: "Normal",
  13646. height: math.unit(8 + 5 / 12, "feet"),
  13647. default: true
  13648. },
  13649. ]
  13650. ))
  13651. characterMakers.push(() => makeCharacter(
  13652. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13653. {
  13654. front: {
  13655. height: math.unit(6, "feet"),
  13656. weight: math.unit(150, "lb"),
  13657. name: "Front",
  13658. image: {
  13659. source: "./media/characters/neos/front.svg",
  13660. extra: 1696 / 992,
  13661. bottom: 0.14
  13662. }
  13663. },
  13664. },
  13665. [
  13666. {
  13667. name: "Normal",
  13668. height: math.unit(54, "cm"),
  13669. default: true
  13670. },
  13671. {
  13672. name: "Macro",
  13673. height: math.unit(100, "m")
  13674. },
  13675. {
  13676. name: "Megamacro",
  13677. height: math.unit(10, "km")
  13678. },
  13679. {
  13680. name: "Megamacro+",
  13681. height: math.unit(100, "km")
  13682. },
  13683. {
  13684. name: "Gigamacro",
  13685. height: math.unit(100, "Mm")
  13686. },
  13687. {
  13688. name: "Teramacro",
  13689. height: math.unit(100, "Gm")
  13690. },
  13691. {
  13692. name: "Examacro",
  13693. height: math.unit(100, "Em")
  13694. },
  13695. {
  13696. name: "Godly",
  13697. height: math.unit(10000, "Ym")
  13698. },
  13699. {
  13700. name: "Beyond Godly",
  13701. height: math.unit(25, "multiverses")
  13702. },
  13703. ]
  13704. ))
  13705. characterMakers.push(() => makeCharacter(
  13706. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13707. {
  13708. feminine: {
  13709. height: math.unit(5, "feet"),
  13710. weight: math.unit(100, "lb"),
  13711. name: "Feminine",
  13712. image: {
  13713. source: "./media/characters/sammy-mouse/feminine.svg",
  13714. extra: 2526 / 2425,
  13715. bottom: 0.123
  13716. }
  13717. },
  13718. masculine: {
  13719. height: math.unit(5, "feet"),
  13720. weight: math.unit(100, "lb"),
  13721. name: "Masculine",
  13722. image: {
  13723. source: "./media/characters/sammy-mouse/masculine.svg",
  13724. extra: 2526 / 2425,
  13725. bottom: 0.123
  13726. }
  13727. },
  13728. },
  13729. [
  13730. {
  13731. name: "Micro",
  13732. height: math.unit(5, "inches")
  13733. },
  13734. {
  13735. name: "Normal",
  13736. height: math.unit(5, "feet"),
  13737. default: true
  13738. },
  13739. {
  13740. name: "Macro",
  13741. height: math.unit(60, "feet")
  13742. },
  13743. ]
  13744. ))
  13745. characterMakers.push(() => makeCharacter(
  13746. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13747. {
  13748. front: {
  13749. height: math.unit(4, "feet"),
  13750. weight: math.unit(50, "lb"),
  13751. name: "Front",
  13752. image: {
  13753. source: "./media/characters/kole/front.svg",
  13754. extra: 1423 / 1303,
  13755. bottom: 0.025
  13756. }
  13757. },
  13758. back: {
  13759. height: math.unit(4, "feet"),
  13760. weight: math.unit(50, "lb"),
  13761. name: "Back",
  13762. image: {
  13763. source: "./media/characters/kole/back.svg",
  13764. extra: 1426 / 1280,
  13765. bottom: 0.02
  13766. }
  13767. },
  13768. },
  13769. [
  13770. {
  13771. name: "Normal",
  13772. height: math.unit(4, "feet"),
  13773. default: true
  13774. },
  13775. ]
  13776. ))
  13777. characterMakers.push(() => makeCharacter(
  13778. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13779. {
  13780. front: {
  13781. height: math.unit(2.5, "feet"),
  13782. weight: math.unit(32, "lb"),
  13783. name: "Front",
  13784. image: {
  13785. source: "./media/characters/rufran/front.svg",
  13786. extra: 1313/885,
  13787. bottom: 94/1407
  13788. }
  13789. },
  13790. side: {
  13791. height: math.unit(2.5, "feet"),
  13792. weight: math.unit(32, "lb"),
  13793. name: "Side",
  13794. image: {
  13795. source: "./media/characters/rufran/side.svg",
  13796. extra: 1109/852,
  13797. bottom: 118/1227
  13798. }
  13799. },
  13800. back: {
  13801. height: math.unit(2.5, "feet"),
  13802. weight: math.unit(32, "lb"),
  13803. name: "Back",
  13804. image: {
  13805. source: "./media/characters/rufran/back.svg",
  13806. extra: 1280/878,
  13807. bottom: 131/1411
  13808. }
  13809. },
  13810. mouth: {
  13811. height: math.unit(1.13, "feet"),
  13812. name: "Mouth",
  13813. image: {
  13814. source: "./media/characters/rufran/mouth.svg"
  13815. }
  13816. },
  13817. foot: {
  13818. height: math.unit(1.33, "feet"),
  13819. name: "Foot",
  13820. image: {
  13821. source: "./media/characters/rufran/foot.svg"
  13822. }
  13823. },
  13824. koboldFront: {
  13825. height: math.unit(2 + 6 / 12, "feet"),
  13826. weight: math.unit(20, "lb"),
  13827. name: "Front (Kobold)",
  13828. image: {
  13829. source: "./media/characters/rufran/kobold-front.svg",
  13830. extra: 2041 / 1839,
  13831. bottom: 0.055
  13832. }
  13833. },
  13834. koboldBack: {
  13835. height: math.unit(2 + 6 / 12, "feet"),
  13836. weight: math.unit(20, "lb"),
  13837. name: "Back (Kobold)",
  13838. image: {
  13839. source: "./media/characters/rufran/kobold-back.svg",
  13840. extra: 2054 / 1839,
  13841. bottom: 0.01
  13842. }
  13843. },
  13844. koboldHand: {
  13845. height: math.unit(0.2166, "meters"),
  13846. name: "Hand (Kobold)",
  13847. image: {
  13848. source: "./media/characters/rufran/kobold-hand.svg"
  13849. }
  13850. },
  13851. koboldFoot: {
  13852. height: math.unit(0.185, "meters"),
  13853. name: "Foot (Kobold)",
  13854. image: {
  13855. source: "./media/characters/rufran/kobold-foot.svg"
  13856. }
  13857. },
  13858. },
  13859. [
  13860. {
  13861. name: "Micro",
  13862. height: math.unit(1, "inch")
  13863. },
  13864. {
  13865. name: "Normal",
  13866. height: math.unit(2 + 6 / 12, "feet"),
  13867. default: true
  13868. },
  13869. {
  13870. name: "Big",
  13871. height: math.unit(60, "feet")
  13872. },
  13873. {
  13874. name: "Macro",
  13875. height: math.unit(325, "feet")
  13876. },
  13877. ]
  13878. ))
  13879. characterMakers.push(() => makeCharacter(
  13880. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13881. {
  13882. front: {
  13883. height: math.unit(0.3, "meters"),
  13884. weight: math.unit(3.5, "kg"),
  13885. name: "Front",
  13886. image: {
  13887. source: "./media/characters/chip/front.svg",
  13888. extra: 748 / 674
  13889. }
  13890. },
  13891. },
  13892. [
  13893. {
  13894. name: "Micro",
  13895. height: math.unit(1, "inch"),
  13896. default: true
  13897. },
  13898. ]
  13899. ))
  13900. characterMakers.push(() => makeCharacter(
  13901. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13902. {
  13903. side: {
  13904. height: math.unit(2.3, "meters"),
  13905. weight: math.unit(3500, "lb"),
  13906. name: "Side",
  13907. image: {
  13908. source: "./media/characters/torvid/side.svg",
  13909. extra: 1972 / 722,
  13910. bottom: 0.035
  13911. }
  13912. },
  13913. },
  13914. [
  13915. {
  13916. name: "Normal",
  13917. height: math.unit(2.3, "meters"),
  13918. default: true
  13919. },
  13920. ]
  13921. ))
  13922. characterMakers.push(() => makeCharacter(
  13923. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13924. {
  13925. front: {
  13926. height: math.unit(2, "meters"),
  13927. weight: math.unit(150.5, "kg"),
  13928. name: "Front",
  13929. image: {
  13930. source: "./media/characters/susan/front.svg",
  13931. extra: 693 / 635,
  13932. bottom: 0.05
  13933. }
  13934. },
  13935. },
  13936. [
  13937. {
  13938. name: "Megamacro",
  13939. height: math.unit(505, "miles"),
  13940. default: true
  13941. },
  13942. ]
  13943. ))
  13944. characterMakers.push(() => makeCharacter(
  13945. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13946. {
  13947. front: {
  13948. height: math.unit(6, "feet"),
  13949. weight: math.unit(150, "lb"),
  13950. name: "Front",
  13951. image: {
  13952. source: "./media/characters/raindrops/front.svg",
  13953. extra: 2655 / 2461,
  13954. bottom: 49 / 2705
  13955. }
  13956. },
  13957. back: {
  13958. height: math.unit(6, "feet"),
  13959. weight: math.unit(150, "lb"),
  13960. name: "Back",
  13961. image: {
  13962. source: "./media/characters/raindrops/back.svg",
  13963. extra: 2574 / 2400,
  13964. bottom: 65 / 2634
  13965. }
  13966. },
  13967. },
  13968. [
  13969. {
  13970. name: "Micro",
  13971. height: math.unit(6, "inches")
  13972. },
  13973. {
  13974. name: "Normal",
  13975. height: math.unit(6 + 2 / 12, "feet")
  13976. },
  13977. {
  13978. name: "Macro",
  13979. height: math.unit(131, "feet"),
  13980. default: true
  13981. },
  13982. {
  13983. name: "Megamacro",
  13984. height: math.unit(15, "miles")
  13985. },
  13986. {
  13987. name: "Gigamacro",
  13988. height: math.unit(4000, "miles")
  13989. },
  13990. {
  13991. name: "Teramacro",
  13992. height: math.unit(315000, "miles")
  13993. },
  13994. ]
  13995. ))
  13996. characterMakers.push(() => makeCharacter(
  13997. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13998. {
  13999. front: {
  14000. height: math.unit(2.794, "meters"),
  14001. weight: math.unit(325, "kg"),
  14002. name: "Front",
  14003. image: {
  14004. source: "./media/characters/tezwa/front.svg",
  14005. extra: 2083 / 1906,
  14006. bottom: 0.031
  14007. }
  14008. },
  14009. foot: {
  14010. height: math.unit(0.687, "meters"),
  14011. name: "Foot",
  14012. image: {
  14013. source: "./media/characters/tezwa/foot.svg"
  14014. }
  14015. },
  14016. },
  14017. [
  14018. {
  14019. name: "Normal",
  14020. height: math.unit(9 + 2 / 12, "feet"),
  14021. default: true
  14022. },
  14023. ]
  14024. ))
  14025. characterMakers.push(() => makeCharacter(
  14026. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14027. {
  14028. front: {
  14029. height: math.unit(58, "feet"),
  14030. weight: math.unit(89000, "lb"),
  14031. name: "Front",
  14032. image: {
  14033. source: "./media/characters/typhus/front.svg",
  14034. extra: 816 / 800,
  14035. bottom: 0.065
  14036. }
  14037. },
  14038. },
  14039. [
  14040. {
  14041. name: "Macro",
  14042. height: math.unit(58, "feet"),
  14043. default: true
  14044. },
  14045. ]
  14046. ))
  14047. characterMakers.push(() => makeCharacter(
  14048. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14049. {
  14050. front: {
  14051. height: math.unit(12, "feet"),
  14052. weight: math.unit(6, "tonnes"),
  14053. name: "Front",
  14054. image: {
  14055. source: "./media/characters/lyra-von-wulf/front.svg",
  14056. extra: 1,
  14057. bottom: 0.10
  14058. }
  14059. },
  14060. frontMecha: {
  14061. height: math.unit(12, "feet"),
  14062. weight: math.unit(12, "tonnes"),
  14063. name: "Front (Mecha)",
  14064. image: {
  14065. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14066. extra: 1,
  14067. bottom: 0.042
  14068. }
  14069. },
  14070. maw: {
  14071. height: math.unit(2.2, "feet"),
  14072. name: "Maw",
  14073. image: {
  14074. source: "./media/characters/lyra-von-wulf/maw.svg"
  14075. }
  14076. },
  14077. },
  14078. [
  14079. {
  14080. name: "Normal",
  14081. height: math.unit(12, "feet"),
  14082. default: true
  14083. },
  14084. {
  14085. name: "Classic",
  14086. height: math.unit(50, "feet")
  14087. },
  14088. {
  14089. name: "Macro",
  14090. height: math.unit(500, "feet")
  14091. },
  14092. {
  14093. name: "Megamacro",
  14094. height: math.unit(1, "mile")
  14095. },
  14096. {
  14097. name: "Gigamacro",
  14098. height: math.unit(400, "miles")
  14099. },
  14100. {
  14101. name: "Teramacro",
  14102. height: math.unit(22000, "miles")
  14103. },
  14104. {
  14105. name: "Solarmacro",
  14106. height: math.unit(8600000, "miles")
  14107. },
  14108. {
  14109. name: "Galactic",
  14110. height: math.unit(1057000, "lightyears")
  14111. },
  14112. ]
  14113. ))
  14114. characterMakers.push(() => makeCharacter(
  14115. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14116. {
  14117. front: {
  14118. height: math.unit(6 + 10 / 12, "feet"),
  14119. weight: math.unit(150, "lb"),
  14120. name: "Front",
  14121. image: {
  14122. source: "./media/characters/dixon/front.svg",
  14123. extra: 3361 / 3209,
  14124. bottom: 0.01
  14125. }
  14126. },
  14127. },
  14128. [
  14129. {
  14130. name: "Normal",
  14131. height: math.unit(6 + 10 / 12, "feet"),
  14132. default: true
  14133. },
  14134. {
  14135. name: "Big",
  14136. height: math.unit(12, "meters")
  14137. },
  14138. {
  14139. name: "Macro",
  14140. height: math.unit(500, "meters")
  14141. },
  14142. {
  14143. name: "Megamacro",
  14144. height: math.unit(2, "km")
  14145. },
  14146. ]
  14147. ))
  14148. characterMakers.push(() => makeCharacter(
  14149. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14150. {
  14151. front: {
  14152. height: math.unit(185, "cm"),
  14153. weight: math.unit(68, "kg"),
  14154. name: "Front",
  14155. image: {
  14156. source: "./media/characters/kauko/front.svg",
  14157. extra: 1455 / 1421,
  14158. bottom: 0.03
  14159. }
  14160. },
  14161. back: {
  14162. height: math.unit(185, "cm"),
  14163. weight: math.unit(68, "kg"),
  14164. name: "Back",
  14165. image: {
  14166. source: "./media/characters/kauko/back.svg",
  14167. extra: 1455 / 1421,
  14168. bottom: 0.004
  14169. }
  14170. },
  14171. },
  14172. [
  14173. {
  14174. name: "Normal",
  14175. height: math.unit(185, "cm"),
  14176. default: true
  14177. },
  14178. ]
  14179. ))
  14180. characterMakers.push(() => makeCharacter(
  14181. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14182. {
  14183. frontSfw: {
  14184. height: math.unit(5, "meters"),
  14185. weight: math.unit(4250, "lb"),
  14186. name: "Front",
  14187. image: {
  14188. source: "./media/characters/varg/front-sfw.svg",
  14189. extra: 1103/1010,
  14190. bottom: 50/1153
  14191. },
  14192. form: "anthro",
  14193. default: true
  14194. },
  14195. backSfw: {
  14196. height: math.unit(5, "meters"),
  14197. weight: math.unit(4250, "lb"),
  14198. name: "Back",
  14199. image: {
  14200. source: "./media/characters/varg/back-sfw.svg",
  14201. extra: 1038/1022,
  14202. bottom: 36/1074
  14203. },
  14204. form: "anthro"
  14205. },
  14206. frontNsfw: {
  14207. height: math.unit(5, "meters"),
  14208. weight: math.unit(4250, "lb"),
  14209. name: "Front (NSFW)",
  14210. image: {
  14211. source: "./media/characters/varg/front-nsfw.svg",
  14212. extra: 1103/1010,
  14213. bottom: 50/1153
  14214. },
  14215. form: "anthro"
  14216. },
  14217. sheath: {
  14218. height: math.unit(3.8, "feet"),
  14219. weight: math.unit(90, "kilograms"),
  14220. name: "Sheath",
  14221. image: {
  14222. source: "./media/characters/varg/sheath.svg"
  14223. },
  14224. form: "anthro"
  14225. },
  14226. dick: {
  14227. height: math.unit(4.6, "feet"),
  14228. weight: math.unit(451, "kilograms"),
  14229. name: "Dick",
  14230. image: {
  14231. source: "./media/characters/varg/dick.svg"
  14232. },
  14233. form: "anthro"
  14234. },
  14235. feralSfw: {
  14236. height: math.unit(5, "meters"),
  14237. weight: math.unit(100000, "lb"),
  14238. name: "Side",
  14239. image: {
  14240. source: "./media/characters/varg/feral-sfw.svg",
  14241. extra: 1065/511,
  14242. bottom: 211/1276
  14243. },
  14244. form: "feral",
  14245. default: true
  14246. },
  14247. feralNsfw: {
  14248. height: math.unit(5, "meters"),
  14249. weight: math.unit(100000, "lb"),
  14250. name: "Side (NSFW)",
  14251. image: {
  14252. source: "./media/characters/varg/feral-nsfw.svg",
  14253. extra: 1065/511,
  14254. bottom: 211/1276
  14255. },
  14256. form: "feral",
  14257. },
  14258. feralSheath: {
  14259. height: math.unit(9.8, "feet"),
  14260. weight: math.unit(2000, "kilograms"),
  14261. name: "Sheath",
  14262. image: {
  14263. source: "./media/characters/varg/sheath.svg"
  14264. },
  14265. form: "feral"
  14266. },
  14267. feralDick: {
  14268. height: math.unit(13.11, "feet"),
  14269. weight: math.unit(10440, "kilograms"),
  14270. name: "Dick",
  14271. image: {
  14272. source: "./media/characters/varg/dick.svg"
  14273. },
  14274. form: "feral"
  14275. },
  14276. },
  14277. [
  14278. {
  14279. name: "Normal",
  14280. height: math.unit(5, "meters"),
  14281. form: "anthro"
  14282. },
  14283. {
  14284. name: "Macro",
  14285. height: math.unit(200, "meters"),
  14286. form: "anthro"
  14287. },
  14288. {
  14289. name: "Megamacro",
  14290. height: math.unit(20, "kilometers"),
  14291. form: "anthro"
  14292. },
  14293. {
  14294. name: "True Size",
  14295. height: math.unit(211, "km"),
  14296. form: "anthro",
  14297. default: true
  14298. },
  14299. {
  14300. name: "Gigamacro",
  14301. height: math.unit(1000, "km"),
  14302. form: "anthro"
  14303. },
  14304. {
  14305. name: "Gigamacro+",
  14306. height: math.unit(8000, "km"),
  14307. form: "anthro"
  14308. },
  14309. {
  14310. name: "Teramacro",
  14311. height: math.unit(1000000, "km"),
  14312. form: "anthro"
  14313. },
  14314. {
  14315. name: "Normal",
  14316. height: math.unit(5, "meters"),
  14317. form: "feral"
  14318. },
  14319. {
  14320. name: "Macro",
  14321. height: math.unit(200, "meters"),
  14322. form: "feral"
  14323. },
  14324. {
  14325. name: "Megamacro",
  14326. height: math.unit(20, "kilometers"),
  14327. form: "feral"
  14328. },
  14329. {
  14330. name: "True Size",
  14331. height: math.unit(211, "km"),
  14332. form: "feral",
  14333. default: true
  14334. },
  14335. {
  14336. name: "Gigamacro",
  14337. height: math.unit(1000, "km"),
  14338. form: "feral"
  14339. },
  14340. {
  14341. name: "Gigamacro+",
  14342. height: math.unit(8000, "km"),
  14343. form: "feral"
  14344. },
  14345. {
  14346. name: "Teramacro",
  14347. height: math.unit(1000000, "km"),
  14348. form: "feral"
  14349. },
  14350. ],
  14351. {
  14352. "anthro": {
  14353. name: "Anthro",
  14354. default: true
  14355. },
  14356. "feral": {
  14357. name: "Feral",
  14358. },
  14359. }
  14360. ))
  14361. characterMakers.push(() => makeCharacter(
  14362. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14363. {
  14364. front: {
  14365. height: math.unit(7 + 7 / 12, "feet"),
  14366. weight: math.unit(267, "lb"),
  14367. name: "Front",
  14368. image: {
  14369. source: "./media/characters/dayza/front.svg",
  14370. extra: 1262 / 1200,
  14371. bottom: 0.035
  14372. }
  14373. },
  14374. side: {
  14375. height: math.unit(7 + 7 / 12, "feet"),
  14376. weight: math.unit(267, "lb"),
  14377. name: "Side",
  14378. image: {
  14379. source: "./media/characters/dayza/side.svg",
  14380. extra: 1295 / 1245,
  14381. bottom: 0.05
  14382. }
  14383. },
  14384. back: {
  14385. height: math.unit(7 + 7 / 12, "feet"),
  14386. weight: math.unit(267, "lb"),
  14387. name: "Back",
  14388. image: {
  14389. source: "./media/characters/dayza/back.svg",
  14390. extra: 1241 / 1170
  14391. }
  14392. },
  14393. },
  14394. [
  14395. {
  14396. name: "Normal",
  14397. height: math.unit(7 + 7 / 12, "feet"),
  14398. default: true
  14399. },
  14400. {
  14401. name: "Macro",
  14402. height: math.unit(155, "feet")
  14403. },
  14404. ]
  14405. ))
  14406. characterMakers.push(() => makeCharacter(
  14407. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14408. {
  14409. front: {
  14410. height: math.unit(6 + 5 / 12, "feet"),
  14411. weight: math.unit(160, "lb"),
  14412. name: "Front",
  14413. image: {
  14414. source: "./media/characters/xanthos/front.svg",
  14415. extra: 1,
  14416. bottom: 0.04
  14417. }
  14418. },
  14419. back: {
  14420. height: math.unit(6 + 5 / 12, "feet"),
  14421. weight: math.unit(160, "lb"),
  14422. name: "Back",
  14423. image: {
  14424. source: "./media/characters/xanthos/back.svg",
  14425. extra: 1,
  14426. bottom: 0.03
  14427. }
  14428. },
  14429. hand: {
  14430. height: math.unit(0.928, "feet"),
  14431. name: "Hand",
  14432. image: {
  14433. source: "./media/characters/xanthos/hand.svg"
  14434. }
  14435. },
  14436. foot: {
  14437. height: math.unit(1.286, "feet"),
  14438. name: "Foot",
  14439. image: {
  14440. source: "./media/characters/xanthos/foot.svg"
  14441. }
  14442. },
  14443. },
  14444. [
  14445. {
  14446. name: "Normal",
  14447. height: math.unit(6 + 5 / 12, "feet"),
  14448. default: true
  14449. },
  14450. {
  14451. name: "Normal+",
  14452. height: math.unit(6, "meters")
  14453. },
  14454. {
  14455. name: "Macro",
  14456. height: math.unit(40, "feet")
  14457. },
  14458. {
  14459. name: "Macro+",
  14460. height: math.unit(200, "meters")
  14461. },
  14462. {
  14463. name: "Megamacro",
  14464. height: math.unit(20, "km")
  14465. },
  14466. {
  14467. name: "Megamacro+",
  14468. height: math.unit(100, "km")
  14469. },
  14470. {
  14471. name: "Gigamacro",
  14472. height: math.unit(200, "megameters")
  14473. },
  14474. {
  14475. name: "Gigamacro+",
  14476. height: math.unit(1.5, "gigameters")
  14477. },
  14478. ]
  14479. ))
  14480. characterMakers.push(() => makeCharacter(
  14481. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14482. {
  14483. front: {
  14484. height: math.unit(6 + 3 / 12, "feet"),
  14485. weight: math.unit(215, "lb"),
  14486. name: "Front",
  14487. image: {
  14488. source: "./media/characters/grynn/front.svg",
  14489. extra: 4627 / 4209,
  14490. bottom: 0.047
  14491. }
  14492. },
  14493. },
  14494. [
  14495. {
  14496. name: "Micro",
  14497. height: math.unit(6, "inches")
  14498. },
  14499. {
  14500. name: "Normal",
  14501. height: math.unit(6 + 3 / 12, "feet"),
  14502. default: true
  14503. },
  14504. {
  14505. name: "Big",
  14506. height: math.unit(104, "feet")
  14507. },
  14508. {
  14509. name: "Macro",
  14510. height: math.unit(944, "feet")
  14511. },
  14512. {
  14513. name: "Macro+",
  14514. height: math.unit(9480, "feet")
  14515. },
  14516. {
  14517. name: "Megamacro",
  14518. height: math.unit(78752, "feet")
  14519. },
  14520. {
  14521. name: "Megamacro+",
  14522. height: math.unit(630128, "feet")
  14523. },
  14524. {
  14525. name: "Megamacro++",
  14526. height: math.unit(3150695, "feet")
  14527. },
  14528. ]
  14529. ))
  14530. characterMakers.push(() => makeCharacter(
  14531. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14532. {
  14533. front: {
  14534. height: math.unit(7 + 5 / 12, "feet"),
  14535. weight: math.unit(450, "lb"),
  14536. name: "Front",
  14537. image: {
  14538. source: "./media/characters/mocha-aura/front.svg",
  14539. extra: 1907 / 1817,
  14540. bottom: 0.04
  14541. }
  14542. },
  14543. back: {
  14544. height: math.unit(7 + 5 / 12, "feet"),
  14545. weight: math.unit(450, "lb"),
  14546. name: "Back",
  14547. image: {
  14548. source: "./media/characters/mocha-aura/back.svg",
  14549. extra: 1900 / 1825,
  14550. bottom: 0.045
  14551. }
  14552. },
  14553. },
  14554. [
  14555. {
  14556. name: "Nano",
  14557. height: math.unit(1, "nm")
  14558. },
  14559. {
  14560. name: "Megamicro",
  14561. height: math.unit(1, "mm")
  14562. },
  14563. {
  14564. name: "Micro",
  14565. height: math.unit(3, "inches")
  14566. },
  14567. {
  14568. name: "Normal",
  14569. height: math.unit(7 + 5 / 12, "feet"),
  14570. default: true
  14571. },
  14572. {
  14573. name: "Macro",
  14574. height: math.unit(30, "feet")
  14575. },
  14576. {
  14577. name: "Megamacro",
  14578. height: math.unit(3500, "feet")
  14579. },
  14580. {
  14581. name: "Teramacro",
  14582. height: math.unit(500000, "miles")
  14583. },
  14584. {
  14585. name: "Petamacro",
  14586. height: math.unit(50000000000000000, "parsecs")
  14587. },
  14588. ]
  14589. ))
  14590. characterMakers.push(() => makeCharacter(
  14591. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14592. {
  14593. front: {
  14594. height: math.unit(6, "feet"),
  14595. weight: math.unit(150, "lb"),
  14596. name: "Front",
  14597. image: {
  14598. source: "./media/characters/ilisha-devya/front.svg",
  14599. extra: 1053/1049,
  14600. bottom: 270/1323
  14601. }
  14602. },
  14603. back: {
  14604. height: math.unit(6, "feet"),
  14605. weight: math.unit(150, "lb"),
  14606. name: "Back",
  14607. image: {
  14608. source: "./media/characters/ilisha-devya/back.svg",
  14609. extra: 1131/1128,
  14610. bottom: 39/1170
  14611. }
  14612. },
  14613. },
  14614. [
  14615. {
  14616. name: "Macro",
  14617. height: math.unit(500, "feet"),
  14618. default: true
  14619. },
  14620. {
  14621. name: "Megamacro",
  14622. height: math.unit(10, "miles")
  14623. },
  14624. {
  14625. name: "Gigamacro",
  14626. height: math.unit(100000, "miles")
  14627. },
  14628. {
  14629. name: "Examacro",
  14630. height: math.unit(1e9, "lightyears")
  14631. },
  14632. {
  14633. name: "Omniversal",
  14634. height: math.unit(1e33, "lightyears")
  14635. },
  14636. {
  14637. name: "Beyond Infinite",
  14638. height: math.unit(1e100, "lightyears")
  14639. },
  14640. ]
  14641. ))
  14642. characterMakers.push(() => makeCharacter(
  14643. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14644. {
  14645. Side: {
  14646. height: math.unit(6, "feet"),
  14647. weight: math.unit(150, "lb"),
  14648. name: "Side",
  14649. image: {
  14650. source: "./media/characters/mira/side.svg",
  14651. extra: 900 / 799,
  14652. bottom: 0.02
  14653. }
  14654. },
  14655. },
  14656. [
  14657. {
  14658. name: "Human Size",
  14659. height: math.unit(6, "feet")
  14660. },
  14661. {
  14662. name: "Macro",
  14663. height: math.unit(100, "feet"),
  14664. default: true
  14665. },
  14666. {
  14667. name: "Megamacro",
  14668. height: math.unit(10, "miles")
  14669. },
  14670. {
  14671. name: "Gigamacro",
  14672. height: math.unit(25000, "miles")
  14673. },
  14674. {
  14675. name: "Teramacro",
  14676. height: math.unit(300, "AU")
  14677. },
  14678. {
  14679. name: "Full Size",
  14680. height: math.unit(4.5e10, "lightyears")
  14681. },
  14682. ]
  14683. ))
  14684. characterMakers.push(() => makeCharacter(
  14685. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14686. {
  14687. front: {
  14688. height: math.unit(6, "feet"),
  14689. weight: math.unit(150, "lb"),
  14690. name: "Front",
  14691. image: {
  14692. source: "./media/characters/holly/front.svg",
  14693. extra: 639 / 606
  14694. }
  14695. },
  14696. back: {
  14697. height: math.unit(6, "feet"),
  14698. weight: math.unit(150, "lb"),
  14699. name: "Back",
  14700. image: {
  14701. source: "./media/characters/holly/back.svg",
  14702. extra: 623 / 598
  14703. }
  14704. },
  14705. frontWorking: {
  14706. height: math.unit(6, "feet"),
  14707. weight: math.unit(150, "lb"),
  14708. name: "Front (Working)",
  14709. image: {
  14710. source: "./media/characters/holly/front-working.svg",
  14711. extra: 607 / 577,
  14712. bottom: 0.048
  14713. }
  14714. },
  14715. },
  14716. [
  14717. {
  14718. name: "Normal",
  14719. height: math.unit(12 + 3 / 12, "feet"),
  14720. default: true
  14721. },
  14722. ]
  14723. ))
  14724. characterMakers.push(() => makeCharacter(
  14725. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14726. {
  14727. front: {
  14728. height: math.unit(6, "feet"),
  14729. weight: math.unit(150, "lb"),
  14730. name: "Front",
  14731. image: {
  14732. source: "./media/characters/porter/front.svg",
  14733. extra: 1,
  14734. bottom: 0.01
  14735. }
  14736. },
  14737. frontRobes: {
  14738. height: math.unit(6, "feet"),
  14739. weight: math.unit(150, "lb"),
  14740. name: "Front (Robes)",
  14741. image: {
  14742. source: "./media/characters/porter/front-robes.svg",
  14743. extra: 1.01,
  14744. bottom: 0.01
  14745. }
  14746. },
  14747. },
  14748. [
  14749. {
  14750. name: "Normal",
  14751. height: math.unit(11 + 9 / 12, "feet"),
  14752. default: true
  14753. },
  14754. ]
  14755. ))
  14756. characterMakers.push(() => makeCharacter(
  14757. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14758. {
  14759. legendary: {
  14760. height: math.unit(6, "feet"),
  14761. weight: math.unit(150, "lb"),
  14762. name: "Legendary",
  14763. image: {
  14764. source: "./media/characters/lucy/legendary.svg",
  14765. extra: 1355 / 1100,
  14766. bottom: 0.045
  14767. }
  14768. },
  14769. },
  14770. [
  14771. {
  14772. name: "Legendary",
  14773. height: math.unit(86882 * 2, "miles"),
  14774. default: true
  14775. },
  14776. ]
  14777. ))
  14778. characterMakers.push(() => makeCharacter(
  14779. { name: "Drusilla", species: ["grizzly-bear", "fox"], 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/drusilla/front.svg",
  14787. extra: 678 / 635,
  14788. bottom: 0.03
  14789. }
  14790. },
  14791. back: {
  14792. height: math.unit(6, "feet"),
  14793. weight: math.unit(150, "lb"),
  14794. name: "Back",
  14795. image: {
  14796. source: "./media/characters/drusilla/back.svg",
  14797. extra: 678 / 635,
  14798. bottom: 0.005
  14799. }
  14800. },
  14801. },
  14802. [
  14803. {
  14804. name: "Macro",
  14805. height: math.unit(100, "feet")
  14806. },
  14807. {
  14808. name: "Canon Height",
  14809. height: math.unit(2000, "feet"),
  14810. default: true
  14811. },
  14812. ]
  14813. ))
  14814. characterMakers.push(() => makeCharacter(
  14815. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14816. {
  14817. front: {
  14818. height: math.unit(6, "feet"),
  14819. weight: math.unit(180, "lb"),
  14820. name: "Front",
  14821. image: {
  14822. source: "./media/characters/renard-thatch/front.svg",
  14823. extra: 2411 / 2275,
  14824. bottom: 0.01
  14825. }
  14826. },
  14827. frontPosing: {
  14828. height: math.unit(6, "feet"),
  14829. weight: math.unit(180, "lb"),
  14830. name: "Front (Posing)",
  14831. image: {
  14832. source: "./media/characters/renard-thatch/front-posing.svg",
  14833. extra: 2381 / 2261,
  14834. bottom: 0.01
  14835. }
  14836. },
  14837. back: {
  14838. height: math.unit(6, "feet"),
  14839. weight: math.unit(180, "lb"),
  14840. name: "Back",
  14841. image: {
  14842. source: "./media/characters/renard-thatch/back.svg",
  14843. extra: 2428 / 2288
  14844. }
  14845. },
  14846. },
  14847. [
  14848. {
  14849. name: "Micro",
  14850. height: math.unit(3, "inches")
  14851. },
  14852. {
  14853. name: "Default",
  14854. height: math.unit(6, "feet"),
  14855. default: true
  14856. },
  14857. {
  14858. name: "Macro",
  14859. height: math.unit(75, "feet")
  14860. },
  14861. ]
  14862. ))
  14863. characterMakers.push(() => makeCharacter(
  14864. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14865. {
  14866. front: {
  14867. height: math.unit(1450, "feet"),
  14868. weight: math.unit(1.21e6, "tons"),
  14869. name: "Front",
  14870. image: {
  14871. source: "./media/characters/sekvra/front.svg",
  14872. extra: 1193/1190,
  14873. bottom: 78/1271
  14874. }
  14875. },
  14876. side: {
  14877. height: math.unit(1450, "feet"),
  14878. weight: math.unit(1.21e6, "tons"),
  14879. name: "Side",
  14880. image: {
  14881. source: "./media/characters/sekvra/side.svg",
  14882. extra: 1193/1190,
  14883. bottom: 52/1245
  14884. }
  14885. },
  14886. back: {
  14887. height: math.unit(1450, "feet"),
  14888. weight: math.unit(1.21e6, "tons"),
  14889. name: "Back",
  14890. image: {
  14891. source: "./media/characters/sekvra/back.svg",
  14892. extra: 1219/1216,
  14893. bottom: 21/1240
  14894. }
  14895. },
  14896. frontClothed: {
  14897. height: math.unit(1450, "feet"),
  14898. weight: math.unit(1.21e6, "tons"),
  14899. name: "Front (Clothed)",
  14900. image: {
  14901. source: "./media/characters/sekvra/front-clothed.svg",
  14902. extra: 1192/1189,
  14903. bottom: 79/1271
  14904. }
  14905. },
  14906. },
  14907. [
  14908. {
  14909. name: "Macro",
  14910. height: math.unit(1450, "feet"),
  14911. default: true
  14912. },
  14913. {
  14914. name: "Megamacro",
  14915. height: math.unit(15000, "feet")
  14916. },
  14917. ]
  14918. ))
  14919. characterMakers.push(() => makeCharacter(
  14920. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14921. {
  14922. front: {
  14923. height: math.unit(6, "feet"),
  14924. weight: math.unit(150, "lb"),
  14925. name: "Front",
  14926. image: {
  14927. source: "./media/characters/carmine/front.svg",
  14928. extra: 1557/1538,
  14929. bottom: 68/1625
  14930. }
  14931. },
  14932. frontArmor: {
  14933. height: math.unit(6, "feet"),
  14934. weight: math.unit(150, "lb"),
  14935. name: "Front (Armor)",
  14936. image: {
  14937. source: "./media/characters/carmine/front-armor.svg",
  14938. extra: 1549/1530,
  14939. bottom: 82/1631
  14940. }
  14941. },
  14942. mouth: {
  14943. height: math.unit(0.55, "feet"),
  14944. name: "Mouth",
  14945. image: {
  14946. source: "./media/characters/carmine/mouth.svg"
  14947. }
  14948. },
  14949. hand: {
  14950. height: math.unit(1.05, "feet"),
  14951. name: "Hand",
  14952. image: {
  14953. source: "./media/characters/carmine/hand.svg"
  14954. }
  14955. },
  14956. foot: {
  14957. height: math.unit(0.6, "feet"),
  14958. name: "Foot",
  14959. image: {
  14960. source: "./media/characters/carmine/foot.svg"
  14961. }
  14962. },
  14963. },
  14964. [
  14965. {
  14966. name: "Large",
  14967. height: math.unit(1, "mile")
  14968. },
  14969. {
  14970. name: "Huge",
  14971. height: math.unit(40, "miles"),
  14972. default: true
  14973. },
  14974. {
  14975. name: "Colossal",
  14976. height: math.unit(2500, "miles")
  14977. },
  14978. ]
  14979. ))
  14980. characterMakers.push(() => makeCharacter(
  14981. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14982. {
  14983. front: {
  14984. height: math.unit(6, "feet"),
  14985. weight: math.unit(150, "lb"),
  14986. name: "Front",
  14987. image: {
  14988. source: "./media/characters/elyssia/front.svg",
  14989. extra: 2201 / 2035,
  14990. bottom: 0.05
  14991. }
  14992. },
  14993. frontClothed: {
  14994. height: math.unit(6, "feet"),
  14995. weight: math.unit(150, "lb"),
  14996. name: "Front (Clothed)",
  14997. image: {
  14998. source: "./media/characters/elyssia/front-clothed.svg",
  14999. extra: 2201 / 2035,
  15000. bottom: 0.05
  15001. }
  15002. },
  15003. back: {
  15004. height: math.unit(6, "feet"),
  15005. weight: math.unit(150, "lb"),
  15006. name: "Back",
  15007. image: {
  15008. source: "./media/characters/elyssia/back.svg",
  15009. extra: 2201 / 2035,
  15010. bottom: 0.013
  15011. }
  15012. },
  15013. },
  15014. [
  15015. {
  15016. name: "Smaller",
  15017. height: math.unit(150, "feet")
  15018. },
  15019. {
  15020. name: "Standard",
  15021. height: math.unit(1400, "feet"),
  15022. default: true
  15023. },
  15024. {
  15025. name: "Distracted",
  15026. height: math.unit(15000, "feet")
  15027. },
  15028. ]
  15029. ))
  15030. characterMakers.push(() => makeCharacter(
  15031. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15032. {
  15033. front: {
  15034. height: math.unit(7 + 4/12, "feet"),
  15035. weight: math.unit(690, "lb"),
  15036. name: "Front",
  15037. image: {
  15038. source: "./media/characters/geno-maxwell/front.svg",
  15039. extra: 984/856,
  15040. bottom: 87/1071
  15041. }
  15042. },
  15043. back: {
  15044. height: math.unit(7 + 4/12, "feet"),
  15045. weight: math.unit(690, "lb"),
  15046. name: "Back",
  15047. image: {
  15048. source: "./media/characters/geno-maxwell/back.svg",
  15049. extra: 981/854,
  15050. bottom: 57/1038
  15051. }
  15052. },
  15053. frontCostume: {
  15054. height: math.unit(7 + 4/12, "feet"),
  15055. weight: math.unit(690, "lb"),
  15056. name: "Front (Costume)",
  15057. image: {
  15058. source: "./media/characters/geno-maxwell/front-costume.svg",
  15059. extra: 984/856,
  15060. bottom: 87/1071
  15061. }
  15062. },
  15063. backcostume: {
  15064. height: math.unit(7 + 4/12, "feet"),
  15065. weight: math.unit(690, "lb"),
  15066. name: "Back (Costume)",
  15067. image: {
  15068. source: "./media/characters/geno-maxwell/back-costume.svg",
  15069. extra: 981/854,
  15070. bottom: 57/1038
  15071. }
  15072. },
  15073. },
  15074. [
  15075. {
  15076. name: "Micro",
  15077. height: math.unit(3, "inches")
  15078. },
  15079. {
  15080. name: "Normal",
  15081. height: math.unit(7 + 4 / 12, "feet"),
  15082. default: true
  15083. },
  15084. {
  15085. name: "Macro",
  15086. height: math.unit(220, "feet")
  15087. },
  15088. {
  15089. name: "Megamacro",
  15090. height: math.unit(11, "miles")
  15091. },
  15092. ]
  15093. ))
  15094. characterMakers.push(() => makeCharacter(
  15095. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15096. {
  15097. front: {
  15098. height: math.unit(7 + 4/12, "feet"),
  15099. weight: math.unit(750, "lb"),
  15100. name: "Front",
  15101. image: {
  15102. source: "./media/characters/regena-maxwell/front.svg",
  15103. extra: 984/856,
  15104. bottom: 87/1071
  15105. }
  15106. },
  15107. back: {
  15108. height: math.unit(7 + 4/12, "feet"),
  15109. weight: math.unit(750, "lb"),
  15110. name: "Back",
  15111. image: {
  15112. source: "./media/characters/regena-maxwell/back.svg",
  15113. extra: 981/854,
  15114. bottom: 57/1038
  15115. }
  15116. },
  15117. frontCostume: {
  15118. height: math.unit(7 + 4/12, "feet"),
  15119. weight: math.unit(750, "lb"),
  15120. name: "Front (Costume)",
  15121. image: {
  15122. source: "./media/characters/regena-maxwell/front-costume.svg",
  15123. extra: 984/856,
  15124. bottom: 87/1071
  15125. }
  15126. },
  15127. backcostume: {
  15128. height: math.unit(7 + 4/12, "feet"),
  15129. weight: math.unit(750, "lb"),
  15130. name: "Back (Costume)",
  15131. image: {
  15132. source: "./media/characters/regena-maxwell/back-costume.svg",
  15133. extra: 981/854,
  15134. bottom: 57/1038
  15135. }
  15136. },
  15137. },
  15138. [
  15139. {
  15140. name: "Normal",
  15141. height: math.unit(7 + 4 / 12, "feet"),
  15142. default: true
  15143. },
  15144. {
  15145. name: "Macro",
  15146. height: math.unit(220, "feet")
  15147. },
  15148. {
  15149. name: "Megamacro",
  15150. height: math.unit(11, "miles")
  15151. },
  15152. ]
  15153. ))
  15154. characterMakers.push(() => makeCharacter(
  15155. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15156. {
  15157. front: {
  15158. height: math.unit(6, "feet"),
  15159. weight: math.unit(150, "lb"),
  15160. name: "Front",
  15161. image: {
  15162. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15163. extra: 860 / 690,
  15164. bottom: 0.03
  15165. }
  15166. },
  15167. },
  15168. [
  15169. {
  15170. name: "Normal",
  15171. height: math.unit(1.7, "meters"),
  15172. default: true
  15173. },
  15174. ]
  15175. ))
  15176. characterMakers.push(() => makeCharacter(
  15177. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15178. {
  15179. front: {
  15180. height: math.unit(6, "feet"),
  15181. weight: math.unit(150, "lb"),
  15182. name: "Front",
  15183. image: {
  15184. source: "./media/characters/quilly/front.svg",
  15185. extra: 890 / 776
  15186. }
  15187. },
  15188. },
  15189. [
  15190. {
  15191. name: "Gigamacro",
  15192. height: math.unit(404090, "miles"),
  15193. default: true
  15194. },
  15195. ]
  15196. ))
  15197. characterMakers.push(() => makeCharacter(
  15198. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15199. {
  15200. front: {
  15201. height: math.unit(7 + 8 / 12, "feet"),
  15202. weight: math.unit(350, "lb"),
  15203. name: "Front",
  15204. image: {
  15205. source: "./media/characters/tempest/front.svg",
  15206. extra: 1175 / 1086,
  15207. bottom: 0.02
  15208. }
  15209. },
  15210. },
  15211. [
  15212. {
  15213. name: "Normal",
  15214. height: math.unit(7 + 8 / 12, "feet"),
  15215. default: true
  15216. },
  15217. ]
  15218. ))
  15219. characterMakers.push(() => makeCharacter(
  15220. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15221. {
  15222. side: {
  15223. height: math.unit(4 + 5 / 12, "feet"),
  15224. weight: math.unit(80, "lb"),
  15225. name: "Side",
  15226. image: {
  15227. source: "./media/characters/rodger/side.svg",
  15228. extra: 1235 / 1118
  15229. }
  15230. },
  15231. },
  15232. [
  15233. {
  15234. name: "Micro",
  15235. height: math.unit(1, "inch")
  15236. },
  15237. {
  15238. name: "Normal",
  15239. height: math.unit(4 + 5 / 12, "feet"),
  15240. default: true
  15241. },
  15242. {
  15243. name: "Macro",
  15244. height: math.unit(120, "feet")
  15245. },
  15246. ]
  15247. ))
  15248. characterMakers.push(() => makeCharacter(
  15249. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15250. {
  15251. front: {
  15252. height: math.unit(6, "feet"),
  15253. weight: math.unit(150, "lb"),
  15254. name: "Front",
  15255. image: {
  15256. source: "./media/characters/danyel/front.svg",
  15257. extra: 1185 / 1123,
  15258. bottom: 0.05
  15259. }
  15260. },
  15261. },
  15262. [
  15263. {
  15264. name: "Shrunken",
  15265. height: math.unit(0.5, "mm")
  15266. },
  15267. {
  15268. name: "Micro",
  15269. height: math.unit(1, "mm"),
  15270. default: true
  15271. },
  15272. {
  15273. name: "Upsized",
  15274. height: math.unit(5 + 5 / 12, "feet")
  15275. },
  15276. ]
  15277. ))
  15278. characterMakers.push(() => makeCharacter(
  15279. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15280. {
  15281. front: {
  15282. height: math.unit(5 + 6 / 12, "feet"),
  15283. weight: math.unit(200, "lb"),
  15284. name: "Front",
  15285. image: {
  15286. source: "./media/characters/vivian-bijoux/front.svg",
  15287. extra: 1217/1209,
  15288. bottom: 76/1293
  15289. }
  15290. },
  15291. back: {
  15292. height: math.unit(5 + 6 / 12, "feet"),
  15293. weight: math.unit(200, "lb"),
  15294. name: "Back",
  15295. image: {
  15296. source: "./media/characters/vivian-bijoux/back.svg",
  15297. extra: 1214/1208,
  15298. bottom: 51/1265
  15299. }
  15300. },
  15301. dressed: {
  15302. height: math.unit(5 + 6 / 12, "feet"),
  15303. weight: math.unit(200, "lb"),
  15304. name: "Dressed",
  15305. image: {
  15306. source: "./media/characters/vivian-bijoux/dressed.svg",
  15307. extra: 1217/1209,
  15308. bottom: 76/1293
  15309. }
  15310. },
  15311. },
  15312. [
  15313. {
  15314. name: "Normal",
  15315. height: math.unit(5 + 6 / 12, "feet"),
  15316. default: true
  15317. },
  15318. {
  15319. name: "Bad Dream",
  15320. height: math.unit(500, "feet")
  15321. },
  15322. {
  15323. name: "Nightmare",
  15324. height: math.unit(500, "miles")
  15325. },
  15326. ]
  15327. ))
  15328. characterMakers.push(() => makeCharacter(
  15329. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15330. {
  15331. front: {
  15332. height: math.unit(6 + 1 / 12, "feet"),
  15333. weight: math.unit(260, "lb"),
  15334. name: "Front",
  15335. image: {
  15336. source: "./media/characters/zeta/front.svg",
  15337. extra: 1968 / 1889,
  15338. bottom: 0.06
  15339. }
  15340. },
  15341. back: {
  15342. height: math.unit(6 + 1 / 12, "feet"),
  15343. weight: math.unit(260, "lb"),
  15344. name: "Back",
  15345. image: {
  15346. source: "./media/characters/zeta/back.svg",
  15347. extra: 1944 / 1858,
  15348. bottom: 0.03
  15349. }
  15350. },
  15351. hand: {
  15352. height: math.unit(1.112, "feet"),
  15353. name: "Hand",
  15354. image: {
  15355. source: "./media/characters/zeta/hand.svg"
  15356. }
  15357. },
  15358. foot: {
  15359. height: math.unit(1.48, "feet"),
  15360. name: "Foot",
  15361. image: {
  15362. source: "./media/characters/zeta/foot.svg"
  15363. }
  15364. },
  15365. },
  15366. [
  15367. {
  15368. name: "Micro",
  15369. height: math.unit(6, "inches")
  15370. },
  15371. {
  15372. name: "Normal",
  15373. height: math.unit(6 + 1 / 12, "feet"),
  15374. default: true
  15375. },
  15376. {
  15377. name: "Macro",
  15378. height: math.unit(20, "feet")
  15379. },
  15380. ]
  15381. ))
  15382. characterMakers.push(() => makeCharacter(
  15383. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15384. {
  15385. front: {
  15386. height: math.unit(6, "feet"),
  15387. weight: math.unit(150, "lb"),
  15388. name: "Front",
  15389. image: {
  15390. source: "./media/characters/jamie-larsen/front.svg",
  15391. extra: 962 / 933,
  15392. bottom: 0.02
  15393. }
  15394. },
  15395. back: {
  15396. height: math.unit(6, "feet"),
  15397. weight: math.unit(150, "lb"),
  15398. name: "Back",
  15399. image: {
  15400. source: "./media/characters/jamie-larsen/back.svg",
  15401. extra: 997 / 946
  15402. }
  15403. },
  15404. },
  15405. [
  15406. {
  15407. name: "Macro",
  15408. height: math.unit(28 + 7 / 12, "feet"),
  15409. default: true
  15410. },
  15411. {
  15412. name: "Macro+",
  15413. height: math.unit(180, "feet")
  15414. },
  15415. {
  15416. name: "Megamacro",
  15417. height: math.unit(10, "miles")
  15418. },
  15419. {
  15420. name: "Gigamacro",
  15421. height: math.unit(200000, "miles")
  15422. },
  15423. ]
  15424. ))
  15425. characterMakers.push(() => makeCharacter(
  15426. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15427. {
  15428. front: {
  15429. height: math.unit(6, "feet"),
  15430. weight: math.unit(120, "lb"),
  15431. name: "Front",
  15432. image: {
  15433. source: "./media/characters/vance/front.svg",
  15434. extra: 1980 / 1890,
  15435. bottom: 0.09
  15436. }
  15437. },
  15438. back: {
  15439. height: math.unit(6, "feet"),
  15440. weight: math.unit(120, "lb"),
  15441. name: "Back",
  15442. image: {
  15443. source: "./media/characters/vance/back.svg",
  15444. extra: 2081 / 1994,
  15445. bottom: 0.014
  15446. }
  15447. },
  15448. hand: {
  15449. height: math.unit(0.88, "feet"),
  15450. name: "Hand",
  15451. image: {
  15452. source: "./media/characters/vance/hand.svg"
  15453. }
  15454. },
  15455. foot: {
  15456. height: math.unit(0.64, "feet"),
  15457. name: "Foot",
  15458. image: {
  15459. source: "./media/characters/vance/foot.svg"
  15460. }
  15461. },
  15462. },
  15463. [
  15464. {
  15465. name: "Small",
  15466. height: math.unit(90, "feet"),
  15467. default: true
  15468. },
  15469. {
  15470. name: "Macro",
  15471. height: math.unit(100, "meters")
  15472. },
  15473. {
  15474. name: "Megamacro",
  15475. height: math.unit(15, "miles")
  15476. },
  15477. ]
  15478. ))
  15479. characterMakers.push(() => makeCharacter(
  15480. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15481. {
  15482. front: {
  15483. height: math.unit(6, "feet"),
  15484. weight: math.unit(180, "lb"),
  15485. name: "Front",
  15486. image: {
  15487. source: "./media/characters/xochitl/front.svg",
  15488. extra: 2297 / 2261,
  15489. bottom: 0.065
  15490. }
  15491. },
  15492. back: {
  15493. height: math.unit(6, "feet"),
  15494. weight: math.unit(180, "lb"),
  15495. name: "Back",
  15496. image: {
  15497. source: "./media/characters/xochitl/back.svg",
  15498. extra: 2386 / 2354,
  15499. bottom: 0.01
  15500. }
  15501. },
  15502. foot: {
  15503. height: math.unit(6 / 5 * 1.15, "feet"),
  15504. weight: math.unit(150, "lb"),
  15505. name: "Foot",
  15506. image: {
  15507. source: "./media/characters/xochitl/foot.svg"
  15508. }
  15509. },
  15510. },
  15511. [
  15512. {
  15513. name: "Macro",
  15514. height: math.unit(80, "feet")
  15515. },
  15516. {
  15517. name: "Macro+",
  15518. height: math.unit(400, "feet"),
  15519. default: true
  15520. },
  15521. {
  15522. name: "Gigamacro",
  15523. height: math.unit(80000, "miles")
  15524. },
  15525. {
  15526. name: "Gigamacro+",
  15527. height: math.unit(400000, "miles")
  15528. },
  15529. {
  15530. name: "Teramacro",
  15531. height: math.unit(300, "AU")
  15532. },
  15533. ]
  15534. ))
  15535. characterMakers.push(() => makeCharacter(
  15536. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15537. {
  15538. front: {
  15539. height: math.unit(6, "feet"),
  15540. weight: math.unit(150, "lb"),
  15541. name: "Front",
  15542. image: {
  15543. source: "./media/characters/vincent/front.svg",
  15544. extra: 1130 / 1080,
  15545. bottom: 0.055
  15546. }
  15547. },
  15548. beak: {
  15549. height: math.unit(6 * 0.1, "feet"),
  15550. name: "Beak",
  15551. image: {
  15552. source: "./media/characters/vincent/beak.svg"
  15553. }
  15554. },
  15555. hand: {
  15556. height: math.unit(6 * 0.85, "feet"),
  15557. weight: math.unit(150, "lb"),
  15558. name: "Hand",
  15559. image: {
  15560. source: "./media/characters/vincent/hand.svg"
  15561. }
  15562. },
  15563. foot: {
  15564. height: math.unit(6 * 0.19, "feet"),
  15565. weight: math.unit(150, "lb"),
  15566. name: "Foot",
  15567. image: {
  15568. source: "./media/characters/vincent/foot.svg"
  15569. }
  15570. },
  15571. },
  15572. [
  15573. {
  15574. name: "Base",
  15575. height: math.unit(6 + 5 / 12, "feet"),
  15576. default: true
  15577. },
  15578. {
  15579. name: "Macro",
  15580. height: math.unit(300, "feet")
  15581. },
  15582. {
  15583. name: "Megamacro",
  15584. height: math.unit(2, "miles")
  15585. },
  15586. {
  15587. name: "Gigamacro",
  15588. height: math.unit(1000, "miles")
  15589. },
  15590. ]
  15591. ))
  15592. characterMakers.push(() => makeCharacter(
  15593. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15594. {
  15595. front: {
  15596. height: math.unit(2, "meters"),
  15597. weight: math.unit(500, "kg"),
  15598. name: "Front",
  15599. image: {
  15600. source: "./media/characters/coatl/front.svg",
  15601. extra: 3948 / 3500,
  15602. bottom: 0.082
  15603. }
  15604. },
  15605. },
  15606. [
  15607. {
  15608. name: "Normal",
  15609. height: math.unit(4, "meters")
  15610. },
  15611. {
  15612. name: "Macro",
  15613. height: math.unit(100, "meters"),
  15614. default: true
  15615. },
  15616. {
  15617. name: "Macro+",
  15618. height: math.unit(300, "meters")
  15619. },
  15620. {
  15621. name: "Megamacro",
  15622. height: math.unit(3, "gigameters")
  15623. },
  15624. {
  15625. name: "Megamacro+",
  15626. height: math.unit(300, "terameters")
  15627. },
  15628. {
  15629. name: "Megamacro++",
  15630. height: math.unit(3, "lightyears")
  15631. },
  15632. ]
  15633. ))
  15634. characterMakers.push(() => makeCharacter(
  15635. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15636. {
  15637. front: {
  15638. height: math.unit(6, "feet"),
  15639. weight: math.unit(50, "kg"),
  15640. name: "front",
  15641. image: {
  15642. source: "./media/characters/shiroryu/front.svg",
  15643. extra: 1990 / 1935
  15644. }
  15645. },
  15646. },
  15647. [
  15648. {
  15649. name: "Mortal Mingling",
  15650. height: math.unit(3, "meters")
  15651. },
  15652. {
  15653. name: "Kaiju-ish",
  15654. height: math.unit(250, "meters")
  15655. },
  15656. {
  15657. name: "Somewhat Godly",
  15658. height: math.unit(400, "km"),
  15659. default: true
  15660. },
  15661. {
  15662. name: "Planetary",
  15663. height: math.unit(300, "megameters")
  15664. },
  15665. {
  15666. name: "Galaxy-dwarfing",
  15667. height: math.unit(450, "kiloparsecs")
  15668. },
  15669. {
  15670. name: "Universe Eater",
  15671. height: math.unit(150, "gigaparsecs")
  15672. },
  15673. {
  15674. name: "Almost Immeasurable",
  15675. height: math.unit(1.3e266, "yottaparsecs")
  15676. },
  15677. ]
  15678. ))
  15679. characterMakers.push(() => makeCharacter(
  15680. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15681. {
  15682. front: {
  15683. height: math.unit(6, "feet"),
  15684. weight: math.unit(150, "lb"),
  15685. name: "Front",
  15686. image: {
  15687. source: "./media/characters/umeko/front.svg",
  15688. extra: 1,
  15689. bottom: 0.019
  15690. }
  15691. },
  15692. frontArmored: {
  15693. height: math.unit(6, "feet"),
  15694. weight: math.unit(150, "lb"),
  15695. name: "Front (Armored)",
  15696. image: {
  15697. source: "./media/characters/umeko/front-armored.svg",
  15698. extra: 1,
  15699. bottom: 0.021
  15700. }
  15701. },
  15702. },
  15703. [
  15704. {
  15705. name: "Macro",
  15706. height: math.unit(220, "feet"),
  15707. default: true
  15708. },
  15709. {
  15710. name: "Guardian Dragon",
  15711. height: math.unit(50, "miles")
  15712. },
  15713. {
  15714. name: "Cosmic",
  15715. height: math.unit(800000, "miles")
  15716. },
  15717. ]
  15718. ))
  15719. characterMakers.push(() => makeCharacter(
  15720. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15721. {
  15722. front: {
  15723. height: math.unit(6, "feet"),
  15724. weight: math.unit(150, "lb"),
  15725. name: "Front",
  15726. image: {
  15727. source: "./media/characters/cassidy/front.svg",
  15728. extra: 810/808,
  15729. bottom: 41/851
  15730. }
  15731. },
  15732. },
  15733. [
  15734. {
  15735. name: "Canon Height",
  15736. height: math.unit(120, "feet"),
  15737. default: true
  15738. },
  15739. {
  15740. name: "Macro+",
  15741. height: math.unit(400, "feet")
  15742. },
  15743. {
  15744. name: "Macro++",
  15745. height: math.unit(4000, "feet")
  15746. },
  15747. {
  15748. name: "Megamacro",
  15749. height: math.unit(3, "miles")
  15750. },
  15751. ]
  15752. ))
  15753. characterMakers.push(() => makeCharacter(
  15754. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15755. {
  15756. front: {
  15757. height: math.unit(6, "feet"),
  15758. weight: math.unit(150, "lb"),
  15759. name: "Front",
  15760. image: {
  15761. source: "./media/characters/isaac/front.svg",
  15762. extra: 896 / 815,
  15763. bottom: 0.11
  15764. }
  15765. },
  15766. },
  15767. [
  15768. {
  15769. name: "Human Size",
  15770. height: math.unit(8, "feet"),
  15771. default: true
  15772. },
  15773. {
  15774. name: "Macro",
  15775. height: math.unit(400, "feet")
  15776. },
  15777. {
  15778. name: "Megamacro",
  15779. height: math.unit(50, "miles")
  15780. },
  15781. {
  15782. name: "Canon Height",
  15783. height: math.unit(200, "AU")
  15784. },
  15785. ]
  15786. ))
  15787. characterMakers.push(() => makeCharacter(
  15788. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15789. {
  15790. front: {
  15791. height: math.unit(6, "feet"),
  15792. weight: math.unit(72, "kg"),
  15793. name: "Front",
  15794. image: {
  15795. source: "./media/characters/sleekit/front.svg",
  15796. extra: 4693 / 4487,
  15797. bottom: 0.012
  15798. }
  15799. },
  15800. },
  15801. [
  15802. {
  15803. name: "Minimum Height",
  15804. height: math.unit(10, "meters")
  15805. },
  15806. {
  15807. name: "Smaller",
  15808. height: math.unit(25, "meters")
  15809. },
  15810. {
  15811. name: "Larger",
  15812. height: math.unit(38, "meters"),
  15813. default: true
  15814. },
  15815. {
  15816. name: "Maximum height",
  15817. height: math.unit(100, "meters")
  15818. },
  15819. ]
  15820. ))
  15821. characterMakers.push(() => makeCharacter(
  15822. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15823. {
  15824. front: {
  15825. height: math.unit(6, "feet"),
  15826. weight: math.unit(150, "lb"),
  15827. name: "Front",
  15828. image: {
  15829. source: "./media/characters/nillia/front.svg",
  15830. extra: 719/665,
  15831. bottom: 6/725
  15832. }
  15833. },
  15834. back: {
  15835. height: math.unit(6, "feet"),
  15836. weight: math.unit(150, "lb"),
  15837. name: "Back",
  15838. image: {
  15839. source: "./media/characters/nillia/back.svg",
  15840. extra: 705/651,
  15841. bottom: 5/710
  15842. }
  15843. },
  15844. },
  15845. [
  15846. {
  15847. name: "Canon Height",
  15848. height: math.unit(489, "feet"),
  15849. default: true
  15850. }
  15851. ]
  15852. ))
  15853. characterMakers.push(() => makeCharacter(
  15854. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  15855. {
  15856. front: {
  15857. height: math.unit(6, "feet"),
  15858. weight: math.unit(150, "lb"),
  15859. name: "Front",
  15860. image: {
  15861. source: "./media/characters/mesmyriza/front.svg",
  15862. extra: 1541/1291,
  15863. bottom: 87/1628
  15864. }
  15865. },
  15866. foot: {
  15867. height: math.unit(6 / (250 / 35), "feet"),
  15868. name: "Foot",
  15869. image: {
  15870. source: "./media/characters/mesmyriza/foot.svg"
  15871. }
  15872. },
  15873. },
  15874. [
  15875. {
  15876. name: "Macro",
  15877. height: math.unit(457, "meters"),
  15878. default: true
  15879. },
  15880. {
  15881. name: "Megamacro",
  15882. height: math.unit(8, "megameters")
  15883. },
  15884. ]
  15885. ))
  15886. characterMakers.push(() => makeCharacter(
  15887. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15888. {
  15889. front: {
  15890. height: math.unit(6, "feet"),
  15891. weight: math.unit(250, "lb"),
  15892. name: "Front",
  15893. image: {
  15894. source: "./media/characters/saudade/front.svg",
  15895. extra: 1172 / 1139,
  15896. bottom: 0.035
  15897. }
  15898. },
  15899. },
  15900. [
  15901. {
  15902. name: "Micro",
  15903. height: math.unit(3, "inches")
  15904. },
  15905. {
  15906. name: "Normal",
  15907. height: math.unit(6, "feet"),
  15908. default: true
  15909. },
  15910. {
  15911. name: "Macro",
  15912. height: math.unit(50, "feet")
  15913. },
  15914. {
  15915. name: "Megamacro",
  15916. height: math.unit(2800, "feet")
  15917. },
  15918. ]
  15919. ))
  15920. characterMakers.push(() => makeCharacter(
  15921. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15922. {
  15923. front: {
  15924. height: math.unit(5 + 4 / 12, "feet"),
  15925. weight: math.unit(100, "lb"),
  15926. name: "Front",
  15927. image: {
  15928. source: "./media/characters/keireer/front.svg",
  15929. extra: 716 / 666,
  15930. bottom: 0.05
  15931. }
  15932. },
  15933. },
  15934. [
  15935. {
  15936. name: "Normal",
  15937. height: math.unit(5 + 4 / 12, "feet"),
  15938. default: true
  15939. },
  15940. ]
  15941. ))
  15942. characterMakers.push(() => makeCharacter(
  15943. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15944. {
  15945. front: {
  15946. height: math.unit(5.5, "feet"),
  15947. weight: math.unit(90, "kg"),
  15948. name: "Front",
  15949. image: {
  15950. source: "./media/characters/mirja/front.svg",
  15951. extra: 1452/1262,
  15952. bottom: 67/1519
  15953. }
  15954. },
  15955. frontDressed: {
  15956. height: math.unit(5.5, "feet"),
  15957. weight: math.unit(90, "lb"),
  15958. name: "Front (Dressed)",
  15959. image: {
  15960. source: "./media/characters/mirja/dressed.svg",
  15961. extra: 1452/1262,
  15962. bottom: 67/1519
  15963. }
  15964. },
  15965. back: {
  15966. height: math.unit(6, "feet"),
  15967. weight: math.unit(90, "lb"),
  15968. name: "Back",
  15969. image: {
  15970. source: "./media/characters/mirja/back.svg",
  15971. extra: 1892/1795,
  15972. bottom: 48/1940
  15973. }
  15974. },
  15975. maw: {
  15976. height: math.unit(1.312, "feet"),
  15977. name: "Maw",
  15978. image: {
  15979. source: "./media/characters/mirja/maw.svg"
  15980. }
  15981. },
  15982. paw: {
  15983. height: math.unit(1.15, "feet"),
  15984. name: "Paw",
  15985. image: {
  15986. source: "./media/characters/mirja/paw.svg"
  15987. }
  15988. },
  15989. },
  15990. [
  15991. {
  15992. name: "\"Incognito\"",
  15993. height: math.unit(3, "meters")
  15994. },
  15995. {
  15996. name: "Strolling Size",
  15997. height: math.unit(15, "km")
  15998. },
  15999. {
  16000. name: "Larger Strolling Size",
  16001. height: math.unit(400, "km")
  16002. },
  16003. {
  16004. name: "Preferred Size",
  16005. height: math.unit(5000, "km"),
  16006. default: true
  16007. },
  16008. {
  16009. name: "True Size",
  16010. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16011. },
  16012. ]
  16013. ))
  16014. characterMakers.push(() => makeCharacter(
  16015. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16016. {
  16017. front: {
  16018. height: math.unit(15, "feet"),
  16019. weight: math.unit(880, "kg"),
  16020. name: "Front",
  16021. image: {
  16022. source: "./media/characters/nightraver/front.svg",
  16023. extra: 2444 / 2160,
  16024. bottom: 0.027
  16025. }
  16026. },
  16027. back: {
  16028. height: math.unit(15, "feet"),
  16029. weight: math.unit(880, "kg"),
  16030. name: "Back",
  16031. image: {
  16032. source: "./media/characters/nightraver/back.svg",
  16033. extra: 2309 / 2180,
  16034. bottom: 0.005
  16035. }
  16036. },
  16037. sole: {
  16038. height: math.unit(2.878, "feet"),
  16039. name: "Sole",
  16040. image: {
  16041. source: "./media/characters/nightraver/sole.svg"
  16042. }
  16043. },
  16044. foot: {
  16045. height: math.unit(2.285, "feet"),
  16046. name: "Foot",
  16047. image: {
  16048. source: "./media/characters/nightraver/foot.svg"
  16049. }
  16050. },
  16051. maw: {
  16052. height: math.unit(2.67, "feet"),
  16053. name: "Maw",
  16054. image: {
  16055. source: "./media/characters/nightraver/maw.svg"
  16056. }
  16057. },
  16058. },
  16059. [
  16060. {
  16061. name: "Micro",
  16062. height: math.unit(1, "cm")
  16063. },
  16064. {
  16065. name: "Normal",
  16066. height: math.unit(15, "feet"),
  16067. default: true
  16068. },
  16069. {
  16070. name: "Macro",
  16071. height: math.unit(300, "feet")
  16072. },
  16073. {
  16074. name: "Megamacro",
  16075. height: math.unit(300, "miles")
  16076. },
  16077. {
  16078. name: "Gigamacro",
  16079. height: math.unit(10000, "miles")
  16080. },
  16081. ]
  16082. ))
  16083. characterMakers.push(() => makeCharacter(
  16084. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16085. {
  16086. side: {
  16087. height: math.unit(2, "inches"),
  16088. weight: math.unit(5, "grams"),
  16089. name: "Side",
  16090. image: {
  16091. source: "./media/characters/arc/side.svg"
  16092. }
  16093. },
  16094. },
  16095. [
  16096. {
  16097. name: "Micro",
  16098. height: math.unit(2, "inches"),
  16099. default: true
  16100. },
  16101. ]
  16102. ))
  16103. characterMakers.push(() => makeCharacter(
  16104. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16105. {
  16106. front: {
  16107. height: math.unit(1.1938, "meters"),
  16108. weight: math.unit(54, "kg"),
  16109. name: "Front",
  16110. image: {
  16111. source: "./media/characters/nebula-shahar/front.svg",
  16112. extra: 1642 / 1436,
  16113. bottom: 0.06
  16114. }
  16115. },
  16116. },
  16117. [
  16118. {
  16119. name: "Megamicro",
  16120. height: math.unit(0.3, "mm")
  16121. },
  16122. {
  16123. name: "Micro",
  16124. height: math.unit(3, "cm")
  16125. },
  16126. {
  16127. name: "Normal",
  16128. height: math.unit(138, "cm"),
  16129. default: true
  16130. },
  16131. {
  16132. name: "Macro",
  16133. height: math.unit(30, "m")
  16134. },
  16135. ]
  16136. ))
  16137. characterMakers.push(() => makeCharacter(
  16138. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16139. {
  16140. front: {
  16141. height: math.unit(5.24, "feet"),
  16142. weight: math.unit(150, "lb"),
  16143. name: "Front",
  16144. image: {
  16145. source: "./media/characters/shayla/front.svg",
  16146. extra: 1512 / 1414,
  16147. bottom: 0.01
  16148. }
  16149. },
  16150. back: {
  16151. height: math.unit(5.24, "feet"),
  16152. weight: math.unit(150, "lb"),
  16153. name: "Back",
  16154. image: {
  16155. source: "./media/characters/shayla/back.svg",
  16156. extra: 1512 / 1414
  16157. }
  16158. },
  16159. hand: {
  16160. height: math.unit(0.7781496062992126, "feet"),
  16161. name: "Hand",
  16162. image: {
  16163. source: "./media/characters/shayla/hand.svg"
  16164. }
  16165. },
  16166. foot: {
  16167. height: math.unit(1.4206036745406823, "feet"),
  16168. name: "Foot",
  16169. image: {
  16170. source: "./media/characters/shayla/foot.svg"
  16171. }
  16172. },
  16173. },
  16174. [
  16175. {
  16176. name: "Micro",
  16177. height: math.unit(0.32, "feet")
  16178. },
  16179. {
  16180. name: "Normal",
  16181. height: math.unit(5.24, "feet"),
  16182. default: true
  16183. },
  16184. {
  16185. name: "Macro",
  16186. height: math.unit(492.12, "feet")
  16187. },
  16188. {
  16189. name: "Megamacro",
  16190. height: math.unit(186.41, "miles")
  16191. },
  16192. ]
  16193. ))
  16194. characterMakers.push(() => makeCharacter(
  16195. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16196. {
  16197. front: {
  16198. height: math.unit(2.2, "m"),
  16199. weight: math.unit(120, "kg"),
  16200. name: "Front",
  16201. image: {
  16202. source: "./media/characters/pia-jr/front.svg",
  16203. extra: 1000 / 970,
  16204. bottom: 0.035
  16205. }
  16206. },
  16207. hand: {
  16208. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16209. name: "Hand",
  16210. image: {
  16211. source: "./media/characters/pia-jr/hand.svg"
  16212. }
  16213. },
  16214. paw: {
  16215. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16216. name: "Paw",
  16217. image: {
  16218. source: "./media/characters/pia-jr/paw.svg"
  16219. }
  16220. },
  16221. },
  16222. [
  16223. {
  16224. name: "Micro",
  16225. height: math.unit(1.2, "cm")
  16226. },
  16227. {
  16228. name: "Normal",
  16229. height: math.unit(2.2, "m"),
  16230. default: true
  16231. },
  16232. {
  16233. name: "Macro",
  16234. height: math.unit(180, "m")
  16235. },
  16236. {
  16237. name: "Megamacro",
  16238. height: math.unit(420, "km")
  16239. },
  16240. ]
  16241. ))
  16242. characterMakers.push(() => makeCharacter(
  16243. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16244. {
  16245. front: {
  16246. height: math.unit(2, "m"),
  16247. weight: math.unit(115, "kg"),
  16248. name: "Front",
  16249. image: {
  16250. source: "./media/characters/pia-sr/front.svg",
  16251. extra: 760 / 730,
  16252. bottom: 0.015
  16253. }
  16254. },
  16255. back: {
  16256. height: math.unit(2, "m"),
  16257. weight: math.unit(115, "kg"),
  16258. name: "Back",
  16259. image: {
  16260. source: "./media/characters/pia-sr/back.svg",
  16261. extra: 760 / 730,
  16262. bottom: 0.01
  16263. }
  16264. },
  16265. hand: {
  16266. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16267. name: "Hand",
  16268. image: {
  16269. source: "./media/characters/pia-sr/hand.svg"
  16270. }
  16271. },
  16272. foot: {
  16273. height: math.unit(1.83, "feet"),
  16274. name: "Foot",
  16275. image: {
  16276. source: "./media/characters/pia-sr/foot.svg"
  16277. }
  16278. },
  16279. },
  16280. [
  16281. {
  16282. name: "Micro",
  16283. height: math.unit(88, "mm")
  16284. },
  16285. {
  16286. name: "Normal",
  16287. height: math.unit(2, "m"),
  16288. default: true
  16289. },
  16290. {
  16291. name: "Macro",
  16292. height: math.unit(200, "m")
  16293. },
  16294. {
  16295. name: "Megamacro",
  16296. height: math.unit(420, "km")
  16297. },
  16298. ]
  16299. ))
  16300. characterMakers.push(() => makeCharacter(
  16301. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16302. {
  16303. front: {
  16304. height: math.unit(8 + 2 / 12, "feet"),
  16305. weight: math.unit(300, "lb"),
  16306. name: "Front",
  16307. image: {
  16308. source: "./media/characters/kibibyte/front.svg",
  16309. extra: 2221 / 2098,
  16310. bottom: 0.04
  16311. }
  16312. },
  16313. },
  16314. [
  16315. {
  16316. name: "Normal",
  16317. height: math.unit(8 + 2 / 12, "feet"),
  16318. default: true
  16319. },
  16320. {
  16321. name: "Socialable Macro",
  16322. height: math.unit(50, "feet")
  16323. },
  16324. {
  16325. name: "Macro",
  16326. height: math.unit(300, "feet")
  16327. },
  16328. {
  16329. name: "Megamacro",
  16330. height: math.unit(500, "miles")
  16331. },
  16332. ]
  16333. ))
  16334. characterMakers.push(() => makeCharacter(
  16335. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16336. {
  16337. front: {
  16338. height: math.unit(6, "feet"),
  16339. weight: math.unit(150, "lb"),
  16340. name: "Front",
  16341. image: {
  16342. source: "./media/characters/felix/front.svg",
  16343. extra: 762 / 722,
  16344. bottom: 0.02
  16345. }
  16346. },
  16347. frontClothed: {
  16348. height: math.unit(6, "feet"),
  16349. weight: math.unit(150, "lb"),
  16350. name: "Front (Clothed)",
  16351. image: {
  16352. source: "./media/characters/felix/front-clothed.svg",
  16353. extra: 762 / 722,
  16354. bottom: 0.02
  16355. }
  16356. },
  16357. },
  16358. [
  16359. {
  16360. name: "Normal",
  16361. height: math.unit(6 + 8 / 12, "feet"),
  16362. default: true
  16363. },
  16364. {
  16365. name: "Macro",
  16366. height: math.unit(2600, "feet")
  16367. },
  16368. {
  16369. name: "Megamacro",
  16370. height: math.unit(450, "miles")
  16371. },
  16372. ]
  16373. ))
  16374. characterMakers.push(() => makeCharacter(
  16375. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16376. {
  16377. front: {
  16378. height: math.unit(6 + 1 / 12, "feet"),
  16379. weight: math.unit(250, "lb"),
  16380. name: "Front",
  16381. image: {
  16382. source: "./media/characters/tobo/front.svg",
  16383. extra: 608 / 586,
  16384. bottom: 0.023
  16385. }
  16386. },
  16387. back: {
  16388. height: math.unit(6 + 1 / 12, "feet"),
  16389. weight: math.unit(250, "lb"),
  16390. name: "Back",
  16391. image: {
  16392. source: "./media/characters/tobo/back.svg",
  16393. extra: 608 / 586
  16394. }
  16395. },
  16396. },
  16397. [
  16398. {
  16399. name: "Nano",
  16400. height: math.unit(2, "nm")
  16401. },
  16402. {
  16403. name: "Megamicro",
  16404. height: math.unit(0.1, "mm")
  16405. },
  16406. {
  16407. name: "Micro",
  16408. height: math.unit(1, "inch"),
  16409. default: true
  16410. },
  16411. {
  16412. name: "Human-sized",
  16413. height: math.unit(6 + 1 / 12, "feet")
  16414. },
  16415. {
  16416. name: "Macro",
  16417. height: math.unit(250, "feet")
  16418. },
  16419. {
  16420. name: "Megamacro",
  16421. height: math.unit(75, "miles")
  16422. },
  16423. {
  16424. name: "Texas-sized",
  16425. height: math.unit(750, "miles")
  16426. },
  16427. {
  16428. name: "Teramacro",
  16429. height: math.unit(50000, "miles")
  16430. },
  16431. ]
  16432. ))
  16433. characterMakers.push(() => makeCharacter(
  16434. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16435. {
  16436. front: {
  16437. height: math.unit(6, "feet"),
  16438. weight: math.unit(269, "lb"),
  16439. name: "Front",
  16440. image: {
  16441. source: "./media/characters/danny-kapowsky/front.svg",
  16442. extra: 766 / 736,
  16443. bottom: 0.044
  16444. }
  16445. },
  16446. back: {
  16447. height: math.unit(6, "feet"),
  16448. weight: math.unit(269, "lb"),
  16449. name: "Back",
  16450. image: {
  16451. source: "./media/characters/danny-kapowsky/back.svg",
  16452. extra: 797 / 760,
  16453. bottom: 0.025
  16454. }
  16455. },
  16456. },
  16457. [
  16458. {
  16459. name: "Macro",
  16460. height: math.unit(150, "feet"),
  16461. default: true
  16462. },
  16463. {
  16464. name: "Macro+",
  16465. height: math.unit(200, "feet")
  16466. },
  16467. {
  16468. name: "Macro++",
  16469. height: math.unit(300, "feet")
  16470. },
  16471. {
  16472. name: "Macro+++",
  16473. height: math.unit(400, "feet")
  16474. },
  16475. ]
  16476. ))
  16477. characterMakers.push(() => makeCharacter(
  16478. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16479. {
  16480. side: {
  16481. height: math.unit(6, "feet"),
  16482. weight: math.unit(170, "lb"),
  16483. name: "Side",
  16484. image: {
  16485. source: "./media/characters/finn/side.svg",
  16486. extra: 1953 / 1807,
  16487. bottom: 0.057
  16488. }
  16489. },
  16490. },
  16491. [
  16492. {
  16493. name: "Megamacro",
  16494. height: math.unit(14445, "feet"),
  16495. default: true
  16496. },
  16497. ]
  16498. ))
  16499. characterMakers.push(() => makeCharacter(
  16500. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16501. {
  16502. front: {
  16503. height: math.unit(5 + 6 / 12, "feet"),
  16504. weight: math.unit(125, "lb"),
  16505. name: "Front",
  16506. image: {
  16507. source: "./media/characters/roy/front.svg",
  16508. extra: 1,
  16509. bottom: 0.11
  16510. }
  16511. },
  16512. },
  16513. [
  16514. {
  16515. name: "Micro",
  16516. height: math.unit(3, "inches"),
  16517. default: true
  16518. },
  16519. {
  16520. name: "Normal",
  16521. height: math.unit(5 + 6 / 12, "feet")
  16522. },
  16523. {
  16524. name: "Lesser Macro",
  16525. height: math.unit(60, "feet")
  16526. },
  16527. {
  16528. name: "Greater Macro",
  16529. height: math.unit(120, "feet")
  16530. },
  16531. ]
  16532. ))
  16533. characterMakers.push(() => makeCharacter(
  16534. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16535. {
  16536. front: {
  16537. height: math.unit(6, "feet"),
  16538. weight: math.unit(100, "lb"),
  16539. name: "Front",
  16540. image: {
  16541. source: "./media/characters/aevsivs/front.svg",
  16542. extra: 1,
  16543. bottom: 0.03
  16544. }
  16545. },
  16546. back: {
  16547. height: math.unit(6, "feet"),
  16548. weight: math.unit(100, "lb"),
  16549. name: "Back",
  16550. image: {
  16551. source: "./media/characters/aevsivs/back.svg"
  16552. }
  16553. },
  16554. },
  16555. [
  16556. {
  16557. name: "Micro",
  16558. height: math.unit(2, "inches"),
  16559. default: true
  16560. },
  16561. {
  16562. name: "Normal",
  16563. height: math.unit(5, "feet")
  16564. },
  16565. ]
  16566. ))
  16567. characterMakers.push(() => makeCharacter(
  16568. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16569. {
  16570. front: {
  16571. height: math.unit(5 + 7 / 12, "feet"),
  16572. weight: math.unit(159, "lb"),
  16573. name: "Front",
  16574. image: {
  16575. source: "./media/characters/hildegard/front.svg",
  16576. extra: 289 / 269,
  16577. bottom: 7.63 / 297.8
  16578. }
  16579. },
  16580. back: {
  16581. height: math.unit(5 + 7 / 12, "feet"),
  16582. weight: math.unit(159, "lb"),
  16583. name: "Back",
  16584. image: {
  16585. source: "./media/characters/hildegard/back.svg",
  16586. extra: 280 / 260,
  16587. bottom: 2.3 / 282
  16588. }
  16589. },
  16590. },
  16591. [
  16592. {
  16593. name: "Normal",
  16594. height: math.unit(5 + 7 / 12, "feet"),
  16595. default: true
  16596. },
  16597. ]
  16598. ))
  16599. characterMakers.push(() => makeCharacter(
  16600. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16601. {
  16602. bernard: {
  16603. height: math.unit(2 + 7 / 12, "feet"),
  16604. weight: math.unit(66, "lb"),
  16605. name: "Bernard",
  16606. rename: true,
  16607. image: {
  16608. source: "./media/characters/bernard-wilder/bernard.svg",
  16609. extra: 192 / 128,
  16610. bottom: 0.05
  16611. }
  16612. },
  16613. wilder: {
  16614. height: math.unit(5 + 8 / 12, "feet"),
  16615. weight: math.unit(143, "lb"),
  16616. name: "Wilder",
  16617. rename: true,
  16618. image: {
  16619. source: "./media/characters/bernard-wilder/wilder.svg",
  16620. extra: 361 / 312,
  16621. bottom: 0.02
  16622. }
  16623. },
  16624. },
  16625. [
  16626. {
  16627. name: "Normal",
  16628. height: math.unit(2 + 7 / 12, "feet"),
  16629. default: true
  16630. },
  16631. ]
  16632. ))
  16633. characterMakers.push(() => makeCharacter(
  16634. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16635. {
  16636. anthro: {
  16637. height: math.unit(6 + 1 / 12, "feet"),
  16638. weight: math.unit(155, "lb"),
  16639. name: "Anthro",
  16640. image: {
  16641. source: "./media/characters/hearth/anthro.svg",
  16642. extra: 1178/1136,
  16643. bottom: 28/1206
  16644. }
  16645. },
  16646. feral: {
  16647. height: math.unit(3.78, "feet"),
  16648. weight: math.unit(35, "kg"),
  16649. name: "Feral",
  16650. image: {
  16651. source: "./media/characters/hearth/feral.svg",
  16652. extra: 153 / 135,
  16653. bottom: 0.03
  16654. }
  16655. },
  16656. },
  16657. [
  16658. {
  16659. name: "Normal",
  16660. height: math.unit(6 + 1 / 12, "feet"),
  16661. default: true
  16662. },
  16663. ]
  16664. ))
  16665. characterMakers.push(() => makeCharacter(
  16666. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16667. {
  16668. front: {
  16669. height: math.unit(6, "feet"),
  16670. weight: math.unit(182, "lb"),
  16671. name: "Front",
  16672. image: {
  16673. source: "./media/characters/ingrid/front.svg",
  16674. extra: 294 / 268,
  16675. bottom: 0.027
  16676. }
  16677. },
  16678. },
  16679. [
  16680. {
  16681. name: "Normal",
  16682. height: math.unit(6, "feet"),
  16683. default: true
  16684. },
  16685. ]
  16686. ))
  16687. characterMakers.push(() => makeCharacter(
  16688. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16689. {
  16690. eevee: {
  16691. height: math.unit(2 + 10 / 12, "feet"),
  16692. weight: math.unit(86, "lb"),
  16693. name: "Malgam",
  16694. image: {
  16695. source: "./media/characters/malgam/eevee.svg",
  16696. extra: 952/784,
  16697. bottom: 38/990
  16698. }
  16699. },
  16700. sylveon: {
  16701. height: math.unit(4, "feet"),
  16702. weight: math.unit(101, "lb"),
  16703. name: "Future Malgam",
  16704. rename: true,
  16705. image: {
  16706. source: "./media/characters/malgam/sylveon.svg",
  16707. extra: 371 / 325,
  16708. bottom: 0.015
  16709. }
  16710. },
  16711. gigantamax: {
  16712. height: math.unit(50, "feet"),
  16713. name: "Gigantamax Malgam",
  16714. rename: true,
  16715. image: {
  16716. source: "./media/characters/malgam/gigantamax.svg"
  16717. }
  16718. },
  16719. },
  16720. [
  16721. {
  16722. name: "Normal",
  16723. height: math.unit(2 + 10 / 12, "feet"),
  16724. default: true
  16725. },
  16726. ]
  16727. ))
  16728. characterMakers.push(() => makeCharacter(
  16729. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16730. {
  16731. front: {
  16732. height: math.unit(5 + 11 / 12, "feet"),
  16733. weight: math.unit(188, "lb"),
  16734. name: "Front",
  16735. image: {
  16736. source: "./media/characters/fleur/front.svg",
  16737. extra: 309 / 283,
  16738. bottom: 0.007
  16739. }
  16740. },
  16741. },
  16742. [
  16743. {
  16744. name: "Normal",
  16745. height: math.unit(5 + 11 / 12, "feet"),
  16746. default: true
  16747. },
  16748. ]
  16749. ))
  16750. characterMakers.push(() => makeCharacter(
  16751. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16752. {
  16753. front: {
  16754. height: math.unit(5 + 4 / 12, "feet"),
  16755. weight: math.unit(122, "lb"),
  16756. name: "Front",
  16757. image: {
  16758. source: "./media/characters/jude/front.svg",
  16759. extra: 288 / 273,
  16760. bottom: 0.03
  16761. }
  16762. },
  16763. },
  16764. [
  16765. {
  16766. name: "Normal",
  16767. height: math.unit(5 + 4 / 12, "feet"),
  16768. default: true
  16769. },
  16770. ]
  16771. ))
  16772. characterMakers.push(() => makeCharacter(
  16773. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16774. {
  16775. front: {
  16776. height: math.unit(5 + 11 / 12, "feet"),
  16777. weight: math.unit(190, "lb"),
  16778. name: "Front",
  16779. image: {
  16780. source: "./media/characters/seara/front.svg",
  16781. extra: 1,
  16782. bottom: 0.05
  16783. }
  16784. },
  16785. },
  16786. [
  16787. {
  16788. name: "Normal",
  16789. height: math.unit(5 + 11 / 12, "feet"),
  16790. default: true
  16791. },
  16792. ]
  16793. ))
  16794. characterMakers.push(() => makeCharacter(
  16795. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16796. {
  16797. front: {
  16798. height: math.unit(16 + 5 / 12, "feet"),
  16799. weight: math.unit(524, "lb"),
  16800. name: "Front",
  16801. image: {
  16802. source: "./media/characters/caspian-lugia/front.svg",
  16803. extra: 1,
  16804. bottom: 0.04
  16805. }
  16806. },
  16807. },
  16808. [
  16809. {
  16810. name: "Normal",
  16811. height: math.unit(16 + 5 / 12, "feet"),
  16812. default: true
  16813. },
  16814. ]
  16815. ))
  16816. characterMakers.push(() => makeCharacter(
  16817. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16818. {
  16819. front: {
  16820. height: math.unit(5 + 7 / 12, "feet"),
  16821. weight: math.unit(170, "lb"),
  16822. name: "Front",
  16823. image: {
  16824. source: "./media/characters/mika/front.svg",
  16825. extra: 1,
  16826. bottom: 0.016
  16827. }
  16828. },
  16829. },
  16830. [
  16831. {
  16832. name: "Normal",
  16833. height: math.unit(5 + 7 / 12, "feet"),
  16834. default: true
  16835. },
  16836. ]
  16837. ))
  16838. characterMakers.push(() => makeCharacter(
  16839. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16840. {
  16841. front: {
  16842. height: math.unit(6 + 2 / 12, "feet"),
  16843. weight: math.unit(268, "lb"),
  16844. name: "Front",
  16845. image: {
  16846. source: "./media/characters/sol/front.svg",
  16847. extra: 247 / 231,
  16848. bottom: 0.05
  16849. }
  16850. },
  16851. },
  16852. [
  16853. {
  16854. name: "Normal",
  16855. height: math.unit(6 + 2 / 12, "feet"),
  16856. default: true
  16857. },
  16858. ]
  16859. ))
  16860. characterMakers.push(() => makeCharacter(
  16861. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16862. {
  16863. buizel: {
  16864. height: math.unit(2 + 5 / 12, "feet"),
  16865. weight: math.unit(87, "lb"),
  16866. name: "Front",
  16867. image: {
  16868. source: "./media/characters/umiko/buizel.svg",
  16869. extra: 172 / 157,
  16870. bottom: 0.01
  16871. },
  16872. form: "buizel",
  16873. default: true
  16874. },
  16875. floatzel: {
  16876. height: math.unit(5 + 9 / 12, "feet"),
  16877. weight: math.unit(250, "lb"),
  16878. name: "Front",
  16879. image: {
  16880. source: "./media/characters/umiko/floatzel.svg",
  16881. extra: 1076/1006,
  16882. bottom: 15/1091
  16883. },
  16884. form: "floatzel",
  16885. default: true
  16886. },
  16887. },
  16888. [
  16889. {
  16890. name: "Normal",
  16891. height: math.unit(2 + 5 / 12, "feet"),
  16892. form: "buizel",
  16893. default: true
  16894. },
  16895. {
  16896. name: "Normal",
  16897. height: math.unit(5 + 9 / 12, "feet"),
  16898. form: "floatzel",
  16899. default: true
  16900. },
  16901. ],
  16902. {
  16903. "buizel": {
  16904. name: "Buizel"
  16905. },
  16906. "floatzel": {
  16907. name: "Floatzel",
  16908. default: true
  16909. }
  16910. }
  16911. ))
  16912. characterMakers.push(() => makeCharacter(
  16913. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16914. {
  16915. front: {
  16916. height: math.unit(6 + 2 / 12, "feet"),
  16917. weight: math.unit(146, "lb"),
  16918. name: "Front",
  16919. image: {
  16920. source: "./media/characters/iliac/front.svg",
  16921. extra: 389 / 365,
  16922. bottom: 0.035
  16923. }
  16924. },
  16925. },
  16926. [
  16927. {
  16928. name: "Normal",
  16929. height: math.unit(6 + 2 / 12, "feet"),
  16930. default: true
  16931. },
  16932. ]
  16933. ))
  16934. characterMakers.push(() => makeCharacter(
  16935. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16936. {
  16937. front: {
  16938. height: math.unit(6, "feet"),
  16939. weight: math.unit(170, "lb"),
  16940. name: "Front",
  16941. image: {
  16942. source: "./media/characters/topaz/front.svg",
  16943. extra: 317 / 303,
  16944. bottom: 0.055
  16945. }
  16946. },
  16947. },
  16948. [
  16949. {
  16950. name: "Normal",
  16951. height: math.unit(6, "feet"),
  16952. default: true
  16953. },
  16954. ]
  16955. ))
  16956. characterMakers.push(() => makeCharacter(
  16957. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16958. {
  16959. front: {
  16960. height: math.unit(5 + 11 / 12, "feet"),
  16961. weight: math.unit(144, "lb"),
  16962. name: "Front",
  16963. image: {
  16964. source: "./media/characters/gabriel/front.svg",
  16965. extra: 285 / 262,
  16966. bottom: 0.004
  16967. }
  16968. },
  16969. },
  16970. [
  16971. {
  16972. name: "Normal",
  16973. height: math.unit(5 + 11 / 12, "feet"),
  16974. default: true
  16975. },
  16976. ]
  16977. ))
  16978. characterMakers.push(() => makeCharacter(
  16979. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16980. {
  16981. side: {
  16982. height: math.unit(6 + 5 / 12, "feet"),
  16983. weight: math.unit(300, "lb"),
  16984. name: "Side",
  16985. image: {
  16986. source: "./media/characters/tempest-suicune/side.svg",
  16987. extra: 195 / 154,
  16988. bottom: 0.04
  16989. }
  16990. },
  16991. },
  16992. [
  16993. {
  16994. name: "Normal",
  16995. height: math.unit(6 + 5 / 12, "feet"),
  16996. default: true
  16997. },
  16998. ]
  16999. ))
  17000. characterMakers.push(() => makeCharacter(
  17001. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17002. {
  17003. front: {
  17004. height: math.unit(7 + 2 / 12, "feet"),
  17005. weight: math.unit(322, "lb"),
  17006. name: "Front",
  17007. image: {
  17008. source: "./media/characters/vulcan/front.svg",
  17009. extra: 154 / 147,
  17010. bottom: 0.04
  17011. }
  17012. },
  17013. },
  17014. [
  17015. {
  17016. name: "Normal",
  17017. height: math.unit(7 + 2 / 12, "feet"),
  17018. default: true
  17019. },
  17020. ]
  17021. ))
  17022. characterMakers.push(() => makeCharacter(
  17023. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17024. {
  17025. front: {
  17026. height: math.unit(5 + 10 / 12, "feet"),
  17027. weight: math.unit(264, "lb"),
  17028. name: "Front",
  17029. image: {
  17030. source: "./media/characters/gault/front.svg",
  17031. extra: 161 / 140,
  17032. bottom: 0.028
  17033. }
  17034. },
  17035. },
  17036. [
  17037. {
  17038. name: "Normal",
  17039. height: math.unit(5 + 10 / 12, "feet"),
  17040. default: true
  17041. },
  17042. ]
  17043. ))
  17044. characterMakers.push(() => makeCharacter(
  17045. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17046. {
  17047. front: {
  17048. height: math.unit(6, "feet"),
  17049. weight: math.unit(150, "lb"),
  17050. name: "Front",
  17051. image: {
  17052. source: "./media/characters/shard/front.svg",
  17053. extra: 273 / 238,
  17054. bottom: 0.02
  17055. }
  17056. },
  17057. },
  17058. [
  17059. {
  17060. name: "Normal",
  17061. height: math.unit(3 + 6 / 12, "feet"),
  17062. default: true
  17063. },
  17064. ]
  17065. ))
  17066. characterMakers.push(() => makeCharacter(
  17067. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17068. {
  17069. front: {
  17070. height: math.unit(5 + 11 / 12, "feet"),
  17071. weight: math.unit(146, "lb"),
  17072. name: "Front",
  17073. image: {
  17074. source: "./media/characters/ashe/front.svg",
  17075. extra: 400 / 373,
  17076. bottom: 0.01
  17077. }
  17078. },
  17079. },
  17080. [
  17081. {
  17082. name: "Normal",
  17083. height: math.unit(5 + 11 / 12, "feet"),
  17084. default: true
  17085. },
  17086. ]
  17087. ))
  17088. characterMakers.push(() => makeCharacter(
  17089. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17090. {
  17091. front: {
  17092. height: math.unit(5 + 5 / 12, "feet"),
  17093. weight: math.unit(135, "lb"),
  17094. name: "Front",
  17095. image: {
  17096. source: "./media/characters/beatrix/front.svg",
  17097. extra: 392 / 379,
  17098. bottom: 0.01
  17099. }
  17100. },
  17101. },
  17102. [
  17103. {
  17104. name: "Normal",
  17105. height: math.unit(6, "feet"),
  17106. default: true
  17107. },
  17108. ]
  17109. ))
  17110. characterMakers.push(() => makeCharacter(
  17111. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17112. {
  17113. front: {
  17114. height: math.unit(6 + 2/12, "feet"),
  17115. weight: math.unit(135, "lb"),
  17116. name: "Front",
  17117. image: {
  17118. source: "./media/characters/ignatius/front.svg",
  17119. extra: 1380/1259,
  17120. bottom: 27/1407
  17121. }
  17122. },
  17123. },
  17124. [
  17125. {
  17126. name: "Normal",
  17127. height: math.unit(6 + 2/12, "feet"),
  17128. default: true
  17129. },
  17130. ]
  17131. ))
  17132. characterMakers.push(() => makeCharacter(
  17133. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17134. {
  17135. front: {
  17136. height: math.unit(6 + 2 / 12, "feet"),
  17137. weight: math.unit(138, "lb"),
  17138. name: "Front",
  17139. image: {
  17140. source: "./media/characters/mei-li/front.svg",
  17141. extra: 237 / 229,
  17142. bottom: 0.03
  17143. }
  17144. },
  17145. },
  17146. [
  17147. {
  17148. name: "Normal",
  17149. height: math.unit(6 + 2 / 12, "feet"),
  17150. default: true
  17151. },
  17152. ]
  17153. ))
  17154. characterMakers.push(() => makeCharacter(
  17155. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17156. {
  17157. front: {
  17158. height: math.unit(2 + 4 / 12, "feet"),
  17159. weight: math.unit(62, "lb"),
  17160. name: "Front",
  17161. image: {
  17162. source: "./media/characters/puru/front.svg",
  17163. extra: 206 / 149,
  17164. bottom: 0.06
  17165. }
  17166. },
  17167. },
  17168. [
  17169. {
  17170. name: "Normal",
  17171. height: math.unit(2 + 4 / 12, "feet"),
  17172. default: true
  17173. },
  17174. ]
  17175. ))
  17176. characterMakers.push(() => makeCharacter(
  17177. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17178. {
  17179. anthro: {
  17180. height: math.unit(5 + 8/12, "feet"),
  17181. weight: math.unit(200, "lb"),
  17182. energyNeed: math.unit(2000, "kcal"),
  17183. name: "Anthro",
  17184. image: {
  17185. source: "./media/characters/kee/anthro.svg",
  17186. extra: 3251/3184,
  17187. bottom: 250/3501
  17188. }
  17189. },
  17190. taur: {
  17191. height: math.unit(11, "feet"),
  17192. weight: math.unit(500, "lb"),
  17193. energyNeed: math.unit(5000, "kcal"),
  17194. name: "Taur",
  17195. image: {
  17196. source: "./media/characters/kee/taur.svg",
  17197. extra: 1362/1320,
  17198. bottom: 83/1445
  17199. }
  17200. },
  17201. },
  17202. [
  17203. {
  17204. name: "Normal",
  17205. height: math.unit(5 + 8/12, "feet"),
  17206. default: true
  17207. },
  17208. {
  17209. name: "Macro",
  17210. height: math.unit(35, "feet")
  17211. },
  17212. ]
  17213. ))
  17214. characterMakers.push(() => makeCharacter(
  17215. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17216. {
  17217. anthro: {
  17218. height: math.unit(7, "feet"),
  17219. weight: math.unit(190, "lb"),
  17220. name: "Anthro",
  17221. image: {
  17222. source: "./media/characters/cobalt-dracha/anthro.svg",
  17223. extra: 231 / 225,
  17224. bottom: 0.04
  17225. }
  17226. },
  17227. feral: {
  17228. height: math.unit(9 + 7 / 12, "feet"),
  17229. weight: math.unit(294, "lb"),
  17230. name: "Feral",
  17231. image: {
  17232. source: "./media/characters/cobalt-dracha/feral.svg",
  17233. extra: 692 / 633,
  17234. bottom: 0.05
  17235. }
  17236. },
  17237. },
  17238. [
  17239. {
  17240. name: "Normal",
  17241. height: math.unit(7, "feet"),
  17242. default: true
  17243. },
  17244. ]
  17245. ))
  17246. characterMakers.push(() => makeCharacter(
  17247. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17248. {
  17249. fallen: {
  17250. height: math.unit(11 + 8 / 12, "feet"),
  17251. weight: math.unit(485, "lb"),
  17252. name: "Java (Fallen)",
  17253. rename: true,
  17254. image: {
  17255. source: "./media/characters/java/fallen.svg",
  17256. extra: 226 / 208,
  17257. bottom: 0.005
  17258. }
  17259. },
  17260. godkin: {
  17261. height: math.unit(10 + 6 / 12, "feet"),
  17262. weight: math.unit(328, "lb"),
  17263. name: "Java (Godkin)",
  17264. rename: true,
  17265. image: {
  17266. source: "./media/characters/java/godkin.svg",
  17267. extra: 1104/1068,
  17268. bottom: 36/1140
  17269. }
  17270. },
  17271. },
  17272. [
  17273. {
  17274. name: "Normal",
  17275. height: math.unit(11 + 8 / 12, "feet"),
  17276. default: true
  17277. },
  17278. ]
  17279. ))
  17280. characterMakers.push(() => makeCharacter(
  17281. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17282. {
  17283. front: {
  17284. height: math.unit(5 + 9 / 12, "feet"),
  17285. weight: math.unit(170, "lb"),
  17286. name: "Front",
  17287. image: {
  17288. source: "./media/characters/purna/front.svg",
  17289. extra: 239 / 229,
  17290. bottom: 0.01
  17291. }
  17292. },
  17293. },
  17294. [
  17295. {
  17296. name: "Normal",
  17297. height: math.unit(5 + 9 / 12, "feet"),
  17298. default: true
  17299. },
  17300. ]
  17301. ))
  17302. characterMakers.push(() => makeCharacter(
  17303. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17304. {
  17305. front: {
  17306. height: math.unit(5 + 9 / 12, "feet"),
  17307. weight: math.unit(142, "lb"),
  17308. name: "Front",
  17309. image: {
  17310. source: "./media/characters/kuva/front.svg",
  17311. extra: 281 / 271,
  17312. bottom: 0.006
  17313. }
  17314. },
  17315. },
  17316. [
  17317. {
  17318. name: "Normal",
  17319. height: math.unit(5 + 9 / 12, "feet"),
  17320. default: true
  17321. },
  17322. ]
  17323. ))
  17324. characterMakers.push(() => makeCharacter(
  17325. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17326. {
  17327. anthro: {
  17328. height: math.unit(9 + 2 / 12, "feet"),
  17329. weight: math.unit(270, "lb"),
  17330. name: "Anthro",
  17331. image: {
  17332. source: "./media/characters/embra/anthro.svg",
  17333. extra: 200 / 187,
  17334. bottom: 0.02
  17335. }
  17336. },
  17337. feral: {
  17338. height: math.unit(18 + 8 / 12, "feet"),
  17339. weight: math.unit(576, "lb"),
  17340. name: "Feral",
  17341. image: {
  17342. source: "./media/characters/embra/feral.svg",
  17343. extra: 152 / 137,
  17344. bottom: 0.037
  17345. }
  17346. },
  17347. },
  17348. [
  17349. {
  17350. name: "Normal",
  17351. height: math.unit(9 + 2 / 12, "feet"),
  17352. default: true
  17353. },
  17354. ]
  17355. ))
  17356. characterMakers.push(() => makeCharacter(
  17357. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17358. {
  17359. anthro: {
  17360. height: math.unit(10 + 9 / 12, "feet"),
  17361. weight: math.unit(224, "lb"),
  17362. name: "Anthro",
  17363. image: {
  17364. source: "./media/characters/grottos/anthro.svg",
  17365. extra: 350 / 332,
  17366. bottom: 0.045
  17367. }
  17368. },
  17369. feral: {
  17370. height: math.unit(20 + 7 / 12, "feet"),
  17371. weight: math.unit(629, "lb"),
  17372. name: "Feral",
  17373. image: {
  17374. source: "./media/characters/grottos/feral.svg",
  17375. extra: 207 / 190,
  17376. bottom: 0.05
  17377. }
  17378. },
  17379. },
  17380. [
  17381. {
  17382. name: "Normal",
  17383. height: math.unit(10 + 9 / 12, "feet"),
  17384. default: true
  17385. },
  17386. ]
  17387. ))
  17388. characterMakers.push(() => makeCharacter(
  17389. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17390. {
  17391. anthro: {
  17392. height: math.unit(9 + 6 / 12, "feet"),
  17393. weight: math.unit(298, "lb"),
  17394. name: "Anthro",
  17395. image: {
  17396. source: "./media/characters/frifna/anthro.svg",
  17397. extra: 282 / 269,
  17398. bottom: 0.015
  17399. }
  17400. },
  17401. feral: {
  17402. height: math.unit(16 + 2 / 12, "feet"),
  17403. weight: math.unit(624, "lb"),
  17404. name: "Feral",
  17405. image: {
  17406. source: "./media/characters/frifna/feral.svg"
  17407. }
  17408. },
  17409. },
  17410. [
  17411. {
  17412. name: "Normal",
  17413. height: math.unit(9 + 6 / 12, "feet"),
  17414. default: true
  17415. },
  17416. ]
  17417. ))
  17418. characterMakers.push(() => makeCharacter(
  17419. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17420. {
  17421. front: {
  17422. height: math.unit(6 + 2 / 12, "feet"),
  17423. weight: math.unit(168, "lb"),
  17424. name: "Front",
  17425. image: {
  17426. source: "./media/characters/elise/front.svg",
  17427. extra: 276 / 271
  17428. }
  17429. },
  17430. },
  17431. [
  17432. {
  17433. name: "Normal",
  17434. height: math.unit(6 + 2 / 12, "feet"),
  17435. default: true
  17436. },
  17437. ]
  17438. ))
  17439. characterMakers.push(() => makeCharacter(
  17440. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17441. {
  17442. front: {
  17443. height: math.unit(5 + 10 / 12, "feet"),
  17444. weight: math.unit(210, "lb"),
  17445. name: "Front",
  17446. image: {
  17447. source: "./media/characters/glade/front.svg",
  17448. extra: 258 / 247,
  17449. bottom: 0.008
  17450. }
  17451. },
  17452. },
  17453. [
  17454. {
  17455. name: "Normal",
  17456. height: math.unit(5 + 10 / 12, "feet"),
  17457. default: true
  17458. },
  17459. ]
  17460. ))
  17461. characterMakers.push(() => makeCharacter(
  17462. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17463. {
  17464. front: {
  17465. height: math.unit(5 + 10 / 12, "feet"),
  17466. weight: math.unit(129, "lb"),
  17467. name: "Front",
  17468. image: {
  17469. source: "./media/characters/rina/front.svg",
  17470. extra: 266 / 255,
  17471. bottom: 0.005
  17472. }
  17473. },
  17474. },
  17475. [
  17476. {
  17477. name: "Normal",
  17478. height: math.unit(5 + 10 / 12, "feet"),
  17479. default: true
  17480. },
  17481. ]
  17482. ))
  17483. characterMakers.push(() => makeCharacter(
  17484. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17485. {
  17486. front: {
  17487. height: math.unit(6 + 1 / 12, "feet"),
  17488. weight: math.unit(192, "lb"),
  17489. name: "Front",
  17490. image: {
  17491. source: "./media/characters/veronica/front.svg",
  17492. extra: 319 / 309,
  17493. bottom: 0.005
  17494. }
  17495. },
  17496. },
  17497. [
  17498. {
  17499. name: "Normal",
  17500. height: math.unit(6 + 1 / 12, "feet"),
  17501. default: true
  17502. },
  17503. ]
  17504. ))
  17505. characterMakers.push(() => makeCharacter(
  17506. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17507. {
  17508. front: {
  17509. height: math.unit(9 + 3 / 12, "feet"),
  17510. weight: math.unit(1100, "lb"),
  17511. name: "Front",
  17512. image: {
  17513. source: "./media/characters/braxton/front.svg",
  17514. extra: 1057 / 984,
  17515. bottom: 0.05
  17516. }
  17517. },
  17518. },
  17519. [
  17520. {
  17521. name: "Normal",
  17522. height: math.unit(9 + 3 / 12, "feet")
  17523. },
  17524. {
  17525. name: "Giant",
  17526. height: math.unit(300, "feet"),
  17527. default: true
  17528. },
  17529. {
  17530. name: "Macro",
  17531. height: math.unit(700, "feet")
  17532. },
  17533. {
  17534. name: "Megamacro",
  17535. height: math.unit(6000, "feet")
  17536. },
  17537. ]
  17538. ))
  17539. characterMakers.push(() => makeCharacter(
  17540. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17541. {
  17542. front: {
  17543. height: math.unit(6 + 7 / 12, "feet"),
  17544. weight: math.unit(150, "lb"),
  17545. name: "Front",
  17546. image: {
  17547. source: "./media/characters/blue-feyonics/front.svg",
  17548. extra: 1403 / 1306,
  17549. bottom: 0.047
  17550. }
  17551. },
  17552. },
  17553. [
  17554. {
  17555. name: "Normal",
  17556. height: math.unit(6 + 7 / 12, "feet"),
  17557. default: true
  17558. },
  17559. ]
  17560. ))
  17561. characterMakers.push(() => makeCharacter(
  17562. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17563. {
  17564. front: {
  17565. height: math.unit(1.8, "meters"),
  17566. weight: math.unit(60, "kg"),
  17567. name: "Front",
  17568. image: {
  17569. source: "./media/characters/maxwell/front.svg",
  17570. extra: 2060 / 1873
  17571. }
  17572. },
  17573. },
  17574. [
  17575. {
  17576. name: "Micro",
  17577. height: math.unit(1, "mm")
  17578. },
  17579. {
  17580. name: "Normal",
  17581. height: math.unit(1.8, "meter"),
  17582. default: true
  17583. },
  17584. {
  17585. name: "Macro",
  17586. height: math.unit(30, "meters")
  17587. },
  17588. {
  17589. name: "Megamacro",
  17590. height: math.unit(10, "km")
  17591. },
  17592. ]
  17593. ))
  17594. characterMakers.push(() => makeCharacter(
  17595. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17596. {
  17597. front: {
  17598. height: math.unit(6, "feet"),
  17599. weight: math.unit(150, "lb"),
  17600. name: "Front",
  17601. image: {
  17602. source: "./media/characters/jack/front.svg",
  17603. extra: 1754 / 1640,
  17604. bottom: 0.01
  17605. }
  17606. },
  17607. },
  17608. [
  17609. {
  17610. name: "Normal",
  17611. height: math.unit(80000, "feet"),
  17612. default: true
  17613. },
  17614. {
  17615. name: "Max size",
  17616. height: math.unit(10, "lightyears")
  17617. },
  17618. ]
  17619. ))
  17620. characterMakers.push(() => makeCharacter(
  17621. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17622. {
  17623. urban: {
  17624. height: math.unit(5, "feet"),
  17625. weight: math.unit(240, "lb"),
  17626. name: "Urban",
  17627. image: {
  17628. source: "./media/characters/cafat/urban.svg",
  17629. extra: 1223/1126,
  17630. bottom: 205/1428
  17631. }
  17632. },
  17633. summer: {
  17634. height: math.unit(5, "feet"),
  17635. weight: math.unit(240, "lb"),
  17636. name: "Summer",
  17637. image: {
  17638. source: "./media/characters/cafat/summer.svg",
  17639. extra: 1223/1126,
  17640. bottom: 205/1428
  17641. }
  17642. },
  17643. winter: {
  17644. height: math.unit(5, "feet"),
  17645. weight: math.unit(240, "lb"),
  17646. name: "Winter",
  17647. image: {
  17648. source: "./media/characters/cafat/winter.svg",
  17649. extra: 1223/1126,
  17650. bottom: 205/1428
  17651. }
  17652. },
  17653. lingerie: {
  17654. height: math.unit(5, "feet"),
  17655. weight: math.unit(240, "lb"),
  17656. name: "Lingerie",
  17657. image: {
  17658. source: "./media/characters/cafat/lingerie.svg",
  17659. extra: 1223/1126,
  17660. bottom: 205/1428
  17661. }
  17662. },
  17663. upright: {
  17664. height: math.unit(6.3, "feet"),
  17665. weight: math.unit(240, "lb"),
  17666. name: "Upright",
  17667. image: {
  17668. source: "./media/characters/cafat/upright.svg",
  17669. bottom: 0.01
  17670. }
  17671. },
  17672. uprightFull: {
  17673. height: math.unit(6.3, "feet"),
  17674. weight: math.unit(240, "lb"),
  17675. name: "Upright (Full)",
  17676. image: {
  17677. source: "./media/characters/cafat/upright-full.svg",
  17678. bottom: 0.01
  17679. }
  17680. },
  17681. },
  17682. [
  17683. {
  17684. name: "Small",
  17685. height: math.unit(5, "feet"),
  17686. default: true
  17687. },
  17688. {
  17689. name: "Large",
  17690. height: math.unit(13, "feet")
  17691. },
  17692. ]
  17693. ))
  17694. characterMakers.push(() => makeCharacter(
  17695. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17696. {
  17697. front: {
  17698. height: math.unit(6, "feet"),
  17699. weight: math.unit(150, "lb"),
  17700. name: "Front",
  17701. image: {
  17702. source: "./media/characters/verin-raharra/front.svg",
  17703. extra: 5019 / 4835,
  17704. bottom: 0.023
  17705. }
  17706. },
  17707. },
  17708. [
  17709. {
  17710. name: "Normal",
  17711. height: math.unit(7 + 5 / 12, "feet"),
  17712. default: true
  17713. },
  17714. {
  17715. name: "Upsized",
  17716. height: math.unit(20, "feet")
  17717. },
  17718. ]
  17719. ))
  17720. characterMakers.push(() => makeCharacter(
  17721. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17722. {
  17723. front: {
  17724. height: math.unit(7, "feet"),
  17725. weight: math.unit(230, "lb"),
  17726. name: "Front",
  17727. image: {
  17728. source: "./media/characters/nakata/front.svg",
  17729. extra: 1.005,
  17730. bottom: 0.01
  17731. }
  17732. },
  17733. },
  17734. [
  17735. {
  17736. name: "Normal",
  17737. height: math.unit(7, "feet"),
  17738. default: true
  17739. },
  17740. {
  17741. name: "Big",
  17742. height: math.unit(14, "feet")
  17743. },
  17744. {
  17745. name: "Macro",
  17746. height: math.unit(400, "feet")
  17747. },
  17748. ]
  17749. ))
  17750. characterMakers.push(() => makeCharacter(
  17751. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17752. {
  17753. front: {
  17754. height: math.unit(4.91, "feet"),
  17755. weight: math.unit(100, "lb"),
  17756. name: "Front",
  17757. image: {
  17758. source: "./media/characters/lily/front.svg",
  17759. extra: 1585 / 1415,
  17760. bottom: 0.02
  17761. }
  17762. },
  17763. },
  17764. [
  17765. {
  17766. name: "Normal",
  17767. height: math.unit(4.91, "feet"),
  17768. default: true
  17769. },
  17770. ]
  17771. ))
  17772. characterMakers.push(() => makeCharacter(
  17773. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17774. {
  17775. laying: {
  17776. height: math.unit(4 + 4 / 12, "feet"),
  17777. weight: math.unit(600, "lb"),
  17778. name: "Laying",
  17779. image: {
  17780. source: "./media/characters/sheila/laying.svg",
  17781. extra: 1333 / 1265,
  17782. bottom: 0.16
  17783. }
  17784. },
  17785. },
  17786. [
  17787. {
  17788. name: "Normal",
  17789. height: math.unit(4 + 4 / 12, "feet"),
  17790. default: true
  17791. },
  17792. ]
  17793. ))
  17794. characterMakers.push(() => makeCharacter(
  17795. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17796. {
  17797. front: {
  17798. height: math.unit(6, "feet"),
  17799. weight: math.unit(190, "lb"),
  17800. name: "Front",
  17801. image: {
  17802. source: "./media/characters/sax/front.svg",
  17803. extra: 1187 / 973,
  17804. bottom: 0.042
  17805. }
  17806. },
  17807. },
  17808. [
  17809. {
  17810. name: "Micro",
  17811. height: math.unit(4, "inches"),
  17812. default: true
  17813. },
  17814. ]
  17815. ))
  17816. characterMakers.push(() => makeCharacter(
  17817. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17818. {
  17819. front: {
  17820. height: math.unit(6, "feet"),
  17821. weight: math.unit(150, "lb"),
  17822. name: "Front",
  17823. image: {
  17824. source: "./media/characters/pandora/front.svg",
  17825. extra: 2720 / 2556,
  17826. bottom: 0.015
  17827. }
  17828. },
  17829. back: {
  17830. height: math.unit(6, "feet"),
  17831. weight: math.unit(150, "lb"),
  17832. name: "Back",
  17833. image: {
  17834. source: "./media/characters/pandora/back.svg",
  17835. extra: 2720 / 2556,
  17836. bottom: 0.01
  17837. }
  17838. },
  17839. beans: {
  17840. height: math.unit(6 / 8, "feet"),
  17841. name: "Beans",
  17842. image: {
  17843. source: "./media/characters/pandora/beans.svg"
  17844. }
  17845. },
  17846. collar: {
  17847. height: math.unit(0.31, "feet"),
  17848. name: "Collar",
  17849. image: {
  17850. source: "./media/characters/pandora/collar.svg"
  17851. }
  17852. },
  17853. skirt: {
  17854. height: math.unit(6, "feet"),
  17855. weight: math.unit(150, "lb"),
  17856. name: "Skirt",
  17857. image: {
  17858. source: "./media/characters/pandora/skirt.svg",
  17859. extra: 1622 / 1525,
  17860. bottom: 0.015
  17861. }
  17862. },
  17863. hoodie: {
  17864. height: math.unit(6, "feet"),
  17865. weight: math.unit(150, "lb"),
  17866. name: "Hoodie",
  17867. image: {
  17868. source: "./media/characters/pandora/hoodie.svg",
  17869. extra: 1622 / 1525,
  17870. bottom: 0.015
  17871. }
  17872. },
  17873. casual: {
  17874. height: math.unit(6, "feet"),
  17875. weight: math.unit(150, "lb"),
  17876. name: "Casual",
  17877. image: {
  17878. source: "./media/characters/pandora/casual.svg",
  17879. extra: 1622 / 1525,
  17880. bottom: 0.015
  17881. }
  17882. },
  17883. },
  17884. [
  17885. {
  17886. name: "Normal",
  17887. height: math.unit(6, "feet")
  17888. },
  17889. {
  17890. name: "Big Steppy",
  17891. height: math.unit(1, "km"),
  17892. default: true
  17893. },
  17894. {
  17895. name: "Galactic Steppy",
  17896. height: math.unit(2, "gigameters")
  17897. },
  17898. ]
  17899. ))
  17900. characterMakers.push(() => makeCharacter(
  17901. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17902. {
  17903. side: {
  17904. height: math.unit(10, "feet"),
  17905. weight: math.unit(800, "kg"),
  17906. name: "Side",
  17907. image: {
  17908. source: "./media/characters/venio-darcony/side.svg",
  17909. extra: 1373 / 1003,
  17910. bottom: 0.037
  17911. }
  17912. },
  17913. front: {
  17914. height: math.unit(19, "feet"),
  17915. weight: math.unit(800, "kg"),
  17916. name: "Front",
  17917. image: {
  17918. source: "./media/characters/venio-darcony/front.svg"
  17919. }
  17920. },
  17921. back: {
  17922. height: math.unit(19, "feet"),
  17923. weight: math.unit(800, "kg"),
  17924. name: "Back",
  17925. image: {
  17926. source: "./media/characters/venio-darcony/back.svg"
  17927. }
  17928. },
  17929. sideNsfw: {
  17930. height: math.unit(10, "feet"),
  17931. weight: math.unit(800, "kg"),
  17932. name: "Side (NSFW)",
  17933. image: {
  17934. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17935. extra: 1373 / 1003,
  17936. bottom: 0.037
  17937. }
  17938. },
  17939. frontNsfw: {
  17940. height: math.unit(19, "feet"),
  17941. weight: math.unit(800, "kg"),
  17942. name: "Front (NSFW)",
  17943. image: {
  17944. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17945. }
  17946. },
  17947. backNsfw: {
  17948. height: math.unit(19, "feet"),
  17949. weight: math.unit(800, "kg"),
  17950. name: "Back (NSFW)",
  17951. image: {
  17952. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17953. }
  17954. },
  17955. sideArmored: {
  17956. height: math.unit(10, "feet"),
  17957. weight: math.unit(800, "kg"),
  17958. name: "Side (Armored)",
  17959. image: {
  17960. source: "./media/characters/venio-darcony/side-armored.svg",
  17961. extra: 1373 / 1003,
  17962. bottom: 0.037
  17963. }
  17964. },
  17965. frontArmored: {
  17966. height: math.unit(19, "feet"),
  17967. weight: math.unit(900, "kg"),
  17968. name: "Front (Armored)",
  17969. image: {
  17970. source: "./media/characters/venio-darcony/front-armored.svg"
  17971. }
  17972. },
  17973. backArmored: {
  17974. height: math.unit(19, "feet"),
  17975. weight: math.unit(900, "kg"),
  17976. name: "Back (Armored)",
  17977. image: {
  17978. source: "./media/characters/venio-darcony/back-armored.svg"
  17979. }
  17980. },
  17981. sword: {
  17982. height: math.unit(10, "feet"),
  17983. weight: math.unit(50, "lb"),
  17984. name: "Sword",
  17985. image: {
  17986. source: "./media/characters/venio-darcony/sword.svg"
  17987. }
  17988. },
  17989. },
  17990. [
  17991. {
  17992. name: "Normal",
  17993. height: math.unit(10, "feet")
  17994. },
  17995. {
  17996. name: "Macro",
  17997. height: math.unit(130, "feet"),
  17998. default: true
  17999. },
  18000. {
  18001. name: "Macro+",
  18002. height: math.unit(240, "feet")
  18003. },
  18004. ]
  18005. ))
  18006. characterMakers.push(() => makeCharacter(
  18007. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18008. {
  18009. front: {
  18010. height: math.unit(6, "feet"),
  18011. weight: math.unit(150, "lb"),
  18012. name: "Front",
  18013. image: {
  18014. source: "./media/characters/veski/front.svg",
  18015. extra: 1299 / 1225,
  18016. bottom: 0.04
  18017. }
  18018. },
  18019. back: {
  18020. height: math.unit(6, "feet"),
  18021. weight: math.unit(150, "lb"),
  18022. name: "Back",
  18023. image: {
  18024. source: "./media/characters/veski/back.svg",
  18025. extra: 1299 / 1225,
  18026. bottom: 0.008
  18027. }
  18028. },
  18029. maw: {
  18030. height: math.unit(1.5 * 1.21, "feet"),
  18031. name: "Maw",
  18032. image: {
  18033. source: "./media/characters/veski/maw.svg"
  18034. }
  18035. },
  18036. },
  18037. [
  18038. {
  18039. name: "Macro",
  18040. height: math.unit(2, "km"),
  18041. default: true
  18042. },
  18043. ]
  18044. ))
  18045. characterMakers.push(() => makeCharacter(
  18046. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18047. {
  18048. front: {
  18049. height: math.unit(5 + 7 / 12, "feet"),
  18050. name: "Front",
  18051. image: {
  18052. source: "./media/characters/isabelle/front.svg",
  18053. extra: 2130 / 1976,
  18054. bottom: 0.05
  18055. }
  18056. },
  18057. },
  18058. [
  18059. {
  18060. name: "Supermicro",
  18061. height: math.unit(10, "micrometers")
  18062. },
  18063. {
  18064. name: "Micro",
  18065. height: math.unit(1, "inch")
  18066. },
  18067. {
  18068. name: "Tiny",
  18069. height: math.unit(5, "inches")
  18070. },
  18071. {
  18072. name: "Standard",
  18073. height: math.unit(5 + 7 / 12, "inches")
  18074. },
  18075. {
  18076. name: "Macro",
  18077. height: math.unit(80, "meters"),
  18078. default: true
  18079. },
  18080. {
  18081. name: "Megamacro",
  18082. height: math.unit(250, "meters")
  18083. },
  18084. {
  18085. name: "Gigamacro",
  18086. height: math.unit(5, "km")
  18087. },
  18088. {
  18089. name: "Cosmic",
  18090. height: math.unit(2.5e6, "miles")
  18091. },
  18092. ]
  18093. ))
  18094. characterMakers.push(() => makeCharacter(
  18095. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18096. {
  18097. front: {
  18098. height: math.unit(6, "feet"),
  18099. weight: math.unit(150, "lb"),
  18100. name: "Front",
  18101. image: {
  18102. source: "./media/characters/hanzo/front.svg",
  18103. extra: 374 / 344,
  18104. bottom: 0.02
  18105. }
  18106. },
  18107. },
  18108. [
  18109. {
  18110. name: "Normal",
  18111. height: math.unit(8, "feet"),
  18112. default: true
  18113. },
  18114. ]
  18115. ))
  18116. characterMakers.push(() => makeCharacter(
  18117. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18118. {
  18119. front: {
  18120. height: math.unit(7, "feet"),
  18121. weight: math.unit(130, "lb"),
  18122. name: "Front",
  18123. image: {
  18124. source: "./media/characters/anna/front.svg",
  18125. extra: 169 / 145,
  18126. bottom: 0.06
  18127. }
  18128. },
  18129. full: {
  18130. height: math.unit(4.96, "feet"),
  18131. weight: math.unit(220, "lb"),
  18132. name: "Full",
  18133. image: {
  18134. source: "./media/characters/anna/full.svg",
  18135. extra: 138 / 114,
  18136. bottom: 0.15
  18137. }
  18138. },
  18139. tongue: {
  18140. height: math.unit(2.53, "feet"),
  18141. name: "Tongue",
  18142. image: {
  18143. source: "./media/characters/anna/tongue.svg"
  18144. }
  18145. },
  18146. },
  18147. [
  18148. {
  18149. name: "Normal",
  18150. height: math.unit(7, "feet"),
  18151. default: true
  18152. },
  18153. ]
  18154. ))
  18155. characterMakers.push(() => makeCharacter(
  18156. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18157. {
  18158. front: {
  18159. height: math.unit(7, "feet"),
  18160. weight: math.unit(150, "lb"),
  18161. name: "Front",
  18162. image: {
  18163. source: "./media/characters/ian-corvid/front.svg",
  18164. extra: 150 / 142,
  18165. bottom: 0.02
  18166. }
  18167. },
  18168. back: {
  18169. height: math.unit(7, "feet"),
  18170. weight: math.unit(150, "lb"),
  18171. name: "Back",
  18172. image: {
  18173. source: "./media/characters/ian-corvid/back.svg",
  18174. extra: 150 / 143,
  18175. bottom: 0.01
  18176. }
  18177. },
  18178. stomping: {
  18179. height: math.unit(7, "feet"),
  18180. weight: math.unit(150, "lb"),
  18181. name: "Stomping",
  18182. image: {
  18183. source: "./media/characters/ian-corvid/stomping.svg",
  18184. extra: 76 / 72
  18185. }
  18186. },
  18187. sitting: {
  18188. height: math.unit(7 / 1.8, "feet"),
  18189. weight: math.unit(150, "lb"),
  18190. name: "Sitting",
  18191. image: {
  18192. source: "./media/characters/ian-corvid/sitting.svg",
  18193. extra: 1400 / 1269,
  18194. bottom: 0.15
  18195. }
  18196. },
  18197. },
  18198. [
  18199. {
  18200. name: "Tiny Microw",
  18201. height: math.unit(1, "inch")
  18202. },
  18203. {
  18204. name: "Microw",
  18205. height: math.unit(6, "inches")
  18206. },
  18207. {
  18208. name: "Crow",
  18209. height: math.unit(7 + 1 / 12, "feet"),
  18210. default: true
  18211. },
  18212. {
  18213. name: "Macrow",
  18214. height: math.unit(176, "feet")
  18215. },
  18216. ]
  18217. ))
  18218. characterMakers.push(() => makeCharacter(
  18219. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18220. {
  18221. front: {
  18222. height: math.unit(5 + 7 / 12, "feet"),
  18223. weight: math.unit(147, "lb"),
  18224. name: "Front",
  18225. image: {
  18226. source: "./media/characters/natalie-kellon/front.svg",
  18227. extra: 1214 / 1141,
  18228. bottom: 0.02
  18229. }
  18230. },
  18231. },
  18232. [
  18233. {
  18234. name: "Micro",
  18235. height: math.unit(1 / 16, "inch")
  18236. },
  18237. {
  18238. name: "Tiny",
  18239. height: math.unit(4, "inches")
  18240. },
  18241. {
  18242. name: "Normal",
  18243. height: math.unit(5 + 7 / 12, "feet"),
  18244. default: true
  18245. },
  18246. {
  18247. name: "Amazon",
  18248. height: math.unit(12, "feet")
  18249. },
  18250. {
  18251. name: "Giantess",
  18252. height: math.unit(160, "meters")
  18253. },
  18254. {
  18255. name: "Titaness",
  18256. height: math.unit(800, "meters")
  18257. },
  18258. ]
  18259. ))
  18260. characterMakers.push(() => makeCharacter(
  18261. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18262. {
  18263. front: {
  18264. height: math.unit(6, "feet"),
  18265. weight: math.unit(150, "lb"),
  18266. name: "Front",
  18267. image: {
  18268. source: "./media/characters/alluria/front.svg",
  18269. extra: 806 / 738,
  18270. bottom: 0.01
  18271. }
  18272. },
  18273. side: {
  18274. height: math.unit(6, "feet"),
  18275. weight: math.unit(150, "lb"),
  18276. name: "Side",
  18277. image: {
  18278. source: "./media/characters/alluria/side.svg",
  18279. extra: 800 / 750,
  18280. }
  18281. },
  18282. back: {
  18283. height: math.unit(6, "feet"),
  18284. weight: math.unit(150, "lb"),
  18285. name: "Back",
  18286. image: {
  18287. source: "./media/characters/alluria/back.svg",
  18288. extra: 806 / 738,
  18289. }
  18290. },
  18291. frontMaid: {
  18292. height: math.unit(6, "feet"),
  18293. weight: math.unit(150, "lb"),
  18294. name: "Front (Maid)",
  18295. image: {
  18296. source: "./media/characters/alluria/front-maid.svg",
  18297. extra: 806 / 738,
  18298. bottom: 0.01
  18299. }
  18300. },
  18301. sideMaid: {
  18302. height: math.unit(6, "feet"),
  18303. weight: math.unit(150, "lb"),
  18304. name: "Side (Maid)",
  18305. image: {
  18306. source: "./media/characters/alluria/side-maid.svg",
  18307. extra: 800 / 750,
  18308. bottom: 0.005
  18309. }
  18310. },
  18311. backMaid: {
  18312. height: math.unit(6, "feet"),
  18313. weight: math.unit(150, "lb"),
  18314. name: "Back (Maid)",
  18315. image: {
  18316. source: "./media/characters/alluria/back-maid.svg",
  18317. extra: 806 / 738,
  18318. }
  18319. },
  18320. },
  18321. [
  18322. {
  18323. name: "Micro",
  18324. height: math.unit(6, "inches"),
  18325. default: true
  18326. },
  18327. ]
  18328. ))
  18329. characterMakers.push(() => makeCharacter(
  18330. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18331. {
  18332. front: {
  18333. height: math.unit(6, "feet"),
  18334. weight: math.unit(150, "lb"),
  18335. name: "Front",
  18336. image: {
  18337. source: "./media/characters/kyle/front.svg",
  18338. extra: 1069 / 962,
  18339. bottom: 77.228 / 1727.45
  18340. }
  18341. },
  18342. },
  18343. [
  18344. {
  18345. name: "Macro",
  18346. height: math.unit(150, "feet"),
  18347. default: true
  18348. },
  18349. ]
  18350. ))
  18351. characterMakers.push(() => makeCharacter(
  18352. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18353. {
  18354. front: {
  18355. height: math.unit(6, "feet"),
  18356. weight: math.unit(300, "lb"),
  18357. name: "Front",
  18358. image: {
  18359. source: "./media/characters/duncan/front.svg",
  18360. extra: 1650 / 1482,
  18361. bottom: 0.05
  18362. }
  18363. },
  18364. },
  18365. [
  18366. {
  18367. name: "Macro",
  18368. height: math.unit(100, "feet"),
  18369. default: true
  18370. },
  18371. ]
  18372. ))
  18373. characterMakers.push(() => makeCharacter(
  18374. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18375. {
  18376. front: {
  18377. height: math.unit(5 + 4 / 12, "feet"),
  18378. weight: math.unit(220, "lb"),
  18379. name: "Front",
  18380. image: {
  18381. source: "./media/characters/memory/front.svg",
  18382. extra: 3641 / 3545,
  18383. bottom: 0.03
  18384. }
  18385. },
  18386. back: {
  18387. height: math.unit(5 + 4 / 12, "feet"),
  18388. weight: math.unit(220, "lb"),
  18389. name: "Back",
  18390. image: {
  18391. source: "./media/characters/memory/back.svg",
  18392. extra: 3641 / 3545,
  18393. bottom: 0.025
  18394. }
  18395. },
  18396. frontSkirt: {
  18397. height: math.unit(5 + 4 / 12, "feet"),
  18398. weight: math.unit(220, "lb"),
  18399. name: "Front (Skirt)",
  18400. image: {
  18401. source: "./media/characters/memory/front-skirt.svg",
  18402. extra: 3641 / 3545,
  18403. bottom: 0.03
  18404. }
  18405. },
  18406. frontDress: {
  18407. height: math.unit(5 + 4 / 12, "feet"),
  18408. weight: math.unit(220, "lb"),
  18409. name: "Front (Dress)",
  18410. image: {
  18411. source: "./media/characters/memory/front-dress.svg",
  18412. extra: 3641 / 3545,
  18413. bottom: 0.03
  18414. }
  18415. },
  18416. },
  18417. [
  18418. {
  18419. name: "Micro",
  18420. height: math.unit(6, "inches"),
  18421. default: true
  18422. },
  18423. {
  18424. name: "Normal",
  18425. height: math.unit(5 + 4 / 12, "feet")
  18426. },
  18427. ]
  18428. ))
  18429. characterMakers.push(() => makeCharacter(
  18430. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18431. {
  18432. front: {
  18433. height: math.unit(4 + 11 / 12, "feet"),
  18434. weight: math.unit(100, "lb"),
  18435. name: "Front",
  18436. image: {
  18437. source: "./media/characters/luno/front.svg",
  18438. extra: 1535 / 1487,
  18439. bottom: 0.03
  18440. }
  18441. },
  18442. },
  18443. [
  18444. {
  18445. name: "Micro",
  18446. height: math.unit(3, "inches")
  18447. },
  18448. {
  18449. name: "Normal",
  18450. height: math.unit(4 + 11 / 12, "feet"),
  18451. default: true
  18452. },
  18453. {
  18454. name: "Macro",
  18455. height: math.unit(300, "feet")
  18456. },
  18457. {
  18458. name: "Megamacro",
  18459. height: math.unit(700, "miles")
  18460. },
  18461. ]
  18462. ))
  18463. characterMakers.push(() => makeCharacter(
  18464. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18465. {
  18466. front: {
  18467. height: math.unit(6 + 2 / 12, "feet"),
  18468. weight: math.unit(170, "lb"),
  18469. name: "Front",
  18470. image: {
  18471. source: "./media/characters/jamesy/front.svg",
  18472. extra: 440 / 382,
  18473. bottom: 0.005
  18474. }
  18475. },
  18476. },
  18477. [
  18478. {
  18479. name: "Micro",
  18480. height: math.unit(3, "inches")
  18481. },
  18482. {
  18483. name: "Normal",
  18484. height: math.unit(6 + 2 / 12, "feet"),
  18485. default: true
  18486. },
  18487. {
  18488. name: "Macro",
  18489. height: math.unit(300, "feet")
  18490. },
  18491. {
  18492. name: "Megamacro",
  18493. height: math.unit(700, "miles")
  18494. },
  18495. ]
  18496. ))
  18497. characterMakers.push(() => makeCharacter(
  18498. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18499. {
  18500. front: {
  18501. height: math.unit(6, "feet"),
  18502. weight: math.unit(160, "lb"),
  18503. name: "Front",
  18504. image: {
  18505. source: "./media/characters/mark/front.svg",
  18506. extra: 3300 / 3100,
  18507. bottom: 136.42 / 3440.47
  18508. }
  18509. },
  18510. },
  18511. [
  18512. {
  18513. name: "Macro",
  18514. height: math.unit(120, "meters")
  18515. },
  18516. {
  18517. name: "Bigger Macro",
  18518. height: math.unit(350, "meters")
  18519. },
  18520. {
  18521. name: "Megamacro",
  18522. height: math.unit(8, "km"),
  18523. default: true
  18524. },
  18525. {
  18526. name: "Continental",
  18527. height: math.unit(4550, "km")
  18528. },
  18529. {
  18530. name: "Planetary",
  18531. height: math.unit(65000, "km")
  18532. },
  18533. ]
  18534. ))
  18535. characterMakers.push(() => makeCharacter(
  18536. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18537. {
  18538. front: {
  18539. height: math.unit(6, "feet"),
  18540. weight: math.unit(400, "lb"),
  18541. name: "Front",
  18542. image: {
  18543. source: "./media/characters/mac/front.svg",
  18544. extra: 1048 / 987.7,
  18545. bottom: 60 / 1107.6,
  18546. }
  18547. },
  18548. },
  18549. [
  18550. {
  18551. name: "Macro",
  18552. height: math.unit(500, "feet"),
  18553. default: true
  18554. },
  18555. ]
  18556. ))
  18557. characterMakers.push(() => makeCharacter(
  18558. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18559. {
  18560. front: {
  18561. height: math.unit(5 + 2 / 12, "feet"),
  18562. weight: math.unit(190, "lb"),
  18563. name: "Front",
  18564. image: {
  18565. source: "./media/characters/bari/front.svg",
  18566. extra: 3156 / 2880,
  18567. bottom: 0.03
  18568. }
  18569. },
  18570. back: {
  18571. height: math.unit(5 + 2 / 12, "feet"),
  18572. weight: math.unit(190, "lb"),
  18573. name: "Back",
  18574. image: {
  18575. source: "./media/characters/bari/back.svg",
  18576. extra: 3260 / 2834,
  18577. bottom: 0.025
  18578. }
  18579. },
  18580. frontPlush: {
  18581. height: math.unit(5 + 2 / 12, "feet"),
  18582. weight: math.unit(190, "lb"),
  18583. name: "Front (Plush)",
  18584. image: {
  18585. source: "./media/characters/bari/front-plush.svg",
  18586. extra: 1112 / 1061,
  18587. bottom: 0.002
  18588. }
  18589. },
  18590. },
  18591. [
  18592. {
  18593. name: "Micro",
  18594. height: math.unit(3, "inches")
  18595. },
  18596. {
  18597. name: "Normal",
  18598. height: math.unit(5 + 2 / 12, "feet"),
  18599. default: true
  18600. },
  18601. {
  18602. name: "Macro",
  18603. height: math.unit(20, "feet")
  18604. },
  18605. ]
  18606. ))
  18607. characterMakers.push(() => makeCharacter(
  18608. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18609. {
  18610. front: {
  18611. height: math.unit(6 + 1 / 12, "feet"),
  18612. weight: math.unit(275, "lb"),
  18613. name: "Front",
  18614. image: {
  18615. source: "./media/characters/hunter-misha-raven/front.svg"
  18616. }
  18617. },
  18618. },
  18619. [
  18620. {
  18621. name: "Mortal",
  18622. height: math.unit(6 + 1 / 12, "feet")
  18623. },
  18624. {
  18625. name: "Divine",
  18626. height: math.unit(1.12134e34, "parsecs"),
  18627. default: true
  18628. },
  18629. ]
  18630. ))
  18631. characterMakers.push(() => makeCharacter(
  18632. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18633. {
  18634. front: {
  18635. height: math.unit(6 + 3 / 12, "feet"),
  18636. weight: math.unit(220, "lb"),
  18637. name: "Front",
  18638. image: {
  18639. source: "./media/characters/max-calore/front.svg",
  18640. extra: 1700 / 1648,
  18641. bottom: 0.01
  18642. }
  18643. },
  18644. back: {
  18645. height: math.unit(6 + 3 / 12, "feet"),
  18646. weight: math.unit(220, "lb"),
  18647. name: "Back",
  18648. image: {
  18649. source: "./media/characters/max-calore/back.svg",
  18650. extra: 1700 / 1648,
  18651. bottom: 0.01
  18652. }
  18653. },
  18654. },
  18655. [
  18656. {
  18657. name: "Normal",
  18658. height: math.unit(6 + 3 / 12, "feet"),
  18659. default: true
  18660. },
  18661. ]
  18662. ))
  18663. characterMakers.push(() => makeCharacter(
  18664. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18665. {
  18666. side: {
  18667. height: math.unit(2 + 8 / 12, "feet"),
  18668. weight: math.unit(99, "lb"),
  18669. name: "Side",
  18670. image: {
  18671. source: "./media/characters/aspen/side.svg",
  18672. extra: 152 / 138,
  18673. bottom: 0.032
  18674. }
  18675. },
  18676. },
  18677. [
  18678. {
  18679. name: "Normal",
  18680. height: math.unit(2 + 8 / 12, "feet"),
  18681. default: true
  18682. },
  18683. ]
  18684. ))
  18685. characterMakers.push(() => makeCharacter(
  18686. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18687. {
  18688. side: {
  18689. height: math.unit(3 + 2 / 12, "feet"),
  18690. weight: math.unit(224, "lb"),
  18691. name: "Side",
  18692. image: {
  18693. source: "./media/characters/sheila-feral-wolf/side.svg",
  18694. extra: 179 / 166,
  18695. bottom: 0.03
  18696. }
  18697. },
  18698. },
  18699. [
  18700. {
  18701. name: "Normal",
  18702. height: math.unit(3 + 2 / 12, "feet"),
  18703. default: true
  18704. },
  18705. ]
  18706. ))
  18707. characterMakers.push(() => makeCharacter(
  18708. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18709. {
  18710. side: {
  18711. height: math.unit(1 + 9 / 12, "feet"),
  18712. weight: math.unit(38, "lb"),
  18713. name: "Side",
  18714. image: {
  18715. source: "./media/characters/michelle/side.svg",
  18716. extra: 147 / 136.7,
  18717. bottom: 0.03
  18718. }
  18719. },
  18720. },
  18721. [
  18722. {
  18723. name: "Normal",
  18724. height: math.unit(1 + 9 / 12, "feet"),
  18725. default: true
  18726. },
  18727. ]
  18728. ))
  18729. characterMakers.push(() => makeCharacter(
  18730. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18731. {
  18732. front: {
  18733. height: math.unit(1.54, "feet"),
  18734. weight: math.unit(50, "lb"),
  18735. name: "Front",
  18736. image: {
  18737. source: "./media/characters/nino/front.svg"
  18738. }
  18739. },
  18740. },
  18741. [
  18742. {
  18743. name: "Normal",
  18744. height: math.unit(1.54, "feet"),
  18745. default: true
  18746. },
  18747. ]
  18748. ))
  18749. characterMakers.push(() => makeCharacter(
  18750. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18751. {
  18752. front: {
  18753. height: math.unit(1.49, "feet"),
  18754. weight: math.unit(45, "lb"),
  18755. name: "Front",
  18756. image: {
  18757. source: "./media/characters/viola/front.svg"
  18758. }
  18759. },
  18760. },
  18761. [
  18762. {
  18763. name: "Normal",
  18764. height: math.unit(1.49, "feet"),
  18765. default: true
  18766. },
  18767. ]
  18768. ))
  18769. characterMakers.push(() => makeCharacter(
  18770. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18771. {
  18772. front: {
  18773. height: math.unit(6 + 5 / 12, "feet"),
  18774. weight: math.unit(580, "lb"),
  18775. name: "Front",
  18776. image: {
  18777. source: "./media/characters/atlas/front.svg",
  18778. extra: 298.5 / 290,
  18779. bottom: 0.015
  18780. }
  18781. },
  18782. },
  18783. [
  18784. {
  18785. name: "Normal",
  18786. height: math.unit(6 + 5 / 12, "feet"),
  18787. default: true
  18788. },
  18789. ]
  18790. ))
  18791. characterMakers.push(() => makeCharacter(
  18792. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18793. {
  18794. side: {
  18795. height: math.unit(15.6, "inches"),
  18796. weight: math.unit(10, "lb"),
  18797. name: "Side",
  18798. image: {
  18799. source: "./media/characters/davy/side.svg",
  18800. extra: 200 / 170,
  18801. bottom: 0.01
  18802. }
  18803. },
  18804. },
  18805. [
  18806. {
  18807. name: "Normal",
  18808. height: math.unit(15.6, "inches"),
  18809. default: true
  18810. },
  18811. ]
  18812. ))
  18813. characterMakers.push(() => makeCharacter(
  18814. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18815. {
  18816. side: {
  18817. height: math.unit(4 + 8 / 12, "feet"),
  18818. weight: math.unit(166, "lb"),
  18819. name: "Side",
  18820. image: {
  18821. source: "./media/characters/fiona/side.svg",
  18822. extra: 232 / 220,
  18823. bottom: 0.03
  18824. }
  18825. },
  18826. },
  18827. [
  18828. {
  18829. name: "Normal",
  18830. height: math.unit(4 + 8 / 12, "feet"),
  18831. default: true
  18832. },
  18833. ]
  18834. ))
  18835. characterMakers.push(() => makeCharacter(
  18836. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18837. {
  18838. front: {
  18839. height: math.unit(26, "inches"),
  18840. weight: math.unit(35, "lb"),
  18841. name: "Front",
  18842. image: {
  18843. source: "./media/characters/lyla/front.svg",
  18844. bottom: 0.1
  18845. }
  18846. },
  18847. },
  18848. [
  18849. {
  18850. name: "Normal",
  18851. height: math.unit(3, "feet"),
  18852. default: true
  18853. },
  18854. ]
  18855. ))
  18856. characterMakers.push(() => makeCharacter(
  18857. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18858. {
  18859. side: {
  18860. height: math.unit(1.8, "feet"),
  18861. weight: math.unit(44, "lb"),
  18862. name: "Side",
  18863. image: {
  18864. source: "./media/characters/perseus/side.svg",
  18865. bottom: 0.21
  18866. }
  18867. },
  18868. },
  18869. [
  18870. {
  18871. name: "Normal",
  18872. height: math.unit(1.8, "feet"),
  18873. default: true
  18874. },
  18875. ]
  18876. ))
  18877. characterMakers.push(() => makeCharacter(
  18878. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18879. {
  18880. side: {
  18881. height: math.unit(4 + 2 / 12, "feet"),
  18882. weight: math.unit(20, "lb"),
  18883. name: "Side",
  18884. image: {
  18885. source: "./media/characters/remus/side.svg"
  18886. }
  18887. },
  18888. },
  18889. [
  18890. {
  18891. name: "Normal",
  18892. height: math.unit(4 + 2 / 12, "feet"),
  18893. default: true
  18894. },
  18895. ]
  18896. ))
  18897. characterMakers.push(() => makeCharacter(
  18898. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18899. {
  18900. front: {
  18901. height: math.unit(4 + 11 / 12, "feet"),
  18902. weight: math.unit(114, "lb"),
  18903. name: "Front",
  18904. image: {
  18905. source: "./media/characters/raf/front.svg",
  18906. extra: 1504/1339,
  18907. bottom: 26/1530
  18908. }
  18909. },
  18910. side: {
  18911. height: math.unit(4 + 11 / 12, "feet"),
  18912. weight: math.unit(114, "lb"),
  18913. name: "Side",
  18914. image: {
  18915. source: "./media/characters/raf/side.svg",
  18916. extra: 1466/1316,
  18917. bottom: 29/1495
  18918. }
  18919. },
  18920. paw: {
  18921. height: math.unit(1.45, "feet"),
  18922. name: "Paw",
  18923. image: {
  18924. source: "./media/characters/raf/paw.svg"
  18925. },
  18926. extraAttributes: {
  18927. "toeSize": {
  18928. name: "Toe Size",
  18929. power: 2,
  18930. type: "area",
  18931. base: math.unit(0.004, "m^2")
  18932. },
  18933. "padSize": {
  18934. name: "Pad Size",
  18935. power: 2,
  18936. type: "area",
  18937. base: math.unit(0.04, "m^2")
  18938. },
  18939. "footSize": {
  18940. name: "Foot Size",
  18941. power: 2,
  18942. type: "area",
  18943. base: math.unit(0.08, "m^2")
  18944. },
  18945. }
  18946. },
  18947. },
  18948. [
  18949. {
  18950. name: "Micro",
  18951. height: math.unit(2, "inches")
  18952. },
  18953. {
  18954. name: "Normal",
  18955. height: math.unit(4 + 11 / 12, "feet"),
  18956. default: true
  18957. },
  18958. {
  18959. name: "Macro",
  18960. height: math.unit(70, "feet")
  18961. },
  18962. ]
  18963. ))
  18964. characterMakers.push(() => makeCharacter(
  18965. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18966. {
  18967. front: {
  18968. height: math.unit(1.5, "meters"),
  18969. weight: math.unit(68, "kg"),
  18970. name: "Front",
  18971. image: {
  18972. source: "./media/characters/liam-einarr/front.svg",
  18973. extra: 2822 / 2666
  18974. }
  18975. },
  18976. back: {
  18977. height: math.unit(1.5, "meters"),
  18978. weight: math.unit(68, "kg"),
  18979. name: "Back",
  18980. image: {
  18981. source: "./media/characters/liam-einarr/back.svg",
  18982. extra: 2822 / 2666,
  18983. bottom: 0.015
  18984. }
  18985. },
  18986. },
  18987. [
  18988. {
  18989. name: "Normal",
  18990. height: math.unit(1.5, "meters"),
  18991. default: true
  18992. },
  18993. {
  18994. name: "Macro",
  18995. height: math.unit(150, "meters")
  18996. },
  18997. {
  18998. name: "Megamacro",
  18999. height: math.unit(35, "km")
  19000. },
  19001. ]
  19002. ))
  19003. characterMakers.push(() => makeCharacter(
  19004. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19005. {
  19006. front: {
  19007. height: math.unit(6, "feet"),
  19008. weight: math.unit(75, "kg"),
  19009. name: "Front",
  19010. image: {
  19011. source: "./media/characters/linda/front.svg",
  19012. extra: 930 / 874,
  19013. bottom: 0.004
  19014. }
  19015. },
  19016. },
  19017. [
  19018. {
  19019. name: "Normal",
  19020. height: math.unit(6, "feet"),
  19021. default: true
  19022. },
  19023. ]
  19024. ))
  19025. characterMakers.push(() => makeCharacter(
  19026. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19027. {
  19028. front: {
  19029. height: math.unit(6 + 8 / 12, "feet"),
  19030. weight: math.unit(220, "lb"),
  19031. name: "Front",
  19032. image: {
  19033. source: "./media/characters/caylex/front.svg",
  19034. extra: 821 / 772,
  19035. bottom: 0.07
  19036. }
  19037. },
  19038. back: {
  19039. height: math.unit(6 + 8 / 12, "feet"),
  19040. weight: math.unit(220, "lb"),
  19041. name: "Back",
  19042. image: {
  19043. source: "./media/characters/caylex/back.svg",
  19044. extra: 821 / 772,
  19045. bottom: 0.022
  19046. }
  19047. },
  19048. hand: {
  19049. height: math.unit(1.25, "feet"),
  19050. name: "Hand",
  19051. image: {
  19052. source: "./media/characters/caylex/hand.svg"
  19053. }
  19054. },
  19055. foot: {
  19056. height: math.unit(1.6, "feet"),
  19057. name: "Foot",
  19058. image: {
  19059. source: "./media/characters/caylex/foot.svg"
  19060. }
  19061. },
  19062. armored: {
  19063. height: math.unit(6 + 8 / 12, "feet"),
  19064. weight: math.unit(250, "lb"),
  19065. name: "Armored",
  19066. image: {
  19067. source: "./media/characters/caylex/armored.svg",
  19068. extra: 1420 / 1310,
  19069. bottom: 0.045
  19070. }
  19071. },
  19072. },
  19073. [
  19074. {
  19075. name: "Normal",
  19076. height: math.unit(6 + 8 / 12, "feet"),
  19077. default: true
  19078. },
  19079. {
  19080. name: "Normal+",
  19081. height: math.unit(12, "feet")
  19082. },
  19083. ]
  19084. ))
  19085. characterMakers.push(() => makeCharacter(
  19086. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19087. {
  19088. front: {
  19089. height: math.unit(7 + 6 / 12, "feet"),
  19090. weight: math.unit(288, "lb"),
  19091. name: "Front",
  19092. image: {
  19093. source: "./media/characters/alana/front.svg",
  19094. extra: 679 / 653,
  19095. bottom: 22.5 / 701
  19096. }
  19097. },
  19098. },
  19099. [
  19100. {
  19101. name: "Normal",
  19102. height: math.unit(7 + 6 / 12, "feet")
  19103. },
  19104. {
  19105. name: "Large",
  19106. height: math.unit(50, "feet")
  19107. },
  19108. {
  19109. name: "Macro",
  19110. height: math.unit(100, "feet"),
  19111. default: true
  19112. },
  19113. {
  19114. name: "Macro+",
  19115. height: math.unit(200, "feet")
  19116. },
  19117. ]
  19118. ))
  19119. characterMakers.push(() => makeCharacter(
  19120. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19121. {
  19122. front: {
  19123. height: math.unit(6 + 1 / 12, "feet"),
  19124. weight: math.unit(210, "lb"),
  19125. name: "Front",
  19126. image: {
  19127. source: "./media/characters/hasani/front.svg",
  19128. extra: 244 / 232,
  19129. bottom: 0.01
  19130. }
  19131. },
  19132. back: {
  19133. height: math.unit(6 + 1 / 12, "feet"),
  19134. weight: math.unit(210, "lb"),
  19135. name: "Back",
  19136. image: {
  19137. source: "./media/characters/hasani/back.svg",
  19138. extra: 244 / 232,
  19139. bottom: 0.01
  19140. }
  19141. },
  19142. },
  19143. [
  19144. {
  19145. name: "Normal",
  19146. height: math.unit(6 + 1 / 12, "feet")
  19147. },
  19148. {
  19149. name: "Macro",
  19150. height: math.unit(175, "feet"),
  19151. default: true
  19152. },
  19153. ]
  19154. ))
  19155. characterMakers.push(() => makeCharacter(
  19156. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19157. {
  19158. front: {
  19159. height: math.unit(1.82, "meters"),
  19160. weight: math.unit(140, "lb"),
  19161. name: "Front",
  19162. image: {
  19163. source: "./media/characters/nita/front.svg",
  19164. extra: 2473 / 2363,
  19165. bottom: 0.01
  19166. }
  19167. },
  19168. },
  19169. [
  19170. {
  19171. name: "Normal",
  19172. height: math.unit(1.82, "m")
  19173. },
  19174. {
  19175. name: "Macro",
  19176. height: math.unit(300, "m")
  19177. },
  19178. {
  19179. name: "Mistake Canon",
  19180. height: math.unit(0.5, "miles"),
  19181. default: true
  19182. },
  19183. {
  19184. name: "Big Mistake",
  19185. height: math.unit(13, "miles")
  19186. },
  19187. {
  19188. name: "Playing God",
  19189. height: math.unit(2450, "miles")
  19190. },
  19191. ]
  19192. ))
  19193. characterMakers.push(() => makeCharacter(
  19194. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19195. {
  19196. front: {
  19197. height: math.unit(4, "feet"),
  19198. weight: math.unit(120, "lb"),
  19199. name: "Front",
  19200. image: {
  19201. source: "./media/characters/shiriko/front.svg",
  19202. extra: 970/934,
  19203. bottom: 5/975
  19204. }
  19205. },
  19206. },
  19207. [
  19208. {
  19209. name: "Normal",
  19210. height: math.unit(4, "feet"),
  19211. default: true
  19212. },
  19213. ]
  19214. ))
  19215. characterMakers.push(() => makeCharacter(
  19216. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19217. {
  19218. front: {
  19219. height: math.unit(6, "feet"),
  19220. name: "front",
  19221. image: {
  19222. source: "./media/characters/deja/front.svg",
  19223. extra: 926 / 840,
  19224. bottom: 0.07
  19225. }
  19226. },
  19227. },
  19228. [
  19229. {
  19230. name: "Planck Length",
  19231. height: math.unit(1.6e-35, "meters")
  19232. },
  19233. {
  19234. name: "Normal",
  19235. height: math.unit(30.48, "meters"),
  19236. default: true
  19237. },
  19238. {
  19239. name: "Universal",
  19240. height: math.unit(8.8e26, "meters")
  19241. },
  19242. ]
  19243. ))
  19244. characterMakers.push(() => makeCharacter(
  19245. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19246. {
  19247. side: {
  19248. height: math.unit(8, "feet"),
  19249. weight: math.unit(6300, "lb"),
  19250. name: "Side",
  19251. image: {
  19252. source: "./media/characters/anima/side.svg",
  19253. bottom: 0.035
  19254. }
  19255. },
  19256. },
  19257. [
  19258. {
  19259. name: "Normal",
  19260. height: math.unit(8, "feet"),
  19261. default: true
  19262. },
  19263. ]
  19264. ))
  19265. characterMakers.push(() => makeCharacter(
  19266. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19267. {
  19268. front: {
  19269. height: math.unit(8, "feet"),
  19270. weight: math.unit(350, "lb"),
  19271. name: "Front",
  19272. image: {
  19273. source: "./media/characters/bianca/front.svg",
  19274. extra: 234 / 225,
  19275. bottom: 0.03
  19276. }
  19277. },
  19278. },
  19279. [
  19280. {
  19281. name: "Normal",
  19282. height: math.unit(8, "feet"),
  19283. default: true
  19284. },
  19285. ]
  19286. ))
  19287. characterMakers.push(() => makeCharacter(
  19288. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19289. {
  19290. front: {
  19291. height: math.unit(11 + 5/12, "feet"),
  19292. weight: math.unit(1200, "lb"),
  19293. name: "Front",
  19294. image: {
  19295. source: "./media/characters/adinia/front.svg",
  19296. extra: 1767/1641,
  19297. bottom: 44/1811
  19298. },
  19299. extraAttributes: {
  19300. "energyIntake": {
  19301. name: "Energy Intake",
  19302. power: 3,
  19303. type: "energy",
  19304. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19305. },
  19306. }
  19307. },
  19308. back: {
  19309. height: math.unit(11 + 5/12, "feet"),
  19310. weight: math.unit(1200, "lb"),
  19311. name: "Back",
  19312. image: {
  19313. source: "./media/characters/adinia/back.svg",
  19314. extra: 1834/1684,
  19315. bottom: 14/1848
  19316. },
  19317. extraAttributes: {
  19318. "energyIntake": {
  19319. name: "Energy Intake",
  19320. power: 3,
  19321. type: "energy",
  19322. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19323. },
  19324. }
  19325. },
  19326. maw: {
  19327. height: math.unit(3.79, "feet"),
  19328. name: "Maw",
  19329. image: {
  19330. source: "./media/characters/adinia/maw.svg"
  19331. }
  19332. },
  19333. rump: {
  19334. height: math.unit(4.6, "feet"),
  19335. name: "Rump",
  19336. image: {
  19337. source: "./media/characters/adinia/rump.svg"
  19338. }
  19339. },
  19340. },
  19341. [
  19342. {
  19343. name: "Normal",
  19344. height: math.unit(11 + 5 / 12, "feet"),
  19345. default: true
  19346. },
  19347. ]
  19348. ))
  19349. characterMakers.push(() => makeCharacter(
  19350. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19351. {
  19352. front: {
  19353. height: math.unit(3, "meters"),
  19354. weight: math.unit(200, "kg"),
  19355. name: "Front",
  19356. image: {
  19357. source: "./media/characters/lykasa/front.svg",
  19358. extra: 1076 / 976,
  19359. bottom: 0.06
  19360. }
  19361. },
  19362. },
  19363. [
  19364. {
  19365. name: "Normal",
  19366. height: math.unit(3, "meters")
  19367. },
  19368. {
  19369. name: "Kaiju",
  19370. height: math.unit(120, "meters"),
  19371. default: true
  19372. },
  19373. {
  19374. name: "Mega Kaiju",
  19375. height: math.unit(240, "km")
  19376. },
  19377. {
  19378. name: "Giga Kaiju",
  19379. height: math.unit(400, "megameters")
  19380. },
  19381. {
  19382. name: "Tera Kaiju",
  19383. height: math.unit(800, "gigameters")
  19384. },
  19385. {
  19386. name: "Kaiju Dragon Goddess",
  19387. height: math.unit(26, "zettaparsecs")
  19388. },
  19389. ]
  19390. ))
  19391. characterMakers.push(() => makeCharacter(
  19392. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19393. {
  19394. side: {
  19395. height: math.unit(283 / 124 * 6, "feet"),
  19396. weight: math.unit(35000, "lb"),
  19397. name: "Side",
  19398. image: {
  19399. source: "./media/characters/malfaren/side.svg",
  19400. extra: 1310/529,
  19401. bottom: 24/1334
  19402. }
  19403. },
  19404. front: {
  19405. height: math.unit(22.36, "feet"),
  19406. weight: math.unit(35000, "lb"),
  19407. name: "Front",
  19408. image: {
  19409. source: "./media/characters/malfaren/front.svg",
  19410. extra: 1237/1115,
  19411. bottom: 32/1269
  19412. }
  19413. },
  19414. maw: {
  19415. height: math.unit(6.9, "feet"),
  19416. name: "Maw",
  19417. image: {
  19418. source: "./media/characters/malfaren/maw.svg"
  19419. }
  19420. },
  19421. dick: {
  19422. height: math.unit(6.19, "feet"),
  19423. name: "Dick",
  19424. image: {
  19425. source: "./media/characters/malfaren/dick.svg"
  19426. }
  19427. },
  19428. eye: {
  19429. height: math.unit(0.69, "feet"),
  19430. name: "Eye",
  19431. image: {
  19432. source: "./media/characters/malfaren/eye.svg"
  19433. }
  19434. },
  19435. },
  19436. [
  19437. {
  19438. name: "Big",
  19439. height: math.unit(283 / 162 * 6, "feet"),
  19440. },
  19441. {
  19442. name: "Bigger",
  19443. height: math.unit(283 / 124 * 6, "feet")
  19444. },
  19445. {
  19446. name: "Massive",
  19447. height: math.unit(283 / 92 * 6, "feet"),
  19448. default: true
  19449. },
  19450. {
  19451. name: "👀💦",
  19452. height: math.unit(283 / 73 * 6, "feet"),
  19453. },
  19454. ]
  19455. ))
  19456. characterMakers.push(() => makeCharacter(
  19457. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19458. {
  19459. front: {
  19460. height: math.unit(1.7, "m"),
  19461. weight: math.unit(70, "kg"),
  19462. name: "Front",
  19463. image: {
  19464. source: "./media/characters/kernel/front.svg",
  19465. extra: 222 / 210,
  19466. bottom: 0.007
  19467. }
  19468. },
  19469. },
  19470. [
  19471. {
  19472. name: "Nano",
  19473. height: math.unit(17, "micrometers")
  19474. },
  19475. {
  19476. name: "Micro",
  19477. height: math.unit(1.7, "mm")
  19478. },
  19479. {
  19480. name: "Small",
  19481. height: math.unit(1.7, "cm")
  19482. },
  19483. {
  19484. name: "Normal",
  19485. height: math.unit(1.7, "m"),
  19486. default: true
  19487. },
  19488. ]
  19489. ))
  19490. characterMakers.push(() => makeCharacter(
  19491. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19492. {
  19493. front: {
  19494. height: math.unit(1.75, "meters"),
  19495. weight: math.unit(65, "kg"),
  19496. name: "Front",
  19497. image: {
  19498. source: "./media/characters/jayne-folest/front.svg",
  19499. extra: 2115 / 2007,
  19500. bottom: 0.02
  19501. }
  19502. },
  19503. back: {
  19504. height: math.unit(1.75, "meters"),
  19505. weight: math.unit(65, "kg"),
  19506. name: "Back",
  19507. image: {
  19508. source: "./media/characters/jayne-folest/back.svg",
  19509. extra: 2115 / 2007,
  19510. bottom: 0.005
  19511. }
  19512. },
  19513. frontClothed: {
  19514. height: math.unit(1.75, "meters"),
  19515. weight: math.unit(65, "kg"),
  19516. name: "Front (Clothed)",
  19517. image: {
  19518. source: "./media/characters/jayne-folest/front-clothed.svg",
  19519. extra: 2115 / 2007,
  19520. bottom: 0.035
  19521. }
  19522. },
  19523. hand: {
  19524. height: math.unit(1 / 1.260, "feet"),
  19525. name: "Hand",
  19526. image: {
  19527. source: "./media/characters/jayne-folest/hand.svg"
  19528. }
  19529. },
  19530. foot: {
  19531. height: math.unit(1 / 0.918, "feet"),
  19532. name: "Foot",
  19533. image: {
  19534. source: "./media/characters/jayne-folest/foot.svg"
  19535. }
  19536. },
  19537. },
  19538. [
  19539. {
  19540. name: "Micro",
  19541. height: math.unit(4, "cm")
  19542. },
  19543. {
  19544. name: "Normal",
  19545. height: math.unit(1.75, "meters")
  19546. },
  19547. {
  19548. name: "Macro",
  19549. height: math.unit(47.5, "meters"),
  19550. default: true
  19551. },
  19552. ]
  19553. ))
  19554. characterMakers.push(() => makeCharacter(
  19555. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19556. {
  19557. front: {
  19558. height: math.unit(180, "cm"),
  19559. weight: math.unit(70, "kg"),
  19560. name: "Front",
  19561. image: {
  19562. source: "./media/characters/algier/front.svg",
  19563. extra: 596 / 572,
  19564. bottom: 0.04
  19565. }
  19566. },
  19567. back: {
  19568. height: math.unit(180, "cm"),
  19569. weight: math.unit(70, "kg"),
  19570. name: "Back",
  19571. image: {
  19572. source: "./media/characters/algier/back.svg",
  19573. extra: 596 / 572,
  19574. bottom: 0.025
  19575. }
  19576. },
  19577. frontdressed: {
  19578. height: math.unit(180, "cm"),
  19579. weight: math.unit(150, "kg"),
  19580. name: "Front-dressed",
  19581. image: {
  19582. source: "./media/characters/algier/front-dressed.svg",
  19583. extra: 596 / 572,
  19584. bottom: 0.038
  19585. }
  19586. },
  19587. },
  19588. [
  19589. {
  19590. name: "Micro",
  19591. height: math.unit(5, "cm")
  19592. },
  19593. {
  19594. name: "Normal",
  19595. height: math.unit(180, "cm"),
  19596. default: true
  19597. },
  19598. {
  19599. name: "Macro",
  19600. height: math.unit(64, "m")
  19601. },
  19602. ]
  19603. ))
  19604. characterMakers.push(() => makeCharacter(
  19605. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19606. {
  19607. upright: {
  19608. height: math.unit(7, "feet"),
  19609. weight: math.unit(300, "lb"),
  19610. name: "Upright",
  19611. image: {
  19612. source: "./media/characters/pretzel/upright.svg",
  19613. extra: 534 / 522,
  19614. bottom: 0.065
  19615. }
  19616. },
  19617. sprawling: {
  19618. height: math.unit(3.75, "feet"),
  19619. weight: math.unit(300, "lb"),
  19620. name: "Sprawling",
  19621. image: {
  19622. source: "./media/characters/pretzel/sprawling.svg",
  19623. extra: 314 / 281,
  19624. bottom: 0.1
  19625. }
  19626. },
  19627. tongue: {
  19628. height: math.unit(2, "feet"),
  19629. name: "Tongue",
  19630. image: {
  19631. source: "./media/characters/pretzel/tongue.svg"
  19632. }
  19633. },
  19634. },
  19635. [
  19636. {
  19637. name: "Normal",
  19638. height: math.unit(7, "feet"),
  19639. default: true
  19640. },
  19641. {
  19642. name: "Oversized",
  19643. height: math.unit(15, "feet")
  19644. },
  19645. {
  19646. name: "Huge",
  19647. height: math.unit(30, "feet")
  19648. },
  19649. {
  19650. name: "Macro",
  19651. height: math.unit(250, "feet")
  19652. },
  19653. ]
  19654. ))
  19655. characterMakers.push(() => makeCharacter(
  19656. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19657. {
  19658. sideFront: {
  19659. height: math.unit(5 + 2 / 12, "feet"),
  19660. weight: math.unit(120, "lb"),
  19661. name: "Front Side",
  19662. image: {
  19663. source: "./media/characters/roxi/side-front.svg",
  19664. extra: 2924 / 2717,
  19665. bottom: 0.08
  19666. }
  19667. },
  19668. sideBack: {
  19669. height: math.unit(5 + 2 / 12, "feet"),
  19670. weight: math.unit(120, "lb"),
  19671. name: "Back Side",
  19672. image: {
  19673. source: "./media/characters/roxi/side-back.svg",
  19674. extra: 2904 / 2693,
  19675. bottom: 0.06
  19676. }
  19677. },
  19678. front: {
  19679. height: math.unit(5 + 2 / 12, "feet"),
  19680. weight: math.unit(120, "lb"),
  19681. name: "Front",
  19682. image: {
  19683. source: "./media/characters/roxi/front.svg",
  19684. extra: 2028 / 1907,
  19685. bottom: 0.01
  19686. }
  19687. },
  19688. frontAlt: {
  19689. height: math.unit(5 + 2 / 12, "feet"),
  19690. weight: math.unit(120, "lb"),
  19691. name: "Front (Alt)",
  19692. image: {
  19693. source: "./media/characters/roxi/front-alt.svg",
  19694. extra: 1828 / 1798,
  19695. bottom: 0.01
  19696. }
  19697. },
  19698. sitting: {
  19699. height: math.unit(2.8, "feet"),
  19700. weight: math.unit(120, "lb"),
  19701. name: "Sitting",
  19702. image: {
  19703. source: "./media/characters/roxi/sitting.svg",
  19704. extra: 2660 / 2462,
  19705. bottom: 0.1
  19706. }
  19707. },
  19708. },
  19709. [
  19710. {
  19711. name: "Normal",
  19712. height: math.unit(5 + 2 / 12, "feet"),
  19713. default: true
  19714. },
  19715. ]
  19716. ))
  19717. characterMakers.push(() => makeCharacter(
  19718. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19719. {
  19720. side: {
  19721. height: math.unit(55, "feet"),
  19722. weight: math.unit(153, "tons"),
  19723. name: "Side",
  19724. image: {
  19725. source: "./media/characters/shadow/side.svg",
  19726. extra: 701 / 628,
  19727. bottom: 0.02
  19728. }
  19729. },
  19730. flying: {
  19731. height: math.unit(145, "feet"),
  19732. weight: math.unit(153, "tons"),
  19733. name: "Flying",
  19734. image: {
  19735. source: "./media/characters/shadow/flying.svg"
  19736. }
  19737. },
  19738. },
  19739. [
  19740. {
  19741. name: "Normal",
  19742. height: math.unit(55, "feet"),
  19743. default: true
  19744. },
  19745. ]
  19746. ))
  19747. characterMakers.push(() => makeCharacter(
  19748. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19749. {
  19750. front: {
  19751. height: math.unit(6, "feet"),
  19752. weight: math.unit(200, "lb"),
  19753. name: "Front",
  19754. image: {
  19755. source: "./media/characters/marcie/front.svg",
  19756. extra: 960 / 876,
  19757. bottom: 58 / 1017.87
  19758. }
  19759. },
  19760. },
  19761. [
  19762. {
  19763. name: "Macro",
  19764. height: math.unit(1, "mile"),
  19765. default: true
  19766. },
  19767. ]
  19768. ))
  19769. characterMakers.push(() => makeCharacter(
  19770. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19771. {
  19772. front: {
  19773. height: math.unit(7, "feet"),
  19774. weight: math.unit(200, "lb"),
  19775. name: "Front",
  19776. image: {
  19777. source: "./media/characters/kachina/front.svg",
  19778. extra: 1290.68 / 1119,
  19779. bottom: 36.5 / 1327.18
  19780. }
  19781. },
  19782. },
  19783. [
  19784. {
  19785. name: "Normal",
  19786. height: math.unit(7, "feet"),
  19787. default: true
  19788. },
  19789. ]
  19790. ))
  19791. characterMakers.push(() => makeCharacter(
  19792. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19793. {
  19794. looking: {
  19795. height: math.unit(2, "meters"),
  19796. weight: math.unit(300, "kg"),
  19797. name: "Looking",
  19798. image: {
  19799. source: "./media/characters/kash/looking.svg",
  19800. extra: 474 / 344,
  19801. bottom: 0.03
  19802. }
  19803. },
  19804. side: {
  19805. height: math.unit(2, "meters"),
  19806. weight: math.unit(300, "kg"),
  19807. name: "Side",
  19808. image: {
  19809. source: "./media/characters/kash/side.svg",
  19810. extra: 302 / 251,
  19811. bottom: 0.03
  19812. }
  19813. },
  19814. front: {
  19815. height: math.unit(2, "meters"),
  19816. weight: math.unit(300, "kg"),
  19817. name: "Front",
  19818. image: {
  19819. source: "./media/characters/kash/front.svg",
  19820. extra: 495 / 360,
  19821. bottom: 0.015
  19822. }
  19823. },
  19824. },
  19825. [
  19826. {
  19827. name: "Normal",
  19828. height: math.unit(2, "meters"),
  19829. default: true
  19830. },
  19831. {
  19832. name: "Big",
  19833. height: math.unit(3, "meters")
  19834. },
  19835. {
  19836. name: "Large",
  19837. height: math.unit(5, "meters")
  19838. },
  19839. ]
  19840. ))
  19841. characterMakers.push(() => makeCharacter(
  19842. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19843. {
  19844. feeding: {
  19845. height: math.unit(6.7, "feet"),
  19846. weight: math.unit(350, "lb"),
  19847. name: "Feeding",
  19848. image: {
  19849. source: "./media/characters/lalim/feeding.svg",
  19850. }
  19851. },
  19852. },
  19853. [
  19854. {
  19855. name: "Normal",
  19856. height: math.unit(6.7, "feet"),
  19857. default: true
  19858. },
  19859. ]
  19860. ))
  19861. characterMakers.push(() => makeCharacter(
  19862. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19863. {
  19864. front: {
  19865. height: math.unit(9.5, "feet"),
  19866. weight: math.unit(600, "lb"),
  19867. name: "Front",
  19868. image: {
  19869. source: "./media/characters/de'vout/front.svg",
  19870. extra: 1443 / 1328,
  19871. bottom: 0.025
  19872. }
  19873. },
  19874. back: {
  19875. height: math.unit(9.5, "feet"),
  19876. weight: math.unit(600, "lb"),
  19877. name: "Back",
  19878. image: {
  19879. source: "./media/characters/de'vout/back.svg",
  19880. extra: 1443 / 1328
  19881. }
  19882. },
  19883. frontDressed: {
  19884. height: math.unit(9.5, "feet"),
  19885. weight: math.unit(600, "lb"),
  19886. name: "Front (Dressed",
  19887. image: {
  19888. source: "./media/characters/de'vout/front-dressed.svg",
  19889. extra: 1443 / 1328,
  19890. bottom: 0.025
  19891. }
  19892. },
  19893. backDressed: {
  19894. height: math.unit(9.5, "feet"),
  19895. weight: math.unit(600, "lb"),
  19896. name: "Back (Dressed",
  19897. image: {
  19898. source: "./media/characters/de'vout/back-dressed.svg",
  19899. extra: 1443 / 1328
  19900. }
  19901. },
  19902. },
  19903. [
  19904. {
  19905. name: "Normal",
  19906. height: math.unit(9.5, "feet"),
  19907. default: true
  19908. },
  19909. ]
  19910. ))
  19911. characterMakers.push(() => makeCharacter(
  19912. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19913. {
  19914. front: {
  19915. height: math.unit(8, "feet"),
  19916. weight: math.unit(225, "lb"),
  19917. name: "Front",
  19918. image: {
  19919. source: "./media/characters/talana/front.svg",
  19920. extra: 1410 / 1300,
  19921. bottom: 0.015
  19922. }
  19923. },
  19924. frontDressed: {
  19925. height: math.unit(8, "feet"),
  19926. weight: math.unit(225, "lb"),
  19927. name: "Front (Dressed",
  19928. image: {
  19929. source: "./media/characters/talana/front-dressed.svg",
  19930. extra: 1410 / 1300,
  19931. bottom: 0.015
  19932. }
  19933. },
  19934. },
  19935. [
  19936. {
  19937. name: "Normal",
  19938. height: math.unit(8, "feet"),
  19939. default: true
  19940. },
  19941. ]
  19942. ))
  19943. characterMakers.push(() => makeCharacter(
  19944. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19945. {
  19946. side: {
  19947. height: math.unit(7.2, "feet"),
  19948. weight: math.unit(150, "lb"),
  19949. name: "Side",
  19950. image: {
  19951. source: "./media/characters/xeauvok/side.svg",
  19952. extra: 1975 / 1523,
  19953. bottom: 0.07
  19954. }
  19955. },
  19956. },
  19957. [
  19958. {
  19959. name: "Normal",
  19960. height: math.unit(7.2, "feet"),
  19961. default: true
  19962. },
  19963. ]
  19964. ))
  19965. characterMakers.push(() => makeCharacter(
  19966. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19967. {
  19968. side: {
  19969. height: math.unit(4, "meters"),
  19970. weight: math.unit(2200, "kg"),
  19971. name: "Side",
  19972. image: {
  19973. source: "./media/characters/zara/side.svg",
  19974. extra: 765/744,
  19975. bottom: 156/921
  19976. }
  19977. },
  19978. },
  19979. [
  19980. {
  19981. name: "Normal",
  19982. height: math.unit(4, "meters"),
  19983. default: true
  19984. },
  19985. ]
  19986. ))
  19987. characterMakers.push(() => makeCharacter(
  19988. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19989. {
  19990. side: {
  19991. height: math.unit(6, "feet"),
  19992. weight: math.unit(150, "lb"),
  19993. name: "Side",
  19994. image: {
  19995. source: "./media/characters/richard-dragon/side.svg",
  19996. extra: 845 / 340,
  19997. bottom: 0.017
  19998. }
  19999. },
  20000. maw: {
  20001. height: math.unit(2.97, "feet"),
  20002. name: "Maw",
  20003. image: {
  20004. source: "./media/characters/richard-dragon/maw.svg"
  20005. }
  20006. },
  20007. },
  20008. [
  20009. ]
  20010. ))
  20011. characterMakers.push(() => makeCharacter(
  20012. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20013. {
  20014. front: {
  20015. height: math.unit(4, "feet"),
  20016. weight: math.unit(100, "lb"),
  20017. name: "Front",
  20018. image: {
  20019. source: "./media/characters/richard-smeargle/front.svg",
  20020. extra: 2952 / 2820,
  20021. bottom: 0.028
  20022. }
  20023. },
  20024. },
  20025. [
  20026. {
  20027. name: "Normal",
  20028. height: math.unit(4, "feet"),
  20029. default: true
  20030. },
  20031. {
  20032. name: "Dynamax",
  20033. height: math.unit(20, "meters")
  20034. },
  20035. ]
  20036. ))
  20037. characterMakers.push(() => makeCharacter(
  20038. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20039. {
  20040. front: {
  20041. height: math.unit(6, "feet"),
  20042. weight: math.unit(110, "lb"),
  20043. name: "Front",
  20044. image: {
  20045. source: "./media/characters/klay/front.svg",
  20046. extra: 962 / 883,
  20047. bottom: 0.04
  20048. }
  20049. },
  20050. back: {
  20051. height: math.unit(6, "feet"),
  20052. weight: math.unit(110, "lb"),
  20053. name: "Back",
  20054. image: {
  20055. source: "./media/characters/klay/back.svg",
  20056. extra: 962 / 883
  20057. }
  20058. },
  20059. beans: {
  20060. height: math.unit(1.15, "feet"),
  20061. name: "Beans",
  20062. image: {
  20063. source: "./media/characters/klay/beans.svg"
  20064. }
  20065. },
  20066. },
  20067. [
  20068. {
  20069. name: "Micro",
  20070. height: math.unit(6, "inches")
  20071. },
  20072. {
  20073. name: "Mini",
  20074. height: math.unit(3, "feet")
  20075. },
  20076. {
  20077. name: "Normal",
  20078. height: math.unit(6, "feet"),
  20079. default: true
  20080. },
  20081. {
  20082. name: "Big",
  20083. height: math.unit(25, "feet")
  20084. },
  20085. {
  20086. name: "Macro",
  20087. height: math.unit(100, "feet")
  20088. },
  20089. {
  20090. name: "Megamacro",
  20091. height: math.unit(400, "feet")
  20092. },
  20093. ]
  20094. ))
  20095. characterMakers.push(() => makeCharacter(
  20096. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20097. {
  20098. front: {
  20099. height: math.unit(6, "feet"),
  20100. weight: math.unit(160, "lb"),
  20101. name: "Front",
  20102. image: {
  20103. source: "./media/characters/marcus/front.svg",
  20104. extra: 734 / 676,
  20105. bottom: 0.03
  20106. }
  20107. },
  20108. },
  20109. [
  20110. {
  20111. name: "Little",
  20112. height: math.unit(6, "feet")
  20113. },
  20114. {
  20115. name: "Normal",
  20116. height: math.unit(110, "feet"),
  20117. default: true
  20118. },
  20119. {
  20120. name: "Macro",
  20121. height: math.unit(250, "feet")
  20122. },
  20123. {
  20124. name: "Megamacro",
  20125. height: math.unit(1000, "feet")
  20126. },
  20127. ]
  20128. ))
  20129. characterMakers.push(() => makeCharacter(
  20130. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20131. {
  20132. front: {
  20133. height: math.unit(7, "feet"),
  20134. weight: math.unit(275, "lb"),
  20135. name: "Front",
  20136. image: {
  20137. source: "./media/characters/claude-delroute/front.svg",
  20138. extra: 902/827,
  20139. bottom: 26/928
  20140. }
  20141. },
  20142. side: {
  20143. height: math.unit(7, "feet"),
  20144. weight: math.unit(275, "lb"),
  20145. name: "Side",
  20146. image: {
  20147. source: "./media/characters/claude-delroute/side.svg",
  20148. extra: 908/853,
  20149. bottom: 16/924
  20150. }
  20151. },
  20152. back: {
  20153. height: math.unit(7, "feet"),
  20154. weight: math.unit(275, "lb"),
  20155. name: "Back",
  20156. image: {
  20157. source: "./media/characters/claude-delroute/back.svg",
  20158. extra: 911/829,
  20159. bottom: 18/929
  20160. }
  20161. },
  20162. maw: {
  20163. height: math.unit(0.6407, "meters"),
  20164. name: "Maw",
  20165. image: {
  20166. source: "./media/characters/claude-delroute/maw.svg"
  20167. }
  20168. },
  20169. },
  20170. [
  20171. {
  20172. name: "Normal",
  20173. height: math.unit(7, "feet"),
  20174. default: true
  20175. },
  20176. {
  20177. name: "Lorge",
  20178. height: math.unit(20, "feet")
  20179. },
  20180. ]
  20181. ))
  20182. characterMakers.push(() => makeCharacter(
  20183. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20184. {
  20185. front: {
  20186. height: math.unit(8 + 4 / 12, "feet"),
  20187. weight: math.unit(600, "lb"),
  20188. name: "Front",
  20189. image: {
  20190. source: "./media/characters/dragonien/front.svg",
  20191. extra: 100 / 94,
  20192. bottom: 3.3 / 103.3445
  20193. }
  20194. },
  20195. back: {
  20196. height: math.unit(8 + 4 / 12, "feet"),
  20197. weight: math.unit(600, "lb"),
  20198. name: "Back",
  20199. image: {
  20200. source: "./media/characters/dragonien/back.svg",
  20201. extra: 776 / 746,
  20202. bottom: 6.4 / 782.0616
  20203. }
  20204. },
  20205. foot: {
  20206. height: math.unit(1.54, "feet"),
  20207. name: "Foot",
  20208. image: {
  20209. source: "./media/characters/dragonien/foot.svg",
  20210. }
  20211. },
  20212. },
  20213. [
  20214. {
  20215. name: "Normal",
  20216. height: math.unit(8 + 4 / 12, "feet"),
  20217. default: true
  20218. },
  20219. {
  20220. name: "Macro",
  20221. height: math.unit(200, "feet")
  20222. },
  20223. {
  20224. name: "Megamacro",
  20225. height: math.unit(1, "mile")
  20226. },
  20227. {
  20228. name: "Gigamacro",
  20229. height: math.unit(1000, "miles")
  20230. },
  20231. ]
  20232. ))
  20233. characterMakers.push(() => makeCharacter(
  20234. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20235. {
  20236. front: {
  20237. height: math.unit(5 + 2 / 12, "feet"),
  20238. weight: math.unit(110, "lb"),
  20239. name: "Front",
  20240. image: {
  20241. source: "./media/characters/desta/front.svg",
  20242. extra: 767 / 726,
  20243. bottom: 11.7 / 779
  20244. }
  20245. },
  20246. back: {
  20247. height: math.unit(5 + 2 / 12, "feet"),
  20248. weight: math.unit(110, "lb"),
  20249. name: "Back",
  20250. image: {
  20251. source: "./media/characters/desta/back.svg",
  20252. extra: 777 / 728,
  20253. bottom: 6 / 784
  20254. }
  20255. },
  20256. frontAlt: {
  20257. height: math.unit(5 + 2 / 12, "feet"),
  20258. weight: math.unit(110, "lb"),
  20259. name: "Front",
  20260. image: {
  20261. source: "./media/characters/desta/front-alt.svg",
  20262. extra: 1482 / 1417
  20263. }
  20264. },
  20265. side: {
  20266. height: math.unit(5 + 2 / 12, "feet"),
  20267. weight: math.unit(110, "lb"),
  20268. name: "Side",
  20269. image: {
  20270. source: "./media/characters/desta/side.svg",
  20271. extra: 2579 / 2491,
  20272. bottom: 0.053
  20273. }
  20274. },
  20275. },
  20276. [
  20277. {
  20278. name: "Micro",
  20279. height: math.unit(6, "inches")
  20280. },
  20281. {
  20282. name: "Normal",
  20283. height: math.unit(5 + 2 / 12, "feet"),
  20284. default: true
  20285. },
  20286. {
  20287. name: "Macro",
  20288. height: math.unit(62, "feet")
  20289. },
  20290. {
  20291. name: "Megamacro",
  20292. height: math.unit(1800, "feet")
  20293. },
  20294. ]
  20295. ))
  20296. characterMakers.push(() => makeCharacter(
  20297. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20298. {
  20299. front: {
  20300. height: math.unit(10, "feet"),
  20301. weight: math.unit(700, "lb"),
  20302. name: "Front",
  20303. image: {
  20304. source: "./media/characters/storm-alystar/front.svg",
  20305. extra: 2112 / 1898,
  20306. bottom: 0.034
  20307. }
  20308. },
  20309. },
  20310. [
  20311. {
  20312. name: "Micro",
  20313. height: math.unit(3.5, "inches")
  20314. },
  20315. {
  20316. name: "Normal",
  20317. height: math.unit(10, "feet"),
  20318. default: true
  20319. },
  20320. {
  20321. name: "Macro",
  20322. height: math.unit(400, "feet")
  20323. },
  20324. {
  20325. name: "Deific",
  20326. height: math.unit(60, "miles")
  20327. },
  20328. ]
  20329. ))
  20330. characterMakers.push(() => makeCharacter(
  20331. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20332. {
  20333. front: {
  20334. height: math.unit(2.35, "meters"),
  20335. weight: math.unit(119, "kg"),
  20336. name: "Front",
  20337. image: {
  20338. source: "./media/characters/ilia/front.svg",
  20339. extra: 1285 / 1255,
  20340. bottom: 0.06
  20341. }
  20342. },
  20343. },
  20344. [
  20345. {
  20346. name: "Normal",
  20347. height: math.unit(2.35, "meters")
  20348. },
  20349. {
  20350. name: "Macro",
  20351. height: math.unit(140, "meters"),
  20352. default: true
  20353. },
  20354. {
  20355. name: "Megamacro",
  20356. height: math.unit(100, "miles")
  20357. },
  20358. ]
  20359. ))
  20360. characterMakers.push(() => makeCharacter(
  20361. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20362. {
  20363. front: {
  20364. height: math.unit(6 + 5 / 12, "feet"),
  20365. weight: math.unit(190, "lb"),
  20366. name: "Front",
  20367. image: {
  20368. source: "./media/characters/kingdead/front.svg",
  20369. extra: 1228 / 1177
  20370. }
  20371. },
  20372. },
  20373. [
  20374. {
  20375. name: "Micro",
  20376. height: math.unit(7, "inches")
  20377. },
  20378. {
  20379. name: "Normal",
  20380. height: math.unit(6 + 5 / 12, "feet")
  20381. },
  20382. {
  20383. name: "Macro",
  20384. height: math.unit(150, "feet"),
  20385. default: true
  20386. },
  20387. {
  20388. name: "Megamacro",
  20389. height: math.unit(200, "miles")
  20390. },
  20391. ]
  20392. ))
  20393. characterMakers.push(() => makeCharacter(
  20394. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20395. {
  20396. front: {
  20397. height: math.unit(8, "feet"),
  20398. weight: math.unit(600, "lb"),
  20399. name: "Front",
  20400. image: {
  20401. source: "./media/characters/kyrehx/front.svg",
  20402. extra: 1195 / 1095,
  20403. bottom: 0.034
  20404. }
  20405. },
  20406. },
  20407. [
  20408. {
  20409. name: "Micro",
  20410. height: math.unit(2, "inches")
  20411. },
  20412. {
  20413. name: "Normal",
  20414. height: math.unit(8, "feet"),
  20415. default: true
  20416. },
  20417. {
  20418. name: "Macro",
  20419. height: math.unit(255, "feet")
  20420. },
  20421. ]
  20422. ))
  20423. characterMakers.push(() => makeCharacter(
  20424. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20425. {
  20426. front: {
  20427. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20428. weight: math.unit(184, "lb"),
  20429. name: "Front",
  20430. image: {
  20431. source: "./media/characters/xang/front.svg",
  20432. extra: 845 / 755
  20433. }
  20434. },
  20435. },
  20436. [
  20437. {
  20438. name: "Normal",
  20439. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20440. default: true
  20441. },
  20442. {
  20443. name: "Macro",
  20444. height: math.unit(0.935 * 146, "feet")
  20445. },
  20446. {
  20447. name: "Megamacro",
  20448. height: math.unit(0.935 * 3, "miles")
  20449. },
  20450. ]
  20451. ))
  20452. characterMakers.push(() => makeCharacter(
  20453. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20454. {
  20455. frontDressed: {
  20456. height: math.unit(5 + 7 / 12, "feet"),
  20457. weight: math.unit(140, "lb"),
  20458. name: "Front (Dressed)",
  20459. image: {
  20460. source: "./media/characters/doc-weardno/front-dressed.svg",
  20461. extra: 263 / 234
  20462. }
  20463. },
  20464. backDressed: {
  20465. height: math.unit(5 + 7 / 12, "feet"),
  20466. weight: math.unit(140, "lb"),
  20467. name: "Back (Dressed)",
  20468. image: {
  20469. source: "./media/characters/doc-weardno/back-dressed.svg",
  20470. extra: 266 / 238
  20471. }
  20472. },
  20473. front: {
  20474. height: math.unit(5 + 7 / 12, "feet"),
  20475. weight: math.unit(140, "lb"),
  20476. name: "Front",
  20477. image: {
  20478. source: "./media/characters/doc-weardno/front.svg",
  20479. extra: 254 / 233
  20480. }
  20481. },
  20482. },
  20483. [
  20484. {
  20485. name: "Micro",
  20486. height: math.unit(3, "inches")
  20487. },
  20488. {
  20489. name: "Normal",
  20490. height: math.unit(5 + 7 / 12, "feet"),
  20491. default: true
  20492. },
  20493. {
  20494. name: "Macro",
  20495. height: math.unit(25, "feet")
  20496. },
  20497. {
  20498. name: "Megamacro",
  20499. height: math.unit(2, "miles")
  20500. },
  20501. ]
  20502. ))
  20503. characterMakers.push(() => makeCharacter(
  20504. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20505. {
  20506. front: {
  20507. height: math.unit(6 + 2 / 12, "feet"),
  20508. weight: math.unit(153, "lb"),
  20509. name: "Front",
  20510. image: {
  20511. source: "./media/characters/seth-whilst/front.svg",
  20512. bottom: 0.07
  20513. }
  20514. },
  20515. },
  20516. [
  20517. {
  20518. name: "Micro",
  20519. height: math.unit(5, "inches")
  20520. },
  20521. {
  20522. name: "Normal",
  20523. height: math.unit(6 + 2 / 12, "feet"),
  20524. default: true
  20525. },
  20526. ]
  20527. ))
  20528. characterMakers.push(() => makeCharacter(
  20529. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20530. {
  20531. front: {
  20532. height: math.unit(3, "inches"),
  20533. weight: math.unit(8, "grams"),
  20534. name: "Front",
  20535. image: {
  20536. source: "./media/characters/pocket-jabari/front.svg",
  20537. extra: 1024 / 974,
  20538. bottom: 0.039
  20539. }
  20540. },
  20541. },
  20542. [
  20543. {
  20544. name: "Minimicro",
  20545. height: math.unit(8, "mm")
  20546. },
  20547. {
  20548. name: "Micro",
  20549. height: math.unit(3, "inches"),
  20550. default: true
  20551. },
  20552. {
  20553. name: "Normal",
  20554. height: math.unit(3, "feet")
  20555. },
  20556. ]
  20557. ))
  20558. characterMakers.push(() => makeCharacter(
  20559. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20560. {
  20561. frontDressed: {
  20562. height: math.unit(15, "feet"),
  20563. weight: math.unit(3280, "lb"),
  20564. name: "Front (Dressed)",
  20565. image: {
  20566. source: "./media/characters/sapphy/front-dressed.svg",
  20567. extra: 1951/1654,
  20568. bottom: 194/2145
  20569. },
  20570. form: "anthro",
  20571. default: true
  20572. },
  20573. backDressed: {
  20574. height: math.unit(15, "feet"),
  20575. weight: math.unit(3280, "lb"),
  20576. name: "Back (Dressed)",
  20577. image: {
  20578. source: "./media/characters/sapphy/back-dressed.svg",
  20579. extra: 2058/1918,
  20580. bottom: 125/2183
  20581. },
  20582. form: "anthro"
  20583. },
  20584. frontNude: {
  20585. height: math.unit(15, "feet"),
  20586. weight: math.unit(3280, "lb"),
  20587. name: "Front (Nude)",
  20588. image: {
  20589. source: "./media/characters/sapphy/front-nude.svg",
  20590. extra: 1951/1654,
  20591. bottom: 194/2145
  20592. },
  20593. form: "anthro"
  20594. },
  20595. backNude: {
  20596. height: math.unit(15, "feet"),
  20597. weight: math.unit(3280, "lb"),
  20598. name: "Back (Nude)",
  20599. image: {
  20600. source: "./media/characters/sapphy/back-nude.svg",
  20601. extra: 2058/1918,
  20602. bottom: 125/2183
  20603. },
  20604. form: "anthro"
  20605. },
  20606. full: {
  20607. height: math.unit(15, "feet"),
  20608. weight: math.unit(3280, "lb"),
  20609. name: "Full",
  20610. image: {
  20611. source: "./media/characters/sapphy/full.svg",
  20612. extra: 1396/1317,
  20613. bottom: 44/1440
  20614. },
  20615. form: "anthro"
  20616. },
  20617. dick: {
  20618. height: math.unit(3.8, "feet"),
  20619. name: "Dick",
  20620. image: {
  20621. source: "./media/characters/sapphy/dick.svg"
  20622. },
  20623. form: "anthro"
  20624. },
  20625. feral: {
  20626. height: math.unit(35, "feet"),
  20627. weight: math.unit(160, "tons"),
  20628. name: "Feral",
  20629. image: {
  20630. source: "./media/characters/sapphy/feral.svg",
  20631. extra: 1050/573,
  20632. bottom: 60/1110
  20633. },
  20634. form: "feral",
  20635. default: true
  20636. },
  20637. },
  20638. [
  20639. {
  20640. name: "Normal",
  20641. height: math.unit(15, "feet"),
  20642. form: "anthro"
  20643. },
  20644. {
  20645. name: "Casual Macro",
  20646. height: math.unit(120, "feet"),
  20647. form: "anthro"
  20648. },
  20649. {
  20650. name: "Macro",
  20651. height: math.unit(2150, "feet"),
  20652. default: true,
  20653. form: "anthro"
  20654. },
  20655. {
  20656. name: "Megamacro",
  20657. height: math.unit(8, "miles"),
  20658. form: "anthro"
  20659. },
  20660. {
  20661. name: "Galaxy Mom",
  20662. height: math.unit(6, "megalightyears"),
  20663. form: "anthro"
  20664. },
  20665. {
  20666. name: "Normal",
  20667. height: math.unit(35, "feet"),
  20668. form: "feral",
  20669. default: true
  20670. },
  20671. {
  20672. name: "Macro",
  20673. height: math.unit(300, "feet"),
  20674. form: "feral"
  20675. },
  20676. {
  20677. name: "Galaxy Mom",
  20678. height: math.unit(10, "megalightyears"),
  20679. form: "feral"
  20680. },
  20681. ],
  20682. {
  20683. "anthro": {
  20684. name: "Anthro",
  20685. default: true
  20686. },
  20687. "feral": {
  20688. name: "Feral"
  20689. }
  20690. }
  20691. ))
  20692. characterMakers.push(() => makeCharacter(
  20693. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20694. {
  20695. hyenaFront: {
  20696. height: math.unit(6, "feet"),
  20697. weight: math.unit(190, "lb"),
  20698. name: "Front",
  20699. image: {
  20700. source: "./media/characters/kiro/hyena-front.svg",
  20701. extra: 927/839,
  20702. bottom: 91/1018
  20703. },
  20704. form: "hyena",
  20705. default: true
  20706. },
  20707. front: {
  20708. height: math.unit(6, "feet"),
  20709. weight: math.unit(170, "lb"),
  20710. name: "Front",
  20711. image: {
  20712. source: "./media/characters/kiro/front.svg",
  20713. extra: 1064 / 1012,
  20714. bottom: 0.052
  20715. },
  20716. form: "folf",
  20717. default: true
  20718. },
  20719. },
  20720. [
  20721. {
  20722. name: "Micro",
  20723. height: math.unit(6, "inches"),
  20724. form: "folf"
  20725. },
  20726. {
  20727. name: "Normal",
  20728. height: math.unit(6, "feet"),
  20729. form: "folf",
  20730. default: true
  20731. },
  20732. {
  20733. name: "Macro",
  20734. height: math.unit(72, "feet"),
  20735. form: "folf"
  20736. },
  20737. {
  20738. name: "Micro",
  20739. height: math.unit(6, "inches"),
  20740. form: "hyena"
  20741. },
  20742. {
  20743. name: "Normal",
  20744. height: math.unit(6, "feet"),
  20745. form: "hyena",
  20746. default: true
  20747. },
  20748. {
  20749. name: "Macro",
  20750. height: math.unit(72, "feet"),
  20751. form: "hyena"
  20752. },
  20753. ],
  20754. {
  20755. "hyena": {
  20756. name: "Hyena",
  20757. default: true
  20758. },
  20759. "folf": {
  20760. name: "Folf",
  20761. },
  20762. }
  20763. ))
  20764. characterMakers.push(() => makeCharacter(
  20765. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20766. {
  20767. front: {
  20768. height: math.unit(5 + 9 / 12, "feet"),
  20769. weight: math.unit(175, "lb"),
  20770. name: "Front",
  20771. image: {
  20772. source: "./media/characters/irishfox/front.svg",
  20773. extra: 1912 / 1680,
  20774. bottom: 0.02
  20775. }
  20776. },
  20777. },
  20778. [
  20779. {
  20780. name: "Nano",
  20781. height: math.unit(1, "mm")
  20782. },
  20783. {
  20784. name: "Micro",
  20785. height: math.unit(2, "inches")
  20786. },
  20787. {
  20788. name: "Normal",
  20789. height: math.unit(5 + 9 / 12, "feet"),
  20790. default: true
  20791. },
  20792. {
  20793. name: "Macro",
  20794. height: math.unit(45, "feet")
  20795. },
  20796. ]
  20797. ))
  20798. characterMakers.push(() => makeCharacter(
  20799. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20800. {
  20801. front: {
  20802. height: math.unit(6 + 1 / 12, "feet"),
  20803. weight: math.unit(75, "lb"),
  20804. name: "Front",
  20805. image: {
  20806. source: "./media/characters/aronai-sieyes/front.svg",
  20807. extra: 1532/1450,
  20808. bottom: 42/1574
  20809. }
  20810. },
  20811. side: {
  20812. height: math.unit(6 + 1 / 12, "feet"),
  20813. weight: math.unit(75, "lb"),
  20814. name: "Side",
  20815. image: {
  20816. source: "./media/characters/aronai-sieyes/side.svg",
  20817. extra: 1422/1365,
  20818. bottom: 148/1570
  20819. }
  20820. },
  20821. back: {
  20822. height: math.unit(6 + 1 / 12, "feet"),
  20823. weight: math.unit(75, "lb"),
  20824. name: "Back",
  20825. image: {
  20826. source: "./media/characters/aronai-sieyes/back.svg",
  20827. extra: 1526/1464,
  20828. bottom: 51/1577
  20829. }
  20830. },
  20831. dressed: {
  20832. height: math.unit(6 + 1 / 12, "feet"),
  20833. weight: math.unit(75, "lb"),
  20834. name: "Dressed",
  20835. image: {
  20836. source: "./media/characters/aronai-sieyes/dressed.svg",
  20837. extra: 1559/1483,
  20838. bottom: 39/1598
  20839. }
  20840. },
  20841. slit: {
  20842. height: math.unit(1.3, "feet"),
  20843. name: "Slit",
  20844. image: {
  20845. source: "./media/characters/aronai-sieyes/slit.svg"
  20846. }
  20847. },
  20848. slitSpread: {
  20849. height: math.unit(0.9, "feet"),
  20850. name: "Slit (Spread)",
  20851. image: {
  20852. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20853. }
  20854. },
  20855. rump: {
  20856. height: math.unit(1.3, "feet"),
  20857. name: "Rump",
  20858. image: {
  20859. source: "./media/characters/aronai-sieyes/rump.svg"
  20860. }
  20861. },
  20862. maw: {
  20863. height: math.unit(1.25, "feet"),
  20864. name: "Maw",
  20865. image: {
  20866. source: "./media/characters/aronai-sieyes/maw.svg"
  20867. }
  20868. },
  20869. feral: {
  20870. height: math.unit(18, "feet"),
  20871. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20872. name: "Feral",
  20873. image: {
  20874. source: "./media/characters/aronai-sieyes/feral.svg",
  20875. extra: 1530 / 1240,
  20876. bottom: 0.035
  20877. }
  20878. },
  20879. },
  20880. [
  20881. {
  20882. name: "Micro",
  20883. height: math.unit(2, "inches")
  20884. },
  20885. {
  20886. name: "Normal",
  20887. height: math.unit(6 + 1 / 12, "feet"),
  20888. default: true
  20889. }
  20890. ]
  20891. ))
  20892. characterMakers.push(() => makeCharacter(
  20893. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20894. {
  20895. front: {
  20896. height: math.unit(12, "feet"),
  20897. weight: math.unit(410, "kg"),
  20898. name: "Front",
  20899. image: {
  20900. source: "./media/characters/xuna/front.svg",
  20901. extra: 2184 / 1980
  20902. }
  20903. },
  20904. side: {
  20905. height: math.unit(12, "feet"),
  20906. weight: math.unit(410, "kg"),
  20907. name: "Side",
  20908. image: {
  20909. source: "./media/characters/xuna/side.svg",
  20910. extra: 2184 / 1980
  20911. }
  20912. },
  20913. back: {
  20914. height: math.unit(12, "feet"),
  20915. weight: math.unit(410, "kg"),
  20916. name: "Back",
  20917. image: {
  20918. source: "./media/characters/xuna/back.svg",
  20919. extra: 2184 / 1980
  20920. }
  20921. },
  20922. },
  20923. [
  20924. {
  20925. name: "Nano glow",
  20926. height: math.unit(10, "nm")
  20927. },
  20928. {
  20929. name: "Micro floof",
  20930. height: math.unit(0.3, "m")
  20931. },
  20932. {
  20933. name: "Huggable softy boi",
  20934. height: math.unit(3.6576, "m"),
  20935. default: true
  20936. },
  20937. {
  20938. name: "Admirable floof",
  20939. height: math.unit(80, "meters")
  20940. },
  20941. {
  20942. name: "Gentle macro",
  20943. height: math.unit(300, "meters")
  20944. },
  20945. {
  20946. name: "Very careful floof",
  20947. height: math.unit(3200, "meters")
  20948. },
  20949. {
  20950. name: "The mega floof",
  20951. height: math.unit(36000, "meters")
  20952. },
  20953. {
  20954. name: "Giga-fur-Wicker",
  20955. height: math.unit(4800000, "meters")
  20956. },
  20957. {
  20958. name: "Licky world",
  20959. height: math.unit(20000000, "meters")
  20960. },
  20961. {
  20962. name: "Floofy cyan sun",
  20963. height: math.unit(1500000000, "meters")
  20964. },
  20965. {
  20966. name: "Milky Wicker",
  20967. height: math.unit(1000000000000000000000, "meters")
  20968. },
  20969. {
  20970. name: "The observing Wicker",
  20971. height: math.unit(999999999999999999999999999, "meters")
  20972. },
  20973. ]
  20974. ))
  20975. characterMakers.push(() => makeCharacter(
  20976. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20977. {
  20978. front: {
  20979. height: math.unit(5 + 9 / 12, "feet"),
  20980. weight: math.unit(150, "lb"),
  20981. name: "Front",
  20982. image: {
  20983. source: "./media/characters/arokha-sieyes/front.svg",
  20984. extra: 1425 / 1284,
  20985. bottom: 0.05
  20986. }
  20987. },
  20988. },
  20989. [
  20990. {
  20991. name: "Normal",
  20992. height: math.unit(5 + 9 / 12, "feet")
  20993. },
  20994. {
  20995. name: "Macro",
  20996. height: math.unit(30, "meters"),
  20997. default: true
  20998. },
  20999. ]
  21000. ))
  21001. characterMakers.push(() => makeCharacter(
  21002. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21003. {
  21004. front: {
  21005. height: math.unit(6, "feet"),
  21006. weight: math.unit(180, "lb"),
  21007. name: "Front",
  21008. image: {
  21009. source: "./media/characters/arokh-sieyes/front.svg",
  21010. extra: 1830 / 1769,
  21011. bottom: 0.01
  21012. }
  21013. },
  21014. },
  21015. [
  21016. {
  21017. name: "Normal",
  21018. height: math.unit(6, "feet")
  21019. },
  21020. {
  21021. name: "Macro",
  21022. height: math.unit(30, "meters"),
  21023. default: true
  21024. },
  21025. ]
  21026. ))
  21027. characterMakers.push(() => makeCharacter(
  21028. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21029. {
  21030. side: {
  21031. height: math.unit(13 + 1 / 12, "feet"),
  21032. weight: math.unit(8.5, "tonnes"),
  21033. preyCapacity: math.unit(36, "people"),
  21034. name: "Side",
  21035. image: {
  21036. source: "./media/characters/goldeneye/side.svg",
  21037. extra: 1139/741,
  21038. bottom: 98/1237
  21039. }
  21040. },
  21041. front: {
  21042. height: math.unit(5.1, "feet"),
  21043. weight: math.unit(8.5, "tonnes"),
  21044. preyCapacity: math.unit(36, "people"),
  21045. name: "Front",
  21046. image: {
  21047. source: "./media/characters/goldeneye/front.svg",
  21048. extra: 635/365,
  21049. bottom: 598/1233
  21050. }
  21051. },
  21052. maw: {
  21053. height: math.unit(6.6, "feet"),
  21054. name: "Maw",
  21055. image: {
  21056. source: "./media/characters/goldeneye/maw.svg"
  21057. }
  21058. },
  21059. headFront: {
  21060. height: math.unit(8, "feet"),
  21061. name: "Head (Front)",
  21062. image: {
  21063. source: "./media/characters/goldeneye/head-front.svg"
  21064. }
  21065. },
  21066. headSide: {
  21067. height: math.unit(6, "feet"),
  21068. name: "Head (Side)",
  21069. image: {
  21070. source: "./media/characters/goldeneye/head-side.svg"
  21071. }
  21072. },
  21073. headBack: {
  21074. height: math.unit(8, "feet"),
  21075. name: "Head (Back)",
  21076. image: {
  21077. source: "./media/characters/goldeneye/head-back.svg"
  21078. }
  21079. },
  21080. paw: {
  21081. height: math.unit(3.4, "feet"),
  21082. name: "Paw",
  21083. image: {
  21084. source: "./media/characters/goldeneye/paw.svg"
  21085. }
  21086. },
  21087. toering: {
  21088. height: math.unit(0.45, "feet"),
  21089. name: "Toering",
  21090. image: {
  21091. source: "./media/characters/goldeneye/toering.svg"
  21092. }
  21093. },
  21094. eyes: {
  21095. height: math.unit(0.5, "feet"),
  21096. name: "Eyes",
  21097. image: {
  21098. source: "./media/characters/goldeneye/eyes.svg"
  21099. }
  21100. },
  21101. },
  21102. [
  21103. {
  21104. name: "Normal",
  21105. height: math.unit(13 + 1 / 12, "feet"),
  21106. default: true
  21107. },
  21108. ]
  21109. ))
  21110. characterMakers.push(() => makeCharacter(
  21111. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21112. {
  21113. front: {
  21114. height: math.unit(6 + 1 / 12, "feet"),
  21115. weight: math.unit(210, "lb"),
  21116. name: "Front",
  21117. image: {
  21118. source: "./media/characters/leonardo-lycheborne/front.svg",
  21119. extra: 776/723,
  21120. bottom: 34/810
  21121. }
  21122. },
  21123. side: {
  21124. height: math.unit(6 + 1 / 12, "feet"),
  21125. weight: math.unit(210, "lb"),
  21126. name: "Side",
  21127. image: {
  21128. source: "./media/characters/leonardo-lycheborne/side.svg",
  21129. extra: 780/728,
  21130. bottom: 12/792
  21131. }
  21132. },
  21133. back: {
  21134. height: math.unit(6 + 1 / 12, "feet"),
  21135. weight: math.unit(210, "lb"),
  21136. name: "Back",
  21137. image: {
  21138. source: "./media/characters/leonardo-lycheborne/back.svg",
  21139. extra: 775/721,
  21140. bottom: 17/792
  21141. }
  21142. },
  21143. hand: {
  21144. height: math.unit(1.08, "feet"),
  21145. name: "Hand",
  21146. image: {
  21147. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21148. }
  21149. },
  21150. foot: {
  21151. height: math.unit(1.32, "feet"),
  21152. name: "Foot",
  21153. image: {
  21154. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21155. }
  21156. },
  21157. maw: {
  21158. height: math.unit(1, "feet"),
  21159. name: "Maw",
  21160. image: {
  21161. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21162. }
  21163. },
  21164. were: {
  21165. height: math.unit(20, "feet"),
  21166. weight: math.unit(7800, "lb"),
  21167. name: "Were",
  21168. image: {
  21169. source: "./media/characters/leonardo-lycheborne/were.svg",
  21170. extra: 1224/1165,
  21171. bottom: 72/1296
  21172. }
  21173. },
  21174. feral: {
  21175. height: math.unit(7.5, "feet"),
  21176. weight: math.unit(600, "lb"),
  21177. name: "Feral",
  21178. image: {
  21179. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21180. extra: 797/702,
  21181. bottom: 139/936
  21182. }
  21183. },
  21184. taur: {
  21185. height: math.unit(11, "feet"),
  21186. weight: math.unit(3300, "lb"),
  21187. name: "Taur",
  21188. image: {
  21189. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21190. extra: 1271/1197,
  21191. bottom: 47/1318
  21192. }
  21193. },
  21194. barghest: {
  21195. height: math.unit(11, "feet"),
  21196. weight: math.unit(1300, "lb"),
  21197. name: "Barghest",
  21198. image: {
  21199. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21200. extra: 1291/1204,
  21201. bottom: 37/1328
  21202. }
  21203. },
  21204. dick: {
  21205. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21206. name: "Dick",
  21207. image: {
  21208. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21209. }
  21210. },
  21211. dickWere: {
  21212. height: math.unit((20) / 3.8, "feet"),
  21213. name: "Dick (Were)",
  21214. image: {
  21215. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21216. }
  21217. },
  21218. },
  21219. [
  21220. {
  21221. name: "Normal",
  21222. height: math.unit(6 + 1 / 12, "feet"),
  21223. default: true
  21224. },
  21225. ]
  21226. ))
  21227. characterMakers.push(() => makeCharacter(
  21228. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21229. {
  21230. front: {
  21231. height: math.unit(10, "feet"),
  21232. weight: math.unit(350, "lb"),
  21233. name: "Front",
  21234. image: {
  21235. source: "./media/characters/jet/front.svg",
  21236. extra: 2050 / 1980,
  21237. bottom: 0.013
  21238. }
  21239. },
  21240. back: {
  21241. height: math.unit(10, "feet"),
  21242. weight: math.unit(350, "lb"),
  21243. name: "Back",
  21244. image: {
  21245. source: "./media/characters/jet/back.svg",
  21246. extra: 2050 / 1980,
  21247. bottom: 0.013
  21248. }
  21249. },
  21250. },
  21251. [
  21252. {
  21253. name: "Micro",
  21254. height: math.unit(6, "inches")
  21255. },
  21256. {
  21257. name: "Normal",
  21258. height: math.unit(10, "feet"),
  21259. default: true
  21260. },
  21261. {
  21262. name: "Macro",
  21263. height: math.unit(100, "feet")
  21264. },
  21265. ]
  21266. ))
  21267. characterMakers.push(() => makeCharacter(
  21268. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21269. {
  21270. front: {
  21271. height: math.unit(15, "feet"),
  21272. weight: math.unit(2800, "lb"),
  21273. name: "Front",
  21274. image: {
  21275. source: "./media/characters/tanarath/front.svg",
  21276. extra: 2392 / 2220,
  21277. bottom: 0.03
  21278. }
  21279. },
  21280. back: {
  21281. height: math.unit(15, "feet"),
  21282. weight: math.unit(2800, "lb"),
  21283. name: "Back",
  21284. image: {
  21285. source: "./media/characters/tanarath/back.svg",
  21286. extra: 2392 / 2220,
  21287. bottom: 0.03
  21288. }
  21289. },
  21290. },
  21291. [
  21292. {
  21293. name: "Normal",
  21294. height: math.unit(15, "feet"),
  21295. default: true
  21296. },
  21297. ]
  21298. ))
  21299. characterMakers.push(() => makeCharacter(
  21300. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21301. {
  21302. front: {
  21303. height: math.unit(7 + 1 / 12, "feet"),
  21304. weight: math.unit(175, "lb"),
  21305. name: "Front",
  21306. image: {
  21307. source: "./media/characters/patty-cattybatty/front.svg",
  21308. extra: 908 / 874,
  21309. bottom: 0.025
  21310. }
  21311. },
  21312. },
  21313. [
  21314. {
  21315. name: "Micro",
  21316. height: math.unit(1, "inch")
  21317. },
  21318. {
  21319. name: "Normal",
  21320. height: math.unit(7 + 1 / 12, "feet")
  21321. },
  21322. {
  21323. name: "Mini Macro",
  21324. height: math.unit(155, "feet")
  21325. },
  21326. {
  21327. name: "Macro",
  21328. height: math.unit(1077, "feet")
  21329. },
  21330. {
  21331. name: "Mega Macro",
  21332. height: math.unit(47650, "feet"),
  21333. default: true
  21334. },
  21335. {
  21336. name: "Giga Macro",
  21337. height: math.unit(440, "miles")
  21338. },
  21339. {
  21340. name: "Tera Macro",
  21341. height: math.unit(8700, "miles")
  21342. },
  21343. {
  21344. name: "Planetary Macro",
  21345. height: math.unit(32700, "miles")
  21346. },
  21347. {
  21348. name: "Solar Macro",
  21349. height: math.unit(550000, "miles")
  21350. },
  21351. {
  21352. name: "Celestial Macro",
  21353. height: math.unit(2.5, "AU")
  21354. },
  21355. ]
  21356. ))
  21357. characterMakers.push(() => makeCharacter(
  21358. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21359. {
  21360. front: {
  21361. height: math.unit(4 + 5 / 12, "feet"),
  21362. weight: math.unit(90, "lb"),
  21363. name: "Front",
  21364. image: {
  21365. source: "./media/characters/cappu/front.svg",
  21366. extra: 1247 / 1152,
  21367. bottom: 0.012
  21368. }
  21369. },
  21370. },
  21371. [
  21372. {
  21373. name: "Normal",
  21374. height: math.unit(4 + 5 / 12, "feet"),
  21375. default: true
  21376. },
  21377. ]
  21378. ))
  21379. characterMakers.push(() => makeCharacter(
  21380. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21381. {
  21382. frontDressed: {
  21383. height: math.unit(70, "cm"),
  21384. weight: math.unit(6, "kg"),
  21385. name: "Front (Dressed)",
  21386. image: {
  21387. source: "./media/characters/sebi/front-dressed.svg",
  21388. extra: 713.5 / 686.5,
  21389. bottom: 0.003
  21390. }
  21391. },
  21392. front: {
  21393. height: math.unit(70, "cm"),
  21394. weight: math.unit(5, "kg"),
  21395. name: "Front",
  21396. image: {
  21397. source: "./media/characters/sebi/front.svg",
  21398. extra: 713.5 / 686.5,
  21399. bottom: 0.003
  21400. }
  21401. }
  21402. },
  21403. [
  21404. {
  21405. name: "Normal",
  21406. height: math.unit(70, "cm"),
  21407. default: true
  21408. },
  21409. {
  21410. name: "Macro",
  21411. height: math.unit(8, "meters")
  21412. },
  21413. ]
  21414. ))
  21415. characterMakers.push(() => makeCharacter(
  21416. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21417. {
  21418. front: {
  21419. height: math.unit(6, "feet"),
  21420. weight: math.unit(150, "lb"),
  21421. name: "Front",
  21422. image: {
  21423. source: "./media/characters/typhek/front.svg",
  21424. extra: 1948 / 1929,
  21425. bottom: 0.025
  21426. }
  21427. },
  21428. side: {
  21429. height: math.unit(6, "feet"),
  21430. weight: math.unit(150, "lb"),
  21431. name: "Side",
  21432. image: {
  21433. source: "./media/characters/typhek/side.svg",
  21434. extra: 2034 / 2010,
  21435. bottom: 0.003
  21436. }
  21437. },
  21438. back: {
  21439. height: math.unit(6, "feet"),
  21440. weight: math.unit(150, "lb"),
  21441. name: "Back",
  21442. image: {
  21443. source: "./media/characters/typhek/back.svg",
  21444. extra: 2005 / 1978,
  21445. bottom: 0.004
  21446. }
  21447. },
  21448. palm: {
  21449. height: math.unit(1.2, "feet"),
  21450. name: "Palm",
  21451. image: {
  21452. source: "./media/characters/typhek/palm.svg"
  21453. }
  21454. },
  21455. fist: {
  21456. height: math.unit(1.1, "feet"),
  21457. name: "Fist",
  21458. image: {
  21459. source: "./media/characters/typhek/fist.svg"
  21460. }
  21461. },
  21462. foot: {
  21463. height: math.unit(1.57, "feet"),
  21464. name: "Foot",
  21465. image: {
  21466. source: "./media/characters/typhek/foot.svg"
  21467. }
  21468. },
  21469. sole: {
  21470. height: math.unit(2.05, "feet"),
  21471. name: "Sole",
  21472. image: {
  21473. source: "./media/characters/typhek/sole.svg"
  21474. }
  21475. },
  21476. },
  21477. [
  21478. {
  21479. name: "Macro",
  21480. height: math.unit(40, "stories"),
  21481. default: true
  21482. },
  21483. {
  21484. name: "Megamacro",
  21485. height: math.unit(1, "mile")
  21486. },
  21487. {
  21488. name: "Gigamacro",
  21489. height: math.unit(4000, "solarradii")
  21490. },
  21491. {
  21492. name: "Universal",
  21493. height: math.unit(1.1, "universes")
  21494. }
  21495. ]
  21496. ))
  21497. characterMakers.push(() => makeCharacter(
  21498. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21499. {
  21500. side: {
  21501. height: math.unit(5 + 7 / 12, "feet"),
  21502. weight: math.unit(150, "lb"),
  21503. name: "Side",
  21504. image: {
  21505. source: "./media/characters/kassy/side.svg",
  21506. extra: 1280 / 1225,
  21507. bottom: 0.002
  21508. }
  21509. },
  21510. front: {
  21511. height: math.unit(5 + 7 / 12, "feet"),
  21512. weight: math.unit(150, "lb"),
  21513. name: "Front",
  21514. image: {
  21515. source: "./media/characters/kassy/front.svg",
  21516. extra: 1280 / 1225,
  21517. bottom: 0.025
  21518. }
  21519. },
  21520. back: {
  21521. height: math.unit(5 + 7 / 12, "feet"),
  21522. weight: math.unit(150, "lb"),
  21523. name: "Back",
  21524. image: {
  21525. source: "./media/characters/kassy/back.svg",
  21526. extra: 1280 / 1225,
  21527. bottom: 0.002
  21528. }
  21529. },
  21530. foot: {
  21531. height: math.unit(1.266, "feet"),
  21532. name: "Foot",
  21533. image: {
  21534. source: "./media/characters/kassy/foot.svg"
  21535. }
  21536. },
  21537. },
  21538. [
  21539. {
  21540. name: "Normal",
  21541. height: math.unit(5 + 7 / 12, "feet")
  21542. },
  21543. {
  21544. name: "Macro",
  21545. height: math.unit(137, "feet"),
  21546. default: true
  21547. },
  21548. {
  21549. name: "Megamacro",
  21550. height: math.unit(1, "mile")
  21551. },
  21552. ]
  21553. ))
  21554. characterMakers.push(() => makeCharacter(
  21555. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21556. {
  21557. front: {
  21558. height: math.unit(6 + 1 / 12, "feet"),
  21559. weight: math.unit(200, "lb"),
  21560. name: "Front",
  21561. image: {
  21562. source: "./media/characters/neil/front.svg",
  21563. extra: 1326 / 1250,
  21564. bottom: 0.023
  21565. }
  21566. },
  21567. },
  21568. [
  21569. {
  21570. name: "Normal",
  21571. height: math.unit(6 + 1 / 12, "feet"),
  21572. default: true
  21573. },
  21574. {
  21575. name: "Macro",
  21576. height: math.unit(200, "feet")
  21577. },
  21578. ]
  21579. ))
  21580. characterMakers.push(() => makeCharacter(
  21581. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21582. {
  21583. front: {
  21584. height: math.unit(5 + 9 / 12, "feet"),
  21585. weight: math.unit(190, "lb"),
  21586. name: "Front",
  21587. image: {
  21588. source: "./media/characters/atticus/front.svg",
  21589. extra: 2934 / 2785,
  21590. bottom: 0.025
  21591. }
  21592. },
  21593. },
  21594. [
  21595. {
  21596. name: "Normal",
  21597. height: math.unit(5 + 9 / 12, "feet"),
  21598. default: true
  21599. },
  21600. {
  21601. name: "Macro",
  21602. height: math.unit(180, "feet")
  21603. },
  21604. ]
  21605. ))
  21606. characterMakers.push(() => makeCharacter(
  21607. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21608. {
  21609. side: {
  21610. height: math.unit(9, "feet"),
  21611. weight: math.unit(650, "lb"),
  21612. name: "Side",
  21613. image: {
  21614. source: "./media/characters/milo/side.svg",
  21615. extra: 2644 / 2310,
  21616. bottom: 0.032
  21617. }
  21618. },
  21619. },
  21620. [
  21621. {
  21622. name: "Normal",
  21623. height: math.unit(9, "feet"),
  21624. default: true
  21625. },
  21626. {
  21627. name: "Macro",
  21628. height: math.unit(300, "feet")
  21629. },
  21630. ]
  21631. ))
  21632. characterMakers.push(() => makeCharacter(
  21633. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21634. {
  21635. side: {
  21636. height: math.unit(8, "meters"),
  21637. weight: math.unit(90000, "kg"),
  21638. name: "Side",
  21639. image: {
  21640. source: "./media/characters/ijzer/side.svg",
  21641. extra: 2756 / 1600,
  21642. bottom: 0.01
  21643. }
  21644. },
  21645. },
  21646. [
  21647. {
  21648. name: "Small",
  21649. height: math.unit(3, "meters")
  21650. },
  21651. {
  21652. name: "Normal",
  21653. height: math.unit(8, "meters"),
  21654. default: true
  21655. },
  21656. {
  21657. name: "Normal+",
  21658. height: math.unit(10, "meters")
  21659. },
  21660. {
  21661. name: "Bigger",
  21662. height: math.unit(24, "meters")
  21663. },
  21664. {
  21665. name: "Huge",
  21666. height: math.unit(80, "meters")
  21667. },
  21668. ]
  21669. ))
  21670. characterMakers.push(() => makeCharacter(
  21671. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21672. {
  21673. front: {
  21674. height: math.unit(6 + 2 / 12, "feet"),
  21675. weight: math.unit(153, "lb"),
  21676. name: "Front",
  21677. image: {
  21678. source: "./media/characters/luca-cervicum/front.svg",
  21679. extra: 370 / 327,
  21680. bottom: 0.015
  21681. }
  21682. },
  21683. back: {
  21684. height: math.unit(6 + 2 / 12, "feet"),
  21685. weight: math.unit(153, "lb"),
  21686. name: "Back",
  21687. image: {
  21688. source: "./media/characters/luca-cervicum/back.svg",
  21689. extra: 367 / 333,
  21690. bottom: 0.005
  21691. }
  21692. },
  21693. frontGear: {
  21694. height: math.unit(6 + 2 / 12, "feet"),
  21695. weight: math.unit(173, "lb"),
  21696. name: "Front (Gear)",
  21697. image: {
  21698. source: "./media/characters/luca-cervicum/front-gear.svg",
  21699. extra: 377 / 333,
  21700. bottom: 0.006
  21701. }
  21702. },
  21703. },
  21704. [
  21705. {
  21706. name: "Normal",
  21707. height: math.unit(6 + 2 / 12, "feet"),
  21708. default: true
  21709. },
  21710. ]
  21711. ))
  21712. characterMakers.push(() => makeCharacter(
  21713. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21714. {
  21715. front: {
  21716. height: math.unit(6 + 1 / 12, "feet"),
  21717. weight: math.unit(304, "lb"),
  21718. name: "Front",
  21719. image: {
  21720. source: "./media/characters/oliver/front.svg",
  21721. extra: 157 / 143,
  21722. bottom: 0.08
  21723. }
  21724. },
  21725. },
  21726. [
  21727. {
  21728. name: "Normal",
  21729. height: math.unit(6 + 1 / 12, "feet"),
  21730. default: true
  21731. },
  21732. ]
  21733. ))
  21734. characterMakers.push(() => makeCharacter(
  21735. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21736. {
  21737. front: {
  21738. height: math.unit(5 + 7 / 12, "feet"),
  21739. weight: math.unit(140, "lb"),
  21740. name: "Front",
  21741. image: {
  21742. source: "./media/characters/shane/front.svg",
  21743. extra: 304 / 289,
  21744. bottom: 0.005
  21745. }
  21746. },
  21747. },
  21748. [
  21749. {
  21750. name: "Normal",
  21751. height: math.unit(5 + 7 / 12, "feet"),
  21752. default: true
  21753. },
  21754. ]
  21755. ))
  21756. characterMakers.push(() => makeCharacter(
  21757. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21758. {
  21759. front: {
  21760. height: math.unit(5 + 9 / 12, "feet"),
  21761. weight: math.unit(178, "lb"),
  21762. name: "Front",
  21763. image: {
  21764. source: "./media/characters/shin/front.svg",
  21765. extra: 159 / 151,
  21766. bottom: 0.015
  21767. }
  21768. },
  21769. },
  21770. [
  21771. {
  21772. name: "Normal",
  21773. height: math.unit(5 + 9 / 12, "feet"),
  21774. default: true
  21775. },
  21776. ]
  21777. ))
  21778. characterMakers.push(() => makeCharacter(
  21779. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21780. {
  21781. front: {
  21782. height: math.unit(5 + 10 / 12, "feet"),
  21783. weight: math.unit(168, "lb"),
  21784. name: "Front",
  21785. image: {
  21786. source: "./media/characters/xerxes/front.svg",
  21787. extra: 282 / 260,
  21788. bottom: 0.045
  21789. }
  21790. },
  21791. },
  21792. [
  21793. {
  21794. name: "Normal",
  21795. height: math.unit(5 + 10 / 12, "feet"),
  21796. default: true
  21797. },
  21798. ]
  21799. ))
  21800. characterMakers.push(() => makeCharacter(
  21801. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21802. {
  21803. front: {
  21804. height: math.unit(6 + 7 / 12, "feet"),
  21805. weight: math.unit(208, "lb"),
  21806. name: "Front",
  21807. image: {
  21808. source: "./media/characters/chaska/front.svg",
  21809. extra: 332 / 319,
  21810. bottom: 0.015
  21811. }
  21812. },
  21813. },
  21814. [
  21815. {
  21816. name: "Normal",
  21817. height: math.unit(6 + 7 / 12, "feet"),
  21818. default: true
  21819. },
  21820. ]
  21821. ))
  21822. characterMakers.push(() => makeCharacter(
  21823. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21824. {
  21825. front: {
  21826. height: math.unit(5 + 8 / 12, "feet"),
  21827. weight: math.unit(208, "lb"),
  21828. name: "Front",
  21829. image: {
  21830. source: "./media/characters/enuk/front.svg",
  21831. extra: 437 / 406,
  21832. bottom: 0.02
  21833. }
  21834. },
  21835. },
  21836. [
  21837. {
  21838. name: "Normal",
  21839. height: math.unit(5 + 8 / 12, "feet"),
  21840. default: true
  21841. },
  21842. ]
  21843. ))
  21844. characterMakers.push(() => makeCharacter(
  21845. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21846. {
  21847. front: {
  21848. height: math.unit(5 + 10 / 12, "feet"),
  21849. weight: math.unit(252, "lb"),
  21850. name: "Front",
  21851. image: {
  21852. source: "./media/characters/bruun/front.svg",
  21853. extra: 197 / 187,
  21854. bottom: 0.012
  21855. }
  21856. },
  21857. },
  21858. [
  21859. {
  21860. name: "Normal",
  21861. height: math.unit(5 + 10 / 12, "feet"),
  21862. default: true
  21863. },
  21864. ]
  21865. ))
  21866. characterMakers.push(() => makeCharacter(
  21867. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21868. {
  21869. front: {
  21870. height: math.unit(6 + 10 / 12, "feet"),
  21871. weight: math.unit(255, "lb"),
  21872. name: "Front",
  21873. image: {
  21874. source: "./media/characters/alexeev/front.svg",
  21875. extra: 213 / 200,
  21876. bottom: 0.05
  21877. }
  21878. },
  21879. },
  21880. [
  21881. {
  21882. name: "Normal",
  21883. height: math.unit(6 + 10 / 12, "feet"),
  21884. default: true
  21885. },
  21886. ]
  21887. ))
  21888. characterMakers.push(() => makeCharacter(
  21889. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21890. {
  21891. front: {
  21892. height: math.unit(2 + 8 / 12, "feet"),
  21893. weight: math.unit(22, "lb"),
  21894. name: "Front",
  21895. image: {
  21896. source: "./media/characters/evelyn/front.svg",
  21897. extra: 208 / 180
  21898. }
  21899. },
  21900. },
  21901. [
  21902. {
  21903. name: "Normal",
  21904. height: math.unit(2 + 8 / 12, "feet"),
  21905. default: true
  21906. },
  21907. ]
  21908. ))
  21909. characterMakers.push(() => makeCharacter(
  21910. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21911. {
  21912. front: {
  21913. height: math.unit(5 + 9 / 12, "feet"),
  21914. weight: math.unit(139, "lb"),
  21915. name: "Front",
  21916. image: {
  21917. source: "./media/characters/inca/front.svg",
  21918. extra: 294 / 291,
  21919. bottom: 0.03
  21920. }
  21921. },
  21922. },
  21923. [
  21924. {
  21925. name: "Normal",
  21926. height: math.unit(5 + 9 / 12, "feet"),
  21927. default: true
  21928. },
  21929. ]
  21930. ))
  21931. characterMakers.push(() => makeCharacter(
  21932. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21933. {
  21934. front: {
  21935. height: math.unit(6 + 3 / 12, "feet"),
  21936. weight: math.unit(185, "lb"),
  21937. name: "Front",
  21938. image: {
  21939. source: "./media/characters/mera/front.svg",
  21940. extra: 291 / 277,
  21941. bottom: 0.03
  21942. }
  21943. },
  21944. },
  21945. [
  21946. {
  21947. name: "Normal",
  21948. height: math.unit(6 + 3 / 12, "feet"),
  21949. default: true
  21950. },
  21951. ]
  21952. ))
  21953. characterMakers.push(() => makeCharacter(
  21954. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21955. {
  21956. front: {
  21957. height: math.unit(6 + 7 / 12, "feet"),
  21958. weight: math.unit(160, "lb"),
  21959. name: "Front",
  21960. image: {
  21961. source: "./media/characters/ceres/front.svg",
  21962. extra: 1023 / 950,
  21963. bottom: 0.027
  21964. }
  21965. },
  21966. back: {
  21967. height: math.unit(6 + 7 / 12, "feet"),
  21968. weight: math.unit(160, "lb"),
  21969. name: "Back",
  21970. image: {
  21971. source: "./media/characters/ceres/back.svg",
  21972. extra: 1023 / 950
  21973. }
  21974. },
  21975. },
  21976. [
  21977. {
  21978. name: "Normal",
  21979. height: math.unit(6 + 7 / 12, "feet"),
  21980. default: true
  21981. },
  21982. ]
  21983. ))
  21984. characterMakers.push(() => makeCharacter(
  21985. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21986. {
  21987. front: {
  21988. height: math.unit(5 + 10 / 12, "feet"),
  21989. weight: math.unit(150, "lb"),
  21990. name: "Front",
  21991. image: {
  21992. source: "./media/characters/kris/front.svg",
  21993. extra: 885 / 803,
  21994. bottom: 0.03
  21995. }
  21996. },
  21997. },
  21998. [
  21999. {
  22000. name: "Normal",
  22001. height: math.unit(5 + 10 / 12, "feet"),
  22002. default: true
  22003. },
  22004. ]
  22005. ))
  22006. characterMakers.push(() => makeCharacter(
  22007. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22008. {
  22009. dragon_front: {
  22010. height: math.unit(5, "feet"),
  22011. name: "Front",
  22012. image: {
  22013. source: "./media/characters/taluthus/dragon-front.svg",
  22014. extra: 1203/1098,
  22015. bottom: 46/1249
  22016. },
  22017. form: "dragon",
  22018. default: true
  22019. },
  22020. dragon_maw: {
  22021. height: math.unit(2.35, "feet"),
  22022. name: "Maw",
  22023. image: {
  22024. source: "./media/characters/taluthus/dragon-maw.svg"
  22025. },
  22026. form: "dragon",
  22027. },
  22028. kitsune_front: {
  22029. height: math.unit(7, "feet"),
  22030. name: "Front",
  22031. image: {
  22032. source: "./media/characters/taluthus/kitsune-front.svg",
  22033. extra: 900/841,
  22034. bottom: 65/965
  22035. },
  22036. form: "kitsune",
  22037. default: true
  22038. },
  22039. },
  22040. [
  22041. {
  22042. name: "Normal",
  22043. height: math.unit(5, "feet"),
  22044. form: "dragon",
  22045. default: true,
  22046. },
  22047. {
  22048. name: "Normal",
  22049. height: math.unit(7, "feet"),
  22050. form: "kitsune",
  22051. default: true
  22052. },
  22053. {
  22054. name: "Macro",
  22055. height: math.unit(300, "feet"),
  22056. allForms: true
  22057. },
  22058. ],
  22059. {
  22060. "dragon": {
  22061. name: "Dragon",
  22062. default: true
  22063. },
  22064. "kitsune": {
  22065. name: "Kitsune",
  22066. },
  22067. }
  22068. ))
  22069. characterMakers.push(() => makeCharacter(
  22070. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22071. {
  22072. front: {
  22073. height: math.unit(5 + 9 / 12, "feet"),
  22074. weight: math.unit(145, "lb"),
  22075. name: "Front",
  22076. image: {
  22077. source: "./media/characters/dawn/front.svg",
  22078. extra: 2094 / 2016,
  22079. bottom: 0.025
  22080. }
  22081. },
  22082. back: {
  22083. height: math.unit(5 + 9 / 12, "feet"),
  22084. weight: math.unit(160, "lb"),
  22085. name: "Back",
  22086. image: {
  22087. source: "./media/characters/dawn/back.svg",
  22088. extra: 2112 / 2080,
  22089. bottom: 0.005
  22090. }
  22091. },
  22092. },
  22093. [
  22094. {
  22095. name: "Normal",
  22096. height: math.unit(6 + 7 / 12, "feet"),
  22097. default: true
  22098. },
  22099. ]
  22100. ))
  22101. characterMakers.push(() => makeCharacter(
  22102. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22103. {
  22104. anthro: {
  22105. height: math.unit(8 + 3 / 12, "feet"),
  22106. weight: math.unit(450, "lb"),
  22107. name: "Anthro",
  22108. image: {
  22109. source: "./media/characters/arador/anthro.svg",
  22110. extra: 1835 / 1718,
  22111. bottom: 0.025
  22112. }
  22113. },
  22114. feral: {
  22115. height: math.unit(4, "feet"),
  22116. weight: math.unit(200, "lb"),
  22117. name: "Feral",
  22118. image: {
  22119. source: "./media/characters/arador/feral.svg",
  22120. extra: 1683 / 1514,
  22121. bottom: 0.07
  22122. }
  22123. },
  22124. },
  22125. [
  22126. {
  22127. name: "Normal",
  22128. height: math.unit(8 + 3 / 12, "feet")
  22129. },
  22130. {
  22131. name: "Macro",
  22132. height: math.unit(82.5, "feet"),
  22133. default: true
  22134. },
  22135. ]
  22136. ))
  22137. characterMakers.push(() => makeCharacter(
  22138. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22139. {
  22140. front: {
  22141. height: math.unit(5 + 10 / 12, "feet"),
  22142. weight: math.unit(125, "lb"),
  22143. name: "Front",
  22144. image: {
  22145. source: "./media/characters/dharsi/front.svg",
  22146. extra: 716 / 630,
  22147. bottom: 0.035
  22148. }
  22149. },
  22150. },
  22151. [
  22152. {
  22153. name: "Nano",
  22154. height: math.unit(100, "nm")
  22155. },
  22156. {
  22157. name: "Micro",
  22158. height: math.unit(2, "inches")
  22159. },
  22160. {
  22161. name: "Normal",
  22162. height: math.unit(5 + 10 / 12, "feet"),
  22163. default: true
  22164. },
  22165. {
  22166. name: "Macro",
  22167. height: math.unit(1000, "feet")
  22168. },
  22169. {
  22170. name: "Megamacro",
  22171. height: math.unit(10, "miles")
  22172. },
  22173. {
  22174. name: "Gigamacro",
  22175. height: math.unit(3000, "miles")
  22176. },
  22177. {
  22178. name: "Teramacro",
  22179. height: math.unit(500000, "miles")
  22180. },
  22181. {
  22182. name: "Teramacro+",
  22183. height: math.unit(30, "galaxies")
  22184. },
  22185. ]
  22186. ))
  22187. characterMakers.push(() => makeCharacter(
  22188. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22189. {
  22190. front: {
  22191. height: math.unit(6, "feet"),
  22192. weight: math.unit(150, "lb"),
  22193. name: "Front",
  22194. image: {
  22195. source: "./media/characters/deathy/front.svg",
  22196. extra: 1552 / 1463,
  22197. bottom: 0.025
  22198. }
  22199. },
  22200. side: {
  22201. height: math.unit(6, "feet"),
  22202. weight: math.unit(150, "lb"),
  22203. name: "Side",
  22204. image: {
  22205. source: "./media/characters/deathy/side.svg",
  22206. extra: 1604 / 1455,
  22207. bottom: 0.025
  22208. }
  22209. },
  22210. back: {
  22211. height: math.unit(6, "feet"),
  22212. weight: math.unit(150, "lb"),
  22213. name: "Back",
  22214. image: {
  22215. source: "./media/characters/deathy/back.svg",
  22216. extra: 1580 / 1463,
  22217. bottom: 0.005
  22218. }
  22219. },
  22220. },
  22221. [
  22222. {
  22223. name: "Micro",
  22224. height: math.unit(5, "millimeters")
  22225. },
  22226. {
  22227. name: "Normal",
  22228. height: math.unit(6 + 5 / 12, "feet"),
  22229. default: true
  22230. },
  22231. ]
  22232. ))
  22233. characterMakers.push(() => makeCharacter(
  22234. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22235. {
  22236. front: {
  22237. height: math.unit(16, "feet"),
  22238. weight: math.unit(4000, "lb"),
  22239. name: "Front",
  22240. image: {
  22241. source: "./media/characters/juniper/front.svg",
  22242. bottom: 0.04
  22243. }
  22244. },
  22245. },
  22246. [
  22247. {
  22248. name: "Normal",
  22249. height: math.unit(16, "feet"),
  22250. default: true
  22251. },
  22252. ]
  22253. ))
  22254. characterMakers.push(() => makeCharacter(
  22255. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22256. {
  22257. front: {
  22258. height: math.unit(6, "feet"),
  22259. weight: math.unit(150, "lb"),
  22260. name: "Front",
  22261. image: {
  22262. source: "./media/characters/hipster/front.svg",
  22263. extra: 1312 / 1209,
  22264. bottom: 0.025
  22265. }
  22266. },
  22267. back: {
  22268. height: math.unit(6, "feet"),
  22269. weight: math.unit(150, "lb"),
  22270. name: "Back",
  22271. image: {
  22272. source: "./media/characters/hipster/back.svg",
  22273. extra: 1281 / 1196,
  22274. bottom: 0.01
  22275. }
  22276. },
  22277. },
  22278. [
  22279. {
  22280. name: "Micro",
  22281. height: math.unit(1, "mm")
  22282. },
  22283. {
  22284. name: "Normal",
  22285. height: math.unit(4, "inches"),
  22286. default: true
  22287. },
  22288. {
  22289. name: "Macro",
  22290. height: math.unit(500, "feet")
  22291. },
  22292. {
  22293. name: "Megamacro",
  22294. height: math.unit(1000, "miles")
  22295. },
  22296. ]
  22297. ))
  22298. characterMakers.push(() => makeCharacter(
  22299. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22300. {
  22301. front: {
  22302. height: math.unit(6, "feet"),
  22303. weight: math.unit(150, "lb"),
  22304. name: "Front",
  22305. image: {
  22306. source: "./media/characters/tendirmuldr/front.svg",
  22307. extra: 1878 / 1772,
  22308. bottom: 0.015
  22309. }
  22310. },
  22311. },
  22312. [
  22313. {
  22314. name: "Megamacro",
  22315. height: math.unit(1500, "miles"),
  22316. default: true
  22317. },
  22318. ]
  22319. ))
  22320. characterMakers.push(() => makeCharacter(
  22321. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22322. {
  22323. front: {
  22324. height: math.unit(14, "feet"),
  22325. weight: math.unit(12000, "lb"),
  22326. name: "Front",
  22327. image: {
  22328. source: "./media/characters/mort/front.svg",
  22329. extra: 365 / 318,
  22330. bottom: 0.01
  22331. }
  22332. },
  22333. side: {
  22334. height: math.unit(14, "feet"),
  22335. weight: math.unit(12000, "lb"),
  22336. name: "Side",
  22337. image: {
  22338. source: "./media/characters/mort/side.svg",
  22339. extra: 365 / 318,
  22340. bottom: 0.052
  22341. },
  22342. default: true
  22343. },
  22344. back: {
  22345. height: math.unit(14, "feet"),
  22346. weight: math.unit(12000, "lb"),
  22347. name: "Back",
  22348. image: {
  22349. source: "./media/characters/mort/back.svg",
  22350. extra: 371 / 332,
  22351. bottom: 0.18
  22352. }
  22353. },
  22354. },
  22355. [
  22356. {
  22357. name: "Normal",
  22358. height: math.unit(14, "feet"),
  22359. default: true
  22360. },
  22361. ]
  22362. ))
  22363. characterMakers.push(() => makeCharacter(
  22364. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22365. {
  22366. front: {
  22367. height: math.unit(8, "feet"),
  22368. weight: math.unit(1, "ton"),
  22369. name: "Front",
  22370. image: {
  22371. source: "./media/characters/lycoa/front.svg",
  22372. extra: 1836/1728,
  22373. bottom: 81/1917
  22374. }
  22375. },
  22376. back: {
  22377. height: math.unit(8, "feet"),
  22378. weight: math.unit(1, "ton"),
  22379. name: "Back",
  22380. image: {
  22381. source: "./media/characters/lycoa/back.svg",
  22382. extra: 1785/1720,
  22383. bottom: 91/1876
  22384. }
  22385. },
  22386. head: {
  22387. height: math.unit(1.6243, "feet"),
  22388. name: "Head",
  22389. image: {
  22390. source: "./media/characters/lycoa/head.svg",
  22391. extra: 1011/782,
  22392. bottom: 0/1011
  22393. }
  22394. },
  22395. tailmaw: {
  22396. height: math.unit(1.9, "feet"),
  22397. name: "Tailmaw",
  22398. image: {
  22399. source: "./media/characters/lycoa/tailmaw.svg"
  22400. }
  22401. },
  22402. tentacles: {
  22403. height: math.unit(2.1, "feet"),
  22404. name: "Tentacles",
  22405. image: {
  22406. source: "./media/characters/lycoa/tentacles.svg"
  22407. }
  22408. },
  22409. dick: {
  22410. height: math.unit(1.73, "feet"),
  22411. name: "Dick",
  22412. image: {
  22413. source: "./media/characters/lycoa/dick.svg"
  22414. }
  22415. },
  22416. },
  22417. [
  22418. {
  22419. name: "Normal",
  22420. height: math.unit(8, "feet"),
  22421. default: true
  22422. },
  22423. {
  22424. name: "Macro",
  22425. height: math.unit(30, "feet")
  22426. },
  22427. ]
  22428. ))
  22429. characterMakers.push(() => makeCharacter(
  22430. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22431. {
  22432. front: {
  22433. height: math.unit(4 + 2 / 12, "feet"),
  22434. weight: math.unit(70, "lb"),
  22435. name: "Front",
  22436. image: {
  22437. source: "./media/characters/naldara/front.svg",
  22438. extra: 1664/1387,
  22439. bottom: 81/1745
  22440. },
  22441. form: "anthro",
  22442. default: true
  22443. },
  22444. naga: {
  22445. height: math.unit(20, "feet"),
  22446. weight: math.unit(15000, "kg"),
  22447. name: "Front",
  22448. image: {
  22449. source: "./media/characters/naldara/naga.svg",
  22450. extra: 1590/1396,
  22451. bottom: 285/1875
  22452. },
  22453. form: "naga",
  22454. default: true
  22455. },
  22456. },
  22457. [
  22458. {
  22459. name: "Normal",
  22460. height: math.unit(4 + 2 / 12, "feet"),
  22461. form: "anthro",
  22462. default: true
  22463. },
  22464. {
  22465. name: "Normal",
  22466. height: math.unit(20, "feet"),
  22467. form: "naga",
  22468. default: true
  22469. },
  22470. ],
  22471. {
  22472. "anthro": {
  22473. name: "Anthro",
  22474. default: true
  22475. },
  22476. "naga": {
  22477. name: "Naga"
  22478. }
  22479. }
  22480. ))
  22481. characterMakers.push(() => makeCharacter(
  22482. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22483. {
  22484. front: {
  22485. height: math.unit(13 + 7 / 12, "feet"),
  22486. weight: math.unit(1500, "lb"),
  22487. name: "Front",
  22488. image: {
  22489. source: "./media/characters/briar/front.svg",
  22490. extra: 1223/1157,
  22491. bottom: 123/1346
  22492. }
  22493. },
  22494. },
  22495. [
  22496. {
  22497. name: "Normal",
  22498. height: math.unit(13 + 7 / 12, "feet"),
  22499. default: true
  22500. },
  22501. ]
  22502. ))
  22503. characterMakers.push(() => makeCharacter(
  22504. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22505. {
  22506. side: {
  22507. height: math.unit(16, "feet"),
  22508. weight: math.unit(500, "lb"),
  22509. name: "Side",
  22510. image: {
  22511. source: "./media/characters/vanguard/side.svg",
  22512. extra: 1022/914,
  22513. bottom: 30/1052
  22514. }
  22515. },
  22516. sideAlt: {
  22517. height: math.unit(10, "feet"),
  22518. weight: math.unit(500, "lb"),
  22519. name: "Side (Alt)",
  22520. image: {
  22521. source: "./media/characters/vanguard/side-alt.svg",
  22522. extra: 502 / 425,
  22523. bottom: 0.087
  22524. }
  22525. },
  22526. },
  22527. [
  22528. {
  22529. name: "Normal",
  22530. height: math.unit(17.71, "feet"),
  22531. default: true
  22532. },
  22533. ]
  22534. ))
  22535. characterMakers.push(() => makeCharacter(
  22536. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22537. {
  22538. front: {
  22539. height: math.unit(7.5, "feet"),
  22540. weight: math.unit(2, "lb"),
  22541. name: "Front",
  22542. image: {
  22543. source: "./media/characters/artemis/work-safe-front.svg",
  22544. extra: 1192 / 1075,
  22545. bottom: 0.07
  22546. },
  22547. form: "work-safe",
  22548. default: true
  22549. },
  22550. frontNsfw: {
  22551. height: math.unit(7.5, "feet"),
  22552. weight: math.unit(2, "lb"),
  22553. name: "Front",
  22554. image: {
  22555. source: "./media/characters/artemis/calibrating-front.svg",
  22556. extra: 1192 / 1075,
  22557. bottom: 0.07
  22558. },
  22559. form: "calibrating",
  22560. default: true
  22561. },
  22562. frontNsfwer: {
  22563. height: math.unit(7.5, "feet"),
  22564. weight: math.unit(2, "lb"),
  22565. name: "Front",
  22566. image: {
  22567. source: "./media/characters/artemis/oversize-load-front.svg",
  22568. extra: 1192 / 1075,
  22569. bottom: 0.07
  22570. },
  22571. form: "oversize-load",
  22572. default: true
  22573. },
  22574. side: {
  22575. height: math.unit(7.5, "feet"),
  22576. weight: math.unit(2, "lb"),
  22577. name: "Side",
  22578. image: {
  22579. source: "./media/characters/artemis/work-safe-side.svg",
  22580. extra: 1192 / 1075,
  22581. bottom: 0.07
  22582. },
  22583. form: "work-safe"
  22584. },
  22585. sideNsfw: {
  22586. height: math.unit(7.5, "feet"),
  22587. weight: math.unit(2, "lb"),
  22588. name: "Side",
  22589. image: {
  22590. source: "./media/characters/artemis/calibrating-side.svg",
  22591. extra: 1192 / 1075,
  22592. bottom: 0.07
  22593. },
  22594. form: "calibrating"
  22595. },
  22596. sideNsfwer: {
  22597. height: math.unit(7.5, "feet"),
  22598. weight: math.unit(2, "lb"),
  22599. name: "Side",
  22600. image: {
  22601. source: "./media/characters/artemis/oversize-load-side.svg",
  22602. extra: 1192 / 1075,
  22603. bottom: 0.07
  22604. },
  22605. form: "oversize-load"
  22606. },
  22607. maw: {
  22608. height: math.unit(1.1, "feet"),
  22609. name: "Maw",
  22610. image: {
  22611. source: "./media/characters/artemis/maw.svg"
  22612. },
  22613. form: "work-safe"
  22614. },
  22615. stomach: {
  22616. height: math.unit(0.95, "feet"),
  22617. name: "Stomach",
  22618. image: {
  22619. source: "./media/characters/artemis/stomach.svg"
  22620. },
  22621. form: "work-safe"
  22622. },
  22623. dickCanine: {
  22624. height: math.unit(1, "feet"),
  22625. name: "Dick (Canine)",
  22626. image: {
  22627. source: "./media/characters/artemis/dick-canine.svg"
  22628. },
  22629. form: "calibrating"
  22630. },
  22631. dickEquine: {
  22632. height: math.unit(0.85, "feet"),
  22633. name: "Dick (Equine)",
  22634. image: {
  22635. source: "./media/characters/artemis/dick-equine.svg"
  22636. },
  22637. form: "calibrating"
  22638. },
  22639. dickExotic: {
  22640. height: math.unit(0.85, "feet"),
  22641. name: "Dick (Exotic)",
  22642. image: {
  22643. source: "./media/characters/artemis/dick-exotic.svg"
  22644. },
  22645. form: "calibrating"
  22646. },
  22647. dickCanineBigger: {
  22648. height: math.unit(1 * 1.33, "feet"),
  22649. name: "Dick (Canine)",
  22650. image: {
  22651. source: "./media/characters/artemis/dick-canine.svg"
  22652. },
  22653. form: "oversize-load"
  22654. },
  22655. dickEquineBigger: {
  22656. height: math.unit(0.85 * 1.33, "feet"),
  22657. name: "Dick (Equine)",
  22658. image: {
  22659. source: "./media/characters/artemis/dick-equine.svg"
  22660. },
  22661. form: "oversize-load"
  22662. },
  22663. dickExoticBigger: {
  22664. height: math.unit(0.85 * 1.33, "feet"),
  22665. name: "Dick (Exotic)",
  22666. image: {
  22667. source: "./media/characters/artemis/dick-exotic.svg"
  22668. },
  22669. form: "oversize-load"
  22670. },
  22671. },
  22672. [
  22673. {
  22674. name: "Normal",
  22675. height: math.unit(7.5, "feet"),
  22676. form: "work-safe",
  22677. default: true
  22678. },
  22679. {
  22680. name: "Normal",
  22681. height: math.unit(7.5, "feet"),
  22682. form: "calibrating",
  22683. default: true
  22684. },
  22685. {
  22686. name: "Normal",
  22687. height: math.unit(7.5, "feet"),
  22688. form: "oversize-load",
  22689. default: true
  22690. },
  22691. {
  22692. name: "Enlarged",
  22693. height: math.unit(12, "feet"),
  22694. form: "work-safe",
  22695. },
  22696. {
  22697. name: "Enlarged",
  22698. height: math.unit(12, "feet"),
  22699. form: "calibrating",
  22700. },
  22701. {
  22702. name: "Enlarged",
  22703. height: math.unit(12, "feet"),
  22704. form: "oversize-load",
  22705. },
  22706. ],
  22707. {
  22708. "work-safe": {
  22709. name: "Work-Safe",
  22710. default: true
  22711. },
  22712. "calibrating": {
  22713. name: "Calibrating"
  22714. },
  22715. "oversize-load": {
  22716. name: "Oversize Load"
  22717. }
  22718. }
  22719. ))
  22720. characterMakers.push(() => makeCharacter(
  22721. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22722. {
  22723. front: {
  22724. height: math.unit(5 + 3 / 12, "feet"),
  22725. weight: math.unit(160, "lb"),
  22726. name: "Front",
  22727. image: {
  22728. source: "./media/characters/kira/front.svg",
  22729. extra: 906 / 786,
  22730. bottom: 0.01
  22731. }
  22732. },
  22733. back: {
  22734. height: math.unit(5 + 3 / 12, "feet"),
  22735. weight: math.unit(160, "lb"),
  22736. name: "Back",
  22737. image: {
  22738. source: "./media/characters/kira/back.svg",
  22739. extra: 882 / 757,
  22740. bottom: 0.005
  22741. }
  22742. },
  22743. frontDressed: {
  22744. height: math.unit(5 + 3 / 12, "feet"),
  22745. weight: math.unit(160, "lb"),
  22746. name: "Front (Dressed)",
  22747. image: {
  22748. source: "./media/characters/kira/front-dressed.svg",
  22749. extra: 906 / 786,
  22750. bottom: 0.01
  22751. }
  22752. },
  22753. beans: {
  22754. height: math.unit(0.92, "feet"),
  22755. name: "Beans",
  22756. image: {
  22757. source: "./media/characters/kira/beans.svg"
  22758. }
  22759. },
  22760. },
  22761. [
  22762. {
  22763. name: "Normal",
  22764. height: math.unit(5 + 3 / 12, "feet"),
  22765. default: true
  22766. },
  22767. ]
  22768. ))
  22769. characterMakers.push(() => makeCharacter(
  22770. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22771. {
  22772. front: {
  22773. height: math.unit(5 + 4 / 12, "feet"),
  22774. weight: math.unit(145, "lb"),
  22775. name: "Front",
  22776. image: {
  22777. source: "./media/characters/scramble/front.svg",
  22778. extra: 763 / 727,
  22779. bottom: 0.05
  22780. }
  22781. },
  22782. back: {
  22783. height: math.unit(5 + 4 / 12, "feet"),
  22784. weight: math.unit(145, "lb"),
  22785. name: "Back",
  22786. image: {
  22787. source: "./media/characters/scramble/back.svg",
  22788. extra: 826 / 737,
  22789. bottom: 0.002
  22790. }
  22791. },
  22792. },
  22793. [
  22794. {
  22795. name: "Normal",
  22796. height: math.unit(5 + 4 / 12, "feet"),
  22797. default: true
  22798. },
  22799. ]
  22800. ))
  22801. characterMakers.push(() => makeCharacter(
  22802. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22803. {
  22804. side: {
  22805. height: math.unit(6 + 2 / 12, "feet"),
  22806. weight: math.unit(190, "lb"),
  22807. name: "Side",
  22808. image: {
  22809. source: "./media/characters/biscuit/side.svg",
  22810. extra: 858 / 791,
  22811. bottom: 0.044
  22812. }
  22813. },
  22814. },
  22815. [
  22816. {
  22817. name: "Normal",
  22818. height: math.unit(6 + 2 / 12, "feet"),
  22819. default: true
  22820. },
  22821. ]
  22822. ))
  22823. characterMakers.push(() => makeCharacter(
  22824. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22825. {
  22826. front: {
  22827. height: math.unit(5 + 2 / 12, "feet"),
  22828. weight: math.unit(120, "lb"),
  22829. name: "Front",
  22830. image: {
  22831. source: "./media/characters/poffin/front.svg",
  22832. extra: 786 / 680,
  22833. bottom: 0.005
  22834. }
  22835. },
  22836. },
  22837. [
  22838. {
  22839. name: "Normal",
  22840. height: math.unit(5 + 2 / 12, "feet"),
  22841. default: true
  22842. },
  22843. ]
  22844. ))
  22845. characterMakers.push(() => makeCharacter(
  22846. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22847. {
  22848. front: {
  22849. height: math.unit(6 + 3 / 12, "feet"),
  22850. weight: math.unit(519, "lb"),
  22851. name: "Front",
  22852. image: {
  22853. source: "./media/characters/dhari/front.svg",
  22854. extra: 1048 / 946,
  22855. bottom: 0.015
  22856. }
  22857. },
  22858. back: {
  22859. height: math.unit(6 + 3 / 12, "feet"),
  22860. weight: math.unit(519, "lb"),
  22861. name: "Back",
  22862. image: {
  22863. source: "./media/characters/dhari/back.svg",
  22864. extra: 1048 / 931,
  22865. bottom: 0.005
  22866. }
  22867. },
  22868. frontDressed: {
  22869. height: math.unit(6 + 3 / 12, "feet"),
  22870. weight: math.unit(519, "lb"),
  22871. name: "Front (Dressed)",
  22872. image: {
  22873. source: "./media/characters/dhari/front-dressed.svg",
  22874. extra: 1713 / 1546,
  22875. bottom: 0.02
  22876. }
  22877. },
  22878. backDressed: {
  22879. height: math.unit(6 + 3 / 12, "feet"),
  22880. weight: math.unit(519, "lb"),
  22881. name: "Back (Dressed)",
  22882. image: {
  22883. source: "./media/characters/dhari/back-dressed.svg",
  22884. extra: 1699 / 1537,
  22885. bottom: 0.01
  22886. }
  22887. },
  22888. maw: {
  22889. height: math.unit(0.95, "feet"),
  22890. name: "Maw",
  22891. image: {
  22892. source: "./media/characters/dhari/maw.svg"
  22893. }
  22894. },
  22895. wereFront: {
  22896. height: math.unit(12 + 8 / 12, "feet"),
  22897. weight: math.unit(4000, "lb"),
  22898. name: "Front (Were)",
  22899. image: {
  22900. source: "./media/characters/dhari/were-front.svg",
  22901. extra: 1065 / 969,
  22902. bottom: 0.015
  22903. }
  22904. },
  22905. wereBack: {
  22906. height: math.unit(12 + 8 / 12, "feet"),
  22907. weight: math.unit(4000, "lb"),
  22908. name: "Back (Were)",
  22909. image: {
  22910. source: "./media/characters/dhari/were-back.svg",
  22911. extra: 1065 / 969,
  22912. bottom: 0.012
  22913. }
  22914. },
  22915. wereMaw: {
  22916. height: math.unit(0.625, "meters"),
  22917. name: "Maw (Were)",
  22918. image: {
  22919. source: "./media/characters/dhari/were-maw.svg"
  22920. }
  22921. },
  22922. },
  22923. [
  22924. {
  22925. name: "Normal",
  22926. height: math.unit(6 + 3 / 12, "feet"),
  22927. default: true
  22928. },
  22929. ]
  22930. ))
  22931. characterMakers.push(() => makeCharacter(
  22932. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22933. {
  22934. anthro: {
  22935. height: math.unit(5 + 7 / 12, "feet"),
  22936. weight: math.unit(175, "lb"),
  22937. name: "Anthro",
  22938. image: {
  22939. source: "./media/characters/rena-dyne/anthro.svg",
  22940. extra: 1849 / 1785,
  22941. bottom: 0.005
  22942. }
  22943. },
  22944. taur: {
  22945. height: math.unit(15 + 6 / 12, "feet"),
  22946. weight: math.unit(8000, "lb"),
  22947. name: "Taur",
  22948. image: {
  22949. source: "./media/characters/rena-dyne/taur.svg",
  22950. extra: 2315 / 2234,
  22951. bottom: 0.033
  22952. }
  22953. },
  22954. },
  22955. [
  22956. {
  22957. name: "Normal",
  22958. height: math.unit(5 + 7 / 12, "feet"),
  22959. default: true
  22960. },
  22961. ]
  22962. ))
  22963. characterMakers.push(() => makeCharacter(
  22964. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22965. {
  22966. front: {
  22967. height: math.unit(8, "feet"),
  22968. weight: math.unit(600, "lb"),
  22969. name: "Front",
  22970. image: {
  22971. source: "./media/characters/weremeep/front.svg",
  22972. extra: 970/849,
  22973. bottom: 7/977
  22974. }
  22975. },
  22976. },
  22977. [
  22978. {
  22979. name: "Normal",
  22980. height: math.unit(8, "feet"),
  22981. default: true
  22982. },
  22983. {
  22984. name: "Lorg",
  22985. height: math.unit(12, "feet")
  22986. },
  22987. {
  22988. name: "Oh Lawd She Comin'",
  22989. height: math.unit(20, "feet")
  22990. },
  22991. ]
  22992. ))
  22993. characterMakers.push(() => makeCharacter(
  22994. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22995. {
  22996. front: {
  22997. height: math.unit(4, "feet"),
  22998. weight: math.unit(90, "lb"),
  22999. name: "Front",
  23000. image: {
  23001. source: "./media/characters/reza/front.svg",
  23002. extra: 1183 / 1111,
  23003. bottom: 0.017
  23004. }
  23005. },
  23006. back: {
  23007. height: math.unit(4, "feet"),
  23008. weight: math.unit(90, "lb"),
  23009. name: "Back",
  23010. image: {
  23011. source: "./media/characters/reza/back.svg",
  23012. extra: 1183 / 1111,
  23013. bottom: 0.01
  23014. }
  23015. },
  23016. drake: {
  23017. height: math.unit(30, "feet"),
  23018. weight: math.unit(246960, "lb"),
  23019. name: "Drake",
  23020. image: {
  23021. source: "./media/characters/reza/drake.svg",
  23022. extra: 2350 / 2024,
  23023. bottom: 60.7 / 2403
  23024. }
  23025. },
  23026. },
  23027. [
  23028. {
  23029. name: "Normal",
  23030. height: math.unit(4, "feet"),
  23031. default: true
  23032. },
  23033. ]
  23034. ))
  23035. characterMakers.push(() => makeCharacter(
  23036. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23037. {
  23038. side: {
  23039. height: math.unit(15, "feet"),
  23040. weight: math.unit(14, "tons"),
  23041. name: "Side",
  23042. image: {
  23043. source: "./media/characters/athea/side.svg",
  23044. extra: 960 / 540,
  23045. bottom: 0.003
  23046. }
  23047. },
  23048. sitting: {
  23049. height: math.unit(6 * 2.85, "feet"),
  23050. weight: math.unit(14, "tons"),
  23051. name: "Sitting",
  23052. image: {
  23053. source: "./media/characters/athea/sitting.svg",
  23054. extra: 621 / 581,
  23055. bottom: 0.075
  23056. }
  23057. },
  23058. maw: {
  23059. height: math.unit(7.59498031496063, "feet"),
  23060. name: "Maw",
  23061. image: {
  23062. source: "./media/characters/athea/maw.svg"
  23063. }
  23064. },
  23065. },
  23066. [
  23067. {
  23068. name: "Lap Cat",
  23069. height: math.unit(2.5, "feet")
  23070. },
  23071. {
  23072. name: "Minimacro",
  23073. height: math.unit(15, "feet"),
  23074. default: true
  23075. },
  23076. {
  23077. name: "Macro",
  23078. height: math.unit(120, "feet")
  23079. },
  23080. {
  23081. name: "Macro+",
  23082. height: math.unit(640, "feet")
  23083. },
  23084. {
  23085. name: "Colossus",
  23086. height: math.unit(2.2, "miles")
  23087. },
  23088. ]
  23089. ))
  23090. characterMakers.push(() => makeCharacter(
  23091. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23092. {
  23093. front: {
  23094. height: math.unit(8 + 8 / 12, "feet"),
  23095. weight: math.unit(130, "kg"),
  23096. name: "Front",
  23097. image: {
  23098. source: "./media/characters/seroko/front.svg",
  23099. extra: 1385 / 1280,
  23100. bottom: 0.025
  23101. }
  23102. },
  23103. back: {
  23104. height: math.unit(8 + 8 / 12, "feet"),
  23105. weight: math.unit(130, "kg"),
  23106. name: "Back",
  23107. image: {
  23108. source: "./media/characters/seroko/back.svg",
  23109. extra: 1369 / 1238,
  23110. bottom: 0.018
  23111. }
  23112. },
  23113. frontDressed: {
  23114. height: math.unit(8 + 8 / 12, "feet"),
  23115. weight: math.unit(130, "kg"),
  23116. name: "Front (Dressed)",
  23117. image: {
  23118. source: "./media/characters/seroko/front-dressed.svg",
  23119. extra: 1366 / 1275,
  23120. bottom: 0.03
  23121. }
  23122. },
  23123. },
  23124. [
  23125. {
  23126. name: "Normal",
  23127. height: math.unit(8 + 8 / 12, "feet"),
  23128. default: true
  23129. },
  23130. ]
  23131. ))
  23132. characterMakers.push(() => makeCharacter(
  23133. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23134. {
  23135. front: {
  23136. height: math.unit(5.5, "feet"),
  23137. weight: math.unit(160, "lb"),
  23138. name: "Front",
  23139. image: {
  23140. source: "./media/characters/quatzi/front.svg",
  23141. extra: 2346 / 2242,
  23142. bottom: 0.015
  23143. }
  23144. },
  23145. },
  23146. [
  23147. {
  23148. name: "Normal",
  23149. height: math.unit(5.5, "feet"),
  23150. default: true
  23151. },
  23152. {
  23153. name: "Big",
  23154. height: math.unit(7.7, "feet")
  23155. },
  23156. ]
  23157. ))
  23158. characterMakers.push(() => makeCharacter(
  23159. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23160. {
  23161. front: {
  23162. height: math.unit(5 + 11 / 12, "feet"),
  23163. weight: math.unit(180, "lb"),
  23164. name: "Front",
  23165. image: {
  23166. source: "./media/characters/sen/front.svg",
  23167. extra: 1321 / 1254,
  23168. bottom: 0.015
  23169. }
  23170. },
  23171. side: {
  23172. height: math.unit(5 + 11 / 12, "feet"),
  23173. weight: math.unit(180, "lb"),
  23174. name: "Side",
  23175. image: {
  23176. source: "./media/characters/sen/side.svg",
  23177. extra: 1321 / 1254,
  23178. bottom: 0.007
  23179. }
  23180. },
  23181. back: {
  23182. height: math.unit(5 + 11 / 12, "feet"),
  23183. weight: math.unit(180, "lb"),
  23184. name: "Back",
  23185. image: {
  23186. source: "./media/characters/sen/back.svg",
  23187. extra: 1321 / 1254
  23188. }
  23189. },
  23190. },
  23191. [
  23192. {
  23193. name: "Normal",
  23194. height: math.unit(5 + 11 / 12, "feet"),
  23195. default: true
  23196. },
  23197. ]
  23198. ))
  23199. characterMakers.push(() => makeCharacter(
  23200. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23201. {
  23202. front: {
  23203. height: math.unit(166.6, "cm"),
  23204. weight: math.unit(66.6, "kg"),
  23205. name: "Front",
  23206. image: {
  23207. source: "./media/characters/fruity/front.svg",
  23208. extra: 1510 / 1386,
  23209. bottom: 0.04
  23210. }
  23211. },
  23212. back: {
  23213. height: math.unit(166.6, "cm"),
  23214. weight: math.unit(66.6, "lb"),
  23215. name: "Back",
  23216. image: {
  23217. source: "./media/characters/fruity/back.svg",
  23218. extra: 1563 / 1435,
  23219. bottom: 0.005
  23220. }
  23221. },
  23222. },
  23223. [
  23224. {
  23225. name: "Normal",
  23226. height: math.unit(166.6, "cm"),
  23227. default: true
  23228. },
  23229. {
  23230. name: "Demonic",
  23231. height: math.unit(166.6, "feet")
  23232. },
  23233. ]
  23234. ))
  23235. characterMakers.push(() => makeCharacter(
  23236. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23237. {
  23238. side: {
  23239. height: math.unit(10, "feet"),
  23240. weight: math.unit(500, "lb"),
  23241. name: "Side",
  23242. image: {
  23243. source: "./media/characters/zost/side.svg",
  23244. extra: 2870/2533,
  23245. bottom: 252/3122
  23246. }
  23247. },
  23248. mawFront: {
  23249. height: math.unit(1.08, "meters"),
  23250. name: "Maw (Front)",
  23251. image: {
  23252. source: "./media/characters/zost/maw-front.svg"
  23253. }
  23254. },
  23255. mawSide: {
  23256. height: math.unit(2.66, "feet"),
  23257. name: "Maw (Side)",
  23258. image: {
  23259. source: "./media/characters/zost/maw-side.svg"
  23260. }
  23261. },
  23262. wingspan: {
  23263. height: math.unit(7.4, "feet"),
  23264. name: "Wingspan",
  23265. image: {
  23266. source: "./media/characters/zost/wingspan.svg"
  23267. }
  23268. },
  23269. },
  23270. [
  23271. {
  23272. name: "Normal",
  23273. height: math.unit(10, "feet"),
  23274. default: true
  23275. },
  23276. ]
  23277. ))
  23278. characterMakers.push(() => makeCharacter(
  23279. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23280. {
  23281. front: {
  23282. height: math.unit(5 + 4 / 12, "feet"),
  23283. weight: math.unit(120, "lb"),
  23284. name: "Front",
  23285. image: {
  23286. source: "./media/characters/luci/front.svg",
  23287. extra: 1985 / 1884,
  23288. bottom: 0.04
  23289. }
  23290. },
  23291. back: {
  23292. height: math.unit(5 + 4 / 12, "feet"),
  23293. weight: math.unit(120, "lb"),
  23294. name: "Back",
  23295. image: {
  23296. source: "./media/characters/luci/back.svg",
  23297. extra: 1892 / 1791,
  23298. bottom: 0.002
  23299. }
  23300. },
  23301. },
  23302. [
  23303. {
  23304. name: "Normal",
  23305. height: math.unit(5 + 4 / 12, "feet"),
  23306. default: true
  23307. },
  23308. ]
  23309. ))
  23310. characterMakers.push(() => makeCharacter(
  23311. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23312. {
  23313. front: {
  23314. height: math.unit(1500, "feet"),
  23315. weight: math.unit(3.8e6, "tons"),
  23316. name: "Front",
  23317. image: {
  23318. source: "./media/characters/2th/front.svg",
  23319. extra: 3489 / 3350,
  23320. bottom: 0.1
  23321. }
  23322. },
  23323. foot: {
  23324. height: math.unit(461, "feet"),
  23325. name: "Foot",
  23326. image: {
  23327. source: "./media/characters/2th/foot.svg"
  23328. }
  23329. },
  23330. },
  23331. [
  23332. {
  23333. name: "\"Micro\"",
  23334. height: math.unit(15 + 7 / 12, "feet")
  23335. },
  23336. {
  23337. name: "Normal",
  23338. height: math.unit(1500, "feet"),
  23339. default: true
  23340. },
  23341. {
  23342. name: "Macro",
  23343. height: math.unit(5000, "feet")
  23344. },
  23345. {
  23346. name: "Megamacro",
  23347. height: math.unit(15, "miles")
  23348. },
  23349. {
  23350. name: "Gigamacro",
  23351. height: math.unit(4000, "miles")
  23352. },
  23353. {
  23354. name: "Galactic",
  23355. height: math.unit(50, "AU")
  23356. },
  23357. ]
  23358. ))
  23359. characterMakers.push(() => makeCharacter(
  23360. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23361. {
  23362. front: {
  23363. height: math.unit(5 + 6 / 12, "feet"),
  23364. weight: math.unit(220, "lb"),
  23365. name: "Front",
  23366. image: {
  23367. source: "./media/characters/amethyst/front.svg",
  23368. extra: 2078 / 2040,
  23369. bottom: 0.045
  23370. }
  23371. },
  23372. back: {
  23373. height: math.unit(5 + 6 / 12, "feet"),
  23374. weight: math.unit(220, "lb"),
  23375. name: "Back",
  23376. image: {
  23377. source: "./media/characters/amethyst/back.svg",
  23378. extra: 2021 / 1989,
  23379. bottom: 0.02
  23380. }
  23381. },
  23382. },
  23383. [
  23384. {
  23385. name: "Normal",
  23386. height: math.unit(5 + 6 / 12, "feet"),
  23387. default: true
  23388. },
  23389. ]
  23390. ))
  23391. characterMakers.push(() => makeCharacter(
  23392. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23393. {
  23394. front: {
  23395. height: math.unit(4 + 11 / 12, "feet"),
  23396. weight: math.unit(120, "lb"),
  23397. name: "Front",
  23398. image: {
  23399. source: "./media/characters/yumi-akiyama/front.svg",
  23400. extra: 1327 / 1235,
  23401. bottom: 0.02
  23402. }
  23403. },
  23404. back: {
  23405. height: math.unit(4 + 11 / 12, "feet"),
  23406. weight: math.unit(120, "lb"),
  23407. name: "Back",
  23408. image: {
  23409. source: "./media/characters/yumi-akiyama/back.svg",
  23410. extra: 1287 / 1245,
  23411. bottom: 0.002
  23412. }
  23413. },
  23414. },
  23415. [
  23416. {
  23417. name: "Galactic",
  23418. height: math.unit(50, "galaxies"),
  23419. default: true
  23420. },
  23421. {
  23422. name: "Universal",
  23423. height: math.unit(100, "universes")
  23424. },
  23425. ]
  23426. ))
  23427. characterMakers.push(() => makeCharacter(
  23428. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23429. {
  23430. front: {
  23431. height: math.unit(8, "feet"),
  23432. weight: math.unit(500, "lb"),
  23433. name: "Front",
  23434. image: {
  23435. source: "./media/characters/rifter-yrmori/front.svg",
  23436. extra: 1180 / 1125,
  23437. bottom: 0.02
  23438. }
  23439. },
  23440. back: {
  23441. height: math.unit(8, "feet"),
  23442. weight: math.unit(500, "lb"),
  23443. name: "Back",
  23444. image: {
  23445. source: "./media/characters/rifter-yrmori/back.svg",
  23446. extra: 1190 / 1145,
  23447. bottom: 0.001
  23448. }
  23449. },
  23450. wings: {
  23451. height: math.unit(7.75, "feet"),
  23452. weight: math.unit(500, "lb"),
  23453. name: "Wings",
  23454. image: {
  23455. source: "./media/characters/rifter-yrmori/wings.svg",
  23456. extra: 1357 / 1285
  23457. }
  23458. },
  23459. maw: {
  23460. height: math.unit(0.8, "feet"),
  23461. name: "Maw",
  23462. image: {
  23463. source: "./media/characters/rifter-yrmori/maw.svg"
  23464. }
  23465. },
  23466. mawfront: {
  23467. height: math.unit(1.45, "feet"),
  23468. name: "Maw (Front)",
  23469. image: {
  23470. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23471. }
  23472. },
  23473. },
  23474. [
  23475. {
  23476. name: "Normal",
  23477. height: math.unit(8, "feet"),
  23478. default: true
  23479. },
  23480. {
  23481. name: "Macro",
  23482. height: math.unit(42, "meters")
  23483. },
  23484. ]
  23485. ))
  23486. characterMakers.push(() => makeCharacter(
  23487. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23488. {
  23489. were: {
  23490. height: math.unit(25 + 6 / 12, "feet"),
  23491. weight: math.unit(10000, "lb"),
  23492. name: "Were",
  23493. image: {
  23494. source: "./media/characters/tahajin/were.svg",
  23495. extra: 801 / 770,
  23496. bottom: 0.042
  23497. }
  23498. },
  23499. aquatic: {
  23500. height: math.unit(6 + 4 / 12, "feet"),
  23501. weight: math.unit(160, "lb"),
  23502. name: "Aquatic",
  23503. image: {
  23504. source: "./media/characters/tahajin/aquatic.svg",
  23505. extra: 572 / 542,
  23506. bottom: 0.04
  23507. }
  23508. },
  23509. chow: {
  23510. height: math.unit(8 + 11 / 12, "feet"),
  23511. weight: math.unit(450, "lb"),
  23512. name: "Chow",
  23513. image: {
  23514. source: "./media/characters/tahajin/chow.svg",
  23515. extra: 660 / 640,
  23516. bottom: 0.015
  23517. }
  23518. },
  23519. demiNaga: {
  23520. height: math.unit(6 + 8 / 12, "feet"),
  23521. weight: math.unit(300, "lb"),
  23522. name: "Demi Naga",
  23523. image: {
  23524. source: "./media/characters/tahajin/demi-naga.svg",
  23525. extra: 643 / 615,
  23526. bottom: 0.1
  23527. }
  23528. },
  23529. data: {
  23530. height: math.unit(5, "inches"),
  23531. weight: math.unit(0.1, "lb"),
  23532. name: "Data",
  23533. image: {
  23534. source: "./media/characters/tahajin/data.svg"
  23535. }
  23536. },
  23537. fluu: {
  23538. height: math.unit(5 + 7 / 12, "feet"),
  23539. weight: math.unit(140, "lb"),
  23540. name: "Fluu",
  23541. image: {
  23542. source: "./media/characters/tahajin/fluu.svg",
  23543. extra: 628 / 592,
  23544. bottom: 0.02
  23545. }
  23546. },
  23547. starWarrior: {
  23548. height: math.unit(4 + 5 / 12, "feet"),
  23549. weight: math.unit(50, "lb"),
  23550. name: "Star Warrior",
  23551. image: {
  23552. source: "./media/characters/tahajin/star-warrior.svg"
  23553. }
  23554. },
  23555. },
  23556. [
  23557. {
  23558. name: "Normal",
  23559. height: math.unit(25 + 6 / 12, "feet"),
  23560. default: true
  23561. },
  23562. ]
  23563. ))
  23564. characterMakers.push(() => makeCharacter(
  23565. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23566. {
  23567. front: {
  23568. height: math.unit(8, "feet"),
  23569. weight: math.unit(350, "lb"),
  23570. name: "Front",
  23571. image: {
  23572. source: "./media/characters/gabira/front.svg",
  23573. extra: 1261/1154,
  23574. bottom: 51/1312
  23575. }
  23576. },
  23577. back: {
  23578. height: math.unit(8, "feet"),
  23579. weight: math.unit(350, "lb"),
  23580. name: "Back",
  23581. image: {
  23582. source: "./media/characters/gabira/back.svg",
  23583. extra: 1265/1163,
  23584. bottom: 46/1311
  23585. }
  23586. },
  23587. head: {
  23588. height: math.unit(2.85, "feet"),
  23589. name: "Head",
  23590. image: {
  23591. source: "./media/characters/gabira/head.svg"
  23592. }
  23593. },
  23594. },
  23595. [
  23596. {
  23597. name: "Normal",
  23598. height: math.unit(8, "feet"),
  23599. default: true
  23600. },
  23601. ]
  23602. ))
  23603. characterMakers.push(() => makeCharacter(
  23604. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23605. {
  23606. front: {
  23607. height: math.unit(5 + 3 / 12, "feet"),
  23608. weight: math.unit(137, "lb"),
  23609. name: "Front",
  23610. image: {
  23611. source: "./media/characters/sasha-katraine/front.svg",
  23612. extra: 1745/1694,
  23613. bottom: 37/1782
  23614. }
  23615. },
  23616. back: {
  23617. height: math.unit(5 + 3 / 12, "feet"),
  23618. weight: math.unit(137, "lb"),
  23619. name: "Back",
  23620. image: {
  23621. source: "./media/characters/sasha-katraine/back.svg",
  23622. extra: 1776/1699,
  23623. bottom: 26/1802
  23624. }
  23625. },
  23626. },
  23627. [
  23628. {
  23629. name: "Micro",
  23630. height: math.unit(5, "inches")
  23631. },
  23632. {
  23633. name: "Normal",
  23634. height: math.unit(5 + 3 / 12, "feet"),
  23635. default: true
  23636. },
  23637. ]
  23638. ))
  23639. characterMakers.push(() => makeCharacter(
  23640. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23641. {
  23642. side: {
  23643. height: math.unit(4, "inches"),
  23644. weight: math.unit(200, "grams"),
  23645. name: "Side",
  23646. image: {
  23647. source: "./media/characters/der/side.svg",
  23648. extra: 719 / 400,
  23649. bottom: 30.6 / 749.9187
  23650. }
  23651. },
  23652. },
  23653. [
  23654. {
  23655. name: "Micro",
  23656. height: math.unit(4, "inches"),
  23657. default: true
  23658. },
  23659. ]
  23660. ))
  23661. characterMakers.push(() => makeCharacter(
  23662. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23663. {
  23664. side: {
  23665. height: math.unit(30, "meters"),
  23666. weight: math.unit(700, "tonnes"),
  23667. name: "Side",
  23668. image: {
  23669. source: "./media/characters/fixerdragon/side.svg",
  23670. extra: (1293.0514 - 116.03) / 1106.86,
  23671. bottom: 116.03 / 1293.0514
  23672. }
  23673. },
  23674. },
  23675. [
  23676. {
  23677. name: "Planck",
  23678. height: math.unit(1.6e-35, "meters")
  23679. },
  23680. {
  23681. name: "Micro",
  23682. height: math.unit(0.4, "meters")
  23683. },
  23684. {
  23685. name: "Normal",
  23686. height: math.unit(30, "meters"),
  23687. default: true
  23688. },
  23689. {
  23690. name: "Megamacro",
  23691. height: math.unit(1.2, "megameters")
  23692. },
  23693. {
  23694. name: "Teramacro",
  23695. height: math.unit(130, "terameters")
  23696. },
  23697. {
  23698. name: "Yottamacro",
  23699. height: math.unit(6200, "yottameters")
  23700. },
  23701. ]
  23702. ));
  23703. characterMakers.push(() => makeCharacter(
  23704. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23705. {
  23706. front: {
  23707. height: math.unit(8, "feet"),
  23708. weight: math.unit(250, "lb"),
  23709. name: "Front",
  23710. image: {
  23711. source: "./media/characters/kite/front.svg",
  23712. extra: 2796 / 2659,
  23713. bottom: 0.002
  23714. }
  23715. },
  23716. },
  23717. [
  23718. {
  23719. name: "Normal",
  23720. height: math.unit(8, "feet"),
  23721. default: true
  23722. },
  23723. {
  23724. name: "Macro",
  23725. height: math.unit(360, "feet")
  23726. },
  23727. {
  23728. name: "Megamacro",
  23729. height: math.unit(1500, "feet")
  23730. },
  23731. ]
  23732. ))
  23733. characterMakers.push(() => makeCharacter(
  23734. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23735. {
  23736. anthro_front: {
  23737. height: math.unit(5 + 11/12, "feet"),
  23738. weight: math.unit(170, "lb"),
  23739. name: "Front",
  23740. image: {
  23741. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  23742. extra: 1735/1585,
  23743. bottom: 96/1831
  23744. },
  23745. form: "anthro",
  23746. default: true
  23747. },
  23748. anthro_back: {
  23749. height: math.unit(5 + 11/12, "feet"),
  23750. weight: math.unit(170, "lb"),
  23751. name: "Back",
  23752. image: {
  23753. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  23754. extra: 1749/1607,
  23755. bottom: 28/1777
  23756. },
  23757. form: "anthro"
  23758. },
  23759. anthro_male: {
  23760. height: math.unit(5 + 11/12, "feet"),
  23761. weight: math.unit(170, "lb"),
  23762. name: "Male",
  23763. image: {
  23764. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  23765. extra: 1855/1713,
  23766. bottom: 63/1918
  23767. },
  23768. form: "anthro"
  23769. },
  23770. taur_front: {
  23771. height: math.unit(5 + 7/12, "feet"),
  23772. weight: math.unit(170, "lb"),
  23773. name: "Front",
  23774. image: {
  23775. source: "./media/characters/poojawa-vynar/taur-front.svg",
  23776. extra: 1151/1059,
  23777. bottom: 356/1507
  23778. },
  23779. form: "taur",
  23780. default: true
  23781. },
  23782. anthro_frontDressed: {
  23783. height: math.unit(5 + 11/12, "feet"),
  23784. weight: math.unit(170, "lb"),
  23785. name: "Front (Dressed)",
  23786. image: {
  23787. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  23788. extra: 1735/1585,
  23789. bottom: 96/1831
  23790. },
  23791. form: "anthro"
  23792. },
  23793. anthro_backDressed: {
  23794. height: math.unit(5 + 11/12, "feet"),
  23795. weight: math.unit(170, "lb"),
  23796. name: "Back (Dressed)",
  23797. image: {
  23798. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  23799. extra: 1749/1607,
  23800. bottom: 28/1777
  23801. },
  23802. form: "anthro"
  23803. },
  23804. anthro_maleDressed: {
  23805. height: math.unit(5 + 11/12, "feet"),
  23806. weight: math.unit(170, "lb"),
  23807. name: "Male (Dressed)",
  23808. image: {
  23809. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  23810. extra: 1855/1713,
  23811. bottom: 63/1918
  23812. },
  23813. form: "anthro"
  23814. },
  23815. taur_frontDressed: {
  23816. height: math.unit(5 + 7/12, "feet"),
  23817. weight: math.unit(170, "lb"),
  23818. name: "Front (Dressed)",
  23819. image: {
  23820. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  23821. extra: 1151/1059,
  23822. bottom: 356/1507
  23823. },
  23824. form: "taur"
  23825. },
  23826. maw: {
  23827. height: math.unit(1.46, "feet"),
  23828. name: "Maw",
  23829. image: {
  23830. source: "./media/characters/poojawa-vynar/maw.svg"
  23831. },
  23832. allForms: true
  23833. },
  23834. head: {
  23835. height: math.unit(2.34, "feet"),
  23836. name: "Head",
  23837. image: {
  23838. source: "./media/characters/poojawa-vynar/head.svg"
  23839. },
  23840. allForms: true
  23841. },
  23842. leftPaw: {
  23843. height: math.unit(1.72, "feet"),
  23844. name: "Left Paw",
  23845. image: {
  23846. source: "./media/characters/poojawa-vynar/paw-left.svg"
  23847. },
  23848. allForms: true
  23849. },
  23850. rightPaw: {
  23851. height: math.unit(1.61, "feet"),
  23852. name: "Right Paw",
  23853. image: {
  23854. source: "./media/characters/poojawa-vynar/paw-right.svg"
  23855. },
  23856. allForms: true
  23857. },
  23858. toering: {
  23859. height: math.unit(2.9, "inches"),
  23860. name: "Toering",
  23861. image: {
  23862. source: "./media/characters/poojawa-vynar/toering.svg"
  23863. },
  23864. allForms: true
  23865. },
  23866. shaft: {
  23867. height: math.unit(0.625, "feet"),
  23868. name: "Shaft",
  23869. image: {
  23870. source: "./media/characters/poojawa-vynar/shaft.svg"
  23871. },
  23872. allForms: true
  23873. },
  23874. spade: {
  23875. height: math.unit(0.42, "feet"),
  23876. name: "Spade",
  23877. image: {
  23878. source: "./media/characters/poojawa-vynar/spade.svg"
  23879. },
  23880. allForms: true
  23881. },
  23882. },
  23883. [
  23884. {
  23885. name: "Shortstack",
  23886. height: math.unit(4, "feet"),
  23887. form: "anthro"
  23888. },
  23889. {
  23890. name: "Normal",
  23891. height: math.unit(5 + 11 / 12, "feet"),
  23892. form: "anthro",
  23893. default: true
  23894. },
  23895. {
  23896. name: "Tauric",
  23897. height: math.unit(4, "meters"),
  23898. form: "taur",
  23899. default: true
  23900. },
  23901. ],
  23902. {
  23903. "anthro": {
  23904. name: "Anthro",
  23905. default: true
  23906. },
  23907. "taur": {
  23908. name: "Taur",
  23909. },
  23910. }
  23911. ))
  23912. characterMakers.push(() => makeCharacter(
  23913. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23914. {
  23915. front: {
  23916. height: math.unit(293, "meters"),
  23917. weight: math.unit(70400, "tons"),
  23918. name: "Front",
  23919. image: {
  23920. source: "./media/characters/violette/front.svg",
  23921. extra: 1227 / 1180,
  23922. bottom: 0.005
  23923. }
  23924. },
  23925. back: {
  23926. height: math.unit(293, "meters"),
  23927. weight: math.unit(70400, "tons"),
  23928. name: "Back",
  23929. image: {
  23930. source: "./media/characters/violette/back.svg",
  23931. extra: 1227 / 1180,
  23932. bottom: 0.005
  23933. }
  23934. },
  23935. },
  23936. [
  23937. {
  23938. name: "Macro",
  23939. height: math.unit(293, "meters"),
  23940. default: true
  23941. },
  23942. ]
  23943. ))
  23944. characterMakers.push(() => makeCharacter(
  23945. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23946. {
  23947. front: {
  23948. height: math.unit(1050, "feet"),
  23949. weight: math.unit(200000, "tons"),
  23950. name: "Front",
  23951. image: {
  23952. source: "./media/characters/alessandra/front.svg",
  23953. extra: 960 / 912,
  23954. bottom: 0.06
  23955. }
  23956. },
  23957. },
  23958. [
  23959. {
  23960. name: "Macro",
  23961. height: math.unit(1050, "feet")
  23962. },
  23963. {
  23964. name: "Macro+",
  23965. height: math.unit(900, "meters"),
  23966. default: true
  23967. },
  23968. ]
  23969. ))
  23970. characterMakers.push(() => makeCharacter(
  23971. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23972. {
  23973. front: {
  23974. height: math.unit(5, "feet"),
  23975. weight: math.unit(187, "lb"),
  23976. name: "Front",
  23977. image: {
  23978. source: "./media/characters/person/front.svg",
  23979. extra: 3087 / 2945,
  23980. bottom: 91 / 3181
  23981. }
  23982. },
  23983. },
  23984. [
  23985. {
  23986. name: "Micro",
  23987. height: math.unit(3, "inches")
  23988. },
  23989. {
  23990. name: "Normal",
  23991. height: math.unit(5, "feet"),
  23992. default: true
  23993. },
  23994. {
  23995. name: "Macro",
  23996. height: math.unit(90, "feet")
  23997. },
  23998. {
  23999. name: "Max Size",
  24000. height: math.unit(280, "feet")
  24001. },
  24002. ]
  24003. ))
  24004. characterMakers.push(() => makeCharacter(
  24005. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24006. {
  24007. front: {
  24008. height: math.unit(4.5, "meters"),
  24009. weight: math.unit(3200, "lb"),
  24010. name: "Front",
  24011. image: {
  24012. source: "./media/characters/ty/front.svg",
  24013. extra: 1038 / 960,
  24014. bottom: 31.156 / 1068
  24015. }
  24016. },
  24017. back: {
  24018. height: math.unit(4.5, "meters"),
  24019. weight: math.unit(3200, "lb"),
  24020. name: "Back",
  24021. image: {
  24022. source: "./media/characters/ty/back.svg",
  24023. extra: 1044 / 966,
  24024. bottom: 7.48 / 1049
  24025. }
  24026. },
  24027. },
  24028. [
  24029. {
  24030. name: "Normal",
  24031. height: math.unit(4.5, "meters"),
  24032. default: true
  24033. },
  24034. ]
  24035. ))
  24036. characterMakers.push(() => makeCharacter(
  24037. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24038. {
  24039. front: {
  24040. height: math.unit(5 + 4 / 12, "feet"),
  24041. weight: math.unit(115, "lb"),
  24042. name: "Front",
  24043. image: {
  24044. source: "./media/characters/rocky/front.svg",
  24045. extra: 1012 / 975,
  24046. bottom: 54 / 1066
  24047. }
  24048. },
  24049. },
  24050. [
  24051. {
  24052. name: "Normal",
  24053. height: math.unit(5 + 4 / 12, "feet"),
  24054. default: true
  24055. },
  24056. ]
  24057. ))
  24058. characterMakers.push(() => makeCharacter(
  24059. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24060. {
  24061. upright: {
  24062. height: math.unit(6, "meters"),
  24063. weight: math.unit(4000, "kg"),
  24064. name: "Upright",
  24065. image: {
  24066. source: "./media/characters/ruin/upright.svg",
  24067. extra: 668 / 661,
  24068. bottom: 42 / 799.8396
  24069. }
  24070. },
  24071. },
  24072. [
  24073. {
  24074. name: "Normal",
  24075. height: math.unit(6, "meters"),
  24076. default: true
  24077. },
  24078. ]
  24079. ))
  24080. characterMakers.push(() => makeCharacter(
  24081. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24082. {
  24083. front: {
  24084. height: math.unit(5, "feet"),
  24085. weight: math.unit(106, "lb"),
  24086. name: "Front",
  24087. image: {
  24088. source: "./media/characters/robin/front.svg",
  24089. extra: 862 / 799,
  24090. bottom: 42.4 / 914.8856
  24091. }
  24092. },
  24093. },
  24094. [
  24095. {
  24096. name: "Normal",
  24097. height: math.unit(5, "feet"),
  24098. default: true
  24099. },
  24100. ]
  24101. ))
  24102. characterMakers.push(() => makeCharacter(
  24103. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24104. {
  24105. side: {
  24106. height: math.unit(3, "feet"),
  24107. weight: math.unit(225, "lb"),
  24108. name: "Side",
  24109. image: {
  24110. source: "./media/characters/saian/side.svg",
  24111. extra: 566 / 356,
  24112. bottom: 79.7 / 643
  24113. }
  24114. },
  24115. maw: {
  24116. height: math.unit(2.85, "feet"),
  24117. name: "Maw",
  24118. image: {
  24119. source: "./media/characters/saian/maw.svg"
  24120. }
  24121. },
  24122. },
  24123. [
  24124. {
  24125. name: "Normal",
  24126. height: math.unit(3, "feet"),
  24127. default: true
  24128. },
  24129. ]
  24130. ))
  24131. characterMakers.push(() => makeCharacter(
  24132. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24133. {
  24134. side: {
  24135. height: math.unit(8, "feet"),
  24136. weight: math.unit(300, "lb"),
  24137. name: "Side",
  24138. image: {
  24139. source: "./media/characters/equus-silvermane/side.svg",
  24140. extra: 2176 / 2050,
  24141. bottom: 65.7 / 2245
  24142. }
  24143. },
  24144. front: {
  24145. height: math.unit(8, "feet"),
  24146. weight: math.unit(300, "lb"),
  24147. name: "Front",
  24148. image: {
  24149. source: "./media/characters/equus-silvermane/front.svg",
  24150. extra: 4633 / 4400,
  24151. bottom: 71.3 / 4706.915
  24152. }
  24153. },
  24154. sideStepping: {
  24155. height: math.unit(8, "feet"),
  24156. weight: math.unit(300, "lb"),
  24157. name: "Side (Stepping)",
  24158. image: {
  24159. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24160. extra: 1968 / 1860,
  24161. bottom: 16.4 / 1989
  24162. }
  24163. },
  24164. },
  24165. [
  24166. {
  24167. name: "Normal",
  24168. height: math.unit(8, "feet")
  24169. },
  24170. {
  24171. name: "Minimacro",
  24172. height: math.unit(75, "feet"),
  24173. default: true
  24174. },
  24175. {
  24176. name: "Macro",
  24177. height: math.unit(150, "feet")
  24178. },
  24179. {
  24180. name: "Macro+",
  24181. height: math.unit(1000, "feet")
  24182. },
  24183. {
  24184. name: "Megamacro",
  24185. height: math.unit(1, "mile")
  24186. },
  24187. ]
  24188. ))
  24189. characterMakers.push(() => makeCharacter(
  24190. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24191. {
  24192. side: {
  24193. height: math.unit(20, "feet"),
  24194. weight: math.unit(30000, "kg"),
  24195. name: "Side",
  24196. image: {
  24197. source: "./media/characters/windar/side.svg",
  24198. extra: 1491 / 1248,
  24199. bottom: 82.56 / 1568
  24200. }
  24201. },
  24202. },
  24203. [
  24204. {
  24205. name: "Normal",
  24206. height: math.unit(20, "feet"),
  24207. default: true
  24208. },
  24209. ]
  24210. ))
  24211. characterMakers.push(() => makeCharacter(
  24212. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24213. {
  24214. side: {
  24215. height: math.unit(15.66, "feet"),
  24216. weight: math.unit(150, "lb"),
  24217. name: "Side",
  24218. image: {
  24219. source: "./media/characters/melody/side.svg",
  24220. extra: 1097 / 944,
  24221. bottom: 11.8 / 1109
  24222. }
  24223. },
  24224. sideOutfit: {
  24225. height: math.unit(15.66, "feet"),
  24226. weight: math.unit(150, "lb"),
  24227. name: "Side (Outfit)",
  24228. image: {
  24229. source: "./media/characters/melody/side-outfit.svg",
  24230. extra: 1097 / 944,
  24231. bottom: 11.8 / 1109
  24232. }
  24233. },
  24234. },
  24235. [
  24236. {
  24237. name: "Normal",
  24238. height: math.unit(15.66, "feet"),
  24239. default: true
  24240. },
  24241. ]
  24242. ))
  24243. characterMakers.push(() => makeCharacter(
  24244. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24245. {
  24246. armoredFront: {
  24247. height: math.unit(8, "feet"),
  24248. weight: math.unit(325, "lb"),
  24249. name: "Front",
  24250. image: {
  24251. source: "./media/characters/windera/armored-front.svg",
  24252. extra: 1830/1598,
  24253. bottom: 151/1981
  24254. },
  24255. form: "armored",
  24256. default: true
  24257. },
  24258. macroFront: {
  24259. height: math.unit(70, "feet"),
  24260. weight: math.unit(315453, "lb"),
  24261. name: "Front",
  24262. image: {
  24263. source: "./media/characters/windera/macro-front.svg",
  24264. extra: 963/883,
  24265. bottom: 23/986
  24266. },
  24267. form: "macro",
  24268. default: true
  24269. },
  24270. },
  24271. [
  24272. {
  24273. name: "Normal",
  24274. height: math.unit(8, "feet"),
  24275. default: true,
  24276. form: "armored"
  24277. },
  24278. {
  24279. name: "Normal",
  24280. height: math.unit(70, "feet"),
  24281. default: true,
  24282. form: "macro"
  24283. },
  24284. ],
  24285. {
  24286. "armored": {
  24287. name: "Armored",
  24288. default: true
  24289. },
  24290. "macro": {
  24291. name: "Macro",
  24292. },
  24293. }
  24294. ))
  24295. characterMakers.push(() => makeCharacter(
  24296. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24297. {
  24298. front: {
  24299. height: math.unit(28.75, "feet"),
  24300. weight: math.unit(2000, "kg"),
  24301. name: "Front",
  24302. image: {
  24303. source: "./media/characters/sonear/front.svg",
  24304. extra: 1041.1 / 964.9,
  24305. bottom: 53.7 / 1096.6
  24306. }
  24307. },
  24308. },
  24309. [
  24310. {
  24311. name: "Normal",
  24312. height: math.unit(28.75, "feet"),
  24313. default: true
  24314. },
  24315. ]
  24316. ))
  24317. characterMakers.push(() => makeCharacter(
  24318. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24319. {
  24320. side: {
  24321. height: math.unit(25.5, "feet"),
  24322. weight: math.unit(23000, "kg"),
  24323. name: "Side",
  24324. image: {
  24325. source: "./media/characters/kanara/side.svg"
  24326. }
  24327. },
  24328. },
  24329. [
  24330. {
  24331. name: "Normal",
  24332. height: math.unit(25.5, "feet"),
  24333. default: true
  24334. },
  24335. ]
  24336. ))
  24337. characterMakers.push(() => makeCharacter(
  24338. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24339. {
  24340. side: {
  24341. height: math.unit(10, "feet"),
  24342. weight: math.unit(1000, "kg"),
  24343. name: "Side",
  24344. image: {
  24345. source: "./media/characters/ereus/side.svg",
  24346. extra: 1157 / 959,
  24347. bottom: 153 / 1312.5
  24348. }
  24349. },
  24350. },
  24351. [
  24352. {
  24353. name: "Normal",
  24354. height: math.unit(10, "feet"),
  24355. default: true
  24356. },
  24357. ]
  24358. ))
  24359. characterMakers.push(() => makeCharacter(
  24360. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24361. {
  24362. side: {
  24363. height: math.unit(4.5, "feet"),
  24364. weight: math.unit(500, "lb"),
  24365. name: "Side",
  24366. image: {
  24367. source: "./media/characters/e-ter/side.svg",
  24368. extra: 1550 / 1248,
  24369. bottom: 146 / 1694
  24370. }
  24371. },
  24372. },
  24373. [
  24374. {
  24375. name: "Normal",
  24376. height: math.unit(4.5, "feet"),
  24377. default: true
  24378. },
  24379. ]
  24380. ))
  24381. characterMakers.push(() => makeCharacter(
  24382. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24383. {
  24384. side: {
  24385. height: math.unit(9.7, "feet"),
  24386. weight: math.unit(4000, "kg"),
  24387. name: "Side",
  24388. image: {
  24389. source: "./media/characters/yamie/side.svg"
  24390. }
  24391. },
  24392. },
  24393. [
  24394. {
  24395. name: "Normal",
  24396. height: math.unit(9.7, "feet"),
  24397. default: true
  24398. },
  24399. ]
  24400. ))
  24401. characterMakers.push(() => makeCharacter(
  24402. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24403. {
  24404. front: {
  24405. height: math.unit(50, "feet"),
  24406. weight: math.unit(50000, "kg"),
  24407. name: "Front",
  24408. image: {
  24409. source: "./media/characters/anders/front.svg",
  24410. extra: 570 / 539,
  24411. bottom: 14.7 / 586.7
  24412. }
  24413. },
  24414. },
  24415. [
  24416. {
  24417. name: "Large",
  24418. height: math.unit(50, "feet")
  24419. },
  24420. {
  24421. name: "Macro",
  24422. height: math.unit(2000, "feet"),
  24423. default: true
  24424. },
  24425. {
  24426. name: "Megamacro",
  24427. height: math.unit(12, "miles")
  24428. },
  24429. ]
  24430. ))
  24431. characterMakers.push(() => makeCharacter(
  24432. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24433. {
  24434. front: {
  24435. height: math.unit(7 + 2 / 12, "feet"),
  24436. weight: math.unit(300, "lb"),
  24437. name: "Front",
  24438. image: {
  24439. source: "./media/characters/reban/front.svg",
  24440. extra: 1287/1212,
  24441. bottom: 148/1435
  24442. }
  24443. },
  24444. head: {
  24445. height: math.unit(1.95, "feet"),
  24446. name: "Head",
  24447. image: {
  24448. source: "./media/characters/reban/head.svg"
  24449. }
  24450. },
  24451. maw: {
  24452. height: math.unit(0.95, "feet"),
  24453. name: "Maw",
  24454. image: {
  24455. source: "./media/characters/reban/maw.svg"
  24456. }
  24457. },
  24458. foot: {
  24459. height: math.unit(1.65, "feet"),
  24460. name: "Foot",
  24461. image: {
  24462. source: "./media/characters/reban/foot.svg"
  24463. }
  24464. },
  24465. dick: {
  24466. height: math.unit(7 / 5, "feet"),
  24467. name: "Dick",
  24468. image: {
  24469. source: "./media/characters/reban/dick.svg"
  24470. }
  24471. },
  24472. },
  24473. [
  24474. {
  24475. name: "Natural Height",
  24476. height: math.unit(7 + 2 / 12, "feet")
  24477. },
  24478. {
  24479. name: "Macro",
  24480. height: math.unit(500, "feet"),
  24481. default: true
  24482. },
  24483. {
  24484. name: "Canon Height",
  24485. height: math.unit(50, "AU")
  24486. },
  24487. ]
  24488. ))
  24489. characterMakers.push(() => makeCharacter(
  24490. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24491. {
  24492. front: {
  24493. height: math.unit(6, "feet"),
  24494. weight: math.unit(150, "lb"),
  24495. name: "Front",
  24496. image: {
  24497. source: "./media/characters/terrance-keayes/front.svg",
  24498. extra: 1.005,
  24499. bottom: 151 / 1615
  24500. }
  24501. },
  24502. side: {
  24503. height: math.unit(6, "feet"),
  24504. weight: math.unit(150, "lb"),
  24505. name: "Side",
  24506. image: {
  24507. source: "./media/characters/terrance-keayes/side.svg",
  24508. extra: 1.005,
  24509. bottom: 129.4 / 1544
  24510. }
  24511. },
  24512. back: {
  24513. height: math.unit(6, "feet"),
  24514. weight: math.unit(150, "lb"),
  24515. name: "Back",
  24516. image: {
  24517. source: "./media/characters/terrance-keayes/back.svg",
  24518. extra: 1.005,
  24519. bottom: 58.4 / 1557.3
  24520. }
  24521. },
  24522. dick: {
  24523. height: math.unit(6 * 0.208, "feet"),
  24524. name: "Dick",
  24525. image: {
  24526. source: "./media/characters/terrance-keayes/dick.svg"
  24527. }
  24528. },
  24529. },
  24530. [
  24531. {
  24532. name: "Canon Height",
  24533. height: math.unit(35, "miles"),
  24534. default: true
  24535. },
  24536. ]
  24537. ))
  24538. characterMakers.push(() => makeCharacter(
  24539. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24540. {
  24541. front: {
  24542. height: math.unit(6, "feet"),
  24543. weight: math.unit(150, "lb"),
  24544. name: "Front",
  24545. image: {
  24546. source: "./media/characters/ofelia/front.svg",
  24547. extra: 1130/1117,
  24548. bottom: 91/1221
  24549. }
  24550. },
  24551. back: {
  24552. height: math.unit(6, "feet"),
  24553. weight: math.unit(150, "lb"),
  24554. name: "Back",
  24555. image: {
  24556. source: "./media/characters/ofelia/back.svg",
  24557. extra: 1172/1159,
  24558. bottom: 28/1200
  24559. }
  24560. },
  24561. maw: {
  24562. height: math.unit(1, "feet"),
  24563. name: "Maw",
  24564. image: {
  24565. source: "./media/characters/ofelia/maw.svg"
  24566. }
  24567. },
  24568. foot: {
  24569. height: math.unit(1.949, "feet"),
  24570. name: "Foot",
  24571. image: {
  24572. source: "./media/characters/ofelia/foot.svg"
  24573. }
  24574. },
  24575. },
  24576. [
  24577. {
  24578. name: "Canon Height",
  24579. height: math.unit(2000, "miles"),
  24580. default: true
  24581. },
  24582. ]
  24583. ))
  24584. characterMakers.push(() => makeCharacter(
  24585. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24586. {
  24587. front: {
  24588. height: math.unit(6, "feet"),
  24589. weight: math.unit(150, "lb"),
  24590. name: "Front",
  24591. image: {
  24592. source: "./media/characters/samuel/front.svg",
  24593. extra: 265 / 258,
  24594. bottom: 2 / 266.1566
  24595. }
  24596. },
  24597. },
  24598. [
  24599. {
  24600. name: "Macro",
  24601. height: math.unit(100, "feet"),
  24602. default: true
  24603. },
  24604. {
  24605. name: "Full Size",
  24606. height: math.unit(1000, "miles")
  24607. },
  24608. ]
  24609. ))
  24610. characterMakers.push(() => makeCharacter(
  24611. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24612. {
  24613. front: {
  24614. height: math.unit(6, "feet"),
  24615. weight: math.unit(300, "lb"),
  24616. name: "Front",
  24617. image: {
  24618. source: "./media/characters/beishir-kiel/front.svg",
  24619. extra: 569 / 547,
  24620. bottom: 41.9 / 609
  24621. }
  24622. },
  24623. maw: {
  24624. height: math.unit(6 * 0.202, "feet"),
  24625. name: "Maw",
  24626. image: {
  24627. source: "./media/characters/beishir-kiel/maw.svg"
  24628. }
  24629. },
  24630. },
  24631. [
  24632. {
  24633. name: "Macro",
  24634. height: math.unit(300, "feet"),
  24635. default: true
  24636. },
  24637. ]
  24638. ))
  24639. characterMakers.push(() => makeCharacter(
  24640. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24641. {
  24642. front: {
  24643. height: math.unit(5 + 7/12, "feet"),
  24644. weight: math.unit(120, "lb"),
  24645. name: "Front",
  24646. image: {
  24647. source: "./media/characters/logan-grey/front.svg",
  24648. extra: 1836/1738,
  24649. bottom: 108/1944
  24650. }
  24651. },
  24652. back: {
  24653. height: math.unit(5 + 7/12, "feet"),
  24654. weight: math.unit(120, "lb"),
  24655. name: "Back",
  24656. image: {
  24657. source: "./media/characters/logan-grey/back.svg",
  24658. extra: 1880/1794,
  24659. bottom: 24/1904
  24660. }
  24661. },
  24662. frontSfw: {
  24663. height: math.unit(5 + 7/12, "feet"),
  24664. weight: math.unit(120, "lb"),
  24665. name: "Front (SFW)",
  24666. image: {
  24667. source: "./media/characters/logan-grey/front-sfw.svg",
  24668. extra: 1836/1738,
  24669. bottom: 108/1944
  24670. }
  24671. },
  24672. backSfw: {
  24673. height: math.unit(5 + 7/12, "feet"),
  24674. weight: math.unit(120, "lb"),
  24675. name: "Back (SFW)",
  24676. image: {
  24677. source: "./media/characters/logan-grey/back-sfw.svg",
  24678. extra: 1880/1794,
  24679. bottom: 24/1904
  24680. }
  24681. },
  24682. hands: {
  24683. height: math.unit(0.84, "feet"),
  24684. name: "Hands",
  24685. image: {
  24686. source: "./media/characters/logan-grey/hands.svg"
  24687. }
  24688. },
  24689. paws: {
  24690. height: math.unit(0.72, "feet"),
  24691. name: "Paws",
  24692. image: {
  24693. source: "./media/characters/logan-grey/paws.svg"
  24694. }
  24695. },
  24696. cock: {
  24697. height: math.unit(1.45, "feet"),
  24698. name: "Cock",
  24699. image: {
  24700. source: "./media/characters/logan-grey/cock.svg"
  24701. }
  24702. },
  24703. cockAlt: {
  24704. height: math.unit(1.437, "feet"),
  24705. name: "Cock (alt)",
  24706. image: {
  24707. source: "./media/characters/logan-grey/cock-alt.svg"
  24708. }
  24709. },
  24710. },
  24711. [
  24712. {
  24713. name: "Normal",
  24714. height: math.unit(5 + 8 / 12, "feet")
  24715. },
  24716. {
  24717. name: "The 500 Foot Femboy",
  24718. height: math.unit(500, "feet"),
  24719. default: true
  24720. },
  24721. {
  24722. name: "Megmacro",
  24723. height: math.unit(20, "miles")
  24724. },
  24725. ]
  24726. ))
  24727. characterMakers.push(() => makeCharacter(
  24728. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24729. {
  24730. front: {
  24731. height: math.unit(8 + 2 / 12, "feet"),
  24732. weight: math.unit(275, "lb"),
  24733. name: "Front",
  24734. image: {
  24735. source: "./media/characters/draganta/front.svg",
  24736. extra: 1177 / 1135,
  24737. bottom: 33.46 / 1212.1
  24738. }
  24739. },
  24740. },
  24741. [
  24742. {
  24743. name: "Normal",
  24744. height: math.unit(8 + 6 / 12, "feet"),
  24745. default: true
  24746. },
  24747. {
  24748. name: "Macro",
  24749. height: math.unit(150, "feet")
  24750. },
  24751. {
  24752. name: "Megamacro",
  24753. height: math.unit(1000, "miles")
  24754. },
  24755. ]
  24756. ))
  24757. characterMakers.push(() => makeCharacter(
  24758. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24759. {
  24760. front: {
  24761. height: math.unit(1.72, "m"),
  24762. weight: math.unit(80, "lb"),
  24763. name: "Front",
  24764. image: {
  24765. source: "./media/characters/voski/front.svg",
  24766. extra: 2076.22 / 2022.4,
  24767. bottom: 102.7 / 2177.3866
  24768. }
  24769. },
  24770. frontFlaccid: {
  24771. height: math.unit(1.72, "m"),
  24772. weight: math.unit(80, "lb"),
  24773. name: "Front (Flaccid)",
  24774. image: {
  24775. source: "./media/characters/voski/front-flaccid.svg",
  24776. extra: 2076.22 / 2022.4,
  24777. bottom: 102.7 / 2177.3866
  24778. }
  24779. },
  24780. frontErect: {
  24781. height: math.unit(1.72, "m"),
  24782. weight: math.unit(80, "lb"),
  24783. name: "Front (Erect)",
  24784. image: {
  24785. source: "./media/characters/voski/front-erect.svg",
  24786. extra: 2076.22 / 2022.4,
  24787. bottom: 102.7 / 2177.3866
  24788. }
  24789. },
  24790. back: {
  24791. height: math.unit(1.72, "m"),
  24792. weight: math.unit(80, "lb"),
  24793. name: "Back",
  24794. image: {
  24795. source: "./media/characters/voski/back.svg",
  24796. extra: 2104 / 2051,
  24797. bottom: 10.45 / 2113.63
  24798. }
  24799. },
  24800. },
  24801. [
  24802. {
  24803. name: "Normal",
  24804. height: math.unit(1.72, "m")
  24805. },
  24806. {
  24807. name: "Macro",
  24808. height: math.unit(55, "m"),
  24809. default: true
  24810. },
  24811. {
  24812. name: "Macro+",
  24813. height: math.unit(300, "m")
  24814. },
  24815. {
  24816. name: "Macro++",
  24817. height: math.unit(700, "m")
  24818. },
  24819. {
  24820. name: "Macro+++",
  24821. height: math.unit(4500, "m")
  24822. },
  24823. {
  24824. name: "Macro++++",
  24825. height: math.unit(45, "km")
  24826. },
  24827. {
  24828. name: "Macro+++++",
  24829. height: math.unit(1220, "km")
  24830. },
  24831. ]
  24832. ))
  24833. characterMakers.push(() => makeCharacter(
  24834. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24835. {
  24836. front: {
  24837. height: math.unit(2.3, "m"),
  24838. weight: math.unit(304, "kg"),
  24839. name: "Front",
  24840. image: {
  24841. source: "./media/characters/icowom-lee/front.svg",
  24842. extra: 985 / 955,
  24843. bottom: 25.4 / 1012
  24844. }
  24845. },
  24846. fronttentacles: {
  24847. height: math.unit(2.3, "m"),
  24848. weight: math.unit(304, "kg"),
  24849. name: "Front-tentacles",
  24850. image: {
  24851. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24852. extra: 985 / 955,
  24853. bottom: 25.4 / 1012
  24854. }
  24855. },
  24856. back: {
  24857. height: math.unit(2.3, "m"),
  24858. weight: math.unit(304, "kg"),
  24859. name: "Back",
  24860. image: {
  24861. source: "./media/characters/icowom-lee/back.svg",
  24862. extra: 975 / 954,
  24863. bottom: 9.5 / 985
  24864. }
  24865. },
  24866. backtentacles: {
  24867. height: math.unit(2.3, "m"),
  24868. weight: math.unit(304, "kg"),
  24869. name: "Back-tentacles",
  24870. image: {
  24871. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24872. extra: 975 / 954,
  24873. bottom: 9.5 / 985
  24874. }
  24875. },
  24876. frontDressed: {
  24877. height: math.unit(2.3, "m"),
  24878. weight: math.unit(304, "kg"),
  24879. name: "Front (Dressed)",
  24880. image: {
  24881. source: "./media/characters/icowom-lee/front-dressed.svg",
  24882. extra: 3076 / 2933,
  24883. bottom: 51.4 / 3125.1889
  24884. }
  24885. },
  24886. rump: {
  24887. height: math.unit(0.776, "meters"),
  24888. name: "Rump",
  24889. image: {
  24890. source: "./media/characters/icowom-lee/rump.svg"
  24891. }
  24892. },
  24893. genitals: {
  24894. height: math.unit(0.78, "meters"),
  24895. name: "Genitals",
  24896. image: {
  24897. source: "./media/characters/icowom-lee/genitals.svg"
  24898. }
  24899. },
  24900. },
  24901. [
  24902. {
  24903. name: "Normal",
  24904. height: math.unit(2.3, "meters"),
  24905. default: true
  24906. },
  24907. {
  24908. name: "Macro",
  24909. height: math.unit(94, "meters"),
  24910. default: true
  24911. },
  24912. ]
  24913. ))
  24914. characterMakers.push(() => makeCharacter(
  24915. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24916. {
  24917. front: {
  24918. height: math.unit(22, "meters"),
  24919. weight: math.unit(21000, "kg"),
  24920. name: "Front",
  24921. image: {
  24922. source: "./media/characters/shock-diamond/front.svg",
  24923. extra: 2204 / 2053,
  24924. bottom: 65 / 2239.47
  24925. }
  24926. },
  24927. frontNude: {
  24928. height: math.unit(22, "meters"),
  24929. weight: math.unit(21000, "kg"),
  24930. name: "Front (Nude)",
  24931. image: {
  24932. source: "./media/characters/shock-diamond/front-nude.svg",
  24933. extra: 2514 / 2285,
  24934. bottom: 13 / 2527.56
  24935. }
  24936. },
  24937. },
  24938. [
  24939. {
  24940. name: "Normal",
  24941. height: math.unit(3, "meters")
  24942. },
  24943. {
  24944. name: "Macro",
  24945. height: math.unit(22, "meters"),
  24946. default: true
  24947. },
  24948. ]
  24949. ))
  24950. characterMakers.push(() => makeCharacter(
  24951. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24952. {
  24953. front: {
  24954. height: math.unit(5 + 4/12, "feet"),
  24955. weight: math.unit(125, "lb"),
  24956. name: "Front",
  24957. image: {
  24958. source: "./media/characters/rory/front.svg",
  24959. extra: 1790/1681,
  24960. bottom: 66/1856
  24961. },
  24962. form: "normal",
  24963. default: true
  24964. },
  24965. back: {
  24966. height: math.unit(5 + 4/12, "feet"),
  24967. weight: math.unit(125, "lb"),
  24968. name: "Back",
  24969. image: {
  24970. source: "./media/characters/rory/back.svg",
  24971. extra: 1805/1690,
  24972. bottom: 56/1861
  24973. },
  24974. form: "normal"
  24975. },
  24976. frontDressed: {
  24977. height: math.unit(5 + 4/12, "feet"),
  24978. weight: math.unit(125, "lb"),
  24979. name: "Front (Dressed)",
  24980. image: {
  24981. source: "./media/characters/rory/front-dressed.svg",
  24982. extra: 1790/1681,
  24983. bottom: 66/1856
  24984. },
  24985. form: "normal"
  24986. },
  24987. backDressed: {
  24988. height: math.unit(5 + 4/12, "feet"),
  24989. weight: math.unit(125, "lb"),
  24990. name: "Back (Dressed)",
  24991. image: {
  24992. source: "./media/characters/rory/back-dressed.svg",
  24993. extra: 1805/1690,
  24994. bottom: 56/1861
  24995. },
  24996. form: "normal"
  24997. },
  24998. frontNsfw: {
  24999. height: math.unit(5 + 4/12, "feet"),
  25000. weight: math.unit(125, "lb"),
  25001. name: "Front (NSFW)",
  25002. image: {
  25003. source: "./media/characters/rory/front-nsfw.svg",
  25004. extra: 1790/1681,
  25005. bottom: 66/1856
  25006. },
  25007. form: "normal"
  25008. },
  25009. backNsfw: {
  25010. height: math.unit(5 + 4/12, "feet"),
  25011. weight: math.unit(125, "lb"),
  25012. name: "Back (NSFW)",
  25013. image: {
  25014. source: "./media/characters/rory/back-nsfw.svg",
  25015. extra: 1805/1690,
  25016. bottom: 56/1861
  25017. },
  25018. form: "normal"
  25019. },
  25020. dick: {
  25021. height: math.unit(0.8, "feet"),
  25022. name: "Dick",
  25023. image: {
  25024. source: "./media/characters/rory/dick.svg"
  25025. },
  25026. form: "normal"
  25027. },
  25028. thicc_front: {
  25029. height: math.unit(5 + 4/12, "feet"),
  25030. weight: math.unit(195, "lb"),
  25031. name: "Front",
  25032. image: {
  25033. source: "./media/characters/rory/thicc-front.svg",
  25034. extra: 1220/1100,
  25035. bottom: 103/1323
  25036. },
  25037. form: "thicc",
  25038. default: true
  25039. },
  25040. thicc_back: {
  25041. height: math.unit(5 + 4/12, "feet"),
  25042. weight: math.unit(195, "lb"),
  25043. name: "Back",
  25044. image: {
  25045. source: "./media/characters/rory/thicc-back.svg",
  25046. extra: 1166/1086,
  25047. bottom: 35/1201
  25048. },
  25049. form: "thicc"
  25050. },
  25051. },
  25052. [
  25053. {
  25054. name: "Micro",
  25055. height: math.unit(3, "inches"),
  25056. allForms: true
  25057. },
  25058. {
  25059. name: "Normal",
  25060. height: math.unit(5 + 4/12, "feet"),
  25061. allForms: true,
  25062. default: true
  25063. },
  25064. {
  25065. name: "Macro",
  25066. height: math.unit(90, "feet"),
  25067. allForms: true
  25068. },
  25069. {
  25070. name: "Supercharged",
  25071. height: math.unit(270, "feet"),
  25072. allForms: true
  25073. },
  25074. ],
  25075. {
  25076. "normal": {
  25077. name: "Normal",
  25078. default: true
  25079. },
  25080. "thicc": {
  25081. name: "Thicc",
  25082. },
  25083. }
  25084. ))
  25085. characterMakers.push(() => makeCharacter(
  25086. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25087. {
  25088. front: {
  25089. height: math.unit(5 + 9 / 12, "feet"),
  25090. weight: math.unit(190, "lb"),
  25091. name: "Front",
  25092. image: {
  25093. source: "./media/characters/sprisk/front.svg",
  25094. extra: 1225 / 1180,
  25095. bottom: 42.7 / 1266.4
  25096. }
  25097. },
  25098. frontNsfw: {
  25099. height: math.unit(5 + 9 / 12, "feet"),
  25100. weight: math.unit(190, "lb"),
  25101. name: "Front (NSFW)",
  25102. image: {
  25103. source: "./media/characters/sprisk/front-nsfw.svg",
  25104. extra: 1225 / 1180,
  25105. bottom: 42.7 / 1266.4
  25106. }
  25107. },
  25108. back: {
  25109. height: math.unit(5 + 9 / 12, "feet"),
  25110. weight: math.unit(190, "lb"),
  25111. name: "Back",
  25112. image: {
  25113. source: "./media/characters/sprisk/back.svg",
  25114. extra: 1247 / 1200,
  25115. bottom: 5.6 / 1253.04
  25116. }
  25117. },
  25118. },
  25119. [
  25120. {
  25121. name: "Tiny",
  25122. height: math.unit(2, "inches")
  25123. },
  25124. {
  25125. name: "Normal",
  25126. height: math.unit(5 + 9 / 12, "feet"),
  25127. default: true
  25128. },
  25129. {
  25130. name: "Mini Macro",
  25131. height: math.unit(18, "feet")
  25132. },
  25133. {
  25134. name: "Macro",
  25135. height: math.unit(100, "feet")
  25136. },
  25137. {
  25138. name: "MACRO",
  25139. height: math.unit(50, "miles")
  25140. },
  25141. {
  25142. name: "M A C R O",
  25143. height: math.unit(300, "miles")
  25144. },
  25145. ]
  25146. ))
  25147. characterMakers.push(() => makeCharacter(
  25148. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25149. {
  25150. side: {
  25151. height: math.unit(15.6, "meters"),
  25152. weight: math.unit(700000, "kg"),
  25153. name: "Side",
  25154. image: {
  25155. source: "./media/characters/bunsen/side.svg",
  25156. extra: 1644 / 358
  25157. }
  25158. },
  25159. foot: {
  25160. height: math.unit(1.611 * 1644 / 358, "meter"),
  25161. name: "Foot",
  25162. image: {
  25163. source: "./media/characters/bunsen/foot.svg"
  25164. }
  25165. },
  25166. },
  25167. [
  25168. {
  25169. name: "Small",
  25170. height: math.unit(10, "feet")
  25171. },
  25172. {
  25173. name: "Normal",
  25174. height: math.unit(15.6, "meters"),
  25175. default: true
  25176. },
  25177. ]
  25178. ))
  25179. characterMakers.push(() => makeCharacter(
  25180. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25181. {
  25182. front: {
  25183. height: math.unit(4 + 11 / 12, "feet"),
  25184. weight: math.unit(140, "lb"),
  25185. name: "Front",
  25186. image: {
  25187. source: "./media/characters/sesh/front.svg",
  25188. extra: 3420 / 3231,
  25189. bottom: 72 / 3949.5
  25190. }
  25191. },
  25192. },
  25193. [
  25194. {
  25195. name: "Normal",
  25196. height: math.unit(4 + 11 / 12, "feet")
  25197. },
  25198. {
  25199. name: "Grown",
  25200. height: math.unit(15, "feet"),
  25201. default: true
  25202. },
  25203. {
  25204. name: "Macro",
  25205. height: math.unit(1500, "feet")
  25206. },
  25207. {
  25208. name: "Megamacro",
  25209. height: math.unit(30, "miles")
  25210. },
  25211. {
  25212. name: "Continental",
  25213. height: math.unit(3000, "miles")
  25214. },
  25215. {
  25216. name: "Gravity Mass",
  25217. height: math.unit(300000, "miles")
  25218. },
  25219. {
  25220. name: "Planet Buster",
  25221. height: math.unit(30000000, "miles")
  25222. },
  25223. {
  25224. name: "Big",
  25225. height: math.unit(3000000000, "miles")
  25226. },
  25227. ]
  25228. ))
  25229. characterMakers.push(() => makeCharacter(
  25230. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25231. {
  25232. front: {
  25233. height: math.unit(9, "feet"),
  25234. weight: math.unit(350, "lb"),
  25235. name: "Front",
  25236. image: {
  25237. source: "./media/characters/pepper/front.svg",
  25238. extra: 1448 / 1312,
  25239. bottom: 9.4 / 1457.88
  25240. }
  25241. },
  25242. back: {
  25243. height: math.unit(9, "feet"),
  25244. weight: math.unit(350, "lb"),
  25245. name: "Back",
  25246. image: {
  25247. source: "./media/characters/pepper/back.svg",
  25248. extra: 1423 / 1300,
  25249. bottom: 4.6 / 1429
  25250. }
  25251. },
  25252. maw: {
  25253. height: math.unit(0.932, "feet"),
  25254. name: "Maw",
  25255. image: {
  25256. source: "./media/characters/pepper/maw.svg"
  25257. }
  25258. },
  25259. },
  25260. [
  25261. {
  25262. name: "Normal",
  25263. height: math.unit(9, "feet"),
  25264. default: true
  25265. },
  25266. ]
  25267. ))
  25268. characterMakers.push(() => makeCharacter(
  25269. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25270. {
  25271. front: {
  25272. height: math.unit(6, "feet"),
  25273. weight: math.unit(150, "lb"),
  25274. name: "Front",
  25275. image: {
  25276. source: "./media/characters/maelstrom/front.svg",
  25277. extra: 2100 / 1883,
  25278. bottom: 94 / 2196.7
  25279. }
  25280. },
  25281. },
  25282. [
  25283. {
  25284. name: "Less Kaiju",
  25285. height: math.unit(200, "feet")
  25286. },
  25287. {
  25288. name: "Kaiju",
  25289. height: math.unit(400, "feet"),
  25290. default: true
  25291. },
  25292. {
  25293. name: "Kaiju-er",
  25294. height: math.unit(600, "feet")
  25295. },
  25296. ]
  25297. ))
  25298. characterMakers.push(() => makeCharacter(
  25299. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25300. {
  25301. front: {
  25302. height: math.unit(6 + 5 / 12, "feet"),
  25303. weight: math.unit(180, "lb"),
  25304. name: "Front",
  25305. image: {
  25306. source: "./media/characters/lexir/front.svg",
  25307. extra: 180 / 172,
  25308. bottom: 12 / 192
  25309. }
  25310. },
  25311. back: {
  25312. height: math.unit(6 + 5 / 12, "feet"),
  25313. weight: math.unit(180, "lb"),
  25314. name: "Back",
  25315. image: {
  25316. source: "./media/characters/lexir/back.svg",
  25317. extra: 1273/1201,
  25318. bottom: 39/1312
  25319. }
  25320. },
  25321. },
  25322. [
  25323. {
  25324. name: "Very Smal",
  25325. height: math.unit(1, "nm")
  25326. },
  25327. {
  25328. name: "Normal",
  25329. height: math.unit(6 + 5 / 12, "feet"),
  25330. default: true
  25331. },
  25332. {
  25333. name: "Macro",
  25334. height: math.unit(1, "mile")
  25335. },
  25336. {
  25337. name: "Megamacro",
  25338. height: math.unit(50, "miles")
  25339. },
  25340. ]
  25341. ))
  25342. characterMakers.push(() => makeCharacter(
  25343. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25344. {
  25345. front: {
  25346. height: math.unit(1.5, "meters"),
  25347. weight: math.unit(100, "lb"),
  25348. name: "Front",
  25349. image: {
  25350. source: "./media/characters/maksio/front.svg",
  25351. extra: 1549 / 1531,
  25352. bottom: 123.7 / 1674.5429
  25353. }
  25354. },
  25355. back: {
  25356. height: math.unit(1.5, "meters"),
  25357. weight: math.unit(100, "lb"),
  25358. name: "Back",
  25359. image: {
  25360. source: "./media/characters/maksio/back.svg",
  25361. extra: 1541 / 1509,
  25362. bottom: 97 / 1639
  25363. }
  25364. },
  25365. hand: {
  25366. height: math.unit(0.621, "feet"),
  25367. name: "Hand",
  25368. image: {
  25369. source: "./media/characters/maksio/hand.svg"
  25370. }
  25371. },
  25372. foot: {
  25373. height: math.unit(1.611, "feet"),
  25374. name: "Foot",
  25375. image: {
  25376. source: "./media/characters/maksio/foot.svg"
  25377. }
  25378. },
  25379. },
  25380. [
  25381. {
  25382. name: "Shrunken",
  25383. height: math.unit(10, "cm")
  25384. },
  25385. {
  25386. name: "Normal",
  25387. height: math.unit(150, "cm"),
  25388. default: true
  25389. },
  25390. ]
  25391. ))
  25392. characterMakers.push(() => makeCharacter(
  25393. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25394. {
  25395. front: {
  25396. height: math.unit(100, "feet"),
  25397. name: "Front",
  25398. image: {
  25399. source: "./media/characters/erza-bear/front.svg",
  25400. extra: 2449 / 2390,
  25401. bottom: 46 / 2494
  25402. }
  25403. },
  25404. back: {
  25405. height: math.unit(100, "feet"),
  25406. name: "Back",
  25407. image: {
  25408. source: "./media/characters/erza-bear/back.svg",
  25409. extra: 2489 / 2430,
  25410. bottom: 85.4 / 2480
  25411. }
  25412. },
  25413. tail: {
  25414. height: math.unit(42, "feet"),
  25415. name: "Tail",
  25416. image: {
  25417. source: "./media/characters/erza-bear/tail.svg"
  25418. }
  25419. },
  25420. tongue: {
  25421. height: math.unit(8, "feet"),
  25422. name: "Tongue",
  25423. image: {
  25424. source: "./media/characters/erza-bear/tongue.svg"
  25425. }
  25426. },
  25427. dick: {
  25428. height: math.unit(10.5, "feet"),
  25429. name: "Dick",
  25430. image: {
  25431. source: "./media/characters/erza-bear/dick.svg"
  25432. }
  25433. },
  25434. dickVertical: {
  25435. height: math.unit(16.9, "feet"),
  25436. name: "Dick (Vertical)",
  25437. image: {
  25438. source: "./media/characters/erza-bear/dick-vertical.svg"
  25439. }
  25440. },
  25441. },
  25442. [
  25443. {
  25444. name: "Macro",
  25445. height: math.unit(100, "feet"),
  25446. default: true
  25447. },
  25448. ]
  25449. ))
  25450. characterMakers.push(() => makeCharacter(
  25451. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25452. {
  25453. front: {
  25454. height: math.unit(172, "cm"),
  25455. weight: math.unit(73, "kg"),
  25456. name: "Front",
  25457. image: {
  25458. source: "./media/characters/violet-flor/front.svg",
  25459. extra: 1530 / 1442,
  25460. bottom: 61.9 / 1588.8
  25461. }
  25462. },
  25463. back: {
  25464. height: math.unit(180, "cm"),
  25465. weight: math.unit(73, "kg"),
  25466. name: "Back",
  25467. image: {
  25468. source: "./media/characters/violet-flor/back.svg",
  25469. extra: 1692 / 1630,
  25470. bottom: 20 / 1712
  25471. }
  25472. },
  25473. },
  25474. [
  25475. {
  25476. name: "Normal",
  25477. height: math.unit(172, "cm"),
  25478. default: true
  25479. },
  25480. ]
  25481. ))
  25482. characterMakers.push(() => makeCharacter(
  25483. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25484. {
  25485. front: {
  25486. height: math.unit(6, "feet"),
  25487. weight: math.unit(220, "lb"),
  25488. name: "Front",
  25489. image: {
  25490. source: "./media/characters/lynn-rhea/front.svg",
  25491. extra: 310 / 273
  25492. }
  25493. },
  25494. back: {
  25495. height: math.unit(6, "feet"),
  25496. weight: math.unit(220, "lb"),
  25497. name: "Back",
  25498. image: {
  25499. source: "./media/characters/lynn-rhea/back.svg",
  25500. extra: 310 / 273
  25501. }
  25502. },
  25503. dicks: {
  25504. height: math.unit(0.9, "feet"),
  25505. name: "Dicks",
  25506. image: {
  25507. source: "./media/characters/lynn-rhea/dicks.svg"
  25508. }
  25509. },
  25510. slit: {
  25511. height: math.unit(0.4, "feet"),
  25512. name: "Slit",
  25513. image: {
  25514. source: "./media/characters/lynn-rhea/slit.svg"
  25515. }
  25516. },
  25517. },
  25518. [
  25519. {
  25520. name: "Micro",
  25521. height: math.unit(1, "inch")
  25522. },
  25523. {
  25524. name: "Macro",
  25525. height: math.unit(60, "feet"),
  25526. default: true
  25527. },
  25528. {
  25529. name: "Megamacro",
  25530. height: math.unit(2, "miles")
  25531. },
  25532. {
  25533. name: "Gigamacro",
  25534. height: math.unit(3, "earths")
  25535. },
  25536. {
  25537. name: "Galactic",
  25538. height: math.unit(0.8, "galaxies")
  25539. },
  25540. ]
  25541. ))
  25542. characterMakers.push(() => makeCharacter(
  25543. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25544. {
  25545. front: {
  25546. height: math.unit(1600, "feet"),
  25547. weight: math.unit(85758785169, "kg"),
  25548. name: "Front",
  25549. image: {
  25550. source: "./media/characters/valathos/front.svg",
  25551. extra: 1451 / 1339
  25552. }
  25553. },
  25554. },
  25555. [
  25556. {
  25557. name: "Macro",
  25558. height: math.unit(1600, "feet"),
  25559. default: true
  25560. },
  25561. ]
  25562. ))
  25563. characterMakers.push(() => makeCharacter(
  25564. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25565. {
  25566. front: {
  25567. height: math.unit(7 + 5 / 12, "feet"),
  25568. weight: math.unit(300, "lb"),
  25569. name: "Front",
  25570. image: {
  25571. source: "./media/characters/azula/front.svg",
  25572. extra: 3208 / 2880,
  25573. bottom: 80.2 / 3277
  25574. }
  25575. },
  25576. back: {
  25577. height: math.unit(7 + 5 / 12, "feet"),
  25578. weight: math.unit(300, "lb"),
  25579. name: "Back",
  25580. image: {
  25581. source: "./media/characters/azula/back.svg",
  25582. extra: 3169 / 2822,
  25583. bottom: 150.6 / 3321
  25584. }
  25585. },
  25586. },
  25587. [
  25588. {
  25589. name: "Normal",
  25590. height: math.unit(7 + 5 / 12, "feet"),
  25591. default: true
  25592. },
  25593. {
  25594. name: "Big",
  25595. height: math.unit(20, "feet")
  25596. },
  25597. ]
  25598. ))
  25599. characterMakers.push(() => makeCharacter(
  25600. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25601. {
  25602. front: {
  25603. height: math.unit(5 + 1 / 12, "feet"),
  25604. weight: math.unit(110, "lb"),
  25605. name: "Front",
  25606. image: {
  25607. source: "./media/characters/rupert/front.svg",
  25608. extra: 1549 / 1495,
  25609. bottom: 54.2 / 1604.4
  25610. }
  25611. },
  25612. },
  25613. [
  25614. {
  25615. name: "Normal",
  25616. height: math.unit(5 + 1 / 12, "feet"),
  25617. default: true
  25618. },
  25619. ]
  25620. ))
  25621. characterMakers.push(() => makeCharacter(
  25622. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25623. {
  25624. front: {
  25625. height: math.unit(8 + 4 / 12, "feet"),
  25626. weight: math.unit(350, "lb"),
  25627. name: "Front",
  25628. image: {
  25629. source: "./media/characters/sheera-castellar/front.svg",
  25630. extra: 1957 / 1894,
  25631. bottom: 26.97 / 1975.017
  25632. }
  25633. },
  25634. side: {
  25635. height: math.unit(8 + 4 / 12, "feet"),
  25636. weight: math.unit(350, "lb"),
  25637. name: "Side",
  25638. image: {
  25639. source: "./media/characters/sheera-castellar/side.svg",
  25640. extra: 1957 / 1894
  25641. }
  25642. },
  25643. back: {
  25644. height: math.unit(8 + 4 / 12, "feet"),
  25645. weight: math.unit(350, "lb"),
  25646. name: "Back",
  25647. image: {
  25648. source: "./media/characters/sheera-castellar/back.svg",
  25649. extra: 1957 / 1894
  25650. }
  25651. },
  25652. angled: {
  25653. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25654. weight: math.unit(350, "lb"),
  25655. name: "Angled",
  25656. image: {
  25657. source: "./media/characters/sheera-castellar/angled.svg",
  25658. extra: 1807 / 1707,
  25659. bottom: 68 / 1875
  25660. }
  25661. },
  25662. genitals: {
  25663. height: math.unit(2.2, "feet"),
  25664. name: "Genitals",
  25665. image: {
  25666. source: "./media/characters/sheera-castellar/genitals.svg"
  25667. }
  25668. },
  25669. taur: {
  25670. height: math.unit(10 + 6/12, "feet"),
  25671. name: "Taur",
  25672. image: {
  25673. source: "./media/characters/sheera-castellar/taur.svg",
  25674. extra: 2017/1909,
  25675. bottom: 185/2202
  25676. }
  25677. },
  25678. },
  25679. [
  25680. {
  25681. name: "Normal",
  25682. height: math.unit(8 + 4 / 12, "feet")
  25683. },
  25684. {
  25685. name: "Macro",
  25686. height: math.unit(150, "feet"),
  25687. default: true
  25688. },
  25689. {
  25690. name: "Macro+",
  25691. height: math.unit(800, "feet")
  25692. },
  25693. ]
  25694. ))
  25695. characterMakers.push(() => makeCharacter(
  25696. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25697. {
  25698. front: {
  25699. height: math.unit(6, "feet"),
  25700. weight: math.unit(150, "lb"),
  25701. name: "Front",
  25702. image: {
  25703. source: "./media/characters/jaipur/front.svg",
  25704. extra: 3860 / 3731,
  25705. bottom: 287 / 4140
  25706. }
  25707. },
  25708. back: {
  25709. height: math.unit(6, "feet"),
  25710. weight: math.unit(150, "lb"),
  25711. name: "Back",
  25712. image: {
  25713. source: "./media/characters/jaipur/back.svg",
  25714. extra: 1637/1561,
  25715. bottom: 154/1791
  25716. }
  25717. },
  25718. },
  25719. [
  25720. {
  25721. name: "Normal",
  25722. height: math.unit(1.85, "meters"),
  25723. default: true
  25724. },
  25725. {
  25726. name: "Macro",
  25727. height: math.unit(150, "meters")
  25728. },
  25729. {
  25730. name: "Macro+",
  25731. height: math.unit(0.5, "miles")
  25732. },
  25733. {
  25734. name: "Macro++",
  25735. height: math.unit(2.5, "miles")
  25736. },
  25737. {
  25738. name: "Macro+++",
  25739. height: math.unit(12, "miles")
  25740. },
  25741. {
  25742. name: "Macro++++",
  25743. height: math.unit(120, "miles")
  25744. },
  25745. {
  25746. name: "Macro+++++",
  25747. height: math.unit(1200, "miles")
  25748. },
  25749. ]
  25750. ))
  25751. characterMakers.push(() => makeCharacter(
  25752. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25753. {
  25754. front: {
  25755. height: math.unit(6, "feet"),
  25756. weight: math.unit(150, "lb"),
  25757. name: "Front",
  25758. image: {
  25759. source: "./media/characters/sheila-wolf/front.svg",
  25760. extra: 1931 / 1808,
  25761. bottom: 29.5 / 1960
  25762. }
  25763. },
  25764. dick: {
  25765. height: math.unit(1.464, "feet"),
  25766. name: "Dick",
  25767. image: {
  25768. source: "./media/characters/sheila-wolf/dick.svg"
  25769. }
  25770. },
  25771. muzzle: {
  25772. height: math.unit(0.513, "feet"),
  25773. name: "Muzzle",
  25774. image: {
  25775. source: "./media/characters/sheila-wolf/muzzle.svg"
  25776. }
  25777. },
  25778. },
  25779. [
  25780. {
  25781. name: "Macro",
  25782. height: math.unit(70, "feet"),
  25783. default: true
  25784. },
  25785. ]
  25786. ))
  25787. characterMakers.push(() => makeCharacter(
  25788. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25789. {
  25790. front: {
  25791. height: math.unit(32, "meters"),
  25792. weight: math.unit(300000, "kg"),
  25793. name: "Front",
  25794. image: {
  25795. source: "./media/characters/almor/front.svg",
  25796. extra: 1408 / 1322,
  25797. bottom: 94.6 / 1506.5
  25798. }
  25799. },
  25800. },
  25801. [
  25802. {
  25803. name: "Macro",
  25804. height: math.unit(32, "meters"),
  25805. default: true
  25806. },
  25807. ]
  25808. ))
  25809. characterMakers.push(() => makeCharacter(
  25810. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25811. {
  25812. front: {
  25813. height: math.unit(7, "feet"),
  25814. weight: math.unit(200, "lb"),
  25815. name: "Front",
  25816. image: {
  25817. source: "./media/characters/silver/front.svg",
  25818. extra: 472.1 / 450.5,
  25819. bottom: 26.5 / 499.424
  25820. }
  25821. },
  25822. },
  25823. [
  25824. {
  25825. name: "Normal",
  25826. height: math.unit(7, "feet"),
  25827. default: true
  25828. },
  25829. {
  25830. name: "Macro",
  25831. height: math.unit(800, "feet")
  25832. },
  25833. {
  25834. name: "Megamacro",
  25835. height: math.unit(250, "miles")
  25836. },
  25837. ]
  25838. ))
  25839. characterMakers.push(() => makeCharacter(
  25840. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25841. {
  25842. front: {
  25843. height: math.unit(6, "feet"),
  25844. weight: math.unit(150, "lb"),
  25845. name: "Front",
  25846. image: {
  25847. source: "./media/characters/pliskin/front.svg",
  25848. extra: 1469 / 1359,
  25849. bottom: 70 / 1540
  25850. }
  25851. },
  25852. },
  25853. [
  25854. {
  25855. name: "Micro",
  25856. height: math.unit(3, "inches")
  25857. },
  25858. {
  25859. name: "Normal",
  25860. height: math.unit(5 + 11 / 12, "feet"),
  25861. default: true
  25862. },
  25863. {
  25864. name: "Macro",
  25865. height: math.unit(120, "feet")
  25866. },
  25867. ]
  25868. ))
  25869. characterMakers.push(() => makeCharacter(
  25870. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25871. {
  25872. front: {
  25873. height: math.unit(6, "feet"),
  25874. weight: math.unit(150, "lb"),
  25875. name: "Front",
  25876. image: {
  25877. source: "./media/characters/sammy/front.svg",
  25878. extra: 1193 / 1089,
  25879. bottom: 30.5 / 1226
  25880. }
  25881. },
  25882. },
  25883. [
  25884. {
  25885. name: "Macro",
  25886. height: math.unit(1700, "feet"),
  25887. default: true
  25888. },
  25889. {
  25890. name: "Examacro",
  25891. height: math.unit(2.5e9, "lightyears")
  25892. },
  25893. ]
  25894. ))
  25895. characterMakers.push(() => makeCharacter(
  25896. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25897. {
  25898. front: {
  25899. height: math.unit(21, "meters"),
  25900. weight: math.unit(12, "tonnes"),
  25901. name: "Front",
  25902. image: {
  25903. source: "./media/characters/kuru/front.svg",
  25904. extra: 4301 / 3785,
  25905. bottom: 371.3 / 4691
  25906. }
  25907. },
  25908. },
  25909. [
  25910. {
  25911. name: "Macro",
  25912. height: math.unit(21, "meters"),
  25913. default: true
  25914. },
  25915. ]
  25916. ))
  25917. characterMakers.push(() => makeCharacter(
  25918. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25919. {
  25920. front: {
  25921. height: math.unit(23, "meters"),
  25922. weight: math.unit(12.2, "tonnes"),
  25923. name: "Front",
  25924. image: {
  25925. source: "./media/characters/rakka/front.svg",
  25926. extra: 4670 / 4169,
  25927. bottom: 301 / 4968.7
  25928. }
  25929. },
  25930. },
  25931. [
  25932. {
  25933. name: "Macro",
  25934. height: math.unit(23, "meters"),
  25935. default: true
  25936. },
  25937. ]
  25938. ))
  25939. characterMakers.push(() => makeCharacter(
  25940. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25941. {
  25942. front: {
  25943. height: math.unit(6, "feet"),
  25944. weight: math.unit(150, "lb"),
  25945. name: "Front",
  25946. image: {
  25947. source: "./media/characters/rhys-feline/front.svg",
  25948. extra: 2488 / 2308,
  25949. bottom: 35.67 / 2519.19
  25950. }
  25951. },
  25952. },
  25953. [
  25954. {
  25955. name: "Really Small",
  25956. height: math.unit(1, "nm")
  25957. },
  25958. {
  25959. name: "Micro",
  25960. height: math.unit(4, "inches")
  25961. },
  25962. {
  25963. name: "Normal",
  25964. height: math.unit(4 + 10 / 12, "feet"),
  25965. default: true
  25966. },
  25967. {
  25968. name: "Macro",
  25969. height: math.unit(100, "feet")
  25970. },
  25971. {
  25972. name: "Megamacto",
  25973. height: math.unit(50, "miles")
  25974. },
  25975. ]
  25976. ))
  25977. characterMakers.push(() => makeCharacter(
  25978. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25979. {
  25980. side: {
  25981. height: math.unit(30, "feet"),
  25982. weight: math.unit(35000, "kg"),
  25983. name: "Side",
  25984. image: {
  25985. source: "./media/characters/alydar/side.svg",
  25986. extra: 234 / 222,
  25987. bottom: 6.5 / 241
  25988. }
  25989. },
  25990. front: {
  25991. height: math.unit(30, "feet"),
  25992. weight: math.unit(35000, "kg"),
  25993. name: "Front",
  25994. image: {
  25995. source: "./media/characters/alydar/front.svg",
  25996. extra: 223.37 / 210.2,
  25997. bottom: 22.3 / 246.76
  25998. }
  25999. },
  26000. top: {
  26001. height: math.unit(64.54, "feet"),
  26002. weight: math.unit(35000, "kg"),
  26003. name: "Top",
  26004. image: {
  26005. source: "./media/characters/alydar/top.svg"
  26006. }
  26007. },
  26008. anthro: {
  26009. height: math.unit(30, "feet"),
  26010. weight: math.unit(9000, "kg"),
  26011. name: "Anthro",
  26012. image: {
  26013. source: "./media/characters/alydar/anthro.svg",
  26014. extra: 432 / 421,
  26015. bottom: 7.18 / 440
  26016. }
  26017. },
  26018. maw: {
  26019. height: math.unit(11.693, "feet"),
  26020. name: "Maw",
  26021. image: {
  26022. source: "./media/characters/alydar/maw.svg"
  26023. }
  26024. },
  26025. head: {
  26026. height: math.unit(11.693, "feet"),
  26027. name: "Head",
  26028. image: {
  26029. source: "./media/characters/alydar/head.svg"
  26030. }
  26031. },
  26032. headAlt: {
  26033. height: math.unit(12.861, "feet"),
  26034. name: "Head (Alt)",
  26035. image: {
  26036. source: "./media/characters/alydar/head-alt.svg"
  26037. }
  26038. },
  26039. wing: {
  26040. height: math.unit(20.712, "feet"),
  26041. name: "Wing",
  26042. image: {
  26043. source: "./media/characters/alydar/wing.svg"
  26044. }
  26045. },
  26046. wingFeather: {
  26047. height: math.unit(9.662, "feet"),
  26048. name: "Wing Feather",
  26049. image: {
  26050. source: "./media/characters/alydar/wing-feather.svg"
  26051. }
  26052. },
  26053. countourFeather: {
  26054. height: math.unit(4.154, "feet"),
  26055. name: "Contour Feather",
  26056. image: {
  26057. source: "./media/characters/alydar/contour-feather.svg"
  26058. }
  26059. },
  26060. },
  26061. [
  26062. {
  26063. name: "Diplomatic",
  26064. height: math.unit(13, "feet"),
  26065. default: true
  26066. },
  26067. {
  26068. name: "Small",
  26069. height: math.unit(30, "feet")
  26070. },
  26071. {
  26072. name: "Normal",
  26073. height: math.unit(95, "feet"),
  26074. default: true
  26075. },
  26076. {
  26077. name: "Large",
  26078. height: math.unit(285, "feet")
  26079. },
  26080. {
  26081. name: "Incomprehensible",
  26082. height: math.unit(450, "megameters")
  26083. },
  26084. ]
  26085. ))
  26086. characterMakers.push(() => makeCharacter(
  26087. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26088. {
  26089. side: {
  26090. height: math.unit(11, "feet"),
  26091. weight: math.unit(1750, "kg"),
  26092. name: "Side",
  26093. image: {
  26094. source: "./media/characters/selicia/side.svg",
  26095. extra: 440 / 396,
  26096. bottom: 24.8 / 465.979
  26097. }
  26098. },
  26099. maw: {
  26100. height: math.unit(4.665, "feet"),
  26101. name: "Maw",
  26102. image: {
  26103. source: "./media/characters/selicia/maw.svg"
  26104. }
  26105. },
  26106. },
  26107. [
  26108. {
  26109. name: "Normal",
  26110. height: math.unit(11, "feet"),
  26111. default: true
  26112. },
  26113. ]
  26114. ))
  26115. characterMakers.push(() => makeCharacter(
  26116. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26117. {
  26118. side: {
  26119. height: math.unit(2 + 6 / 12, "feet"),
  26120. weight: math.unit(30, "lb"),
  26121. name: "Side",
  26122. image: {
  26123. source: "./media/characters/layla/side.svg",
  26124. extra: 244 / 188,
  26125. bottom: 18.2 / 262.1
  26126. }
  26127. },
  26128. back: {
  26129. height: math.unit(2 + 6 / 12, "feet"),
  26130. weight: math.unit(30, "lb"),
  26131. name: "Back",
  26132. image: {
  26133. source: "./media/characters/layla/back.svg",
  26134. extra: 308 / 241.5,
  26135. bottom: 8.9 / 316.8
  26136. }
  26137. },
  26138. cumming: {
  26139. height: math.unit(2 + 6 / 12, "feet"),
  26140. weight: math.unit(30, "lb"),
  26141. name: "Cumming",
  26142. image: {
  26143. source: "./media/characters/layla/cumming.svg",
  26144. extra: 342 / 279,
  26145. bottom: 595 / 938
  26146. }
  26147. },
  26148. dickFlaccid: {
  26149. height: math.unit(2.595, "feet"),
  26150. name: "Flaccid Genitals",
  26151. image: {
  26152. source: "./media/characters/layla/dick-flaccid.svg"
  26153. }
  26154. },
  26155. dickErect: {
  26156. height: math.unit(2.359, "feet"),
  26157. name: "Erect Genitals",
  26158. image: {
  26159. source: "./media/characters/layla/dick-erect.svg"
  26160. }
  26161. },
  26162. dragon: {
  26163. height: math.unit(40, "feet"),
  26164. name: "Dragon",
  26165. image: {
  26166. source: "./media/characters/layla/dragon.svg",
  26167. extra: 610/535,
  26168. bottom: 367/977
  26169. }
  26170. },
  26171. taur: {
  26172. height: math.unit(30, "feet"),
  26173. name: "Taur",
  26174. image: {
  26175. source: "./media/characters/layla/taur.svg",
  26176. extra: 1268/1199,
  26177. bottom: 112/1380
  26178. }
  26179. },
  26180. },
  26181. [
  26182. {
  26183. name: "Micro",
  26184. height: math.unit(1, "inch")
  26185. },
  26186. {
  26187. name: "Small",
  26188. height: math.unit(1, "foot")
  26189. },
  26190. {
  26191. name: "Normal",
  26192. height: math.unit(2 + 6 / 12, "feet"),
  26193. default: true
  26194. },
  26195. {
  26196. name: "Macro",
  26197. height: math.unit(200, "feet")
  26198. },
  26199. {
  26200. name: "Megamacro",
  26201. height: math.unit(1000, "miles")
  26202. },
  26203. {
  26204. name: "Planetary",
  26205. height: math.unit(8000, "miles")
  26206. },
  26207. {
  26208. name: "True Layla",
  26209. height: math.unit(200000 * 7, "multiverses")
  26210. },
  26211. ]
  26212. ))
  26213. characterMakers.push(() => makeCharacter(
  26214. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26215. {
  26216. back: {
  26217. height: math.unit(10.5, "feet"),
  26218. weight: math.unit(800, "lb"),
  26219. name: "Back",
  26220. image: {
  26221. source: "./media/characters/knox/back.svg",
  26222. extra: 1486 / 1089,
  26223. bottom: 107 / 1601.4
  26224. }
  26225. },
  26226. side: {
  26227. height: math.unit(10.5, "feet"),
  26228. weight: math.unit(800, "lb"),
  26229. name: "Side",
  26230. image: {
  26231. source: "./media/characters/knox/side.svg",
  26232. extra: 244 / 218,
  26233. bottom: 14 / 260
  26234. }
  26235. },
  26236. },
  26237. [
  26238. {
  26239. name: "Compact",
  26240. height: math.unit(10.5, "feet"),
  26241. default: true
  26242. },
  26243. {
  26244. name: "Dynamax",
  26245. height: math.unit(210, "feet")
  26246. },
  26247. {
  26248. name: "Full Macro",
  26249. height: math.unit(850, "feet")
  26250. },
  26251. ]
  26252. ))
  26253. characterMakers.push(() => makeCharacter(
  26254. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26255. {
  26256. front: {
  26257. height: math.unit(28, "feet"),
  26258. weight: math.unit(10500, "lb"),
  26259. name: "Front",
  26260. image: {
  26261. source: "./media/characters/kayda/front.svg",
  26262. extra: 1536 / 1428,
  26263. bottom: 68.7 / 1603
  26264. }
  26265. },
  26266. back: {
  26267. height: math.unit(28, "feet"),
  26268. weight: math.unit(10500, "lb"),
  26269. name: "Back",
  26270. image: {
  26271. source: "./media/characters/kayda/back.svg",
  26272. extra: 1557 / 1464,
  26273. bottom: 39.5 / 1597.49
  26274. }
  26275. },
  26276. dick: {
  26277. height: math.unit(3.858, "feet"),
  26278. name: "Dick",
  26279. image: {
  26280. source: "./media/characters/kayda/dick.svg"
  26281. }
  26282. },
  26283. },
  26284. [
  26285. {
  26286. name: "Macro",
  26287. height: math.unit(28, "feet"),
  26288. default: true
  26289. },
  26290. ]
  26291. ))
  26292. characterMakers.push(() => makeCharacter(
  26293. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26294. {
  26295. front: {
  26296. height: math.unit(10 + 11 / 12, "feet"),
  26297. weight: math.unit(1400, "lb"),
  26298. name: "Front",
  26299. image: {
  26300. source: "./media/characters/brian/front.svg",
  26301. extra: 737 / 692,
  26302. bottom: 55.4 / 785
  26303. }
  26304. },
  26305. },
  26306. [
  26307. {
  26308. name: "Normal",
  26309. height: math.unit(10 + 11 / 12, "feet"),
  26310. default: true
  26311. },
  26312. ]
  26313. ))
  26314. characterMakers.push(() => makeCharacter(
  26315. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26316. {
  26317. front: {
  26318. height: math.unit(5 + 8 / 12, "feet"),
  26319. weight: math.unit(140, "lb"),
  26320. name: "Front",
  26321. image: {
  26322. source: "./media/characters/khemri/front.svg",
  26323. extra: 4780 / 4059,
  26324. bottom: 80.1 / 4859.25
  26325. }
  26326. },
  26327. },
  26328. [
  26329. {
  26330. name: "Micro",
  26331. height: math.unit(6, "inches")
  26332. },
  26333. {
  26334. name: "Normal",
  26335. height: math.unit(5 + 8 / 12, "feet"),
  26336. default: true
  26337. },
  26338. ]
  26339. ))
  26340. characterMakers.push(() => makeCharacter(
  26341. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26342. {
  26343. front: {
  26344. height: math.unit(13, "feet"),
  26345. weight: math.unit(1700, "lb"),
  26346. name: "Front",
  26347. image: {
  26348. source: "./media/characters/felix-braveheart/front.svg",
  26349. extra: 1222 / 1157,
  26350. bottom: 53.2 / 1280
  26351. }
  26352. },
  26353. back: {
  26354. height: math.unit(13, "feet"),
  26355. weight: math.unit(1700, "lb"),
  26356. name: "Back",
  26357. image: {
  26358. source: "./media/characters/felix-braveheart/back.svg",
  26359. extra: 1277 / 1203,
  26360. bottom: 50.2 / 1327
  26361. }
  26362. },
  26363. feral: {
  26364. height: math.unit(6, "feet"),
  26365. weight: math.unit(400, "lb"),
  26366. name: "Feral",
  26367. image: {
  26368. source: "./media/characters/felix-braveheart/feral.svg",
  26369. extra: 682 / 625,
  26370. bottom: 6.9 / 688
  26371. }
  26372. },
  26373. },
  26374. [
  26375. {
  26376. name: "Normal",
  26377. height: math.unit(13, "feet"),
  26378. default: true
  26379. },
  26380. ]
  26381. ))
  26382. characterMakers.push(() => makeCharacter(
  26383. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26384. {
  26385. side: {
  26386. height: math.unit(5 + 11 / 12, "feet"),
  26387. weight: math.unit(1400, "lb"),
  26388. name: "Side",
  26389. image: {
  26390. source: "./media/characters/shadow-blade/side.svg",
  26391. extra: 1726 / 1267,
  26392. bottom: 58.4 / 1785
  26393. }
  26394. },
  26395. },
  26396. [
  26397. {
  26398. name: "Normal",
  26399. height: math.unit(5 + 11 / 12, "feet"),
  26400. default: true
  26401. },
  26402. ]
  26403. ))
  26404. characterMakers.push(() => makeCharacter(
  26405. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26406. {
  26407. front: {
  26408. height: math.unit(1 + 6 / 12, "feet"),
  26409. weight: math.unit(25, "lb"),
  26410. name: "Front",
  26411. image: {
  26412. source: "./media/characters/karla-halldor/front.svg",
  26413. extra: 1459 / 1383,
  26414. bottom: 12 / 1472
  26415. }
  26416. },
  26417. },
  26418. [
  26419. {
  26420. name: "Normal",
  26421. height: math.unit(1 + 6 / 12, "feet"),
  26422. default: true
  26423. },
  26424. ]
  26425. ))
  26426. characterMakers.push(() => makeCharacter(
  26427. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26428. {
  26429. front: {
  26430. height: math.unit(6 + 2 / 12, "feet"),
  26431. weight: math.unit(160, "lb"),
  26432. name: "Front",
  26433. image: {
  26434. source: "./media/characters/ariam/front.svg",
  26435. extra: 1073/976,
  26436. bottom: 52/1125
  26437. }
  26438. },
  26439. back: {
  26440. height: math.unit(6 + 2/12, "feet"),
  26441. weight: math.unit(160, "lb"),
  26442. name: "Back",
  26443. image: {
  26444. source: "./media/characters/ariam/back.svg",
  26445. extra: 1103/1023,
  26446. bottom: 9/1112
  26447. }
  26448. },
  26449. dressed: {
  26450. height: math.unit(6 + 2/12, "feet"),
  26451. weight: math.unit(160, "lb"),
  26452. name: "Dressed",
  26453. image: {
  26454. source: "./media/characters/ariam/dressed.svg",
  26455. extra: 1099/1009,
  26456. bottom: 25/1124
  26457. }
  26458. },
  26459. squatting: {
  26460. height: math.unit(4.1, "feet"),
  26461. weight: math.unit(160, "lb"),
  26462. name: "Squatting",
  26463. image: {
  26464. source: "./media/characters/ariam/squatting.svg",
  26465. extra: 2617 / 2112,
  26466. bottom: 61.2 / 2681,
  26467. }
  26468. },
  26469. },
  26470. [
  26471. {
  26472. name: "Normal",
  26473. height: math.unit(6 + 2 / 12, "feet"),
  26474. default: true
  26475. },
  26476. {
  26477. name: "Normal+",
  26478. height: math.unit(4, "meters")
  26479. },
  26480. {
  26481. name: "Macro",
  26482. height: math.unit(50, "meters")
  26483. },
  26484. {
  26485. name: "Macro+",
  26486. height: math.unit(100, "meters")
  26487. },
  26488. {
  26489. name: "Megamacro",
  26490. height: math.unit(20, "km")
  26491. },
  26492. {
  26493. name: "Caretaker",
  26494. height: math.unit(444, "megameters")
  26495. },
  26496. ]
  26497. ))
  26498. characterMakers.push(() => makeCharacter(
  26499. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26500. {
  26501. front: {
  26502. height: math.unit(1.67, "meters"),
  26503. weight: math.unit(140, "lb"),
  26504. name: "Front",
  26505. image: {
  26506. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26507. extra: 438 / 410,
  26508. bottom: 0.75 / 439
  26509. }
  26510. },
  26511. },
  26512. [
  26513. {
  26514. name: "Shrunken",
  26515. height: math.unit(7.6, "cm")
  26516. },
  26517. {
  26518. name: "Human Scale",
  26519. height: math.unit(1.67, "meters")
  26520. },
  26521. {
  26522. name: "Wolxi Scale",
  26523. height: math.unit(36.7, "meters"),
  26524. default: true
  26525. },
  26526. ]
  26527. ))
  26528. characterMakers.push(() => makeCharacter(
  26529. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26530. {
  26531. front: {
  26532. height: math.unit(1.73, "meters"),
  26533. weight: math.unit(240, "lb"),
  26534. name: "Front",
  26535. image: {
  26536. source: "./media/characters/izue-two-mothers/front.svg",
  26537. extra: 469 / 437,
  26538. bottom: 1.24 / 470.6
  26539. }
  26540. },
  26541. },
  26542. [
  26543. {
  26544. name: "Shrunken",
  26545. height: math.unit(7.86, "cm")
  26546. },
  26547. {
  26548. name: "Human Scale",
  26549. height: math.unit(1.73, "meters")
  26550. },
  26551. {
  26552. name: "Wolxi Scale",
  26553. height: math.unit(38, "meters"),
  26554. default: true
  26555. },
  26556. ]
  26557. ))
  26558. characterMakers.push(() => makeCharacter(
  26559. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26560. {
  26561. front: {
  26562. height: math.unit(1.55, "meters"),
  26563. weight: math.unit(120, "lb"),
  26564. name: "Front",
  26565. image: {
  26566. source: "./media/characters/teeku-love-shack/front.svg",
  26567. extra: 387 / 362,
  26568. bottom: 1.51 / 388
  26569. }
  26570. },
  26571. },
  26572. [
  26573. {
  26574. name: "Shrunken",
  26575. height: math.unit(7, "cm")
  26576. },
  26577. {
  26578. name: "Human Scale",
  26579. height: math.unit(1.55, "meters")
  26580. },
  26581. {
  26582. name: "Wolxi Scale",
  26583. height: math.unit(34.1, "meters"),
  26584. default: true
  26585. },
  26586. ]
  26587. ))
  26588. characterMakers.push(() => makeCharacter(
  26589. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26590. {
  26591. front: {
  26592. height: math.unit(1.83, "meters"),
  26593. weight: math.unit(135, "lb"),
  26594. name: "Front",
  26595. image: {
  26596. source: "./media/characters/dejma-the-red/front.svg",
  26597. extra: 480 / 458,
  26598. bottom: 1.8 / 482
  26599. }
  26600. },
  26601. },
  26602. [
  26603. {
  26604. name: "Shrunken",
  26605. height: math.unit(8.3, "cm")
  26606. },
  26607. {
  26608. name: "Human Scale",
  26609. height: math.unit(1.83, "meters")
  26610. },
  26611. {
  26612. name: "Wolxi Scale",
  26613. height: math.unit(40, "meters"),
  26614. default: true
  26615. },
  26616. ]
  26617. ))
  26618. characterMakers.push(() => makeCharacter(
  26619. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26620. {
  26621. front: {
  26622. height: math.unit(1.78, "meters"),
  26623. weight: math.unit(65, "kg"),
  26624. name: "Front",
  26625. image: {
  26626. source: "./media/characters/aki/front.svg",
  26627. extra: 452 / 415
  26628. }
  26629. },
  26630. frontNsfw: {
  26631. height: math.unit(1.78, "meters"),
  26632. weight: math.unit(65, "kg"),
  26633. name: "Front (NSFW)",
  26634. image: {
  26635. source: "./media/characters/aki/front-nsfw.svg",
  26636. extra: 452 / 415
  26637. }
  26638. },
  26639. back: {
  26640. height: math.unit(1.78, "meters"),
  26641. weight: math.unit(65, "kg"),
  26642. name: "Back",
  26643. image: {
  26644. source: "./media/characters/aki/back.svg",
  26645. extra: 452 / 415
  26646. }
  26647. },
  26648. rump: {
  26649. height: math.unit(2.05, "feet"),
  26650. name: "Rump",
  26651. image: {
  26652. source: "./media/characters/aki/rump.svg"
  26653. }
  26654. },
  26655. dick: {
  26656. height: math.unit(0.95, "feet"),
  26657. name: "Dick",
  26658. image: {
  26659. source: "./media/characters/aki/dick.svg"
  26660. }
  26661. },
  26662. },
  26663. [
  26664. {
  26665. name: "Micro",
  26666. height: math.unit(15, "cm")
  26667. },
  26668. {
  26669. name: "Normal",
  26670. height: math.unit(178, "cm"),
  26671. default: true
  26672. },
  26673. {
  26674. name: "Macro",
  26675. height: math.unit(214, "m")
  26676. },
  26677. {
  26678. name: "Macro+",
  26679. height: math.unit(534, "m")
  26680. },
  26681. ]
  26682. ))
  26683. characterMakers.push(() => makeCharacter(
  26684. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26685. {
  26686. front: {
  26687. height: math.unit(5 + 5 / 12, "feet"),
  26688. weight: math.unit(120, "lb"),
  26689. name: "Front",
  26690. image: {
  26691. source: "./media/characters/ari/front.svg",
  26692. extra: 1550/1471,
  26693. bottom: 39/1589
  26694. }
  26695. },
  26696. },
  26697. [
  26698. {
  26699. name: "Normal",
  26700. height: math.unit(5 + 5 / 12, "feet")
  26701. },
  26702. {
  26703. name: "Macro",
  26704. height: math.unit(100, "feet"),
  26705. default: true
  26706. },
  26707. {
  26708. name: "Megamacro",
  26709. height: math.unit(100, "miles")
  26710. },
  26711. {
  26712. name: "Gigamacro",
  26713. height: math.unit(80000, "miles")
  26714. },
  26715. ]
  26716. ))
  26717. characterMakers.push(() => makeCharacter(
  26718. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26719. {
  26720. side: {
  26721. height: math.unit(9, "feet"),
  26722. weight: math.unit(400, "kg"),
  26723. name: "Side",
  26724. image: {
  26725. source: "./media/characters/bolt/side.svg",
  26726. extra: 1126 / 896,
  26727. bottom: 60 / 1187.3,
  26728. }
  26729. },
  26730. },
  26731. [
  26732. {
  26733. name: "Micro",
  26734. height: math.unit(5, "inches")
  26735. },
  26736. {
  26737. name: "Normal",
  26738. height: math.unit(9, "feet"),
  26739. default: true
  26740. },
  26741. {
  26742. name: "Macro",
  26743. height: math.unit(700, "feet")
  26744. },
  26745. {
  26746. name: "Max Size",
  26747. height: math.unit(1.52e22, "yottameters")
  26748. },
  26749. ]
  26750. ))
  26751. characterMakers.push(() => makeCharacter(
  26752. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26753. {
  26754. front: {
  26755. height: math.unit(4.3, "meters"),
  26756. weight: math.unit(3, "tons"),
  26757. name: "Front",
  26758. image: {
  26759. source: "./media/characters/draekon-sylviar/front.svg",
  26760. extra: 2072/1512,
  26761. bottom: 74/2146
  26762. }
  26763. },
  26764. back: {
  26765. height: math.unit(4.3, "meters"),
  26766. weight: math.unit(3, "tons"),
  26767. name: "Back",
  26768. image: {
  26769. source: "./media/characters/draekon-sylviar/back.svg",
  26770. extra: 1639/1483,
  26771. bottom: 41/1680
  26772. }
  26773. },
  26774. feral: {
  26775. height: math.unit(1.15, "meters"),
  26776. weight: math.unit(3, "tons"),
  26777. name: "Feral",
  26778. image: {
  26779. source: "./media/characters/draekon-sylviar/feral.svg",
  26780. extra: 1033/395,
  26781. bottom: 130/1163
  26782. }
  26783. },
  26784. maw: {
  26785. height: math.unit(1.3, "meters"),
  26786. name: "Maw",
  26787. image: {
  26788. source: "./media/characters/draekon-sylviar/maw.svg"
  26789. }
  26790. },
  26791. mawSeparated: {
  26792. height: math.unit(1.53, "meters"),
  26793. name: "Separated Maw",
  26794. image: {
  26795. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26796. }
  26797. },
  26798. tail: {
  26799. height: math.unit(1.15, "meters"),
  26800. name: "Tail",
  26801. image: {
  26802. source: "./media/characters/draekon-sylviar/tail.svg"
  26803. }
  26804. },
  26805. tailDick: {
  26806. height: math.unit(1.15, "meters"),
  26807. name: "Tail (Dick)",
  26808. image: {
  26809. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26810. }
  26811. },
  26812. tailDickSeparated: {
  26813. height: math.unit(1.19, "meters"),
  26814. name: "Tail (Separated Dick)",
  26815. image: {
  26816. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26817. }
  26818. },
  26819. slit: {
  26820. height: math.unit(1, "meters"),
  26821. name: "Slit",
  26822. image: {
  26823. source: "./media/characters/draekon-sylviar/slit.svg"
  26824. }
  26825. },
  26826. dick: {
  26827. height: math.unit(1.15, "meters"),
  26828. name: "Dick",
  26829. image: {
  26830. source: "./media/characters/draekon-sylviar/dick.svg"
  26831. }
  26832. },
  26833. dickSeparated: {
  26834. height: math.unit(1.1, "meters"),
  26835. name: "Separated Dick",
  26836. image: {
  26837. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26838. }
  26839. },
  26840. sheath: {
  26841. height: math.unit(1.15, "meters"),
  26842. name: "Sheath",
  26843. image: {
  26844. source: "./media/characters/draekon-sylviar/sheath.svg"
  26845. }
  26846. },
  26847. },
  26848. [
  26849. {
  26850. name: "Small",
  26851. height: math.unit(4.53 / 2, "meters"),
  26852. default: true
  26853. },
  26854. {
  26855. name: "Normal",
  26856. height: math.unit(4.53, "meters"),
  26857. default: true
  26858. },
  26859. {
  26860. name: "Large",
  26861. height: math.unit(4.53 * 2, "meters"),
  26862. },
  26863. ]
  26864. ))
  26865. characterMakers.push(() => makeCharacter(
  26866. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26867. {
  26868. front: {
  26869. height: math.unit(6 + 2 / 12, "feet"),
  26870. weight: math.unit(180, "lb"),
  26871. name: "Front",
  26872. image: {
  26873. source: "./media/characters/brawler/front.svg",
  26874. extra: 3301 / 3027,
  26875. bottom: 138 / 3439
  26876. }
  26877. },
  26878. },
  26879. [
  26880. {
  26881. name: "Normal",
  26882. height: math.unit(6 + 2 / 12, "feet"),
  26883. default: true
  26884. },
  26885. ]
  26886. ))
  26887. characterMakers.push(() => makeCharacter(
  26888. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26889. {
  26890. front: {
  26891. height: math.unit(11, "feet"),
  26892. weight: math.unit(1000, "lb"),
  26893. name: "Front",
  26894. image: {
  26895. source: "./media/characters/alex/front.svg",
  26896. bottom: 44.5 / 620
  26897. }
  26898. },
  26899. },
  26900. [
  26901. {
  26902. name: "Micro",
  26903. height: math.unit(5, "inches")
  26904. },
  26905. {
  26906. name: "Normal",
  26907. height: math.unit(11, "feet"),
  26908. default: true
  26909. },
  26910. {
  26911. name: "Macro",
  26912. height: math.unit(9.5e9, "feet")
  26913. },
  26914. {
  26915. name: "Max Size",
  26916. height: math.unit(1.4e283, "yottameters")
  26917. },
  26918. ]
  26919. ))
  26920. characterMakers.push(() => makeCharacter(
  26921. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26922. {
  26923. female: {
  26924. height: math.unit(29.9, "m"),
  26925. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26926. name: "Female",
  26927. image: {
  26928. source: "./media/characters/zenari/female.svg",
  26929. extra: 3281.6 / 3217,
  26930. bottom: 72.2 / 3353
  26931. }
  26932. },
  26933. male: {
  26934. height: math.unit(27.7, "m"),
  26935. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26936. name: "Male",
  26937. image: {
  26938. source: "./media/characters/zenari/male.svg",
  26939. extra: 3008 / 2991,
  26940. bottom: 54.6 / 3069
  26941. }
  26942. },
  26943. },
  26944. [
  26945. {
  26946. name: "Macro",
  26947. height: math.unit(29.7, "meters"),
  26948. default: true
  26949. },
  26950. ]
  26951. ))
  26952. characterMakers.push(() => makeCharacter(
  26953. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26954. {
  26955. female: {
  26956. height: math.unit(23.8, "m"),
  26957. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26958. name: "Female",
  26959. image: {
  26960. source: "./media/characters/mactarian/female.svg",
  26961. extra: 2662 / 2569,
  26962. bottom: 73 / 2736
  26963. }
  26964. },
  26965. male: {
  26966. height: math.unit(23.8, "m"),
  26967. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26968. name: "Male",
  26969. image: {
  26970. source: "./media/characters/mactarian/male.svg",
  26971. extra: 2673 / 2600,
  26972. bottom: 76 / 2750
  26973. }
  26974. },
  26975. },
  26976. [
  26977. {
  26978. name: "Macro",
  26979. height: math.unit(23.8, "meters"),
  26980. default: true
  26981. },
  26982. ]
  26983. ))
  26984. characterMakers.push(() => makeCharacter(
  26985. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26986. {
  26987. female: {
  26988. height: math.unit(19.3, "m"),
  26989. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26990. name: "Female",
  26991. image: {
  26992. source: "./media/characters/umok/female.svg",
  26993. extra: 2186 / 2078,
  26994. bottom: 87 / 2277
  26995. }
  26996. },
  26997. male: {
  26998. height: math.unit(19.5, "m"),
  26999. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27000. name: "Male",
  27001. image: {
  27002. source: "./media/characters/umok/male.svg",
  27003. extra: 2233 / 2140,
  27004. bottom: 24.4 / 2258
  27005. }
  27006. },
  27007. },
  27008. [
  27009. {
  27010. name: "Macro",
  27011. height: math.unit(19.3, "meters"),
  27012. default: true
  27013. },
  27014. ]
  27015. ))
  27016. characterMakers.push(() => makeCharacter(
  27017. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27018. {
  27019. female: {
  27020. height: math.unit(26.15, "m"),
  27021. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27022. name: "Female",
  27023. image: {
  27024. source: "./media/characters/joraxian/female.svg",
  27025. extra: 2912 / 2824,
  27026. bottom: 36 / 2956
  27027. }
  27028. },
  27029. male: {
  27030. height: math.unit(25.4, "m"),
  27031. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27032. name: "Male",
  27033. image: {
  27034. source: "./media/characters/joraxian/male.svg",
  27035. extra: 2877 / 2721,
  27036. bottom: 82 / 2967
  27037. }
  27038. },
  27039. },
  27040. [
  27041. {
  27042. name: "Macro",
  27043. height: math.unit(26.15, "meters"),
  27044. default: true
  27045. },
  27046. ]
  27047. ))
  27048. characterMakers.push(() => makeCharacter(
  27049. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27050. {
  27051. female: {
  27052. height: math.unit(21.6, "m"),
  27053. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27054. name: "Female",
  27055. image: {
  27056. source: "./media/characters/sthara/female.svg",
  27057. extra: 2516 / 2347,
  27058. bottom: 21.5 / 2537
  27059. }
  27060. },
  27061. male: {
  27062. height: math.unit(24, "m"),
  27063. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27064. name: "Male",
  27065. image: {
  27066. source: "./media/characters/sthara/male.svg",
  27067. extra: 2732 / 2607,
  27068. bottom: 23 / 2732
  27069. }
  27070. },
  27071. },
  27072. [
  27073. {
  27074. name: "Macro",
  27075. height: math.unit(21.6, "meters"),
  27076. default: true
  27077. },
  27078. ]
  27079. ))
  27080. characterMakers.push(() => makeCharacter(
  27081. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27082. {
  27083. front: {
  27084. height: math.unit(6 + 4 / 12, "feet"),
  27085. weight: math.unit(175, "lb"),
  27086. name: "Front",
  27087. image: {
  27088. source: "./media/characters/luka-bryzant/front.svg",
  27089. extra: 311 / 289,
  27090. bottom: 4 / 315
  27091. }
  27092. },
  27093. back: {
  27094. height: math.unit(6 + 4 / 12, "feet"),
  27095. weight: math.unit(175, "lb"),
  27096. name: "Back",
  27097. image: {
  27098. source: "./media/characters/luka-bryzant/back.svg",
  27099. extra: 311 / 289,
  27100. bottom: 3.8 / 313.7
  27101. }
  27102. },
  27103. },
  27104. [
  27105. {
  27106. name: "Micro",
  27107. height: math.unit(10, "inches")
  27108. },
  27109. {
  27110. name: "Normal",
  27111. height: math.unit(6 + 4 / 12, "feet"),
  27112. default: true
  27113. },
  27114. {
  27115. name: "Large",
  27116. height: math.unit(12, "feet")
  27117. },
  27118. ]
  27119. ))
  27120. characterMakers.push(() => makeCharacter(
  27121. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27122. {
  27123. front: {
  27124. height: math.unit(5 + 7 / 12, "feet"),
  27125. weight: math.unit(185, "lb"),
  27126. name: "Front",
  27127. image: {
  27128. source: "./media/characters/aman-aquila/front.svg",
  27129. extra: 1013 / 976,
  27130. bottom: 45.6 / 1057
  27131. }
  27132. },
  27133. side: {
  27134. height: math.unit(5 + 7 / 12, "feet"),
  27135. weight: math.unit(185, "lb"),
  27136. name: "Side",
  27137. image: {
  27138. source: "./media/characters/aman-aquila/side.svg",
  27139. extra: 1054 / 1011,
  27140. bottom: 15 / 1070
  27141. }
  27142. },
  27143. back: {
  27144. height: math.unit(5 + 7 / 12, "feet"),
  27145. weight: math.unit(185, "lb"),
  27146. name: "Back",
  27147. image: {
  27148. source: "./media/characters/aman-aquila/back.svg",
  27149. extra: 1026 / 970,
  27150. bottom: 12 / 1039
  27151. }
  27152. },
  27153. head: {
  27154. height: math.unit(1.211, "feet"),
  27155. name: "Head",
  27156. image: {
  27157. source: "./media/characters/aman-aquila/head.svg",
  27158. }
  27159. },
  27160. },
  27161. [
  27162. {
  27163. name: "Minimicro",
  27164. height: math.unit(0.057, "inches")
  27165. },
  27166. {
  27167. name: "Micro",
  27168. height: math.unit(7, "inches")
  27169. },
  27170. {
  27171. name: "Mini",
  27172. height: math.unit(3 + 7 / 12, "feet")
  27173. },
  27174. {
  27175. name: "Normal",
  27176. height: math.unit(5 + 7 / 12, "feet"),
  27177. default: true
  27178. },
  27179. {
  27180. name: "Macro",
  27181. height: math.unit(157 + 7 / 12, "feet")
  27182. },
  27183. {
  27184. name: "Megamacro",
  27185. height: math.unit(1557 + 7 / 12, "feet")
  27186. },
  27187. {
  27188. name: "Gigamacro",
  27189. height: math.unit(15557 + 7 / 12, "feet")
  27190. },
  27191. ]
  27192. ))
  27193. characterMakers.push(() => makeCharacter(
  27194. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27195. {
  27196. front: {
  27197. height: math.unit(3 + 2 / 12, "inches"),
  27198. weight: math.unit(0.3, "ounces"),
  27199. name: "Front",
  27200. image: {
  27201. source: "./media/characters/hiphae/front.svg",
  27202. extra: 1931 / 1683,
  27203. bottom: 24 / 1955
  27204. }
  27205. },
  27206. },
  27207. [
  27208. {
  27209. name: "Normal",
  27210. height: math.unit(3 + 1 / 2, "inches"),
  27211. default: true
  27212. },
  27213. ]
  27214. ))
  27215. characterMakers.push(() => makeCharacter(
  27216. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27217. {
  27218. front: {
  27219. height: math.unit(5 + 10 / 12, "feet"),
  27220. weight: math.unit(165, "lb"),
  27221. name: "Front",
  27222. image: {
  27223. source: "./media/characters/nicky/front.svg",
  27224. extra: 3144 / 2886,
  27225. bottom: 45.6 / 3192
  27226. }
  27227. },
  27228. back: {
  27229. height: math.unit(5 + 10 / 12, "feet"),
  27230. weight: math.unit(165, "lb"),
  27231. name: "Back",
  27232. image: {
  27233. source: "./media/characters/nicky/back.svg",
  27234. extra: 3055 / 2804,
  27235. bottom: 28.4 / 3087
  27236. }
  27237. },
  27238. frontclothed: {
  27239. height: math.unit(5 + 10 / 12, "feet"),
  27240. weight: math.unit(165, "lb"),
  27241. name: "Front-clothed",
  27242. image: {
  27243. source: "./media/characters/nicky/front-clothed.svg",
  27244. extra: 3184.9 / 2926.9,
  27245. bottom: 86.5 / 3239.9
  27246. }
  27247. },
  27248. foot: {
  27249. height: math.unit(1.16, "feet"),
  27250. name: "Foot",
  27251. image: {
  27252. source: "./media/characters/nicky/foot.svg"
  27253. }
  27254. },
  27255. feet: {
  27256. height: math.unit(1.34, "feet"),
  27257. name: "Feet",
  27258. image: {
  27259. source: "./media/characters/nicky/feet.svg"
  27260. }
  27261. },
  27262. maw: {
  27263. height: math.unit(0.9, "feet"),
  27264. name: "Maw",
  27265. image: {
  27266. source: "./media/characters/nicky/maw.svg"
  27267. }
  27268. },
  27269. },
  27270. [
  27271. {
  27272. name: "Normal",
  27273. height: math.unit(5 + 10 / 12, "feet"),
  27274. default: true
  27275. },
  27276. {
  27277. name: "Macro",
  27278. height: math.unit(60, "feet")
  27279. },
  27280. {
  27281. name: "Megamacro",
  27282. height: math.unit(1, "mile")
  27283. },
  27284. ]
  27285. ))
  27286. characterMakers.push(() => makeCharacter(
  27287. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27288. {
  27289. side: {
  27290. height: math.unit(10, "feet"),
  27291. weight: math.unit(600, "lb"),
  27292. name: "Side",
  27293. image: {
  27294. source: "./media/characters/blair/side.svg",
  27295. bottom: 16.6 / 475,
  27296. extra: 458 / 431
  27297. }
  27298. },
  27299. },
  27300. [
  27301. {
  27302. name: "Micro",
  27303. height: math.unit(8, "inches")
  27304. },
  27305. {
  27306. name: "Normal",
  27307. height: math.unit(10, "feet"),
  27308. default: true
  27309. },
  27310. {
  27311. name: "Macro",
  27312. height: math.unit(180, "feet")
  27313. },
  27314. ]
  27315. ))
  27316. characterMakers.push(() => makeCharacter(
  27317. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27318. {
  27319. front: {
  27320. height: math.unit(5 + 4 / 12, "feet"),
  27321. weight: math.unit(125, "lb"),
  27322. name: "Front",
  27323. image: {
  27324. source: "./media/characters/fisher/front.svg",
  27325. extra: 444 / 390,
  27326. bottom: 2 / 444.8
  27327. }
  27328. },
  27329. },
  27330. [
  27331. {
  27332. name: "Micro",
  27333. height: math.unit(4, "inches")
  27334. },
  27335. {
  27336. name: "Normal",
  27337. height: math.unit(5 + 4 / 12, "feet"),
  27338. default: true
  27339. },
  27340. {
  27341. name: "Macro",
  27342. height: math.unit(100, "feet")
  27343. },
  27344. ]
  27345. ))
  27346. characterMakers.push(() => makeCharacter(
  27347. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27348. {
  27349. front: {
  27350. height: math.unit(6.71, "feet"),
  27351. weight: math.unit(200, "lb"),
  27352. preyCapacity: math.unit(1000000, "people"),
  27353. name: "Front",
  27354. image: {
  27355. source: "./media/characters/gliss/front.svg",
  27356. extra: 2347 / 2231,
  27357. bottom: 113 / 2462
  27358. }
  27359. },
  27360. hammerspaceSize: {
  27361. height: math.unit(6.71 * 717, "feet"),
  27362. weight: math.unit(200, "lb"),
  27363. preyCapacity: math.unit(1000000, "people"),
  27364. name: "Hammerspace Size",
  27365. image: {
  27366. source: "./media/characters/gliss/front.svg",
  27367. extra: 2347 / 2231,
  27368. bottom: 113 / 2462
  27369. }
  27370. },
  27371. },
  27372. [
  27373. {
  27374. name: "Normal",
  27375. height: math.unit(6.71, "feet"),
  27376. default: true
  27377. },
  27378. ]
  27379. ))
  27380. characterMakers.push(() => makeCharacter(
  27381. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27382. {
  27383. side: {
  27384. height: math.unit(1.44, "m"),
  27385. weight: math.unit(80, "kg"),
  27386. name: "Side",
  27387. image: {
  27388. source: "./media/characters/dune-anderson/side.svg",
  27389. bottom: 49 / 1426
  27390. }
  27391. },
  27392. },
  27393. [
  27394. {
  27395. name: "Wolf-sized",
  27396. height: math.unit(1.44, "meters")
  27397. },
  27398. {
  27399. name: "Normal",
  27400. height: math.unit(5.05, "meters"),
  27401. default: true
  27402. },
  27403. {
  27404. name: "Big",
  27405. height: math.unit(14.4, "meters")
  27406. },
  27407. {
  27408. name: "Huge",
  27409. height: math.unit(144, "meters")
  27410. },
  27411. ]
  27412. ))
  27413. characterMakers.push(() => makeCharacter(
  27414. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27415. {
  27416. front: {
  27417. height: math.unit(7, "feet"),
  27418. weight: math.unit(425, "lb"),
  27419. name: "Front",
  27420. image: {
  27421. source: "./media/characters/hind/front.svg",
  27422. extra: 2091 / 1860,
  27423. bottom: 129 / 2220
  27424. }
  27425. },
  27426. back: {
  27427. height: math.unit(7, "feet"),
  27428. weight: math.unit(425, "lb"),
  27429. name: "Back",
  27430. image: {
  27431. source: "./media/characters/hind/back.svg",
  27432. extra: 2091 / 1860,
  27433. bottom: 24.6 / 2309
  27434. }
  27435. },
  27436. tail: {
  27437. height: math.unit(2.8, "feet"),
  27438. name: "Tail",
  27439. image: {
  27440. source: "./media/characters/hind/tail.svg"
  27441. }
  27442. },
  27443. head: {
  27444. height: math.unit(2.55, "feet"),
  27445. name: "Head",
  27446. image: {
  27447. source: "./media/characters/hind/head.svg"
  27448. }
  27449. },
  27450. },
  27451. [
  27452. {
  27453. name: "XS",
  27454. height: math.unit(0.7, "feet")
  27455. },
  27456. {
  27457. name: "Normal",
  27458. height: math.unit(7, "feet"),
  27459. default: true
  27460. },
  27461. {
  27462. name: "XL",
  27463. height: math.unit(70, "feet")
  27464. },
  27465. ]
  27466. ))
  27467. characterMakers.push(() => makeCharacter(
  27468. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27469. {
  27470. front: {
  27471. height: math.unit(2.1, "meters"),
  27472. weight: math.unit(150, "lb"),
  27473. name: "Front",
  27474. image: {
  27475. source: "./media/characters/tharquench-sizestealer/front.svg",
  27476. extra: 1605/1470,
  27477. bottom: 36/1641
  27478. }
  27479. },
  27480. frontAlt: {
  27481. height: math.unit(2.1, "meters"),
  27482. weight: math.unit(150, "lb"),
  27483. name: "Front (Alt)",
  27484. image: {
  27485. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27486. extra: 2318 / 2063,
  27487. bottom: 93.4 / 2410
  27488. }
  27489. },
  27490. },
  27491. [
  27492. {
  27493. name: "Nano",
  27494. height: math.unit(1, "mm")
  27495. },
  27496. {
  27497. name: "Micro",
  27498. height: math.unit(1, "cm")
  27499. },
  27500. {
  27501. name: "Normal",
  27502. height: math.unit(2.1, "meters"),
  27503. default: true
  27504. },
  27505. ]
  27506. ))
  27507. characterMakers.push(() => makeCharacter(
  27508. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27509. {
  27510. front: {
  27511. height: math.unit(7 + 5 / 12, "feet"),
  27512. weight: math.unit(357, "lb"),
  27513. name: "Front",
  27514. image: {
  27515. source: "./media/characters/solex-draconov/front.svg",
  27516. extra: 1993 / 1865,
  27517. bottom: 117 / 2111
  27518. }
  27519. },
  27520. },
  27521. [
  27522. {
  27523. name: "Natural Height",
  27524. height: math.unit(7 + 5 / 12, "feet"),
  27525. default: true
  27526. },
  27527. {
  27528. name: "Macro",
  27529. height: math.unit(350, "feet")
  27530. },
  27531. {
  27532. name: "Macro+",
  27533. height: math.unit(1000, "feet")
  27534. },
  27535. {
  27536. name: "Megamacro",
  27537. height: math.unit(20, "km")
  27538. },
  27539. {
  27540. name: "Megamacro+",
  27541. height: math.unit(1000, "km")
  27542. },
  27543. {
  27544. name: "Gigamacro",
  27545. height: math.unit(2.5, "Gm")
  27546. },
  27547. {
  27548. name: "Teramacro",
  27549. height: math.unit(15, "Tm")
  27550. },
  27551. {
  27552. name: "Galactic",
  27553. height: math.unit(30, "Zm")
  27554. },
  27555. {
  27556. name: "Universal",
  27557. height: math.unit(21000, "Ym")
  27558. },
  27559. {
  27560. name: "Omniversal",
  27561. height: math.unit(9.861e50, "Ym")
  27562. },
  27563. {
  27564. name: "Existential",
  27565. height: math.unit(1e300, "meters")
  27566. },
  27567. ]
  27568. ))
  27569. characterMakers.push(() => makeCharacter(
  27570. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27571. {
  27572. side: {
  27573. height: math.unit(25, "feet"),
  27574. weight: math.unit(90000, "lb"),
  27575. name: "Side",
  27576. image: {
  27577. source: "./media/characters/mandarax/side.svg",
  27578. extra: 614 / 332,
  27579. bottom: 55 / 630
  27580. }
  27581. },
  27582. lounging: {
  27583. height: math.unit(15.4, "feet"),
  27584. weight: math.unit(90000, "lb"),
  27585. name: "Lounging",
  27586. image: {
  27587. source: "./media/characters/mandarax/lounging.svg",
  27588. extra: 817/609,
  27589. bottom: 685/1502
  27590. }
  27591. },
  27592. head: {
  27593. height: math.unit(11.4, "feet"),
  27594. name: "Head",
  27595. image: {
  27596. source: "./media/characters/mandarax/head.svg"
  27597. }
  27598. },
  27599. belly: {
  27600. height: math.unit(33, "feet"),
  27601. name: "Belly",
  27602. preyCapacity: math.unit(500, "people"),
  27603. image: {
  27604. source: "./media/characters/mandarax/belly.svg"
  27605. }
  27606. },
  27607. dick: {
  27608. height: math.unit(8.46, "feet"),
  27609. name: "Dick",
  27610. image: {
  27611. source: "./media/characters/mandarax/dick.svg"
  27612. }
  27613. },
  27614. top: {
  27615. height: math.unit(28, "meters"),
  27616. name: "Top",
  27617. image: {
  27618. source: "./media/characters/mandarax/top.svg"
  27619. }
  27620. },
  27621. },
  27622. [
  27623. {
  27624. name: "Normal",
  27625. height: math.unit(25, "feet"),
  27626. default: true
  27627. },
  27628. ]
  27629. ))
  27630. characterMakers.push(() => makeCharacter(
  27631. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27632. {
  27633. front: {
  27634. height: math.unit(5, "feet"),
  27635. weight: math.unit(90, "lb"),
  27636. name: "Front",
  27637. image: {
  27638. source: "./media/characters/pixil/front.svg",
  27639. extra: 2000 / 1618,
  27640. bottom: 12.3 / 2011
  27641. }
  27642. },
  27643. },
  27644. [
  27645. {
  27646. name: "Normal",
  27647. height: math.unit(5, "feet"),
  27648. default: true
  27649. },
  27650. {
  27651. name: "Megamacro",
  27652. height: math.unit(10, "miles"),
  27653. },
  27654. ]
  27655. ))
  27656. characterMakers.push(() => makeCharacter(
  27657. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27658. {
  27659. front: {
  27660. height: math.unit(7 + 2 / 12, "feet"),
  27661. weight: math.unit(200, "lb"),
  27662. name: "Front",
  27663. image: {
  27664. source: "./media/characters/angel/front.svg",
  27665. extra: 1946/1840,
  27666. bottom: 30/1976
  27667. }
  27668. },
  27669. },
  27670. [
  27671. {
  27672. name: "Normal",
  27673. height: math.unit(7 + 2 / 12, "feet"),
  27674. default: true
  27675. },
  27676. {
  27677. name: "Macro",
  27678. height: math.unit(1000, "feet")
  27679. },
  27680. {
  27681. name: "Megamacro",
  27682. height: math.unit(2, "miles")
  27683. },
  27684. {
  27685. name: "Gigamacro",
  27686. height: math.unit(20, "earths")
  27687. },
  27688. ]
  27689. ))
  27690. characterMakers.push(() => makeCharacter(
  27691. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27692. {
  27693. front: {
  27694. height: math.unit(5, "feet"),
  27695. weight: math.unit(180, "lb"),
  27696. name: "Front",
  27697. image: {
  27698. source: "./media/characters/mekana/front.svg",
  27699. extra: 1671 / 1605,
  27700. bottom: 3.5 / 1691
  27701. }
  27702. },
  27703. side: {
  27704. height: math.unit(5, "feet"),
  27705. weight: math.unit(180, "lb"),
  27706. name: "Side",
  27707. image: {
  27708. source: "./media/characters/mekana/side.svg",
  27709. extra: 1671 / 1605,
  27710. bottom: 3.5 / 1691
  27711. }
  27712. },
  27713. back: {
  27714. height: math.unit(5, "feet"),
  27715. weight: math.unit(180, "lb"),
  27716. name: "Back",
  27717. image: {
  27718. source: "./media/characters/mekana/back.svg",
  27719. extra: 1671 / 1605,
  27720. bottom: 3.5 / 1691
  27721. }
  27722. },
  27723. },
  27724. [
  27725. {
  27726. name: "Normal",
  27727. height: math.unit(5, "feet"),
  27728. default: true
  27729. },
  27730. ]
  27731. ))
  27732. characterMakers.push(() => makeCharacter(
  27733. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27734. {
  27735. front: {
  27736. height: math.unit(4 + 6 / 12, "feet"),
  27737. weight: math.unit(80, "lb"),
  27738. name: "Front",
  27739. image: {
  27740. source: "./media/characters/pixie/front.svg",
  27741. extra: 1924 / 1825,
  27742. bottom: 22.4 / 1946
  27743. }
  27744. },
  27745. },
  27746. [
  27747. {
  27748. name: "Normal",
  27749. height: math.unit(4 + 6 / 12, "feet"),
  27750. default: true
  27751. },
  27752. {
  27753. name: "Macro",
  27754. height: math.unit(40, "feet")
  27755. },
  27756. ]
  27757. ))
  27758. characterMakers.push(() => makeCharacter(
  27759. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27760. {
  27761. front: {
  27762. height: math.unit(2.1, "meters"),
  27763. weight: math.unit(200, "lb"),
  27764. name: "Front",
  27765. image: {
  27766. source: "./media/characters/the-lascivious/front.svg",
  27767. extra: 1 / 0.893,
  27768. bottom: 3.5 / 573.7
  27769. }
  27770. },
  27771. },
  27772. [
  27773. {
  27774. name: "Human Scale",
  27775. height: math.unit(2.1, "meters")
  27776. },
  27777. {
  27778. name: "Wolxi Scale",
  27779. height: math.unit(46.2, "m"),
  27780. default: true
  27781. },
  27782. {
  27783. name: "Boinker of Buildings",
  27784. height: math.unit(10, "km")
  27785. },
  27786. {
  27787. name: "Shagger of Skyscrapers",
  27788. height: math.unit(40, "km")
  27789. },
  27790. {
  27791. name: "Banger of Boroughs",
  27792. height: math.unit(4000, "km")
  27793. },
  27794. {
  27795. name: "Screwer of States",
  27796. height: math.unit(100000, "km")
  27797. },
  27798. {
  27799. name: "Pounder of Planets",
  27800. height: math.unit(2000000, "km")
  27801. },
  27802. ]
  27803. ))
  27804. characterMakers.push(() => makeCharacter(
  27805. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27806. {
  27807. front: {
  27808. height: math.unit(6, "feet"),
  27809. weight: math.unit(150, "lb"),
  27810. name: "Front",
  27811. image: {
  27812. source: "./media/characters/aj/front.svg",
  27813. extra: 2039 / 1562,
  27814. bottom: 40 / 2079
  27815. }
  27816. },
  27817. },
  27818. [
  27819. {
  27820. name: "Normal",
  27821. height: math.unit(11 + 6 / 12, "feet"),
  27822. default: true
  27823. },
  27824. {
  27825. name: "Megamacro",
  27826. height: math.unit(60, "megameters")
  27827. },
  27828. ]
  27829. ))
  27830. characterMakers.push(() => makeCharacter(
  27831. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27832. {
  27833. side: {
  27834. height: math.unit(31 + 8 / 12, "feet"),
  27835. weight: math.unit(75000, "kg"),
  27836. name: "Side",
  27837. image: {
  27838. source: "./media/characters/koros/side.svg",
  27839. extra: 1442 / 1297,
  27840. bottom: 122.7 / 1562
  27841. }
  27842. },
  27843. dicksKingsCrown: {
  27844. height: math.unit(6, "feet"),
  27845. name: "Dicks (King's Crown)",
  27846. image: {
  27847. source: "./media/characters/koros/dicks-kings-crown.svg"
  27848. }
  27849. },
  27850. dicksTailSet: {
  27851. height: math.unit(3, "feet"),
  27852. name: "Dicks (Tail Set)",
  27853. image: {
  27854. source: "./media/characters/koros/dicks-tail-set.svg"
  27855. }
  27856. },
  27857. dickCumming: {
  27858. height: math.unit(7.98, "feet"),
  27859. name: "Dick (Cumming)",
  27860. image: {
  27861. source: "./media/characters/koros/dick-cumming.svg"
  27862. }
  27863. },
  27864. dicksBack: {
  27865. height: math.unit(5.9, "feet"),
  27866. name: "Dicks (Back)",
  27867. image: {
  27868. source: "./media/characters/koros/dicks-back.svg"
  27869. }
  27870. },
  27871. dicksFront: {
  27872. height: math.unit(3.72, "feet"),
  27873. name: "Dicks (Front)",
  27874. image: {
  27875. source: "./media/characters/koros/dicks-front.svg"
  27876. }
  27877. },
  27878. dicksPeeking: {
  27879. height: math.unit(3.0, "feet"),
  27880. name: "Dicks (Peeking)",
  27881. image: {
  27882. source: "./media/characters/koros/dicks-peeking.svg"
  27883. }
  27884. },
  27885. eye: {
  27886. height: math.unit(1.7, "feet"),
  27887. name: "Eye",
  27888. image: {
  27889. source: "./media/characters/koros/eye.svg"
  27890. }
  27891. },
  27892. headFront: {
  27893. height: math.unit(11.69, "feet"),
  27894. name: "Head (Front)",
  27895. image: {
  27896. source: "./media/characters/koros/head-front.svg"
  27897. }
  27898. },
  27899. headSide: {
  27900. height: math.unit(14, "feet"),
  27901. name: "Head (Side)",
  27902. image: {
  27903. source: "./media/characters/koros/head-side.svg"
  27904. }
  27905. },
  27906. leg: {
  27907. height: math.unit(17, "feet"),
  27908. name: "Leg",
  27909. image: {
  27910. source: "./media/characters/koros/leg.svg"
  27911. }
  27912. },
  27913. mawSide: {
  27914. height: math.unit(12.8, "feet"),
  27915. name: "Maw (Side)",
  27916. image: {
  27917. source: "./media/characters/koros/maw-side.svg"
  27918. }
  27919. },
  27920. mawSpitting: {
  27921. height: math.unit(17, "feet"),
  27922. name: "Maw (Spitting)",
  27923. image: {
  27924. source: "./media/characters/koros/maw-spitting.svg"
  27925. }
  27926. },
  27927. slit: {
  27928. height: math.unit(2.8, "feet"),
  27929. name: "Slit",
  27930. image: {
  27931. source: "./media/characters/koros/slit.svg"
  27932. }
  27933. },
  27934. stomach: {
  27935. height: math.unit(6.8, "feet"),
  27936. preyCapacity: math.unit(20, "people"),
  27937. name: "Stomach",
  27938. image: {
  27939. source: "./media/characters/koros/stomach.svg"
  27940. }
  27941. },
  27942. wingspanBottom: {
  27943. height: math.unit(114, "feet"),
  27944. name: "Wingspan (Bottom)",
  27945. image: {
  27946. source: "./media/characters/koros/wingspan-bottom.svg"
  27947. }
  27948. },
  27949. wingspanTop: {
  27950. height: math.unit(104, "feet"),
  27951. name: "Wingspan (Top)",
  27952. image: {
  27953. source: "./media/characters/koros/wingspan-top.svg"
  27954. }
  27955. },
  27956. },
  27957. [
  27958. {
  27959. name: "Normal",
  27960. height: math.unit(31 + 8 / 12, "feet"),
  27961. default: true
  27962. },
  27963. ]
  27964. ))
  27965. characterMakers.push(() => makeCharacter(
  27966. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27967. {
  27968. front: {
  27969. height: math.unit(18 + 5 / 12, "feet"),
  27970. weight: math.unit(3750, "kg"),
  27971. name: "Front",
  27972. image: {
  27973. source: "./media/characters/vexx/front.svg",
  27974. extra: 426 / 396,
  27975. bottom: 31.5 / 458
  27976. }
  27977. },
  27978. maw: {
  27979. height: math.unit(6, "feet"),
  27980. name: "Maw",
  27981. image: {
  27982. source: "./media/characters/vexx/maw.svg"
  27983. }
  27984. },
  27985. },
  27986. [
  27987. {
  27988. name: "Normal",
  27989. height: math.unit(18 + 5 / 12, "feet"),
  27990. default: true
  27991. },
  27992. ]
  27993. ))
  27994. characterMakers.push(() => makeCharacter(
  27995. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27996. {
  27997. front: {
  27998. height: math.unit(17 + 6 / 12, "feet"),
  27999. weight: math.unit(150, "lb"),
  28000. name: "Front",
  28001. image: {
  28002. source: "./media/characters/baadra/front.svg",
  28003. extra: 1694/1553,
  28004. bottom: 179/1873
  28005. }
  28006. },
  28007. frontAlt: {
  28008. height: math.unit(17 + 6 / 12, "feet"),
  28009. weight: math.unit(150, "lb"),
  28010. name: "Front (Alt)",
  28011. image: {
  28012. source: "./media/characters/baadra/front-alt.svg",
  28013. extra: 3137 / 2890,
  28014. bottom: 168.4 / 3305
  28015. }
  28016. },
  28017. back: {
  28018. height: math.unit(17 + 6 / 12, "feet"),
  28019. weight: math.unit(150, "lb"),
  28020. name: "Back",
  28021. image: {
  28022. source: "./media/characters/baadra/back.svg",
  28023. extra: 3142 / 2890,
  28024. bottom: 220 / 3371
  28025. }
  28026. },
  28027. head: {
  28028. height: math.unit(5.45, "feet"),
  28029. name: "Head",
  28030. image: {
  28031. source: "./media/characters/baadra/head.svg"
  28032. }
  28033. },
  28034. headAngry: {
  28035. height: math.unit(4.95, "feet"),
  28036. name: "Head (Angry)",
  28037. image: {
  28038. source: "./media/characters/baadra/head-angry.svg"
  28039. }
  28040. },
  28041. headOpen: {
  28042. height: math.unit(6, "feet"),
  28043. name: "Head (Open)",
  28044. image: {
  28045. source: "./media/characters/baadra/head-open.svg"
  28046. }
  28047. },
  28048. },
  28049. [
  28050. {
  28051. name: "Normal",
  28052. height: math.unit(17 + 6 / 12, "feet"),
  28053. default: true
  28054. },
  28055. ]
  28056. ))
  28057. characterMakers.push(() => makeCharacter(
  28058. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28059. {
  28060. front: {
  28061. height: math.unit(7 + 3 / 12, "feet"),
  28062. weight: math.unit(180, "lb"),
  28063. name: "Front",
  28064. image: {
  28065. source: "./media/characters/juri/front.svg",
  28066. extra: 1401 / 1237,
  28067. bottom: 18.5 / 1418
  28068. }
  28069. },
  28070. side: {
  28071. height: math.unit(7 + 3 / 12, "feet"),
  28072. weight: math.unit(180, "lb"),
  28073. name: "Side",
  28074. image: {
  28075. source: "./media/characters/juri/side.svg",
  28076. extra: 1424 / 1242,
  28077. bottom: 18.5 / 1447
  28078. }
  28079. },
  28080. sitting: {
  28081. height: math.unit(6, "feet"),
  28082. weight: math.unit(180, "lb"),
  28083. name: "Sitting",
  28084. image: {
  28085. source: "./media/characters/juri/sitting.svg",
  28086. extra: 1270 / 1143,
  28087. bottom: 100 / 1343
  28088. }
  28089. },
  28090. back: {
  28091. height: math.unit(7 + 3 / 12, "feet"),
  28092. weight: math.unit(180, "lb"),
  28093. name: "Back",
  28094. image: {
  28095. source: "./media/characters/juri/back.svg",
  28096. extra: 1377 / 1240,
  28097. bottom: 23.7 / 1405
  28098. }
  28099. },
  28100. maw: {
  28101. height: math.unit(2.8, "feet"),
  28102. name: "Maw",
  28103. image: {
  28104. source: "./media/characters/juri/maw.svg"
  28105. }
  28106. },
  28107. stomach: {
  28108. height: math.unit(0.89, "feet"),
  28109. preyCapacity: math.unit(4, "liters"),
  28110. name: "Stomach",
  28111. image: {
  28112. source: "./media/characters/juri/stomach.svg"
  28113. }
  28114. },
  28115. },
  28116. [
  28117. {
  28118. name: "Normal",
  28119. height: math.unit(7 + 3 / 12, "feet"),
  28120. default: true
  28121. },
  28122. ]
  28123. ))
  28124. characterMakers.push(() => makeCharacter(
  28125. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28126. {
  28127. fox: {
  28128. height: math.unit(5 + 6 / 12, "feet"),
  28129. weight: math.unit(140, "lb"),
  28130. name: "Fox",
  28131. image: {
  28132. source: "./media/characters/maxene-sita/fox.svg",
  28133. extra: 146 / 138,
  28134. bottom: 2.1 / 148.19
  28135. }
  28136. },
  28137. foxLaying: {
  28138. height: math.unit(1.70, "feet"),
  28139. weight: math.unit(140, "lb"),
  28140. name: "Fox (Laying)",
  28141. image: {
  28142. source: "./media/characters/maxene-sita/fox-laying.svg",
  28143. extra: 910 / 572,
  28144. bottom: 71 / 981
  28145. }
  28146. },
  28147. kitsune: {
  28148. height: math.unit(10, "feet"),
  28149. weight: math.unit(800, "lb"),
  28150. name: "Kitsune",
  28151. image: {
  28152. source: "./media/characters/maxene-sita/kitsune.svg",
  28153. extra: 185 / 176,
  28154. bottom: 4.7 / 189.9
  28155. }
  28156. },
  28157. hellhound: {
  28158. height: math.unit(10, "feet"),
  28159. weight: math.unit(700, "lb"),
  28160. name: "Hellhound",
  28161. image: {
  28162. source: "./media/characters/maxene-sita/hellhound.svg",
  28163. extra: 1600 / 1545,
  28164. bottom: 81 / 1681
  28165. }
  28166. },
  28167. },
  28168. [
  28169. {
  28170. name: "Normal",
  28171. height: math.unit(5 + 6 / 12, "feet"),
  28172. default: true
  28173. },
  28174. ]
  28175. ))
  28176. characterMakers.push(() => makeCharacter(
  28177. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28178. {
  28179. front: {
  28180. height: math.unit(3 + 4 / 12, "feet"),
  28181. weight: math.unit(70, "lb"),
  28182. name: "Front",
  28183. image: {
  28184. source: "./media/characters/maia/front.svg",
  28185. extra: 227 / 219.5,
  28186. bottom: 40 / 267
  28187. }
  28188. },
  28189. back: {
  28190. height: math.unit(3 + 4 / 12, "feet"),
  28191. weight: math.unit(70, "lb"),
  28192. name: "Back",
  28193. image: {
  28194. source: "./media/characters/maia/back.svg",
  28195. extra: 237 / 225
  28196. }
  28197. },
  28198. },
  28199. [
  28200. {
  28201. name: "Normal",
  28202. height: math.unit(3 + 4 / 12, "feet"),
  28203. default: true
  28204. },
  28205. ]
  28206. ))
  28207. characterMakers.push(() => makeCharacter(
  28208. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28209. {
  28210. front: {
  28211. height: math.unit(5 + 10 / 12, "feet"),
  28212. weight: math.unit(197, "lb"),
  28213. name: "Front",
  28214. image: {
  28215. source: "./media/characters/jabaro/front.svg",
  28216. extra: 225 / 216,
  28217. bottom: 5.06 / 230
  28218. }
  28219. },
  28220. back: {
  28221. height: math.unit(5 + 10 / 12, "feet"),
  28222. weight: math.unit(197, "lb"),
  28223. name: "Back",
  28224. image: {
  28225. source: "./media/characters/jabaro/back.svg",
  28226. extra: 225 / 219,
  28227. bottom: 1.9 / 227
  28228. }
  28229. },
  28230. },
  28231. [
  28232. {
  28233. name: "Normal",
  28234. height: math.unit(5 + 10 / 12, "feet"),
  28235. default: true
  28236. },
  28237. ]
  28238. ))
  28239. characterMakers.push(() => makeCharacter(
  28240. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28241. {
  28242. front: {
  28243. height: math.unit(5 + 8 / 12, "feet"),
  28244. weight: math.unit(139, "lb"),
  28245. name: "Front",
  28246. image: {
  28247. source: "./media/characters/risa/front.svg",
  28248. extra: 270 / 260,
  28249. bottom: 11.2 / 282
  28250. }
  28251. },
  28252. back: {
  28253. height: math.unit(5 + 8 / 12, "feet"),
  28254. weight: math.unit(139, "lb"),
  28255. name: "Back",
  28256. image: {
  28257. source: "./media/characters/risa/back.svg",
  28258. extra: 264 / 255,
  28259. bottom: 4 / 268
  28260. }
  28261. },
  28262. },
  28263. [
  28264. {
  28265. name: "Normal",
  28266. height: math.unit(5 + 8 / 12, "feet"),
  28267. default: true
  28268. },
  28269. ]
  28270. ))
  28271. characterMakers.push(() => makeCharacter(
  28272. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28273. {
  28274. front: {
  28275. height: math.unit(2 + 11 / 12, "feet"),
  28276. weight: math.unit(30, "lb"),
  28277. name: "Front",
  28278. image: {
  28279. source: "./media/characters/weatley/front.svg",
  28280. bottom: 10.7 / 414,
  28281. extra: 403.5 / 362
  28282. }
  28283. },
  28284. back: {
  28285. height: math.unit(2 + 11 / 12, "feet"),
  28286. weight: math.unit(30, "lb"),
  28287. name: "Back",
  28288. image: {
  28289. source: "./media/characters/weatley/back.svg",
  28290. bottom: 10.7 / 414,
  28291. extra: 403.5 / 362
  28292. }
  28293. },
  28294. },
  28295. [
  28296. {
  28297. name: "Normal",
  28298. height: math.unit(2 + 11 / 12, "feet"),
  28299. default: true
  28300. },
  28301. ]
  28302. ))
  28303. characterMakers.push(() => makeCharacter(
  28304. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28305. {
  28306. front: {
  28307. height: math.unit(5 + 2 / 12, "feet"),
  28308. weight: math.unit(50, "kg"),
  28309. name: "Front",
  28310. image: {
  28311. source: "./media/characters/mercury-crescent/front.svg",
  28312. extra: 1088 / 1033,
  28313. bottom: 18.9 / 1109
  28314. }
  28315. },
  28316. },
  28317. [
  28318. {
  28319. name: "Normal",
  28320. height: math.unit(5 + 2 / 12, "feet"),
  28321. default: true
  28322. },
  28323. ]
  28324. ))
  28325. characterMakers.push(() => makeCharacter(
  28326. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28327. {
  28328. front: {
  28329. height: math.unit(2, "feet"),
  28330. weight: math.unit(15, "kg"),
  28331. name: "Front",
  28332. image: {
  28333. source: "./media/characters/diamond-jones/front.svg",
  28334. extra: 727/723,
  28335. bottom: 46/773
  28336. }
  28337. },
  28338. },
  28339. [
  28340. {
  28341. name: "Normal",
  28342. height: math.unit(2, "feet"),
  28343. default: true
  28344. },
  28345. ]
  28346. ))
  28347. characterMakers.push(() => makeCharacter(
  28348. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28349. {
  28350. front: {
  28351. height: math.unit(3, "feet"),
  28352. weight: math.unit(30, "kg"),
  28353. name: "Front",
  28354. image: {
  28355. source: "./media/characters/sweet-bit/front.svg",
  28356. extra: 675 / 567,
  28357. bottom: 27.7 / 703
  28358. }
  28359. },
  28360. },
  28361. [
  28362. {
  28363. name: "Normal",
  28364. height: math.unit(3, "feet"),
  28365. default: true
  28366. },
  28367. ]
  28368. ))
  28369. characterMakers.push(() => makeCharacter(
  28370. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28371. {
  28372. side: {
  28373. height: math.unit(9.178, "feet"),
  28374. weight: math.unit(500, "lb"),
  28375. name: "Side",
  28376. image: {
  28377. source: "./media/characters/umbrazen/side.svg",
  28378. extra: 1730 / 1473,
  28379. bottom: 34.6 / 1765
  28380. }
  28381. },
  28382. },
  28383. [
  28384. {
  28385. name: "Normal",
  28386. height: math.unit(9.178, "feet"),
  28387. default: true
  28388. },
  28389. ]
  28390. ))
  28391. characterMakers.push(() => makeCharacter(
  28392. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28393. {
  28394. front: {
  28395. height: math.unit(10, "feet"),
  28396. weight: math.unit(750, "lb"),
  28397. name: "Front",
  28398. image: {
  28399. source: "./media/characters/arlist/front.svg",
  28400. extra: 961 / 778,
  28401. bottom: 6.2 / 986
  28402. }
  28403. },
  28404. },
  28405. [
  28406. {
  28407. name: "Normal",
  28408. height: math.unit(10, "feet"),
  28409. default: true
  28410. },
  28411. ]
  28412. ))
  28413. characterMakers.push(() => makeCharacter(
  28414. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28415. {
  28416. front: {
  28417. height: math.unit(5 + 1 / 12, "feet"),
  28418. weight: math.unit(110, "lb"),
  28419. name: "Front",
  28420. image: {
  28421. source: "./media/characters/aradel/front.svg",
  28422. extra: 324 / 303,
  28423. bottom: 3.6 / 329.4
  28424. }
  28425. },
  28426. },
  28427. [
  28428. {
  28429. name: "Normal",
  28430. height: math.unit(5 + 1 / 12, "feet"),
  28431. default: true
  28432. },
  28433. ]
  28434. ))
  28435. characterMakers.push(() => makeCharacter(
  28436. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28437. {
  28438. dressed: {
  28439. height: math.unit(3 + 8 / 12, "feet"),
  28440. weight: math.unit(50, "lb"),
  28441. name: "Dressed",
  28442. image: {
  28443. source: "./media/characters/serryn/dressed.svg",
  28444. extra: 1792 / 1656,
  28445. bottom: 43.5 / 1840
  28446. }
  28447. },
  28448. nude: {
  28449. height: math.unit(3 + 8 / 12, "feet"),
  28450. weight: math.unit(50, "lb"),
  28451. name: "Nude",
  28452. image: {
  28453. source: "./media/characters/serryn/nude.svg",
  28454. extra: 1792 / 1656,
  28455. bottom: 43.5 / 1840
  28456. }
  28457. },
  28458. },
  28459. [
  28460. {
  28461. name: "Normal",
  28462. height: math.unit(3 + 8 / 12, "feet"),
  28463. default: true
  28464. },
  28465. ]
  28466. ))
  28467. characterMakers.push(() => makeCharacter(
  28468. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28469. {
  28470. front: {
  28471. height: math.unit(7 + 10 / 12, "feet"),
  28472. weight: math.unit(255, "lb"),
  28473. name: "Front",
  28474. image: {
  28475. source: "./media/characters/xavier-thyme/front.svg",
  28476. extra: 3733 / 3642,
  28477. bottom: 131 / 3869
  28478. }
  28479. },
  28480. frontRaven: {
  28481. height: math.unit(7 + 10 / 12, "feet"),
  28482. weight: math.unit(255, "lb"),
  28483. name: "Front (Raven)",
  28484. image: {
  28485. source: "./media/characters/xavier-thyme/front-raven.svg",
  28486. extra: 4385 / 3642,
  28487. bottom: 131 / 4517
  28488. }
  28489. },
  28490. },
  28491. [
  28492. {
  28493. name: "Normal",
  28494. height: math.unit(7 + 10 / 12, "feet"),
  28495. default: true
  28496. },
  28497. ]
  28498. ))
  28499. characterMakers.push(() => makeCharacter(
  28500. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28501. {
  28502. front: {
  28503. height: math.unit(1.6, "m"),
  28504. weight: math.unit(50, "kg"),
  28505. name: "Front",
  28506. image: {
  28507. source: "./media/characters/kiki/front.svg",
  28508. extra: 4682 / 3610,
  28509. bottom: 115 / 4777
  28510. }
  28511. },
  28512. },
  28513. [
  28514. {
  28515. name: "Normal",
  28516. height: math.unit(1.6, "meters"),
  28517. default: true
  28518. },
  28519. ]
  28520. ))
  28521. characterMakers.push(() => makeCharacter(
  28522. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28523. {
  28524. front: {
  28525. height: math.unit(50, "m"),
  28526. weight: math.unit(500, "tonnes"),
  28527. name: "Front",
  28528. image: {
  28529. source: "./media/characters/ryoko/front.svg",
  28530. extra: 4632 / 3926,
  28531. bottom: 193 / 4823
  28532. }
  28533. },
  28534. },
  28535. [
  28536. {
  28537. name: "Normal",
  28538. height: math.unit(50, "meters"),
  28539. default: true
  28540. },
  28541. ]
  28542. ))
  28543. characterMakers.push(() => makeCharacter(
  28544. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28545. {
  28546. front: {
  28547. height: math.unit(30, "m"),
  28548. weight: math.unit(22, "tonnes"),
  28549. name: "Front",
  28550. image: {
  28551. source: "./media/characters/elio/front.svg",
  28552. extra: 4582 / 3720,
  28553. bottom: 236 / 4828
  28554. }
  28555. },
  28556. },
  28557. [
  28558. {
  28559. name: "Normal",
  28560. height: math.unit(30, "meters"),
  28561. default: true
  28562. },
  28563. ]
  28564. ))
  28565. characterMakers.push(() => makeCharacter(
  28566. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28567. {
  28568. front: {
  28569. height: math.unit(6 + 3 / 12, "feet"),
  28570. weight: math.unit(120, "lb"),
  28571. name: "Front",
  28572. image: {
  28573. source: "./media/characters/azura/front.svg",
  28574. extra: 1149 / 1135,
  28575. bottom: 45 / 1194
  28576. }
  28577. },
  28578. frontClothed: {
  28579. height: math.unit(6 + 3 / 12, "feet"),
  28580. weight: math.unit(120, "lb"),
  28581. name: "Front (Clothed)",
  28582. image: {
  28583. source: "./media/characters/azura/front-clothed.svg",
  28584. extra: 1149 / 1135,
  28585. bottom: 45 / 1194
  28586. }
  28587. },
  28588. },
  28589. [
  28590. {
  28591. name: "Normal",
  28592. height: math.unit(6 + 3 / 12, "feet"),
  28593. default: true
  28594. },
  28595. {
  28596. name: "Macro",
  28597. height: math.unit(20 + 6 / 12, "feet")
  28598. },
  28599. {
  28600. name: "Megamacro",
  28601. height: math.unit(12, "miles")
  28602. },
  28603. {
  28604. name: "Gigamacro",
  28605. height: math.unit(10000, "miles")
  28606. },
  28607. {
  28608. name: "Teramacro",
  28609. height: math.unit(900000, "miles")
  28610. },
  28611. ]
  28612. ))
  28613. characterMakers.push(() => makeCharacter(
  28614. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28615. {
  28616. front: {
  28617. height: math.unit(12, "feet"),
  28618. weight: math.unit(1, "ton"),
  28619. capacity: math.unit(660000, "gallons"),
  28620. name: "Front",
  28621. image: {
  28622. source: "./media/characters/zeus/front.svg",
  28623. extra: 5005 / 4717,
  28624. bottom: 363 / 5388
  28625. }
  28626. },
  28627. },
  28628. [
  28629. {
  28630. name: "Normal",
  28631. height: math.unit(12, "feet")
  28632. },
  28633. {
  28634. name: "Preferred Size",
  28635. height: math.unit(0.5, "miles"),
  28636. default: true
  28637. },
  28638. {
  28639. name: "Giga Horse",
  28640. height: math.unit(300, "miles")
  28641. },
  28642. {
  28643. name: "Riding Planets",
  28644. height: math.unit(30, "megameters")
  28645. },
  28646. {
  28647. name: "Cosmic Giant",
  28648. height: math.unit(3, "zettameters")
  28649. },
  28650. {
  28651. name: "Breeding God",
  28652. height: math.unit(9.92e22, "yottameters")
  28653. },
  28654. ]
  28655. ))
  28656. characterMakers.push(() => makeCharacter(
  28657. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28658. {
  28659. side: {
  28660. height: math.unit(9, "feet"),
  28661. weight: math.unit(1500, "kg"),
  28662. name: "Side",
  28663. image: {
  28664. source: "./media/characters/fang/side.svg",
  28665. extra: 924 / 866,
  28666. bottom: 47.5 / 972.3
  28667. }
  28668. },
  28669. },
  28670. [
  28671. {
  28672. name: "Normal",
  28673. height: math.unit(9, "feet"),
  28674. default: true
  28675. },
  28676. {
  28677. name: "Macro",
  28678. height: math.unit(75 + 6 / 12, "feet")
  28679. },
  28680. {
  28681. name: "Teramacro",
  28682. height: math.unit(50000, "miles")
  28683. },
  28684. ]
  28685. ))
  28686. characterMakers.push(() => makeCharacter(
  28687. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28688. {
  28689. front: {
  28690. height: math.unit(10, "feet"),
  28691. weight: math.unit(2, "tons"),
  28692. name: "Front",
  28693. image: {
  28694. source: "./media/characters/rekhit/front.svg",
  28695. extra: 2796 / 2590,
  28696. bottom: 225 / 3022
  28697. }
  28698. },
  28699. },
  28700. [
  28701. {
  28702. name: "Normal",
  28703. height: math.unit(10, "feet"),
  28704. default: true
  28705. },
  28706. {
  28707. name: "Macro",
  28708. height: math.unit(500, "feet")
  28709. },
  28710. ]
  28711. ))
  28712. characterMakers.push(() => makeCharacter(
  28713. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28714. {
  28715. front: {
  28716. height: math.unit(7 + 6.451 / 12, "feet"),
  28717. weight: math.unit(310, "lb"),
  28718. name: "Front",
  28719. image: {
  28720. source: "./media/characters/dahlia-verrick/front.svg",
  28721. extra: 1488 / 1365,
  28722. bottom: 6.2 / 1495
  28723. }
  28724. },
  28725. back: {
  28726. height: math.unit(7 + 6.451 / 12, "feet"),
  28727. weight: math.unit(310, "lb"),
  28728. name: "Back",
  28729. image: {
  28730. source: "./media/characters/dahlia-verrick/back.svg",
  28731. extra: 1472 / 1351,
  28732. bottom: 5.28 / 1477
  28733. }
  28734. },
  28735. frontBusiness: {
  28736. height: math.unit(7 + 6.451 / 12, "feet"),
  28737. weight: math.unit(200, "lb"),
  28738. name: "Front (Business)",
  28739. image: {
  28740. source: "./media/characters/dahlia-verrick/front-business.svg",
  28741. extra: 1478 / 1381,
  28742. bottom: 5.5 / 1484
  28743. }
  28744. },
  28745. frontCasual: {
  28746. height: math.unit(7 + 6.451 / 12, "feet"),
  28747. weight: math.unit(200, "lb"),
  28748. name: "Front (Casual)",
  28749. image: {
  28750. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28751. extra: 1478 / 1381,
  28752. bottom: 5.5 / 1484
  28753. }
  28754. },
  28755. },
  28756. [
  28757. {
  28758. name: "Travel-Sized",
  28759. height: math.unit(7.45, "inches")
  28760. },
  28761. {
  28762. name: "Normal",
  28763. height: math.unit(7 + 6.451 / 12, "feet"),
  28764. default: true
  28765. },
  28766. {
  28767. name: "Hitting the Town",
  28768. height: math.unit(37 + 8 / 12, "feet")
  28769. },
  28770. {
  28771. name: "Stomp in the Suburbs",
  28772. height: math.unit(964 + 9.728 / 12, "feet")
  28773. },
  28774. {
  28775. name: "Sit on the City",
  28776. height: math.unit(61747 + 10.592 / 12, "feet")
  28777. },
  28778. {
  28779. name: "Glomp the Globe",
  28780. height: math.unit(252919327 + 4.832 / 12, "feet")
  28781. },
  28782. ]
  28783. ))
  28784. characterMakers.push(() => makeCharacter(
  28785. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28786. {
  28787. front: {
  28788. height: math.unit(6 + 4 / 12, "feet"),
  28789. weight: math.unit(320, "lb"),
  28790. name: "Front",
  28791. image: {
  28792. source: "./media/characters/balina-mahigan/front.svg",
  28793. extra: 447 / 428,
  28794. bottom: 18 / 466
  28795. }
  28796. },
  28797. back: {
  28798. height: math.unit(6 + 4 / 12, "feet"),
  28799. weight: math.unit(320, "lb"),
  28800. name: "Back",
  28801. image: {
  28802. source: "./media/characters/balina-mahigan/back.svg",
  28803. extra: 445 / 428,
  28804. bottom: 4.07 / 448
  28805. }
  28806. },
  28807. arm: {
  28808. height: math.unit(1.88, "feet"),
  28809. name: "Arm",
  28810. image: {
  28811. source: "./media/characters/balina-mahigan/arm.svg"
  28812. }
  28813. },
  28814. backPort: {
  28815. height: math.unit(0.685, "feet"),
  28816. name: "Back Port",
  28817. image: {
  28818. source: "./media/characters/balina-mahigan/back-port.svg"
  28819. }
  28820. },
  28821. hoofpaw: {
  28822. height: math.unit(1.41, "feet"),
  28823. name: "Hoofpaw",
  28824. image: {
  28825. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28826. }
  28827. },
  28828. leftHandBack: {
  28829. height: math.unit(0.938, "feet"),
  28830. name: "Left Hand (Back)",
  28831. image: {
  28832. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28833. }
  28834. },
  28835. leftHandFront: {
  28836. height: math.unit(0.938, "feet"),
  28837. name: "Left Hand (Front)",
  28838. image: {
  28839. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28840. }
  28841. },
  28842. rightHandBack: {
  28843. height: math.unit(0.95, "feet"),
  28844. name: "Right Hand (Back)",
  28845. image: {
  28846. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28847. }
  28848. },
  28849. rightHandFront: {
  28850. height: math.unit(0.95, "feet"),
  28851. name: "Right Hand (Front)",
  28852. image: {
  28853. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28854. }
  28855. },
  28856. },
  28857. [
  28858. {
  28859. name: "Normal",
  28860. height: math.unit(6 + 4 / 12, "feet"),
  28861. default: true
  28862. },
  28863. ]
  28864. ))
  28865. characterMakers.push(() => makeCharacter(
  28866. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28867. {
  28868. front: {
  28869. height: math.unit(6, "feet"),
  28870. weight: math.unit(320, "lb"),
  28871. name: "Front",
  28872. image: {
  28873. source: "./media/characters/balina-mejeri/front.svg",
  28874. extra: 517 / 488,
  28875. bottom: 44.2 / 561
  28876. }
  28877. },
  28878. },
  28879. [
  28880. {
  28881. name: "Normal",
  28882. height: math.unit(6 + 4 / 12, "feet")
  28883. },
  28884. {
  28885. name: "Business",
  28886. height: math.unit(155, "feet"),
  28887. default: true
  28888. },
  28889. ]
  28890. ))
  28891. characterMakers.push(() => makeCharacter(
  28892. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28893. {
  28894. kneeling: {
  28895. height: math.unit(6 + 4 / 12, "feet"),
  28896. weight: math.unit(300 * 20, "lb"),
  28897. name: "Kneeling",
  28898. image: {
  28899. source: "./media/characters/balbarian/kneeling.svg",
  28900. extra: 922 / 862,
  28901. bottom: 42.4 / 965
  28902. }
  28903. },
  28904. },
  28905. [
  28906. {
  28907. name: "Normal",
  28908. height: math.unit(6 + 4 / 12, "feet")
  28909. },
  28910. {
  28911. name: "Treasured",
  28912. height: math.unit(18 + 9 / 12, "feet"),
  28913. default: true
  28914. },
  28915. {
  28916. name: "Macro",
  28917. height: math.unit(900, "feet")
  28918. },
  28919. ]
  28920. ))
  28921. characterMakers.push(() => makeCharacter(
  28922. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28923. {
  28924. front: {
  28925. height: math.unit(6 + 4 / 12, "feet"),
  28926. weight: math.unit(325, "lb"),
  28927. name: "Front",
  28928. image: {
  28929. source: "./media/characters/balina-amarini/front.svg",
  28930. extra: 415 / 403,
  28931. bottom: 19 / 433.4
  28932. }
  28933. },
  28934. back: {
  28935. height: math.unit(6 + 4 / 12, "feet"),
  28936. weight: math.unit(325, "lb"),
  28937. name: "Back",
  28938. image: {
  28939. source: "./media/characters/balina-amarini/back.svg",
  28940. extra: 415 / 403,
  28941. bottom: 13.5 / 432
  28942. }
  28943. },
  28944. overdrive: {
  28945. height: math.unit(6 + 4 / 12, "feet"),
  28946. weight: math.unit(400, "lb"),
  28947. name: "Overdrive",
  28948. image: {
  28949. source: "./media/characters/balina-amarini/overdrive.svg",
  28950. extra: 269 / 259,
  28951. bottom: 12 / 282
  28952. }
  28953. },
  28954. },
  28955. [
  28956. {
  28957. name: "Boom",
  28958. height: math.unit(9 + 10 / 12, "feet"),
  28959. default: true
  28960. },
  28961. {
  28962. name: "Macro",
  28963. height: math.unit(280, "feet")
  28964. },
  28965. ]
  28966. ))
  28967. characterMakers.push(() => makeCharacter(
  28968. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28969. {
  28970. goddess: {
  28971. height: math.unit(600, "feet"),
  28972. weight: math.unit(2000000, "tons"),
  28973. name: "Goddess",
  28974. image: {
  28975. source: "./media/characters/lady-kubwa/goddess.svg",
  28976. extra: 1240.5 / 1223,
  28977. bottom: 22 / 1263
  28978. }
  28979. },
  28980. goddesser: {
  28981. height: math.unit(900, "feet"),
  28982. weight: math.unit(20000000, "lb"),
  28983. name: "Goddess-er",
  28984. image: {
  28985. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28986. extra: 899 / 888,
  28987. bottom: 12.6 / 912
  28988. }
  28989. },
  28990. },
  28991. [
  28992. {
  28993. name: "Macro",
  28994. height: math.unit(600, "feet"),
  28995. default: true
  28996. },
  28997. {
  28998. name: "Megamacro",
  28999. height: math.unit(250, "miles")
  29000. },
  29001. ]
  29002. ))
  29003. characterMakers.push(() => makeCharacter(
  29004. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29005. {
  29006. front: {
  29007. height: math.unit(7 + 7 / 12, "feet"),
  29008. weight: math.unit(250, "lb"),
  29009. name: "Front",
  29010. image: {
  29011. source: "./media/characters/tala-grovehorn/front.svg",
  29012. extra: 2636 / 2525,
  29013. bottom: 147 / 2781
  29014. }
  29015. },
  29016. back: {
  29017. height: math.unit(7 + 7 / 12, "feet"),
  29018. weight: math.unit(250, "lb"),
  29019. name: "Back",
  29020. image: {
  29021. source: "./media/characters/tala-grovehorn/back.svg",
  29022. extra: 2635 / 2539,
  29023. bottom: 100 / 2732.8
  29024. }
  29025. },
  29026. mouth: {
  29027. height: math.unit(1.15, "feet"),
  29028. name: "Mouth",
  29029. image: {
  29030. source: "./media/characters/tala-grovehorn/mouth.svg"
  29031. }
  29032. },
  29033. dick: {
  29034. height: math.unit(2.36, "feet"),
  29035. name: "Dick",
  29036. image: {
  29037. source: "./media/characters/tala-grovehorn/dick.svg"
  29038. }
  29039. },
  29040. slit: {
  29041. height: math.unit(0.61, "feet"),
  29042. name: "Slit",
  29043. image: {
  29044. source: "./media/characters/tala-grovehorn/slit.svg"
  29045. }
  29046. },
  29047. },
  29048. [
  29049. ]
  29050. ))
  29051. characterMakers.push(() => makeCharacter(
  29052. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29053. {
  29054. front: {
  29055. height: math.unit(7 + 7 / 12, "feet"),
  29056. weight: math.unit(225, "lb"),
  29057. name: "Front",
  29058. image: {
  29059. source: "./media/characters/epona/front.svg",
  29060. extra: 2445 / 2290,
  29061. bottom: 251 / 2696
  29062. }
  29063. },
  29064. back: {
  29065. height: math.unit(7 + 7 / 12, "feet"),
  29066. weight: math.unit(225, "lb"),
  29067. name: "Back",
  29068. image: {
  29069. source: "./media/characters/epona/back.svg",
  29070. extra: 2546 / 2408,
  29071. bottom: 44 / 2589
  29072. }
  29073. },
  29074. genitals: {
  29075. height: math.unit(1.5, "feet"),
  29076. name: "Genitals",
  29077. image: {
  29078. source: "./media/characters/epona/genitals.svg"
  29079. }
  29080. },
  29081. },
  29082. [
  29083. {
  29084. name: "Normal",
  29085. height: math.unit(7 + 7 / 12, "feet"),
  29086. default: true
  29087. },
  29088. ]
  29089. ))
  29090. characterMakers.push(() => makeCharacter(
  29091. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29092. {
  29093. front: {
  29094. height: math.unit(7, "feet"),
  29095. weight: math.unit(518, "lb"),
  29096. name: "Front",
  29097. image: {
  29098. source: "./media/characters/avia-bloodbourn/front.svg",
  29099. extra: 1466 / 1350,
  29100. bottom: 65 / 1527
  29101. }
  29102. },
  29103. },
  29104. [
  29105. ]
  29106. ))
  29107. characterMakers.push(() => makeCharacter(
  29108. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29109. {
  29110. front: {
  29111. height: math.unit(9.35, "feet"),
  29112. weight: math.unit(600, "lb"),
  29113. name: "Front",
  29114. image: {
  29115. source: "./media/characters/amera/front.svg",
  29116. extra: 891 / 818,
  29117. bottom: 30 / 922.7
  29118. }
  29119. },
  29120. back: {
  29121. height: math.unit(9.35, "feet"),
  29122. weight: math.unit(600, "lb"),
  29123. name: "Back",
  29124. image: {
  29125. source: "./media/characters/amera/back.svg",
  29126. extra: 876 / 824,
  29127. bottom: 6.8 / 884
  29128. }
  29129. },
  29130. dick: {
  29131. height: math.unit(2.14, "feet"),
  29132. name: "Dick",
  29133. image: {
  29134. source: "./media/characters/amera/dick.svg"
  29135. }
  29136. },
  29137. },
  29138. [
  29139. {
  29140. name: "Normal",
  29141. height: math.unit(9.35, "feet"),
  29142. default: true
  29143. },
  29144. ]
  29145. ))
  29146. characterMakers.push(() => makeCharacter(
  29147. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29148. {
  29149. kneeling: {
  29150. height: math.unit(3 + 4 / 12, "feet"),
  29151. weight: math.unit(90, "lb"),
  29152. name: "Kneeling",
  29153. image: {
  29154. source: "./media/characters/rosewen/kneeling.svg",
  29155. extra: 1835 / 1571,
  29156. bottom: 27.7 / 1862
  29157. }
  29158. },
  29159. },
  29160. [
  29161. {
  29162. name: "Normal",
  29163. height: math.unit(3 + 4 / 12, "feet"),
  29164. default: true
  29165. },
  29166. ]
  29167. ))
  29168. characterMakers.push(() => makeCharacter(
  29169. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29170. {
  29171. front: {
  29172. height: math.unit(5 + 10 / 12, "feet"),
  29173. weight: math.unit(200, "lb"),
  29174. name: "Front",
  29175. image: {
  29176. source: "./media/characters/sabah/front.svg",
  29177. extra: 849 / 763,
  29178. bottom: 33.9 / 881
  29179. }
  29180. },
  29181. },
  29182. [
  29183. {
  29184. name: "Normal",
  29185. height: math.unit(5 + 10 / 12, "feet"),
  29186. default: true
  29187. },
  29188. ]
  29189. ))
  29190. characterMakers.push(() => makeCharacter(
  29191. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29192. {
  29193. front: {
  29194. height: math.unit(3 + 5 / 12, "feet"),
  29195. weight: math.unit(40, "kg"),
  29196. name: "Front",
  29197. image: {
  29198. source: "./media/characters/purple-flame/front.svg",
  29199. extra: 1577 / 1412,
  29200. bottom: 97 / 1694
  29201. }
  29202. },
  29203. frontDressed: {
  29204. height: math.unit(3 + 5 / 12, "feet"),
  29205. weight: math.unit(40, "kg"),
  29206. name: "Front (Dressed)",
  29207. image: {
  29208. source: "./media/characters/purple-flame/front-dressed.svg",
  29209. extra: 1577 / 1412,
  29210. bottom: 97 / 1694
  29211. }
  29212. },
  29213. headphones: {
  29214. height: math.unit(0.85, "feet"),
  29215. name: "Headphones",
  29216. image: {
  29217. source: "./media/characters/purple-flame/headphones.svg"
  29218. }
  29219. },
  29220. },
  29221. [
  29222. {
  29223. name: "Really Small",
  29224. height: math.unit(5, "cm")
  29225. },
  29226. {
  29227. name: "Micro",
  29228. height: math.unit(1 + 5 / 12, "feet")
  29229. },
  29230. {
  29231. name: "Normal",
  29232. height: math.unit(3 + 5 / 12, "feet"),
  29233. default: true
  29234. },
  29235. {
  29236. name: "Minimacro",
  29237. height: math.unit(125, "feet")
  29238. },
  29239. {
  29240. name: "Macro",
  29241. height: math.unit(0.5, "miles")
  29242. },
  29243. {
  29244. name: "Megamacro",
  29245. height: math.unit(50, "miles")
  29246. },
  29247. {
  29248. name: "Gigantic",
  29249. height: math.unit(750, "miles")
  29250. },
  29251. {
  29252. name: "Planetary",
  29253. height: math.unit(15000, "miles")
  29254. },
  29255. ]
  29256. ))
  29257. characterMakers.push(() => makeCharacter(
  29258. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29259. {
  29260. front: {
  29261. height: math.unit(14, "feet"),
  29262. weight: math.unit(959, "lb"),
  29263. name: "Front",
  29264. image: {
  29265. source: "./media/characters/arsenal/front.svg",
  29266. extra: 2357 / 2157,
  29267. bottom: 93 / 2458
  29268. }
  29269. },
  29270. },
  29271. [
  29272. {
  29273. name: "Normal",
  29274. height: math.unit(14, "feet"),
  29275. default: true
  29276. },
  29277. ]
  29278. ))
  29279. characterMakers.push(() => makeCharacter(
  29280. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29281. {
  29282. front: {
  29283. height: math.unit(6, "feet"),
  29284. weight: math.unit(150, "lb"),
  29285. name: "Front",
  29286. image: {
  29287. source: "./media/characters/adira/front.svg",
  29288. extra: 1078 / 1029,
  29289. bottom: 87 / 1166
  29290. }
  29291. },
  29292. },
  29293. [
  29294. {
  29295. name: "Micro",
  29296. height: math.unit(4, "inches"),
  29297. default: true
  29298. },
  29299. {
  29300. name: "Macro",
  29301. height: math.unit(50, "feet")
  29302. },
  29303. ]
  29304. ))
  29305. characterMakers.push(() => makeCharacter(
  29306. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29307. {
  29308. front: {
  29309. height: math.unit(16, "feet"),
  29310. weight: math.unit(1000, "lb"),
  29311. name: "Front",
  29312. image: {
  29313. source: "./media/characters/grim/front.svg",
  29314. extra: 622 / 614,
  29315. bottom: 18.1 / 642
  29316. }
  29317. },
  29318. back: {
  29319. height: math.unit(16, "feet"),
  29320. weight: math.unit(1000, "lb"),
  29321. name: "Back",
  29322. image: {
  29323. source: "./media/characters/grim/back.svg",
  29324. extra: 610.6 / 602,
  29325. bottom: 40.8 / 652
  29326. }
  29327. },
  29328. hunched: {
  29329. height: math.unit(9.75, "feet"),
  29330. weight: math.unit(1000, "lb"),
  29331. name: "Hunched",
  29332. image: {
  29333. source: "./media/characters/grim/hunched.svg",
  29334. extra: 304 / 297,
  29335. bottom: 35.4 / 394
  29336. }
  29337. },
  29338. },
  29339. [
  29340. {
  29341. name: "Normal",
  29342. height: math.unit(16, "feet"),
  29343. default: true
  29344. },
  29345. ]
  29346. ))
  29347. characterMakers.push(() => makeCharacter(
  29348. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29349. {
  29350. front: {
  29351. height: math.unit(2.3, "meters"),
  29352. weight: math.unit(300, "lb"),
  29353. name: "Front",
  29354. image: {
  29355. source: "./media/characters/sinja/front-sfw.svg",
  29356. extra: 1393 / 1294,
  29357. bottom: 70 / 1463
  29358. }
  29359. },
  29360. frontNsfw: {
  29361. height: math.unit(2.3, "meters"),
  29362. weight: math.unit(300, "lb"),
  29363. name: "Front (NSFW)",
  29364. image: {
  29365. source: "./media/characters/sinja/front-nsfw.svg",
  29366. extra: 1393 / 1294,
  29367. bottom: 70 / 1463
  29368. }
  29369. },
  29370. back: {
  29371. height: math.unit(2.3, "meters"),
  29372. weight: math.unit(300, "lb"),
  29373. name: "Back",
  29374. image: {
  29375. source: "./media/characters/sinja/back.svg",
  29376. extra: 1393 / 1294,
  29377. bottom: 70 / 1463
  29378. }
  29379. },
  29380. head: {
  29381. height: math.unit(1.771, "feet"),
  29382. name: "Head",
  29383. image: {
  29384. source: "./media/characters/sinja/head.svg"
  29385. }
  29386. },
  29387. slit: {
  29388. height: math.unit(0.8, "feet"),
  29389. name: "Slit",
  29390. image: {
  29391. source: "./media/characters/sinja/slit.svg"
  29392. }
  29393. },
  29394. },
  29395. [
  29396. {
  29397. name: "Normal",
  29398. height: math.unit(2.3, "meters")
  29399. },
  29400. {
  29401. name: "Macro",
  29402. height: math.unit(91, "meters"),
  29403. default: true
  29404. },
  29405. {
  29406. name: "Megamacro",
  29407. height: math.unit(91440, "meters")
  29408. },
  29409. {
  29410. name: "Gigamacro",
  29411. height: math.unit(60960000, "meters")
  29412. },
  29413. {
  29414. name: "Teramacro",
  29415. height: math.unit(9144000000, "meters")
  29416. },
  29417. ]
  29418. ))
  29419. characterMakers.push(() => makeCharacter(
  29420. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29421. {
  29422. front: {
  29423. height: math.unit(1.7, "meters"),
  29424. weight: math.unit(130, "lb"),
  29425. name: "Front",
  29426. image: {
  29427. source: "./media/characters/kyu/front.svg",
  29428. extra: 415 / 395,
  29429. bottom: 5 / 420
  29430. }
  29431. },
  29432. head: {
  29433. height: math.unit(1.75, "feet"),
  29434. name: "Head",
  29435. image: {
  29436. source: "./media/characters/kyu/head.svg"
  29437. }
  29438. },
  29439. foot: {
  29440. height: math.unit(0.81, "feet"),
  29441. name: "Foot",
  29442. image: {
  29443. source: "./media/characters/kyu/foot.svg"
  29444. }
  29445. },
  29446. },
  29447. [
  29448. {
  29449. name: "Normal",
  29450. height: math.unit(1.7, "meters")
  29451. },
  29452. {
  29453. name: "Macro",
  29454. height: math.unit(131, "feet"),
  29455. default: true
  29456. },
  29457. {
  29458. name: "Megamacro",
  29459. height: math.unit(91440, "meters")
  29460. },
  29461. {
  29462. name: "Gigamacro",
  29463. height: math.unit(60960000, "meters")
  29464. },
  29465. {
  29466. name: "Teramacro",
  29467. height: math.unit(9144000000, "meters")
  29468. },
  29469. ]
  29470. ))
  29471. characterMakers.push(() => makeCharacter(
  29472. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29473. {
  29474. front: {
  29475. height: math.unit(7 + 1 / 12, "feet"),
  29476. weight: math.unit(250, "lb"),
  29477. name: "Front",
  29478. image: {
  29479. source: "./media/characters/joey/front.svg",
  29480. extra: 1791 / 1537,
  29481. bottom: 28 / 1816
  29482. }
  29483. },
  29484. },
  29485. [
  29486. {
  29487. name: "Micro",
  29488. height: math.unit(3, "inches")
  29489. },
  29490. {
  29491. name: "Normal",
  29492. height: math.unit(7 + 1 / 12, "feet"),
  29493. default: true
  29494. },
  29495. ]
  29496. ))
  29497. characterMakers.push(() => makeCharacter(
  29498. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29499. {
  29500. front: {
  29501. height: math.unit(165, "cm"),
  29502. weight: math.unit(140, "lb"),
  29503. name: "Front",
  29504. image: {
  29505. source: "./media/characters/sam-evans/front.svg",
  29506. extra: 3417 / 3230,
  29507. bottom: 41.3 / 3417
  29508. }
  29509. },
  29510. frontSixTails: {
  29511. height: math.unit(165, "cm"),
  29512. weight: math.unit(140, "lb"),
  29513. name: "Front-six-tails",
  29514. image: {
  29515. source: "./media/characters/sam-evans/front-six-tails.svg",
  29516. extra: 3417 / 3230,
  29517. bottom: 41.3 / 3417
  29518. }
  29519. },
  29520. back: {
  29521. height: math.unit(165, "cm"),
  29522. weight: math.unit(140, "lb"),
  29523. name: "Back",
  29524. image: {
  29525. source: "./media/characters/sam-evans/back.svg",
  29526. extra: 3227 / 3032,
  29527. bottom: 6.8 / 3234
  29528. }
  29529. },
  29530. face: {
  29531. height: math.unit(0.68, "feet"),
  29532. name: "Face",
  29533. image: {
  29534. source: "./media/characters/sam-evans/face.svg"
  29535. }
  29536. },
  29537. },
  29538. [
  29539. {
  29540. name: "Normal",
  29541. height: math.unit(165, "cm"),
  29542. default: true
  29543. },
  29544. {
  29545. name: "Macro",
  29546. height: math.unit(100, "meters")
  29547. },
  29548. {
  29549. name: "Macro+",
  29550. height: math.unit(800, "meters")
  29551. },
  29552. {
  29553. name: "Macro++",
  29554. height: math.unit(3, "km")
  29555. },
  29556. {
  29557. name: "Macro+++",
  29558. height: math.unit(30, "km")
  29559. },
  29560. ]
  29561. ))
  29562. characterMakers.push(() => makeCharacter(
  29563. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29564. {
  29565. front: {
  29566. height: math.unit(10, "feet"),
  29567. weight: math.unit(750, "lb"),
  29568. name: "Front",
  29569. image: {
  29570. source: "./media/characters/juliet-a/front.svg",
  29571. extra: 1766 / 1720,
  29572. bottom: 43 / 1809
  29573. }
  29574. },
  29575. back: {
  29576. height: math.unit(10, "feet"),
  29577. weight: math.unit(750, "lb"),
  29578. name: "Back",
  29579. image: {
  29580. source: "./media/characters/juliet-a/back.svg",
  29581. extra: 1781 / 1734,
  29582. bottom: 35 / 1810,
  29583. }
  29584. },
  29585. },
  29586. [
  29587. {
  29588. name: "Normal",
  29589. height: math.unit(10, "feet"),
  29590. default: true
  29591. },
  29592. {
  29593. name: "Dragon Form",
  29594. height: math.unit(250, "feet")
  29595. },
  29596. {
  29597. name: "Macro",
  29598. height: math.unit(1000, "feet")
  29599. },
  29600. {
  29601. name: "Megamacro",
  29602. height: math.unit(10000, "feet")
  29603. }
  29604. ]
  29605. ))
  29606. characterMakers.push(() => makeCharacter(
  29607. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29608. {
  29609. regular: {
  29610. height: math.unit(7 + 3 / 12, "feet"),
  29611. weight: math.unit(260, "lb"),
  29612. name: "Regular",
  29613. image: {
  29614. source: "./media/characters/wild/regular.svg",
  29615. extra: 97.45 / 92,
  29616. bottom: 6.8 / 104.3
  29617. }
  29618. },
  29619. biggums: {
  29620. height: math.unit(8 + 6 / 12, "feet"),
  29621. weight: math.unit(425, "lb"),
  29622. name: "Biggums",
  29623. image: {
  29624. source: "./media/characters/wild/biggums.svg",
  29625. extra: 97.45 / 92,
  29626. bottom: 7.5 / 132.34
  29627. }
  29628. },
  29629. mawRegular: {
  29630. height: math.unit(1.24, "feet"),
  29631. name: "Maw (Regular)",
  29632. image: {
  29633. source: "./media/characters/wild/maw.svg"
  29634. }
  29635. },
  29636. mawBiggums: {
  29637. height: math.unit(1.47, "feet"),
  29638. name: "Maw (Biggums)",
  29639. image: {
  29640. source: "./media/characters/wild/maw.svg"
  29641. }
  29642. },
  29643. },
  29644. [
  29645. {
  29646. name: "Normal",
  29647. height: math.unit(7 + 3 / 12, "feet"),
  29648. default: true
  29649. },
  29650. ]
  29651. ))
  29652. characterMakers.push(() => makeCharacter(
  29653. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29654. {
  29655. front: {
  29656. height: math.unit(2.5, "meters"),
  29657. weight: math.unit(200, "kg"),
  29658. name: "Front",
  29659. image: {
  29660. source: "./media/characters/vidar/front.svg",
  29661. extra: 2994 / 2795,
  29662. bottom: 56 / 3061
  29663. }
  29664. },
  29665. back: {
  29666. height: math.unit(2.5, "meters"),
  29667. weight: math.unit(200, "kg"),
  29668. name: "Back",
  29669. image: {
  29670. source: "./media/characters/vidar/back.svg",
  29671. extra: 3131 / 2928,
  29672. bottom: 13.5 / 3141.5
  29673. }
  29674. },
  29675. feral: {
  29676. height: math.unit(2.5, "meters"),
  29677. weight: math.unit(2000, "kg"),
  29678. name: "Feral",
  29679. image: {
  29680. source: "./media/characters/vidar/feral.svg",
  29681. extra: 2790 / 1765,
  29682. bottom: 6 / 2796
  29683. }
  29684. },
  29685. },
  29686. [
  29687. {
  29688. name: "Normal",
  29689. height: math.unit(2.5, "meters"),
  29690. default: true
  29691. },
  29692. {
  29693. name: "Macro",
  29694. height: math.unit(100, "meters")
  29695. },
  29696. ]
  29697. ))
  29698. characterMakers.push(() => makeCharacter(
  29699. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29700. {
  29701. front: {
  29702. height: math.unit(5 + 9 / 12, "feet"),
  29703. weight: math.unit(120, "lb"),
  29704. name: "Front",
  29705. image: {
  29706. source: "./media/characters/ash/front.svg",
  29707. extra: 2189 / 1961,
  29708. bottom: 5.2 / 2194
  29709. }
  29710. },
  29711. },
  29712. [
  29713. {
  29714. name: "Normal",
  29715. height: math.unit(5 + 9 / 12, "feet"),
  29716. default: true
  29717. },
  29718. ]
  29719. ))
  29720. characterMakers.push(() => makeCharacter(
  29721. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29722. {
  29723. front: {
  29724. height: math.unit(9, "feet"),
  29725. weight: math.unit(10000, "lb"),
  29726. name: "Front",
  29727. image: {
  29728. source: "./media/characters/gygabite/front.svg",
  29729. bottom: 31.7 / 537.8,
  29730. extra: 505 / 370
  29731. }
  29732. },
  29733. },
  29734. [
  29735. {
  29736. name: "Normal",
  29737. height: math.unit(9, "feet"),
  29738. default: true
  29739. },
  29740. ]
  29741. ))
  29742. characterMakers.push(() => makeCharacter(
  29743. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29744. {
  29745. front: {
  29746. height: math.unit(12, "feet"),
  29747. weight: math.unit(4000, "lb"),
  29748. name: "Front",
  29749. image: {
  29750. source: "./media/characters/p0tat0/front.svg",
  29751. extra: 1065 / 921,
  29752. bottom: 55.7 / 1121.25
  29753. }
  29754. },
  29755. },
  29756. [
  29757. {
  29758. name: "Normal",
  29759. height: math.unit(12, "feet"),
  29760. default: true
  29761. },
  29762. ]
  29763. ))
  29764. characterMakers.push(() => makeCharacter(
  29765. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29766. {
  29767. side: {
  29768. height: math.unit(6.5, "feet"),
  29769. weight: math.unit(800, "lb"),
  29770. name: "Side",
  29771. image: {
  29772. source: "./media/characters/dusk/side.svg",
  29773. extra: 615 / 373,
  29774. bottom: 53 / 664
  29775. }
  29776. },
  29777. sitting: {
  29778. height: math.unit(7, "feet"),
  29779. weight: math.unit(800, "lb"),
  29780. name: "Sitting",
  29781. image: {
  29782. source: "./media/characters/dusk/sitting.svg",
  29783. extra: 753 / 425,
  29784. bottom: 33 / 774
  29785. }
  29786. },
  29787. head: {
  29788. height: math.unit(6.1, "feet"),
  29789. name: "Head",
  29790. image: {
  29791. source: "./media/characters/dusk/head.svg"
  29792. }
  29793. },
  29794. },
  29795. [
  29796. {
  29797. name: "Normal",
  29798. height: math.unit(7, "feet"),
  29799. default: true
  29800. },
  29801. ]
  29802. ))
  29803. characterMakers.push(() => makeCharacter(
  29804. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29805. {
  29806. front: {
  29807. height: math.unit(15, "feet"),
  29808. weight: math.unit(7000, "lb"),
  29809. name: "Front",
  29810. image: {
  29811. source: "./media/characters/jay-direwolf/front.svg",
  29812. extra: 1810 / 1732,
  29813. bottom: 66 / 1892
  29814. }
  29815. },
  29816. },
  29817. [
  29818. {
  29819. name: "Normal",
  29820. height: math.unit(15, "feet"),
  29821. default: true
  29822. },
  29823. ]
  29824. ))
  29825. characterMakers.push(() => makeCharacter(
  29826. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29827. {
  29828. front: {
  29829. height: math.unit(4 + 9 / 12, "feet"),
  29830. weight: math.unit(130, "lb"),
  29831. name: "Front",
  29832. image: {
  29833. source: "./media/characters/anchovie/front.svg",
  29834. extra: 382 / 350,
  29835. bottom: 25 / 409
  29836. }
  29837. },
  29838. back: {
  29839. height: math.unit(4 + 9 / 12, "feet"),
  29840. weight: math.unit(130, "lb"),
  29841. name: "Back",
  29842. image: {
  29843. source: "./media/characters/anchovie/back.svg",
  29844. extra: 385 / 352,
  29845. bottom: 16.6 / 402
  29846. }
  29847. },
  29848. frontDressed: {
  29849. height: math.unit(4 + 9 / 12, "feet"),
  29850. weight: math.unit(130, "lb"),
  29851. name: "Front (Dressed)",
  29852. image: {
  29853. source: "./media/characters/anchovie/front-dressed.svg",
  29854. extra: 382 / 350,
  29855. bottom: 25 / 409
  29856. }
  29857. },
  29858. backDressed: {
  29859. height: math.unit(4 + 9 / 12, "feet"),
  29860. weight: math.unit(130, "lb"),
  29861. name: "Back (Dressed)",
  29862. image: {
  29863. source: "./media/characters/anchovie/back-dressed.svg",
  29864. extra: 385 / 352,
  29865. bottom: 16.6 / 402
  29866. }
  29867. },
  29868. },
  29869. [
  29870. {
  29871. name: "Micro",
  29872. height: math.unit(6.4, "inches")
  29873. },
  29874. {
  29875. name: "Normal",
  29876. height: math.unit(4 + 9 / 12, "feet"),
  29877. default: true
  29878. },
  29879. ]
  29880. ))
  29881. characterMakers.push(() => makeCharacter(
  29882. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29883. {
  29884. front: {
  29885. height: math.unit(2, "meters"),
  29886. weight: math.unit(180, "lb"),
  29887. name: "Front",
  29888. image: {
  29889. source: "./media/characters/acidrenamon/front.svg",
  29890. extra: 987 / 890,
  29891. bottom: 22.8 / 1009
  29892. }
  29893. },
  29894. back: {
  29895. height: math.unit(2, "meters"),
  29896. weight: math.unit(180, "lb"),
  29897. name: "Back",
  29898. image: {
  29899. source: "./media/characters/acidrenamon/back.svg",
  29900. extra: 983 / 891,
  29901. bottom: 8.4 / 992
  29902. }
  29903. },
  29904. head: {
  29905. height: math.unit(1.92, "feet"),
  29906. name: "Head",
  29907. image: {
  29908. source: "./media/characters/acidrenamon/head.svg"
  29909. }
  29910. },
  29911. rump: {
  29912. height: math.unit(1.72, "feet"),
  29913. name: "Rump",
  29914. image: {
  29915. source: "./media/characters/acidrenamon/rump.svg"
  29916. }
  29917. },
  29918. tail: {
  29919. height: math.unit(4.2, "feet"),
  29920. name: "Tail",
  29921. image: {
  29922. source: "./media/characters/acidrenamon/tail.svg"
  29923. }
  29924. },
  29925. },
  29926. [
  29927. {
  29928. name: "Normal",
  29929. height: math.unit(2, "meters"),
  29930. default: true
  29931. },
  29932. {
  29933. name: "Minimacro",
  29934. height: math.unit(7, "meters")
  29935. },
  29936. {
  29937. name: "Macro",
  29938. height: math.unit(200, "meters")
  29939. },
  29940. {
  29941. name: "Gigamacro",
  29942. height: math.unit(0.2, "earths")
  29943. },
  29944. ]
  29945. ))
  29946. characterMakers.push(() => makeCharacter(
  29947. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29948. {
  29949. front: {
  29950. height: math.unit(152, "feet"),
  29951. name: "Front",
  29952. image: {
  29953. source: "./media/characters/kenzie-lee/front.svg",
  29954. extra: 1869/1774,
  29955. bottom: 128/1997
  29956. }
  29957. },
  29958. side: {
  29959. height: math.unit(86, "feet"),
  29960. name: "Side",
  29961. image: {
  29962. source: "./media/characters/kenzie-lee/side.svg",
  29963. extra: 930/815,
  29964. bottom: 177/1107
  29965. }
  29966. },
  29967. paw: {
  29968. height: math.unit(15, "feet"),
  29969. name: "Paw",
  29970. image: {
  29971. source: "./media/characters/kenzie-lee/paw.svg"
  29972. }
  29973. },
  29974. },
  29975. [
  29976. {
  29977. name: "Kenzie Flea",
  29978. height: math.unit(2, "mm"),
  29979. default: true
  29980. },
  29981. {
  29982. name: "Micro",
  29983. height: math.unit(2, "inches")
  29984. },
  29985. {
  29986. name: "Normal",
  29987. height: math.unit(152, "feet")
  29988. },
  29989. {
  29990. name: "Megamacro",
  29991. height: math.unit(7, "miles")
  29992. },
  29993. {
  29994. name: "Gigamacro",
  29995. height: math.unit(8000, "miles")
  29996. },
  29997. ]
  29998. ))
  29999. characterMakers.push(() => makeCharacter(
  30000. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30001. {
  30002. front: {
  30003. height: math.unit(6, "feet"),
  30004. name: "Front",
  30005. image: {
  30006. source: "./media/characters/withers/front.svg",
  30007. extra: 1935/1760,
  30008. bottom: 72/2007
  30009. }
  30010. },
  30011. back: {
  30012. height: math.unit(6, "feet"),
  30013. name: "Back",
  30014. image: {
  30015. source: "./media/characters/withers/back.svg",
  30016. extra: 1944/1792,
  30017. bottom: 12/1956
  30018. }
  30019. },
  30020. dressed: {
  30021. height: math.unit(6, "feet"),
  30022. name: "Dressed",
  30023. image: {
  30024. source: "./media/characters/withers/dressed.svg",
  30025. extra: 1937/1765,
  30026. bottom: 73/2010
  30027. }
  30028. },
  30029. phase1: {
  30030. height: math.unit(1.1, "feet"),
  30031. name: "Phase 1",
  30032. image: {
  30033. source: "./media/characters/withers/phase-1.svg",
  30034. extra: 1885/1232,
  30035. bottom: 0/1885
  30036. }
  30037. },
  30038. phase2: {
  30039. height: math.unit(1.05, "feet"),
  30040. name: "Phase 2",
  30041. image: {
  30042. source: "./media/characters/withers/phase-2.svg",
  30043. extra: 1792/1090,
  30044. bottom: 0/1792
  30045. }
  30046. },
  30047. partyWipe: {
  30048. height: math.unit(1.1, "feet"),
  30049. name: "Party Wipe",
  30050. image: {
  30051. source: "./media/characters/withers/party-wipe.svg",
  30052. extra: 1864/1207,
  30053. bottom: 0/1864
  30054. }
  30055. },
  30056. },
  30057. [
  30058. {
  30059. name: "Macro",
  30060. height: math.unit(167, "feet"),
  30061. default: true
  30062. },
  30063. {
  30064. name: "Megamacro",
  30065. height: math.unit(15, "miles")
  30066. }
  30067. ]
  30068. ))
  30069. characterMakers.push(() => makeCharacter(
  30070. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30071. {
  30072. front: {
  30073. height: math.unit(6 + 7 / 12, "feet"),
  30074. weight: math.unit(250, "lb"),
  30075. name: "Front",
  30076. image: {
  30077. source: "./media/characters/nemoskii/front.svg",
  30078. extra: 2270 / 1734,
  30079. bottom: 86 / 2354
  30080. }
  30081. },
  30082. back: {
  30083. height: math.unit(6 + 7 / 12, "feet"),
  30084. weight: math.unit(250, "lb"),
  30085. name: "Back",
  30086. image: {
  30087. source: "./media/characters/nemoskii/back.svg",
  30088. extra: 1845 / 1788,
  30089. bottom: 10.5 / 1852
  30090. }
  30091. },
  30092. head: {
  30093. height: math.unit(1.31, "feet"),
  30094. name: "Head",
  30095. image: {
  30096. source: "./media/characters/nemoskii/head.svg"
  30097. }
  30098. },
  30099. },
  30100. [
  30101. {
  30102. name: "Micro",
  30103. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30104. },
  30105. {
  30106. name: "Normal",
  30107. height: math.unit(6 + 7 / 12, "feet"),
  30108. default: true
  30109. },
  30110. {
  30111. name: "Macro",
  30112. height: math.unit((6 + 7 / 12) * 150, "feet")
  30113. },
  30114. {
  30115. name: "Macro+",
  30116. height: math.unit((6 + 7 / 12) * 500, "feet")
  30117. },
  30118. {
  30119. name: "Megamacro",
  30120. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30121. },
  30122. ]
  30123. ))
  30124. characterMakers.push(() => makeCharacter(
  30125. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30126. {
  30127. front: {
  30128. height: math.unit(1, "mile"),
  30129. weight: math.unit(265261.9, "lb"),
  30130. name: "Front",
  30131. image: {
  30132. source: "./media/characters/shui/front.svg",
  30133. extra: 1633 / 1564,
  30134. bottom: 91.5 / 1726
  30135. }
  30136. },
  30137. },
  30138. [
  30139. {
  30140. name: "Macro",
  30141. height: math.unit(1, "mile"),
  30142. default: true
  30143. },
  30144. ]
  30145. ))
  30146. characterMakers.push(() => makeCharacter(
  30147. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30148. {
  30149. front: {
  30150. height: math.unit(12 + 6 / 12, "feet"),
  30151. weight: math.unit(1342, "lb"),
  30152. name: "Front",
  30153. image: {
  30154. source: "./media/characters/arokh-takakura/front.svg",
  30155. extra: 1089 / 1043,
  30156. bottom: 77.4 / 1176.7
  30157. }
  30158. },
  30159. back: {
  30160. height: math.unit(12 + 6 / 12, "feet"),
  30161. weight: math.unit(1342, "lb"),
  30162. name: "Back",
  30163. image: {
  30164. source: "./media/characters/arokh-takakura/back.svg",
  30165. extra: 1046 / 1019,
  30166. bottom: 102 / 1150
  30167. }
  30168. },
  30169. },
  30170. [
  30171. {
  30172. name: "Big",
  30173. height: math.unit(12 + 6 / 12, "feet"),
  30174. default: true
  30175. },
  30176. ]
  30177. ))
  30178. characterMakers.push(() => makeCharacter(
  30179. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30180. {
  30181. front: {
  30182. height: math.unit(5 + 6 / 12, "feet"),
  30183. weight: math.unit(150, "lb"),
  30184. name: "Front",
  30185. image: {
  30186. source: "./media/characters/theo/front.svg",
  30187. extra: 1184 / 1131,
  30188. bottom: 7.4 / 1191
  30189. }
  30190. },
  30191. },
  30192. [
  30193. {
  30194. name: "Micro",
  30195. height: math.unit(5, "inches")
  30196. },
  30197. {
  30198. name: "Normal",
  30199. height: math.unit(5 + 6 / 12, "feet"),
  30200. default: true
  30201. },
  30202. ]
  30203. ))
  30204. characterMakers.push(() => makeCharacter(
  30205. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30206. {
  30207. front: {
  30208. height: math.unit(5 + 9 / 12, "feet"),
  30209. weight: math.unit(130, "lb"),
  30210. name: "Front",
  30211. image: {
  30212. source: "./media/characters/cecelia-swift/front.svg",
  30213. extra: 502 / 484,
  30214. bottom: 23 / 523
  30215. }
  30216. },
  30217. back: {
  30218. height: math.unit(5 + 9 / 12, "feet"),
  30219. weight: math.unit(130, "lb"),
  30220. name: "Back",
  30221. image: {
  30222. source: "./media/characters/cecelia-swift/back.svg",
  30223. extra: 499 / 485,
  30224. bottom: 12 / 511
  30225. }
  30226. },
  30227. head: {
  30228. height: math.unit(0.90, "feet"),
  30229. name: "Head",
  30230. image: {
  30231. source: "./media/characters/cecelia-swift/head.svg"
  30232. }
  30233. },
  30234. rump: {
  30235. height: math.unit(1.75, "feet"),
  30236. name: "Rump",
  30237. image: {
  30238. source: "./media/characters/cecelia-swift/rump.svg"
  30239. }
  30240. },
  30241. },
  30242. [
  30243. {
  30244. name: "Normal",
  30245. height: math.unit(5 + 9 / 12, "feet"),
  30246. default: true
  30247. },
  30248. {
  30249. name: "Big",
  30250. height: math.unit(50, "feet")
  30251. },
  30252. {
  30253. name: "Macro",
  30254. height: math.unit(100, "feet")
  30255. },
  30256. {
  30257. name: "Macro+",
  30258. height: math.unit(500, "feet")
  30259. },
  30260. {
  30261. name: "Macro++",
  30262. height: math.unit(1000, "feet")
  30263. },
  30264. ]
  30265. ))
  30266. characterMakers.push(() => makeCharacter(
  30267. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30268. {
  30269. front: {
  30270. height: math.unit(6, "feet"),
  30271. weight: math.unit(150, "lb"),
  30272. name: "Front",
  30273. image: {
  30274. source: "./media/characters/kaunan/front.svg",
  30275. extra: 2890 / 2523,
  30276. bottom: 49 / 2939
  30277. }
  30278. },
  30279. },
  30280. [
  30281. {
  30282. name: "Macro",
  30283. height: math.unit(150, "feet"),
  30284. default: true
  30285. },
  30286. ]
  30287. ))
  30288. characterMakers.push(() => makeCharacter(
  30289. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30290. {
  30291. dressed: {
  30292. height: math.unit(175, "cm"),
  30293. weight: math.unit(60, "kg"),
  30294. name: "Dressed",
  30295. image: {
  30296. source: "./media/characters/fei/dressed.svg",
  30297. extra: 1402/1278,
  30298. bottom: 27/1429
  30299. }
  30300. },
  30301. nude: {
  30302. height: math.unit(175, "cm"),
  30303. weight: math.unit(60, "kg"),
  30304. name: "Nude",
  30305. image: {
  30306. source: "./media/characters/fei/nude.svg",
  30307. extra: 1402/1278,
  30308. bottom: 27/1429
  30309. }
  30310. },
  30311. heels: {
  30312. height: math.unit(0.466, "feet"),
  30313. name: "Heels",
  30314. image: {
  30315. source: "./media/characters/fei/heels.svg",
  30316. extra: 156/152,
  30317. bottom: 28/184
  30318. }
  30319. },
  30320. },
  30321. [
  30322. {
  30323. name: "Mortal",
  30324. height: math.unit(175, "cm")
  30325. },
  30326. {
  30327. name: "Normal",
  30328. height: math.unit(3500, "m")
  30329. },
  30330. {
  30331. name: "Stroll",
  30332. height: math.unit(18.4, "km"),
  30333. default: true
  30334. },
  30335. {
  30336. name: "Showoff",
  30337. height: math.unit(175, "km")
  30338. },
  30339. ]
  30340. ))
  30341. characterMakers.push(() => makeCharacter(
  30342. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30343. {
  30344. front: {
  30345. height: math.unit(7, "feet"),
  30346. weight: math.unit(1000, "kg"),
  30347. name: "Front",
  30348. image: {
  30349. source: "./media/characters/edrax/front.svg",
  30350. extra: 2838 / 2550,
  30351. bottom: 130 / 2968
  30352. }
  30353. },
  30354. },
  30355. [
  30356. {
  30357. name: "Small",
  30358. height: math.unit(7, "feet")
  30359. },
  30360. {
  30361. name: "Normal",
  30362. height: math.unit(1500, "meters")
  30363. },
  30364. {
  30365. name: "Mega",
  30366. height: math.unit(12000000, "km"),
  30367. default: true
  30368. },
  30369. {
  30370. name: "Megamacro",
  30371. height: math.unit(10600000, "lightyears")
  30372. },
  30373. {
  30374. name: "Hypermacro",
  30375. height: math.unit(256, "yottameters")
  30376. },
  30377. ]
  30378. ))
  30379. characterMakers.push(() => makeCharacter(
  30380. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30381. {
  30382. front: {
  30383. height: math.unit(10, "feet"),
  30384. weight: math.unit(750, "lb"),
  30385. name: "Front",
  30386. image: {
  30387. source: "./media/characters/clove/front.svg",
  30388. extra: 1918/1751,
  30389. bottom: 52/1970
  30390. }
  30391. },
  30392. back: {
  30393. height: math.unit(10, "feet"),
  30394. weight: math.unit(750, "lb"),
  30395. name: "Back",
  30396. image: {
  30397. source: "./media/characters/clove/back.svg",
  30398. extra: 1912/1747,
  30399. bottom: 50/1962
  30400. }
  30401. },
  30402. },
  30403. [
  30404. {
  30405. name: "Normal",
  30406. height: math.unit(10, "feet"),
  30407. default: true
  30408. },
  30409. ]
  30410. ))
  30411. characterMakers.push(() => makeCharacter(
  30412. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30413. {
  30414. front: {
  30415. height: math.unit(4, "feet"),
  30416. weight: math.unit(50, "lb"),
  30417. name: "Front",
  30418. image: {
  30419. source: "./media/characters/alex-rabbit/front.svg",
  30420. extra: 507 / 458,
  30421. bottom: 18.5 / 527
  30422. }
  30423. },
  30424. back: {
  30425. height: math.unit(4, "feet"),
  30426. weight: math.unit(50, "lb"),
  30427. name: "Back",
  30428. image: {
  30429. source: "./media/characters/alex-rabbit/back.svg",
  30430. extra: 502 / 460,
  30431. bottom: 18.9 / 521
  30432. }
  30433. },
  30434. },
  30435. [
  30436. {
  30437. name: "Normal",
  30438. height: math.unit(4, "feet"),
  30439. default: true
  30440. },
  30441. ]
  30442. ))
  30443. characterMakers.push(() => makeCharacter(
  30444. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30445. {
  30446. front: {
  30447. height: math.unit(1 + 3 / 12, "feet"),
  30448. weight: math.unit(80, "lb"),
  30449. name: "Front",
  30450. image: {
  30451. source: "./media/characters/zander-rose/front.svg",
  30452. extra: 916 / 797,
  30453. bottom: 17 / 933
  30454. }
  30455. },
  30456. back: {
  30457. height: math.unit(1 + 3 / 12, "feet"),
  30458. weight: math.unit(80, "lb"),
  30459. name: "Back",
  30460. image: {
  30461. source: "./media/characters/zander-rose/back.svg",
  30462. extra: 903 / 779,
  30463. bottom: 31 / 934
  30464. }
  30465. },
  30466. },
  30467. [
  30468. {
  30469. name: "Normal",
  30470. height: math.unit(1 + 3 / 12, "feet"),
  30471. default: true
  30472. },
  30473. ]
  30474. ))
  30475. characterMakers.push(() => makeCharacter(
  30476. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30477. {
  30478. anthro: {
  30479. height: math.unit(6, "feet"),
  30480. weight: math.unit(150, "lb"),
  30481. name: "Anthro",
  30482. image: {
  30483. source: "./media/characters/razz/anthro.svg",
  30484. extra: 1437 / 1343,
  30485. bottom: 48 / 1485
  30486. }
  30487. },
  30488. feral: {
  30489. height: math.unit(6, "feet"),
  30490. weight: math.unit(150, "lb"),
  30491. name: "Feral",
  30492. image: {
  30493. source: "./media/characters/razz/feral.svg",
  30494. extra: 2569 / 1385,
  30495. bottom: 95 / 2664
  30496. }
  30497. },
  30498. },
  30499. [
  30500. {
  30501. name: "Normal",
  30502. height: math.unit(6, "feet"),
  30503. default: true
  30504. },
  30505. ]
  30506. ))
  30507. characterMakers.push(() => makeCharacter(
  30508. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30509. {
  30510. front: {
  30511. height: math.unit(9 + 4 / 12, "feet"),
  30512. weight: math.unit(500, "lb"),
  30513. name: "Front",
  30514. image: {
  30515. source: "./media/characters/morrigan/front.svg",
  30516. extra: 2707 / 2579,
  30517. bottom: 156 / 2863
  30518. }
  30519. },
  30520. },
  30521. [
  30522. {
  30523. name: "Normal",
  30524. height: math.unit(9 + 4 / 12, "feet"),
  30525. default: true
  30526. },
  30527. ]
  30528. ))
  30529. characterMakers.push(() => makeCharacter(
  30530. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30531. {
  30532. front: {
  30533. height: math.unit(5, "stories"),
  30534. weight: math.unit(4000, "lb"),
  30535. name: "Front",
  30536. image: {
  30537. source: "./media/characters/jenene/front.svg",
  30538. extra: 1780 / 1710,
  30539. bottom: 57 / 1837
  30540. }
  30541. },
  30542. },
  30543. [
  30544. {
  30545. name: "Normal",
  30546. height: math.unit(5, "stories"),
  30547. default: true
  30548. },
  30549. ]
  30550. ))
  30551. characterMakers.push(() => makeCharacter(
  30552. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30553. {
  30554. taurSfw: {
  30555. height: math.unit(10, "meters"),
  30556. weight: math.unit(17500, "kg"),
  30557. name: "Taur",
  30558. image: {
  30559. source: "./media/characters/faey/taur-sfw.svg",
  30560. extra: 1200 / 968,
  30561. bottom: 41 / 1241
  30562. }
  30563. },
  30564. chestmaw: {
  30565. height: math.unit(2.01, "meters"),
  30566. name: "Chestmaw",
  30567. image: {
  30568. source: "./media/characters/faey/chestmaw.svg"
  30569. }
  30570. },
  30571. foot: {
  30572. height: math.unit(2.43, "meters"),
  30573. name: "Foot",
  30574. image: {
  30575. source: "./media/characters/faey/foot.svg"
  30576. }
  30577. },
  30578. jaws: {
  30579. height: math.unit(1.66, "meters"),
  30580. name: "Jaws",
  30581. image: {
  30582. source: "./media/characters/faey/jaws.svg"
  30583. }
  30584. },
  30585. tongues: {
  30586. height: math.unit(2.01, "meters"),
  30587. name: "Tongues",
  30588. image: {
  30589. source: "./media/characters/faey/tongues.svg"
  30590. }
  30591. },
  30592. },
  30593. [
  30594. {
  30595. name: "Small",
  30596. height: math.unit(10, "meters"),
  30597. default: true
  30598. },
  30599. {
  30600. name: "Big",
  30601. height: math.unit(500000, "km")
  30602. },
  30603. ]
  30604. ))
  30605. characterMakers.push(() => makeCharacter(
  30606. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30607. {
  30608. front: {
  30609. height: math.unit(7, "feet"),
  30610. weight: math.unit(275, "lb"),
  30611. name: "Front",
  30612. image: {
  30613. source: "./media/characters/roku/front.svg",
  30614. extra: 903 / 878,
  30615. bottom: 37 / 940
  30616. }
  30617. },
  30618. },
  30619. [
  30620. {
  30621. name: "Normal",
  30622. height: math.unit(7, "feet"),
  30623. default: true
  30624. },
  30625. {
  30626. name: "Macro",
  30627. height: math.unit(500, "feet")
  30628. },
  30629. {
  30630. name: "Megamacro",
  30631. height: math.unit(200, "miles")
  30632. },
  30633. ]
  30634. ))
  30635. characterMakers.push(() => makeCharacter(
  30636. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30637. {
  30638. front: {
  30639. height: math.unit(6 + 2 / 12, "feet"),
  30640. weight: math.unit(150, "lb"),
  30641. name: "Front",
  30642. image: {
  30643. source: "./media/characters/lira/front.svg",
  30644. extra: 1727 / 1605,
  30645. bottom: 26 / 1753
  30646. }
  30647. },
  30648. back: {
  30649. height: math.unit(6 + 2 / 12, "feet"),
  30650. weight: math.unit(150, "lb"),
  30651. name: "Back",
  30652. image: {
  30653. source: "./media/characters/lira/back.svg",
  30654. extra: 1713/1621,
  30655. bottom: 20/1733
  30656. }
  30657. },
  30658. hand: {
  30659. height: math.unit(0.75, "feet"),
  30660. name: "Hand",
  30661. image: {
  30662. source: "./media/characters/lira/hand.svg"
  30663. }
  30664. },
  30665. maw: {
  30666. height: math.unit(0.65, "feet"),
  30667. name: "Maw",
  30668. image: {
  30669. source: "./media/characters/lira/maw.svg"
  30670. }
  30671. },
  30672. pawDigi: {
  30673. height: math.unit(1.6, "feet"),
  30674. name: "Paw Digi",
  30675. image: {
  30676. source: "./media/characters/lira/paw-digi.svg"
  30677. }
  30678. },
  30679. pawPlanti: {
  30680. height: math.unit(1.4, "feet"),
  30681. name: "Paw Planti",
  30682. image: {
  30683. source: "./media/characters/lira/paw-planti.svg"
  30684. }
  30685. },
  30686. },
  30687. [
  30688. {
  30689. name: "Normal",
  30690. height: math.unit(6 + 2 / 12, "feet"),
  30691. default: true
  30692. },
  30693. {
  30694. name: "Macro",
  30695. height: math.unit(100, "feet")
  30696. },
  30697. {
  30698. name: "Macro²",
  30699. height: math.unit(1600, "feet")
  30700. },
  30701. {
  30702. name: "Planetary",
  30703. height: math.unit(20, "earths")
  30704. },
  30705. ]
  30706. ))
  30707. characterMakers.push(() => makeCharacter(
  30708. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30709. {
  30710. front: {
  30711. height: math.unit(6, "feet"),
  30712. weight: math.unit(150, "lb"),
  30713. name: "Front",
  30714. image: {
  30715. source: "./media/characters/hadjet/front.svg",
  30716. extra: 1480 / 1346,
  30717. bottom: 26 / 1506
  30718. }
  30719. },
  30720. frontNsfw: {
  30721. height: math.unit(6, "feet"),
  30722. weight: math.unit(150, "lb"),
  30723. name: "Front (NSFW)",
  30724. image: {
  30725. source: "./media/characters/hadjet/front-nsfw.svg",
  30726. extra: 1440 / 1358,
  30727. bottom: 52 / 1492
  30728. }
  30729. },
  30730. },
  30731. [
  30732. {
  30733. name: "Macro",
  30734. height: math.unit(10, "stories"),
  30735. default: true
  30736. },
  30737. {
  30738. name: "Megamacro",
  30739. height: math.unit(1.5, "miles")
  30740. },
  30741. {
  30742. name: "Megamacro+",
  30743. height: math.unit(5, "miles")
  30744. },
  30745. ]
  30746. ))
  30747. characterMakers.push(() => makeCharacter(
  30748. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30749. {
  30750. side: {
  30751. height: math.unit(106, "feet"),
  30752. weight: math.unit(500, "tonnes"),
  30753. name: "Side",
  30754. image: {
  30755. source: "./media/characters/kodran/side.svg",
  30756. extra: 553 / 480,
  30757. bottom: 33 / 586
  30758. }
  30759. },
  30760. front: {
  30761. height: math.unit(132, "feet"),
  30762. weight: math.unit(500, "tonnes"),
  30763. name: "Front",
  30764. image: {
  30765. source: "./media/characters/kodran/front.svg",
  30766. extra: 667 / 643,
  30767. bottom: 42 / 709
  30768. }
  30769. },
  30770. flying: {
  30771. height: math.unit(350, "feet"),
  30772. weight: math.unit(500, "tonnes"),
  30773. name: "Flying",
  30774. image: {
  30775. source: "./media/characters/kodran/flying.svg"
  30776. }
  30777. },
  30778. foot: {
  30779. height: math.unit(33, "feet"),
  30780. name: "Foot",
  30781. image: {
  30782. source: "./media/characters/kodran/foot.svg"
  30783. }
  30784. },
  30785. footFront: {
  30786. height: math.unit(19, "feet"),
  30787. name: "Foot (Front)",
  30788. image: {
  30789. source: "./media/characters/kodran/foot-front.svg",
  30790. extra: 261 / 261,
  30791. bottom: 91 / 352
  30792. }
  30793. },
  30794. headFront: {
  30795. height: math.unit(53, "feet"),
  30796. name: "Head (Front)",
  30797. image: {
  30798. source: "./media/characters/kodran/head-front.svg"
  30799. }
  30800. },
  30801. headSide: {
  30802. height: math.unit(65, "feet"),
  30803. name: "Head (Side)",
  30804. image: {
  30805. source: "./media/characters/kodran/head-side.svg"
  30806. }
  30807. },
  30808. throat: {
  30809. height: math.unit(79, "feet"),
  30810. name: "Throat",
  30811. image: {
  30812. source: "./media/characters/kodran/throat.svg"
  30813. }
  30814. },
  30815. },
  30816. [
  30817. {
  30818. name: "Large",
  30819. height: math.unit(106, "feet"),
  30820. default: true
  30821. },
  30822. ]
  30823. ))
  30824. characterMakers.push(() => makeCharacter(
  30825. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30826. {
  30827. side: {
  30828. height: math.unit(11, "feet"),
  30829. weight: math.unit(150, "lb"),
  30830. name: "Side",
  30831. image: {
  30832. source: "./media/characters/pyxaron/side.svg",
  30833. extra: 305 / 195,
  30834. bottom: 17 / 322
  30835. }
  30836. },
  30837. },
  30838. [
  30839. {
  30840. name: "Normal",
  30841. height: math.unit(11, "feet"),
  30842. default: true
  30843. },
  30844. ]
  30845. ))
  30846. characterMakers.push(() => makeCharacter(
  30847. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30848. {
  30849. front: {
  30850. height: math.unit(6, "feet"),
  30851. weight: math.unit(150, "lb"),
  30852. name: "Front",
  30853. image: {
  30854. source: "./media/characters/meep/front.svg",
  30855. extra: 88 / 80,
  30856. bottom: 6 / 94
  30857. }
  30858. },
  30859. },
  30860. [
  30861. {
  30862. name: "Fun Sized",
  30863. height: math.unit(2, "inches"),
  30864. default: true
  30865. },
  30866. {
  30867. name: "Friend Sized",
  30868. height: math.unit(8, "inches")
  30869. },
  30870. ]
  30871. ))
  30872. characterMakers.push(() => makeCharacter(
  30873. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30874. {
  30875. front: {
  30876. height: math.unit(15, "feet"),
  30877. weight: math.unit(2500, "lb"),
  30878. name: "Front",
  30879. image: {
  30880. source: "./media/characters/holly-rabbit/front.svg",
  30881. extra: 1433 / 1233,
  30882. bottom: 125 / 1558
  30883. }
  30884. },
  30885. dick: {
  30886. height: math.unit(4.6, "feet"),
  30887. name: "Dick",
  30888. image: {
  30889. source: "./media/characters/holly-rabbit/dick.svg"
  30890. }
  30891. },
  30892. },
  30893. [
  30894. {
  30895. name: "Normal",
  30896. height: math.unit(15, "feet"),
  30897. default: true
  30898. },
  30899. {
  30900. name: "Macro",
  30901. height: math.unit(250, "feet")
  30902. },
  30903. {
  30904. name: "Macro+",
  30905. height: math.unit(2500, "feet")
  30906. },
  30907. ]
  30908. ))
  30909. characterMakers.push(() => makeCharacter(
  30910. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30911. {
  30912. front: {
  30913. height: math.unit(3.02, "meters"),
  30914. weight: math.unit(500, "kg"),
  30915. name: "Front",
  30916. image: {
  30917. source: "./media/characters/drena/front.svg",
  30918. extra: 282 / 243,
  30919. bottom: 8 / 290
  30920. }
  30921. },
  30922. side: {
  30923. height: math.unit(3.02, "meters"),
  30924. weight: math.unit(500, "kg"),
  30925. name: "Side",
  30926. image: {
  30927. source: "./media/characters/drena/side.svg",
  30928. extra: 280 / 245,
  30929. bottom: 10 / 290
  30930. }
  30931. },
  30932. back: {
  30933. height: math.unit(3.02, "meters"),
  30934. weight: math.unit(500, "kg"),
  30935. name: "Back",
  30936. image: {
  30937. source: "./media/characters/drena/back.svg",
  30938. extra: 278 / 243,
  30939. bottom: 2 / 280
  30940. }
  30941. },
  30942. foot: {
  30943. height: math.unit(0.75, "meters"),
  30944. name: "Foot",
  30945. image: {
  30946. source: "./media/characters/drena/foot.svg"
  30947. }
  30948. },
  30949. maw: {
  30950. height: math.unit(0.82, "meters"),
  30951. name: "Maw",
  30952. image: {
  30953. source: "./media/characters/drena/maw.svg"
  30954. }
  30955. },
  30956. eating: {
  30957. height: math.unit(0.75, "meters"),
  30958. name: "Eating",
  30959. image: {
  30960. source: "./media/characters/drena/eating.svg"
  30961. }
  30962. },
  30963. rump: {
  30964. height: math.unit(0.93, "meters"),
  30965. name: "Rump",
  30966. image: {
  30967. source: "./media/characters/drena/rump.svg"
  30968. }
  30969. },
  30970. },
  30971. [
  30972. {
  30973. name: "Normal",
  30974. height: math.unit(3.02, "meters"),
  30975. default: true
  30976. },
  30977. ]
  30978. ))
  30979. characterMakers.push(() => makeCharacter(
  30980. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30981. {
  30982. front: {
  30983. height: math.unit(6 + 4 / 12, "feet"),
  30984. weight: math.unit(250, "lb"),
  30985. name: "Front",
  30986. image: {
  30987. source: "./media/characters/remmyzilla/front.svg",
  30988. extra: 4033 / 3588,
  30989. bottom: 123 / 4156
  30990. }
  30991. },
  30992. back: {
  30993. height: math.unit(6 + 4 / 12, "feet"),
  30994. weight: math.unit(250, "lb"),
  30995. name: "Back",
  30996. image: {
  30997. source: "./media/characters/remmyzilla/back.svg",
  30998. extra: 1696/1602,
  30999. bottom: 63/1759
  31000. }
  31001. },
  31002. paw: {
  31003. height: math.unit(1.73, "feet"),
  31004. name: "Paw",
  31005. image: {
  31006. source: "./media/characters/remmyzilla/paw.svg"
  31007. },
  31008. extraAttributes: {
  31009. "toeSize": {
  31010. name: "Toe Size",
  31011. power: 2,
  31012. type: "area",
  31013. base: math.unit(0.0035, "m^2")
  31014. },
  31015. "padSize": {
  31016. name: "Pad Size",
  31017. power: 2,
  31018. type: "area",
  31019. base: math.unit(0.015, "m^2")
  31020. },
  31021. "pawsize": {
  31022. name: "Paw Size",
  31023. power: 2,
  31024. type: "area",
  31025. base: math.unit(0.072, "m^2")
  31026. },
  31027. }
  31028. },
  31029. maw: {
  31030. height: math.unit(1.73, "feet"),
  31031. name: "Maw",
  31032. image: {
  31033. source: "./media/characters/remmyzilla/maw.svg"
  31034. }
  31035. },
  31036. },
  31037. [
  31038. {
  31039. name: "Normal",
  31040. height: math.unit(6 + 4 / 12, "feet")
  31041. },
  31042. {
  31043. name: "Minimacro",
  31044. height: math.unit(12 + 8 / 12, "feet")
  31045. },
  31046. {
  31047. name: "Normal",
  31048. height: math.unit(640, "feet"),
  31049. default: true
  31050. },
  31051. {
  31052. name: "Megamacro",
  31053. height: math.unit(6400, "feet")
  31054. },
  31055. {
  31056. name: "Gigamacro",
  31057. height: math.unit(64000, "miles")
  31058. },
  31059. ]
  31060. ))
  31061. characterMakers.push(() => makeCharacter(
  31062. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31063. {
  31064. front: {
  31065. height: math.unit(2.5, "meters"),
  31066. weight: math.unit(300, "lb"),
  31067. name: "Front",
  31068. image: {
  31069. source: "./media/characters/lawrence/front.svg",
  31070. extra: 357 / 335,
  31071. bottom: 30 / 387
  31072. }
  31073. },
  31074. back: {
  31075. height: math.unit(2.5, "meters"),
  31076. weight: math.unit(300, "lb"),
  31077. name: "Back",
  31078. image: {
  31079. source: "./media/characters/lawrence/back.svg",
  31080. extra: 357 / 338,
  31081. bottom: 16 / 373
  31082. }
  31083. },
  31084. head: {
  31085. height: math.unit(0.9, "meter"),
  31086. name: "Head",
  31087. image: {
  31088. source: "./media/characters/lawrence/head.svg"
  31089. }
  31090. },
  31091. maw: {
  31092. height: math.unit(0.7, "meter"),
  31093. name: "Maw",
  31094. image: {
  31095. source: "./media/characters/lawrence/maw.svg"
  31096. }
  31097. },
  31098. footBottom: {
  31099. height: math.unit(0.5, "meter"),
  31100. name: "Foot (Bottom)",
  31101. image: {
  31102. source: "./media/characters/lawrence/foot-bottom.svg"
  31103. }
  31104. },
  31105. footTop: {
  31106. height: math.unit(0.5, "meter"),
  31107. name: "Foot (Top)",
  31108. image: {
  31109. source: "./media/characters/lawrence/foot-top.svg"
  31110. }
  31111. },
  31112. },
  31113. [
  31114. {
  31115. name: "Normal",
  31116. height: math.unit(2.5, "meters"),
  31117. default: true
  31118. },
  31119. {
  31120. name: "Macro",
  31121. height: math.unit(95, "meters")
  31122. },
  31123. {
  31124. name: "Megamacro",
  31125. height: math.unit(150, "km")
  31126. },
  31127. ]
  31128. ))
  31129. characterMakers.push(() => makeCharacter(
  31130. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31131. {
  31132. front: {
  31133. height: math.unit(4.2, "meters"),
  31134. preyCapacity: math.unit(50, "m^3"),
  31135. weight: math.unit(30, "tonnes"),
  31136. name: "Front",
  31137. image: {
  31138. source: "./media/characters/sydney/front.svg",
  31139. extra: 1177/1129,
  31140. bottom: 197/1374
  31141. },
  31142. extraAttributes: {
  31143. "length": {
  31144. name: "Length",
  31145. power: 1,
  31146. type: "length",
  31147. base: math.unit(21, "meters")
  31148. },
  31149. }
  31150. },
  31151. },
  31152. [
  31153. {
  31154. name: "Normal",
  31155. height: math.unit(4.2, "meters"),
  31156. default: true
  31157. },
  31158. ]
  31159. ))
  31160. characterMakers.push(() => makeCharacter(
  31161. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31162. {
  31163. back: {
  31164. height: math.unit(201, "feet"),
  31165. name: "Back",
  31166. image: {
  31167. source: "./media/characters/jessica/back.svg",
  31168. extra: 273 / 259,
  31169. bottom: 7 / 280
  31170. }
  31171. },
  31172. },
  31173. [
  31174. {
  31175. name: "Normal",
  31176. height: math.unit(201, "feet"),
  31177. default: true
  31178. },
  31179. {
  31180. name: "Megamacro",
  31181. height: math.unit(8, "miles")
  31182. },
  31183. ]
  31184. ))
  31185. characterMakers.push(() => makeCharacter(
  31186. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31187. {
  31188. side: {
  31189. height: math.unit(5.6, "m"),
  31190. weight: math.unit(8000, "kg"),
  31191. name: "Side",
  31192. image: {
  31193. source: "./media/characters/victoria/side.svg",
  31194. extra: 1542/1229,
  31195. bottom: 124/1666
  31196. }
  31197. },
  31198. maw: {
  31199. height: math.unit(7.14, "feet"),
  31200. name: "Maw",
  31201. image: {
  31202. source: "./media/characters/victoria/maw.svg"
  31203. }
  31204. },
  31205. },
  31206. [
  31207. {
  31208. name: "Normal",
  31209. height: math.unit(5.6, "m"),
  31210. default: true
  31211. },
  31212. ]
  31213. ))
  31214. characterMakers.push(() => makeCharacter(
  31215. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31216. {
  31217. front: {
  31218. height: math.unit(5 + 6 / 12, "feet"),
  31219. name: "Front",
  31220. image: {
  31221. source: "./media/characters/cat/front.svg",
  31222. extra: 1449/1295,
  31223. bottom: 34/1483
  31224. },
  31225. form: "cat",
  31226. default: true
  31227. },
  31228. back: {
  31229. height: math.unit(5 + 6 / 12, "feet"),
  31230. name: "Back",
  31231. image: {
  31232. source: "./media/characters/cat/back.svg",
  31233. extra: 1466/1301,
  31234. bottom: 19/1485
  31235. },
  31236. form: "cat"
  31237. },
  31238. taur: {
  31239. height: math.unit(7, "feet"),
  31240. name: "Taur",
  31241. image: {
  31242. source: "./media/characters/cat/taur.svg",
  31243. extra: 1389/1233,
  31244. bottom: 83/1472
  31245. },
  31246. form: "taur",
  31247. default: true
  31248. },
  31249. lucarioFront: {
  31250. height: math.unit(4, "feet"),
  31251. name: "Lucario (Front)",
  31252. image: {
  31253. source: "./media/characters/cat/lucario-front.svg",
  31254. extra: 1149/1019,
  31255. bottom: 84/1233
  31256. },
  31257. form: "lucario",
  31258. default: true
  31259. },
  31260. lucarioBack: {
  31261. height: math.unit(4, "feet"),
  31262. name: "Lucario (Back)",
  31263. image: {
  31264. source: "./media/characters/cat/lucario-back.svg",
  31265. extra: 1190/1059,
  31266. bottom: 33/1223
  31267. },
  31268. form: "lucario"
  31269. },
  31270. megaLucario: {
  31271. height: math.unit(4, "feet"),
  31272. name: "Mega Lucario",
  31273. image: {
  31274. source: "./media/characters/cat/mega-lucario.svg",
  31275. extra: 1515 / 1319,
  31276. bottom: 63 / 1578
  31277. },
  31278. form: "lucario"
  31279. },
  31280. nickit: {
  31281. height: math.unit(2, "feet"),
  31282. name: "Nickit",
  31283. image: {
  31284. source: "./media/characters/cat/nickit.svg",
  31285. extra: 1980 / 1585,
  31286. bottom: 102 / 2082
  31287. },
  31288. form: "nickit",
  31289. default: true
  31290. },
  31291. lopunnyFront: {
  31292. height: math.unit(5, "feet"),
  31293. name: "Lopunny (Front)",
  31294. image: {
  31295. source: "./media/characters/cat/lopunny-front.svg",
  31296. extra: 1782 / 1469,
  31297. bottom: 38 / 1820
  31298. },
  31299. form: "lopunny",
  31300. default: true
  31301. },
  31302. lopunnyBack: {
  31303. height: math.unit(5, "feet"),
  31304. name: "Lopunny (Back)",
  31305. image: {
  31306. source: "./media/characters/cat/lopunny-back.svg",
  31307. extra: 1660 / 1490,
  31308. bottom: 25 / 1685
  31309. },
  31310. form: "lopunny"
  31311. },
  31312. },
  31313. [
  31314. {
  31315. name: "Really small",
  31316. height: math.unit(1, "nm")
  31317. },
  31318. {
  31319. name: "Micro",
  31320. height: math.unit(5, "inches")
  31321. },
  31322. {
  31323. name: "Normal",
  31324. height: math.unit(5 + 6 / 12, "feet"),
  31325. default: true
  31326. },
  31327. {
  31328. name: "Macro",
  31329. height: math.unit(50, "feet")
  31330. },
  31331. {
  31332. name: "Macro+",
  31333. height: math.unit(150, "feet")
  31334. },
  31335. {
  31336. name: "Megamacro",
  31337. height: math.unit(100, "miles")
  31338. },
  31339. ]
  31340. ))
  31341. characterMakers.push(() => makeCharacter(
  31342. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31343. {
  31344. front: {
  31345. height: math.unit(63.4, "meters"),
  31346. weight: math.unit(3.28349e+6, "kilograms"),
  31347. name: "Front",
  31348. image: {
  31349. source: "./media/characters/kirina-violet/front.svg",
  31350. extra: 2812 / 2725,
  31351. bottom: 0 / 2812
  31352. }
  31353. },
  31354. back: {
  31355. height: math.unit(63.4, "meters"),
  31356. weight: math.unit(3.28349e+6, "kilograms"),
  31357. name: "Back",
  31358. image: {
  31359. source: "./media/characters/kirina-violet/back.svg",
  31360. extra: 2812 / 2725,
  31361. bottom: 0 / 2812
  31362. }
  31363. },
  31364. mouth: {
  31365. height: math.unit(4.35, "meters"),
  31366. name: "Mouth",
  31367. image: {
  31368. source: "./media/characters/kirina-violet/mouth.svg"
  31369. }
  31370. },
  31371. paw: {
  31372. height: math.unit(5.6, "meters"),
  31373. name: "Paw",
  31374. image: {
  31375. source: "./media/characters/kirina-violet/paw.svg"
  31376. }
  31377. },
  31378. tail: {
  31379. height: math.unit(18, "meters"),
  31380. name: "Tail",
  31381. image: {
  31382. source: "./media/characters/kirina-violet/tail.svg"
  31383. }
  31384. },
  31385. },
  31386. [
  31387. {
  31388. name: "Macro",
  31389. height: math.unit(63.4, "meters"),
  31390. default: true
  31391. },
  31392. ]
  31393. ))
  31394. characterMakers.push(() => makeCharacter(
  31395. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31396. {
  31397. front: {
  31398. height: math.unit(75, "feet"),
  31399. name: "Front",
  31400. image: {
  31401. source: "./media/characters/cat-gigachu/front.svg",
  31402. extra: 1239/1027,
  31403. bottom: 32/1271
  31404. }
  31405. },
  31406. back: {
  31407. height: math.unit(75, "feet"),
  31408. name: "Back",
  31409. image: {
  31410. source: "./media/characters/cat-gigachu/back.svg",
  31411. extra: 1229/1030,
  31412. bottom: 9/1238
  31413. }
  31414. },
  31415. },
  31416. [
  31417. {
  31418. name: "Dynamax",
  31419. height: math.unit(75, "feet"),
  31420. default: true
  31421. },
  31422. ]
  31423. ))
  31424. characterMakers.push(() => makeCharacter(
  31425. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31426. {
  31427. front: {
  31428. height: math.unit(6, "feet"),
  31429. weight: math.unit(150, "lb"),
  31430. name: "Front",
  31431. image: {
  31432. source: "./media/characters/sfaiyan/front.svg",
  31433. extra: 999 / 978,
  31434. bottom: 5 / 1004
  31435. }
  31436. },
  31437. },
  31438. [
  31439. {
  31440. name: "Normal",
  31441. height: math.unit(1.82, "meters")
  31442. },
  31443. {
  31444. name: "Giant",
  31445. height: math.unit(2.27, "km"),
  31446. default: true
  31447. },
  31448. ]
  31449. ))
  31450. characterMakers.push(() => makeCharacter(
  31451. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31452. {
  31453. front: {
  31454. height: math.unit(179, "cm"),
  31455. weight: math.unit(100, "kg"),
  31456. name: "Front",
  31457. image: {
  31458. source: "./media/characters/raunehkeli/front.svg",
  31459. extra: 1934 / 1926,
  31460. bottom: 0 / 1934
  31461. }
  31462. },
  31463. },
  31464. [
  31465. {
  31466. name: "Normal",
  31467. height: math.unit(179, "cm")
  31468. },
  31469. {
  31470. name: "Maximum",
  31471. height: math.unit(575, "meters"),
  31472. default: true
  31473. },
  31474. ]
  31475. ))
  31476. characterMakers.push(() => makeCharacter(
  31477. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31478. {
  31479. front: {
  31480. height: math.unit(6, "feet"),
  31481. weight: math.unit(150, "lb"),
  31482. name: "Front",
  31483. image: {
  31484. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31485. extra: 2625 / 2518,
  31486. bottom: 60 / 2685
  31487. }
  31488. },
  31489. },
  31490. [
  31491. {
  31492. name: "Normal",
  31493. height: math.unit(6 + 2 / 12, "feet")
  31494. },
  31495. {
  31496. name: "Macro",
  31497. height: math.unit(1180, "feet"),
  31498. default: true
  31499. },
  31500. ]
  31501. ))
  31502. characterMakers.push(() => makeCharacter(
  31503. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31504. {
  31505. front: {
  31506. height: math.unit(5 + 6 / 12, "feet"),
  31507. weight: math.unit(108, "lb"),
  31508. name: "Front",
  31509. image: {
  31510. source: "./media/characters/lilith-zott/front.svg",
  31511. extra: 2510 / 2238,
  31512. bottom: 100 / 2610
  31513. }
  31514. },
  31515. frontDressed: {
  31516. height: math.unit(5 + 6 / 12, "feet"),
  31517. weight: math.unit(108, "lb"),
  31518. name: "Front (Dressed)",
  31519. image: {
  31520. source: "./media/characters/lilith-zott/front-dressed.svg",
  31521. extra: 2510 / 2238,
  31522. bottom: 100 / 2610
  31523. }
  31524. },
  31525. },
  31526. [
  31527. {
  31528. name: "Normal",
  31529. height: math.unit(5 + 6 / 12, "feet")
  31530. },
  31531. {
  31532. name: "Macro",
  31533. height: math.unit(1030, "feet"),
  31534. default: true
  31535. },
  31536. ]
  31537. ))
  31538. characterMakers.push(() => makeCharacter(
  31539. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31540. {
  31541. front: {
  31542. height: math.unit(6, "feet"),
  31543. weight: math.unit(150, "lb"),
  31544. name: "Front",
  31545. image: {
  31546. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31547. extra: 2567 / 2435,
  31548. bottom: 39 / 2606
  31549. }
  31550. },
  31551. frontSuper: {
  31552. height: math.unit(6, "feet"),
  31553. name: "Front (Super)",
  31554. image: {
  31555. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31556. extra: 2567 / 2435,
  31557. bottom: 39 / 2606
  31558. }
  31559. },
  31560. },
  31561. [
  31562. {
  31563. name: "Normal",
  31564. height: math.unit(5 + 10 / 12, "feet")
  31565. },
  31566. {
  31567. name: "Macro",
  31568. height: math.unit(1100, "feet"),
  31569. default: true
  31570. },
  31571. ]
  31572. ))
  31573. characterMakers.push(() => makeCharacter(
  31574. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31575. {
  31576. front: {
  31577. height: math.unit(100, "miles"),
  31578. name: "Front",
  31579. image: {
  31580. source: "./media/characters/sona/front.svg",
  31581. extra: 2433 / 2201,
  31582. bottom: 53 / 2486
  31583. }
  31584. },
  31585. foot: {
  31586. height: math.unit(16.1, "miles"),
  31587. name: "Foot",
  31588. image: {
  31589. source: "./media/characters/sona/foot.svg"
  31590. }
  31591. },
  31592. },
  31593. [
  31594. {
  31595. name: "Macro",
  31596. height: math.unit(100, "miles"),
  31597. default: true
  31598. },
  31599. ]
  31600. ))
  31601. characterMakers.push(() => makeCharacter(
  31602. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31603. {
  31604. front: {
  31605. height: math.unit(6, "feet"),
  31606. weight: math.unit(150, "lb"),
  31607. name: "Front",
  31608. image: {
  31609. source: "./media/characters/bailey/front.svg",
  31610. extra: 1778 / 1724,
  31611. bottom: 30 / 1808
  31612. }
  31613. },
  31614. },
  31615. [
  31616. {
  31617. name: "Micro",
  31618. height: math.unit(4, "inches")
  31619. },
  31620. {
  31621. name: "Normal",
  31622. height: math.unit(5 + 5 / 12, "feet"),
  31623. default: true
  31624. },
  31625. {
  31626. name: "Macro",
  31627. height: math.unit(250, "feet")
  31628. },
  31629. {
  31630. name: "Megamacro",
  31631. height: math.unit(100, "miles")
  31632. },
  31633. ]
  31634. ))
  31635. characterMakers.push(() => makeCharacter(
  31636. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31637. {
  31638. front: {
  31639. height: math.unit(5 + 2 / 12, "feet"),
  31640. weight: math.unit(120, "lb"),
  31641. name: "Front",
  31642. image: {
  31643. source: "./media/characters/snaps/front.svg",
  31644. extra: 2370 / 2177,
  31645. bottom: 48 / 2418
  31646. }
  31647. },
  31648. back: {
  31649. height: math.unit(5 + 2 / 12, "feet"),
  31650. weight: math.unit(120, "lb"),
  31651. name: "Back",
  31652. image: {
  31653. source: "./media/characters/snaps/back.svg",
  31654. extra: 2408 / 2258,
  31655. bottom: 15 / 2423
  31656. }
  31657. },
  31658. },
  31659. [
  31660. {
  31661. name: "Micro",
  31662. height: math.unit(9, "inches")
  31663. },
  31664. {
  31665. name: "Normal",
  31666. height: math.unit(5 + 2 / 12, "feet"),
  31667. default: true
  31668. },
  31669. {
  31670. name: "Mini Macro",
  31671. height: math.unit(10, "feet")
  31672. },
  31673. ]
  31674. ))
  31675. characterMakers.push(() => makeCharacter(
  31676. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31677. {
  31678. front: {
  31679. height: math.unit(1.8, "meters"),
  31680. weight: math.unit(85, "kg"),
  31681. name: "Front",
  31682. image: {
  31683. source: "./media/characters/azteck/front.svg",
  31684. extra: 2815 / 2625,
  31685. bottom: 89 / 2904
  31686. }
  31687. },
  31688. back: {
  31689. height: math.unit(1.8, "meters"),
  31690. weight: math.unit(85, "kg"),
  31691. name: "Back",
  31692. image: {
  31693. source: "./media/characters/azteck/back.svg",
  31694. extra: 2856 / 2648,
  31695. bottom: 85 / 2941
  31696. }
  31697. },
  31698. frontDressed: {
  31699. height: math.unit(1.8, "meters"),
  31700. weight: math.unit(85, "kg"),
  31701. name: "Front (Dressed)",
  31702. image: {
  31703. source: "./media/characters/azteck/front-dressed.svg",
  31704. extra: 2147 / 2003,
  31705. bottom: 68 / 2215
  31706. }
  31707. },
  31708. head: {
  31709. height: math.unit(0.47, "meters"),
  31710. weight: math.unit(85, "kg"),
  31711. name: "Head",
  31712. image: {
  31713. source: "./media/characters/azteck/head.svg"
  31714. }
  31715. },
  31716. },
  31717. [
  31718. {
  31719. name: "Bite sized",
  31720. height: math.unit(16, "cm")
  31721. },
  31722. {
  31723. name: "Normal",
  31724. height: math.unit(1.8, "meters"),
  31725. default: true
  31726. },
  31727. ]
  31728. ))
  31729. characterMakers.push(() => makeCharacter(
  31730. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31731. {
  31732. front: {
  31733. height: math.unit(6, "feet"),
  31734. weight: math.unit(150, "lb"),
  31735. name: "Front",
  31736. image: {
  31737. source: "./media/characters/pidge/front.svg",
  31738. extra: 1936/1820,
  31739. bottom: 0/1936
  31740. }
  31741. },
  31742. back: {
  31743. height: math.unit(6, "feet"),
  31744. weight: math.unit(150, "lb"),
  31745. name: "Back",
  31746. image: {
  31747. source: "./media/characters/pidge/back.svg",
  31748. extra: 1938/1843,
  31749. bottom: 0/1938
  31750. }
  31751. },
  31752. casual: {
  31753. height: math.unit(6, "feet"),
  31754. weight: math.unit(150, "lb"),
  31755. name: "Casual",
  31756. image: {
  31757. source: "./media/characters/pidge/casual.svg",
  31758. extra: 1936/1820,
  31759. bottom: 0/1936
  31760. }
  31761. },
  31762. tech: {
  31763. height: math.unit(6, "feet"),
  31764. weight: math.unit(150, "lb"),
  31765. name: "Tech",
  31766. image: {
  31767. source: "./media/characters/pidge/tech.svg",
  31768. extra: 1802/1682,
  31769. bottom: 0/1802
  31770. }
  31771. },
  31772. head: {
  31773. height: math.unit(1.61, "feet"),
  31774. name: "Head",
  31775. image: {
  31776. source: "./media/characters/pidge/head.svg"
  31777. }
  31778. },
  31779. collar: {
  31780. height: math.unit(0.82, "feet"),
  31781. name: "Collar",
  31782. image: {
  31783. source: "./media/characters/pidge/collar.svg"
  31784. }
  31785. },
  31786. },
  31787. [
  31788. {
  31789. name: "Macro",
  31790. height: math.unit(2, "mile"),
  31791. default: true
  31792. },
  31793. {
  31794. name: "PUPPY",
  31795. height: math.unit(20, "miles")
  31796. },
  31797. ]
  31798. ))
  31799. characterMakers.push(() => makeCharacter(
  31800. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31801. {
  31802. front: {
  31803. height: math.unit(6, "feet"),
  31804. weight: math.unit(150, "lb"),
  31805. name: "Front",
  31806. image: {
  31807. source: "./media/characters/en/front.svg",
  31808. extra: 1697 / 1563,
  31809. bottom: 103 / 1800
  31810. }
  31811. },
  31812. back: {
  31813. height: math.unit(6, "feet"),
  31814. weight: math.unit(150, "lb"),
  31815. name: "Back",
  31816. image: {
  31817. source: "./media/characters/en/back.svg",
  31818. extra: 1700 / 1570,
  31819. bottom: 51 / 1751
  31820. }
  31821. },
  31822. frontDressed: {
  31823. height: math.unit(6, "feet"),
  31824. weight: math.unit(150, "lb"),
  31825. name: "Front (Dressed)",
  31826. image: {
  31827. source: "./media/characters/en/front-dressed.svg",
  31828. extra: 1697 / 1563,
  31829. bottom: 103 / 1800
  31830. }
  31831. },
  31832. backDressed: {
  31833. height: math.unit(6, "feet"),
  31834. weight: math.unit(150, "lb"),
  31835. name: "Back (Dressed)",
  31836. image: {
  31837. source: "./media/characters/en/back-dressed.svg",
  31838. extra: 1700 / 1570,
  31839. bottom: 51 / 1751
  31840. }
  31841. },
  31842. },
  31843. [
  31844. {
  31845. name: "Macro",
  31846. height: math.unit(210, "feet"),
  31847. default: true
  31848. },
  31849. ]
  31850. ))
  31851. characterMakers.push(() => makeCharacter(
  31852. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31853. {
  31854. front: {
  31855. height: math.unit(6, "feet"),
  31856. weight: math.unit(150, "lb"),
  31857. name: "Front",
  31858. image: {
  31859. source: "./media/characters/haze-orris/front.svg",
  31860. extra: 3975 / 3525,
  31861. bottom: 137 / 4112
  31862. }
  31863. },
  31864. },
  31865. [
  31866. {
  31867. name: "Micro",
  31868. height: math.unit(150, "mm"),
  31869. default: true
  31870. },
  31871. ]
  31872. ))
  31873. characterMakers.push(() => makeCharacter(
  31874. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31875. {
  31876. front: {
  31877. height: math.unit(6, "feet"),
  31878. weight: math.unit(150, "lb"),
  31879. name: "Front",
  31880. image: {
  31881. source: "./media/characters/casselene-yaro/front.svg",
  31882. extra: 4721 / 4541,
  31883. bottom: 82 / 4803
  31884. }
  31885. },
  31886. back: {
  31887. height: math.unit(6, "feet"),
  31888. weight: math.unit(150, "lb"),
  31889. name: "Back",
  31890. image: {
  31891. source: "./media/characters/casselene-yaro/back.svg",
  31892. extra: 4569 / 4377,
  31893. bottom: 69 / 4638
  31894. }
  31895. },
  31896. dressed: {
  31897. height: math.unit(6, "feet"),
  31898. weight: math.unit(150, "lb"),
  31899. name: "Dressed",
  31900. image: {
  31901. source: "./media/characters/casselene-yaro/dressed.svg",
  31902. extra: 4721 / 4541,
  31903. bottom: 82 / 4803
  31904. }
  31905. },
  31906. maw: {
  31907. height: math.unit(1, "feet"),
  31908. name: "Maw",
  31909. image: {
  31910. source: "./media/characters/casselene-yaro/maw.svg"
  31911. }
  31912. },
  31913. },
  31914. [
  31915. {
  31916. name: "Macro",
  31917. height: math.unit(190, "feet"),
  31918. default: true
  31919. },
  31920. ]
  31921. ))
  31922. characterMakers.push(() => makeCharacter(
  31923. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31924. {
  31925. front: {
  31926. height: math.unit(10, "feet"),
  31927. weight: math.unit(15015, "lb"),
  31928. name: "Front",
  31929. image: {
  31930. source: "./media/characters/platine/front.svg",
  31931. extra: 1741/1650,
  31932. bottom: 84/1825
  31933. }
  31934. },
  31935. side: {
  31936. height: math.unit(10, "feet"),
  31937. weight: math.unit(15015, "lb"),
  31938. name: "Side",
  31939. image: {
  31940. source: "./media/characters/platine/side.svg",
  31941. extra: 1790/1705,
  31942. bottom: 29/1819
  31943. }
  31944. },
  31945. },
  31946. [
  31947. {
  31948. name: "Normal",
  31949. height: math.unit(10, "feet"),
  31950. default: true
  31951. },
  31952. {
  31953. name: "Macro",
  31954. height: math.unit(100, "feet")
  31955. },
  31956. {
  31957. name: "Megamacro",
  31958. height: math.unit(1000, "feet")
  31959. },
  31960. ]
  31961. ))
  31962. characterMakers.push(() => makeCharacter(
  31963. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31964. {
  31965. front: {
  31966. height: math.unit(15 + 5 / 12, "feet"),
  31967. weight: math.unit(4600, "lb"),
  31968. name: "Front",
  31969. image: {
  31970. source: "./media/characters/neapolitan-ananassa/front.svg",
  31971. extra: 2903 / 2736,
  31972. bottom: 0 / 2903
  31973. }
  31974. },
  31975. side: {
  31976. height: math.unit(15 + 5 / 12, "feet"),
  31977. weight: math.unit(4600, "lb"),
  31978. name: "Side",
  31979. image: {
  31980. source: "./media/characters/neapolitan-ananassa/side.svg",
  31981. extra: 2925 / 2719,
  31982. bottom: 0 / 2925
  31983. }
  31984. },
  31985. back: {
  31986. height: math.unit(15 + 5 / 12, "feet"),
  31987. weight: math.unit(4600, "lb"),
  31988. name: "Back",
  31989. image: {
  31990. source: "./media/characters/neapolitan-ananassa/back.svg",
  31991. extra: 2903 / 2736,
  31992. bottom: 0 / 2903
  31993. }
  31994. },
  31995. },
  31996. [
  31997. {
  31998. name: "Normal",
  31999. height: math.unit(15 + 5 / 12, "feet"),
  32000. default: true
  32001. },
  32002. {
  32003. name: "Post-Millenium",
  32004. height: math.unit(35 + 5 / 12, "feet")
  32005. },
  32006. {
  32007. name: "Post-Era",
  32008. height: math.unit(450 + 5 / 12, "feet")
  32009. },
  32010. ]
  32011. ))
  32012. characterMakers.push(() => makeCharacter(
  32013. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32014. {
  32015. front: {
  32016. height: math.unit(300, "meters"),
  32017. weight: math.unit(125000, "tonnes"),
  32018. name: "Front",
  32019. image: {
  32020. source: "./media/characters/pazuzu/front.svg",
  32021. extra: 877 / 794,
  32022. bottom: 47 / 924
  32023. }
  32024. },
  32025. },
  32026. [
  32027. {
  32028. name: "Macro",
  32029. height: math.unit(300, "meters"),
  32030. default: true
  32031. },
  32032. ]
  32033. ))
  32034. characterMakers.push(() => makeCharacter(
  32035. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32036. {
  32037. side: {
  32038. height: math.unit(10 + 7 / 12, "feet"),
  32039. weight: math.unit(2.5, "tons"),
  32040. name: "Side",
  32041. image: {
  32042. source: "./media/characters/aasha/side.svg",
  32043. extra: 1345 / 1245,
  32044. bottom: 111 / 1456
  32045. }
  32046. },
  32047. back: {
  32048. height: math.unit(10 + 7 / 12, "feet"),
  32049. weight: math.unit(2.5, "tons"),
  32050. name: "Back",
  32051. image: {
  32052. source: "./media/characters/aasha/back.svg",
  32053. extra: 1133 / 1057,
  32054. bottom: 257 / 1390
  32055. }
  32056. },
  32057. },
  32058. [
  32059. {
  32060. name: "Normal",
  32061. height: math.unit(10 + 7 / 12, "feet"),
  32062. default: true
  32063. },
  32064. ]
  32065. ))
  32066. characterMakers.push(() => makeCharacter(
  32067. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32068. {
  32069. front: {
  32070. height: math.unit(6 + 3 / 12, "feet"),
  32071. name: "Front",
  32072. image: {
  32073. source: "./media/characters/nevan/front.svg",
  32074. extra: 704 / 704,
  32075. bottom: 28 / 732
  32076. }
  32077. },
  32078. back: {
  32079. height: math.unit(6 + 3 / 12, "feet"),
  32080. name: "Back",
  32081. image: {
  32082. source: "./media/characters/nevan/back.svg",
  32083. extra: 714 / 714,
  32084. bottom: 21 / 735
  32085. }
  32086. },
  32087. frontFlaccid: {
  32088. height: math.unit(6 + 3 / 12, "feet"),
  32089. name: "Front (Flaccid)",
  32090. image: {
  32091. source: "./media/characters/nevan/front-flaccid.svg",
  32092. extra: 704 / 704,
  32093. bottom: 28 / 732
  32094. }
  32095. },
  32096. frontErect: {
  32097. height: math.unit(6 + 3 / 12, "feet"),
  32098. name: "Front (Erect)",
  32099. image: {
  32100. source: "./media/characters/nevan/front-erect.svg",
  32101. extra: 704 / 704,
  32102. bottom: 28 / 732
  32103. }
  32104. },
  32105. backFlaccid: {
  32106. height: math.unit(6 + 3 / 12, "feet"),
  32107. name: "Back (Flaccid)",
  32108. image: {
  32109. source: "./media/characters/nevan/back-flaccid.svg",
  32110. extra: 714 / 714,
  32111. bottom: 21 / 735
  32112. }
  32113. },
  32114. },
  32115. [
  32116. {
  32117. name: "Normal",
  32118. height: math.unit(6 + 3 / 12, "feet"),
  32119. default: true
  32120. },
  32121. ]
  32122. ))
  32123. characterMakers.push(() => makeCharacter(
  32124. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32125. {
  32126. front: {
  32127. height: math.unit(4, "feet"),
  32128. name: "Front",
  32129. image: {
  32130. source: "./media/characters/arhan/front.svg",
  32131. extra: 3368 / 3133,
  32132. bottom: 0 / 3368
  32133. }
  32134. },
  32135. side: {
  32136. height: math.unit(4, "feet"),
  32137. name: "Side",
  32138. image: {
  32139. source: "./media/characters/arhan/side.svg",
  32140. extra: 3347 / 3105,
  32141. bottom: 0 / 3347
  32142. }
  32143. },
  32144. tongue: {
  32145. height: math.unit(1.42, "feet"),
  32146. name: "Tongue",
  32147. image: {
  32148. source: "./media/characters/arhan/tongue.svg"
  32149. }
  32150. },
  32151. head: {
  32152. height: math.unit(0.85, "feet"),
  32153. name: "Head",
  32154. image: {
  32155. source: "./media/characters/arhan/head.svg"
  32156. }
  32157. },
  32158. },
  32159. [
  32160. {
  32161. name: "Normal",
  32162. height: math.unit(4, "feet"),
  32163. default: true
  32164. },
  32165. ]
  32166. ))
  32167. characterMakers.push(() => makeCharacter(
  32168. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32169. {
  32170. front: {
  32171. height: math.unit(5 + 7.5 / 12, "feet"),
  32172. weight: math.unit(120, "lb"),
  32173. name: "Front",
  32174. image: {
  32175. source: "./media/characters/digi-duncan/front.svg",
  32176. extra: 330 / 326,
  32177. bottom: 16 / 346
  32178. }
  32179. },
  32180. side: {
  32181. height: math.unit(5 + 7.5 / 12, "feet"),
  32182. weight: math.unit(120, "lb"),
  32183. name: "Side",
  32184. image: {
  32185. source: "./media/characters/digi-duncan/side.svg",
  32186. extra: 341 / 337,
  32187. bottom: 1 / 342
  32188. }
  32189. },
  32190. back: {
  32191. height: math.unit(5 + 7.5 / 12, "feet"),
  32192. weight: math.unit(120, "lb"),
  32193. name: "Back",
  32194. image: {
  32195. source: "./media/characters/digi-duncan/back.svg",
  32196. extra: 330 / 326,
  32197. bottom: 12 / 342
  32198. }
  32199. },
  32200. },
  32201. [
  32202. {
  32203. name: "Speck",
  32204. height: math.unit(0.25, "mm")
  32205. },
  32206. {
  32207. name: "Micro",
  32208. height: math.unit(5, "mm")
  32209. },
  32210. {
  32211. name: "Tiny",
  32212. height: math.unit(0.5, "inches"),
  32213. default: true
  32214. },
  32215. {
  32216. name: "Human",
  32217. height: math.unit(5 + 7.5 / 12, "feet")
  32218. },
  32219. {
  32220. name: "Minigiant",
  32221. height: math.unit(8 + 5.25, "feet")
  32222. },
  32223. {
  32224. name: "Giant",
  32225. height: math.unit(2000, "feet")
  32226. },
  32227. {
  32228. name: "Mega",
  32229. height: math.unit(371.1, "miles")
  32230. },
  32231. ]
  32232. ))
  32233. characterMakers.push(() => makeCharacter(
  32234. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32235. {
  32236. front: {
  32237. height: math.unit(2, "meters"),
  32238. weight: math.unit(350, "kg"),
  32239. name: "Front",
  32240. image: {
  32241. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32242. extra: 898 / 838,
  32243. bottom: 9 / 907
  32244. }
  32245. },
  32246. },
  32247. [
  32248. {
  32249. name: "Micro",
  32250. height: math.unit(8, "meters")
  32251. },
  32252. {
  32253. name: "Normal",
  32254. height: math.unit(50, "meters"),
  32255. default: true
  32256. },
  32257. {
  32258. name: "Macro",
  32259. height: math.unit(500, "meters")
  32260. },
  32261. ]
  32262. ))
  32263. characterMakers.push(() => makeCharacter(
  32264. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32265. {
  32266. front: {
  32267. height: math.unit(6 + 6 / 12, "feet"),
  32268. name: "Front",
  32269. image: {
  32270. source: "./media/characters/khardesh/front.svg",
  32271. extra: 1788/1596,
  32272. bottom: 66/1854
  32273. }
  32274. },
  32275. back: {
  32276. height: math.unit(6 + 6 / 12, "feet"),
  32277. name: "Back",
  32278. image: {
  32279. source: "./media/characters/khardesh/back.svg",
  32280. extra: 1781/1584,
  32281. bottom: 68/1849
  32282. }
  32283. },
  32284. },
  32285. [
  32286. {
  32287. name: "Normal",
  32288. height: math.unit(6 + 6 / 12, "feet"),
  32289. default: true
  32290. },
  32291. {
  32292. name: "Normal+",
  32293. height: math.unit(4, "meters")
  32294. },
  32295. {
  32296. name: "Macro",
  32297. height: math.unit(50, "meters")
  32298. },
  32299. {
  32300. name: "Macro+",
  32301. height: math.unit(100, "meters")
  32302. },
  32303. {
  32304. name: "Megamacro",
  32305. height: math.unit(20, "km")
  32306. },
  32307. ]
  32308. ))
  32309. characterMakers.push(() => makeCharacter(
  32310. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32311. {
  32312. front: {
  32313. height: math.unit(6, "feet"),
  32314. weight: math.unit(150, "lb"),
  32315. name: "Front",
  32316. image: {
  32317. source: "./media/characters/kosho/front.svg",
  32318. extra: 1847 / 1847,
  32319. bottom: 86 / 1933
  32320. }
  32321. },
  32322. },
  32323. [
  32324. {
  32325. name: "Second-stage micro",
  32326. height: math.unit(0.5, "inches")
  32327. },
  32328. {
  32329. name: "First-stage micro",
  32330. height: math.unit(6, "inches")
  32331. },
  32332. {
  32333. name: "Normal",
  32334. height: math.unit(6, "feet"),
  32335. default: true
  32336. },
  32337. {
  32338. name: "First-stage macro",
  32339. height: math.unit(72, "feet")
  32340. },
  32341. {
  32342. name: "Second-stage macro",
  32343. height: math.unit(864, "feet")
  32344. },
  32345. ]
  32346. ))
  32347. characterMakers.push(() => makeCharacter(
  32348. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32349. {
  32350. normal: {
  32351. height: math.unit(4 + 6 / 12, "feet"),
  32352. name: "Normal",
  32353. image: {
  32354. source: "./media/characters/hydra/normal.svg",
  32355. extra: 2833 / 2634,
  32356. bottom: 68 / 2901
  32357. }
  32358. },
  32359. smol: {
  32360. height: math.unit(0.705, "inches"),
  32361. name: "Smol",
  32362. image: {
  32363. source: "./media/characters/hydra/smol.svg",
  32364. extra: 2715 / 2540,
  32365. bottom: 0 / 2715
  32366. }
  32367. },
  32368. },
  32369. [
  32370. {
  32371. name: "Normal",
  32372. height: math.unit(4 + 6 / 12, "feet"),
  32373. default: true
  32374. }
  32375. ]
  32376. ))
  32377. characterMakers.push(() => makeCharacter(
  32378. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32379. {
  32380. front: {
  32381. height: math.unit(0.6, "cm"),
  32382. name: "Front",
  32383. image: {
  32384. source: "./media/characters/daz/front.svg",
  32385. extra: 1682 / 1164,
  32386. bottom: 42 / 1724
  32387. }
  32388. },
  32389. },
  32390. [
  32391. {
  32392. name: "Normal",
  32393. height: math.unit(0.6, "cm"),
  32394. default: true
  32395. },
  32396. ]
  32397. ))
  32398. characterMakers.push(() => makeCharacter(
  32399. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32400. {
  32401. front: {
  32402. height: math.unit(6, "feet"),
  32403. weight: math.unit(235, "lb"),
  32404. name: "Front",
  32405. image: {
  32406. source: "./media/characters/theo-pangolin/front.svg",
  32407. extra: 1996 / 1969,
  32408. bottom: 115 / 2111
  32409. }
  32410. },
  32411. back: {
  32412. height: math.unit(6, "feet"),
  32413. weight: math.unit(235, "lb"),
  32414. name: "Back",
  32415. image: {
  32416. source: "./media/characters/theo-pangolin/back.svg",
  32417. extra: 1979 / 1979,
  32418. bottom: 40 / 2019
  32419. }
  32420. },
  32421. feral: {
  32422. height: math.unit(2, "feet"),
  32423. weight: math.unit(30, "lb"),
  32424. name: "Feral",
  32425. image: {
  32426. source: "./media/characters/theo-pangolin/feral.svg",
  32427. extra: 803 / 791,
  32428. bottom: 181 / 984
  32429. }
  32430. },
  32431. footFive: {
  32432. height: math.unit(1.43, "feet"),
  32433. name: "Foot (Five Toes)",
  32434. image: {
  32435. source: "./media/characters/theo-pangolin/foot-five.svg"
  32436. }
  32437. },
  32438. footFour: {
  32439. height: math.unit(1.43, "feet"),
  32440. name: "Foot (Four Toes)",
  32441. image: {
  32442. source: "./media/characters/theo-pangolin/foot-four.svg"
  32443. }
  32444. },
  32445. handFour: {
  32446. height: math.unit(0.81, "feet"),
  32447. name: "Hand (Four Fingers)",
  32448. image: {
  32449. source: "./media/characters/theo-pangolin/hand-four.svg"
  32450. }
  32451. },
  32452. handThree: {
  32453. height: math.unit(0.81, "feet"),
  32454. name: "Hand (Three Fingers)",
  32455. image: {
  32456. source: "./media/characters/theo-pangolin/hand-three.svg"
  32457. }
  32458. },
  32459. headFront: {
  32460. height: math.unit(1.37, "feet"),
  32461. name: "Head (Front)",
  32462. image: {
  32463. source: "./media/characters/theo-pangolin/head-front.svg"
  32464. }
  32465. },
  32466. headSide: {
  32467. height: math.unit(1.43, "feet"),
  32468. name: "Head (Side)",
  32469. image: {
  32470. source: "./media/characters/theo-pangolin/head-side.svg"
  32471. }
  32472. },
  32473. tongue: {
  32474. height: math.unit(2.29, "feet"),
  32475. name: "Tongue",
  32476. image: {
  32477. source: "./media/characters/theo-pangolin/tongue.svg"
  32478. }
  32479. },
  32480. },
  32481. [
  32482. {
  32483. name: "Normal",
  32484. height: math.unit(6, "feet")
  32485. },
  32486. {
  32487. name: "Macro",
  32488. height: math.unit(400, "feet"),
  32489. default: true
  32490. },
  32491. ]
  32492. ))
  32493. characterMakers.push(() => makeCharacter(
  32494. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32495. {
  32496. front: {
  32497. height: math.unit(6, "inches"),
  32498. weight: math.unit(0.036, "kg"),
  32499. name: "Front",
  32500. image: {
  32501. source: "./media/characters/renée/front.svg",
  32502. extra: 900 / 886,
  32503. bottom: 8 / 908
  32504. }
  32505. },
  32506. },
  32507. [
  32508. {
  32509. name: "Nano",
  32510. height: math.unit(1, "nm")
  32511. },
  32512. {
  32513. name: "Micro",
  32514. height: math.unit(1, "mm")
  32515. },
  32516. {
  32517. name: "Normal",
  32518. height: math.unit(6, "inches")
  32519. },
  32520. {
  32521. name: "Macro",
  32522. height: math.unit(2000, "feet"),
  32523. default: true
  32524. },
  32525. {
  32526. name: "Megamacro",
  32527. height: math.unit(2, "km")
  32528. },
  32529. {
  32530. name: "Gigamacro",
  32531. height: math.unit(2000, "km")
  32532. },
  32533. {
  32534. name: "Teramacro",
  32535. height: math.unit(250000, "km")
  32536. },
  32537. ]
  32538. ))
  32539. characterMakers.push(() => makeCharacter(
  32540. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32541. {
  32542. front: {
  32543. height: math.unit(4, "meters"),
  32544. weight: math.unit(150, "kg"),
  32545. name: "Front",
  32546. image: {
  32547. source: "./media/characters/caledvwlch/front.svg",
  32548. extra: 1757/1537,
  32549. bottom: 31/1788
  32550. }
  32551. },
  32552. side: {
  32553. height: math.unit(4, "meters"),
  32554. weight: math.unit(150, "kg"),
  32555. name: "Side",
  32556. image: {
  32557. source: "./media/characters/caledvwlch/side.svg",
  32558. extra: 1605 / 1536,
  32559. bottom: 31 / 1636
  32560. }
  32561. },
  32562. back: {
  32563. height: math.unit(4, "meters"),
  32564. weight: math.unit(150, "kg"),
  32565. name: "Back",
  32566. image: {
  32567. source: "./media/characters/caledvwlch/back.svg",
  32568. extra: 1635 / 1565,
  32569. bottom: 27 / 1662
  32570. }
  32571. },
  32572. },
  32573. [
  32574. {
  32575. name: "\"Incognito\"",
  32576. height: math.unit(4, "meters")
  32577. },
  32578. {
  32579. name: "Small rampage",
  32580. height: math.unit(600, "meters")
  32581. },
  32582. {
  32583. name: "Mega",
  32584. height: math.unit(30, "km")
  32585. },
  32586. {
  32587. name: "Home-size",
  32588. height: math.unit(50, "km"),
  32589. default: true
  32590. },
  32591. {
  32592. name: "Giga",
  32593. height: math.unit(300, "km")
  32594. },
  32595. {
  32596. name: "Lounging",
  32597. height: math.unit(11000, "km")
  32598. },
  32599. {
  32600. name: "Planet snacking",
  32601. height: math.unit(2000000, "km")
  32602. },
  32603. ]
  32604. ))
  32605. characterMakers.push(() => makeCharacter(
  32606. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32607. {
  32608. front: {
  32609. height: math.unit(6, "feet"),
  32610. weight: math.unit(215, "lb"),
  32611. name: "Front",
  32612. image: {
  32613. source: "./media/characters/sapphire-svell/front.svg",
  32614. extra: 495 / 455,
  32615. bottom: 20 / 515
  32616. }
  32617. },
  32618. back: {
  32619. height: math.unit(6, "feet"),
  32620. weight: math.unit(216, "lb"),
  32621. name: "Back",
  32622. image: {
  32623. source: "./media/characters/sapphire-svell/back.svg",
  32624. extra: 497 / 477,
  32625. bottom: 7 / 504
  32626. }
  32627. },
  32628. maw: {
  32629. height: math.unit(1.57, "feet"),
  32630. name: "Maw",
  32631. image: {
  32632. source: "./media/characters/sapphire-svell/maw.svg"
  32633. }
  32634. },
  32635. foot: {
  32636. height: math.unit(1.07, "feet"),
  32637. name: "Foot",
  32638. image: {
  32639. source: "./media/characters/sapphire-svell/foot.svg"
  32640. }
  32641. },
  32642. toering: {
  32643. height: math.unit(1.7, "inch"),
  32644. name: "Toering",
  32645. image: {
  32646. source: "./media/characters/sapphire-svell/toering.svg"
  32647. }
  32648. },
  32649. },
  32650. [
  32651. {
  32652. name: "Normal",
  32653. height: math.unit(300, "feet"),
  32654. default: true
  32655. },
  32656. {
  32657. name: "Augmented",
  32658. height: math.unit(1250, "feet")
  32659. },
  32660. {
  32661. name: "Unleashed",
  32662. height: math.unit(3000, "feet")
  32663. },
  32664. ]
  32665. ))
  32666. characterMakers.push(() => makeCharacter(
  32667. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32668. {
  32669. side: {
  32670. height: math.unit(2 + 3 / 12, "feet"),
  32671. weight: math.unit(110, "lb"),
  32672. name: "Side",
  32673. image: {
  32674. source: "./media/characters/glitch-flux/side.svg",
  32675. extra: 997 / 805,
  32676. bottom: 20 / 1017
  32677. }
  32678. },
  32679. },
  32680. [
  32681. {
  32682. name: "Normal",
  32683. height: math.unit(2 + 3 / 12, "feet"),
  32684. default: true
  32685. },
  32686. ]
  32687. ))
  32688. characterMakers.push(() => makeCharacter(
  32689. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32690. {
  32691. front: {
  32692. height: math.unit(4, "meters"),
  32693. name: "Front",
  32694. image: {
  32695. source: "./media/characters/mid/front.svg",
  32696. extra: 507 / 476,
  32697. bottom: 17 / 524
  32698. }
  32699. },
  32700. back: {
  32701. height: math.unit(4, "meters"),
  32702. name: "Back",
  32703. image: {
  32704. source: "./media/characters/mid/back.svg",
  32705. extra: 519 / 487,
  32706. bottom: 7 / 526
  32707. }
  32708. },
  32709. stuck: {
  32710. height: math.unit(2.2, "meters"),
  32711. name: "Stuck",
  32712. image: {
  32713. source: "./media/characters/mid/stuck.svg",
  32714. extra: 1951 / 1869,
  32715. bottom: 88 / 2039
  32716. }
  32717. }
  32718. },
  32719. [
  32720. {
  32721. name: "Normal",
  32722. height: math.unit(4, "meters"),
  32723. default: true
  32724. },
  32725. {
  32726. name: "Big",
  32727. height: math.unit(10, "meters")
  32728. },
  32729. {
  32730. name: "Macro",
  32731. height: math.unit(800, "meters")
  32732. },
  32733. {
  32734. name: "Megamacro",
  32735. height: math.unit(100, "km")
  32736. },
  32737. {
  32738. name: "Overgrown",
  32739. height: math.unit(1, "parsec")
  32740. },
  32741. ]
  32742. ))
  32743. characterMakers.push(() => makeCharacter(
  32744. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32745. {
  32746. front: {
  32747. height: math.unit(2.5, "meters"),
  32748. weight: math.unit(225, "kg"),
  32749. name: "Front",
  32750. image: {
  32751. source: "./media/characters/iris/front.svg",
  32752. extra: 3348 / 3251,
  32753. bottom: 205 / 3553
  32754. }
  32755. },
  32756. maw: {
  32757. height: math.unit(0.56, "meter"),
  32758. name: "Maw",
  32759. image: {
  32760. source: "./media/characters/iris/maw.svg"
  32761. }
  32762. },
  32763. },
  32764. [
  32765. {
  32766. name: "Mewter cat",
  32767. height: math.unit(1.2, "meters")
  32768. },
  32769. {
  32770. name: "Normal",
  32771. height: math.unit(2.5, "meters"),
  32772. default: true
  32773. },
  32774. {
  32775. name: "Minimacro",
  32776. height: math.unit(18, "feet")
  32777. },
  32778. {
  32779. name: "Macro",
  32780. height: math.unit(140, "feet")
  32781. },
  32782. {
  32783. name: "Macro+",
  32784. height: math.unit(180, "meters")
  32785. },
  32786. {
  32787. name: "Megamacro",
  32788. height: math.unit(2746, "meters")
  32789. },
  32790. ]
  32791. ))
  32792. characterMakers.push(() => makeCharacter(
  32793. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32794. {
  32795. front: {
  32796. height: math.unit(6, "feet"),
  32797. weight: math.unit(135, "lb"),
  32798. name: "Front",
  32799. image: {
  32800. source: "./media/characters/axel/front.svg",
  32801. extra: 908 / 908,
  32802. bottom: 58 / 966
  32803. }
  32804. },
  32805. side: {
  32806. height: math.unit(6, "feet"),
  32807. weight: math.unit(135, "lb"),
  32808. name: "Side",
  32809. image: {
  32810. source: "./media/characters/axel/side.svg",
  32811. extra: 958 / 958,
  32812. bottom: 11 / 969
  32813. }
  32814. },
  32815. back: {
  32816. height: math.unit(6, "feet"),
  32817. weight: math.unit(135, "lb"),
  32818. name: "Back",
  32819. image: {
  32820. source: "./media/characters/axel/back.svg",
  32821. extra: 887 / 887,
  32822. bottom: 34 / 921
  32823. }
  32824. },
  32825. head: {
  32826. height: math.unit(1.07, "feet"),
  32827. name: "Head",
  32828. image: {
  32829. source: "./media/characters/axel/head.svg"
  32830. }
  32831. },
  32832. beak: {
  32833. height: math.unit(1.4, "feet"),
  32834. name: "Beak",
  32835. image: {
  32836. source: "./media/characters/axel/beak.svg"
  32837. }
  32838. },
  32839. beakSide: {
  32840. height: math.unit(1.4, "feet"),
  32841. name: "Beak Side",
  32842. image: {
  32843. source: "./media/characters/axel/beak-side.svg"
  32844. }
  32845. },
  32846. sheath: {
  32847. height: math.unit(0.5, "feet"),
  32848. name: "Sheath",
  32849. image: {
  32850. source: "./media/characters/axel/sheath.svg"
  32851. }
  32852. },
  32853. dick: {
  32854. height: math.unit(0.98, "feet"),
  32855. name: "Dick",
  32856. image: {
  32857. source: "./media/characters/axel/dick.svg"
  32858. }
  32859. },
  32860. },
  32861. [
  32862. {
  32863. name: "Macro",
  32864. height: math.unit(68, "meters"),
  32865. default: true
  32866. },
  32867. ]
  32868. ))
  32869. characterMakers.push(() => makeCharacter(
  32870. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32871. {
  32872. front: {
  32873. height: math.unit(3.5, "meters"),
  32874. weight: math.unit(1200, "kg"),
  32875. name: "Front",
  32876. image: {
  32877. source: "./media/characters/joanna/front.svg",
  32878. extra: 1596 / 1488,
  32879. bottom: 29 / 1625
  32880. }
  32881. },
  32882. back: {
  32883. height: math.unit(3.5, "meters"),
  32884. weight: math.unit(1200, "kg"),
  32885. name: "Back",
  32886. image: {
  32887. source: "./media/characters/joanna/back.svg",
  32888. extra: 1594 / 1495,
  32889. bottom: 26 / 1620
  32890. }
  32891. },
  32892. frontShorts: {
  32893. height: math.unit(3.5, "meters"),
  32894. weight: math.unit(1200, "kg"),
  32895. name: "Front (Shorts)",
  32896. image: {
  32897. source: "./media/characters/joanna/front-shorts.svg",
  32898. extra: 1596 / 1488,
  32899. bottom: 29 / 1625
  32900. }
  32901. },
  32902. frontBiker: {
  32903. height: math.unit(3.5, "meters"),
  32904. weight: math.unit(1200, "kg"),
  32905. name: "Front (Biker)",
  32906. image: {
  32907. source: "./media/characters/joanna/front-biker.svg",
  32908. extra: 1596 / 1488,
  32909. bottom: 29 / 1625
  32910. }
  32911. },
  32912. backBiker: {
  32913. height: math.unit(3.5, "meters"),
  32914. weight: math.unit(1200, "kg"),
  32915. name: "Back (Biker)",
  32916. image: {
  32917. source: "./media/characters/joanna/back-biker.svg",
  32918. extra: 1594 / 1495,
  32919. bottom: 88 / 1682
  32920. }
  32921. },
  32922. bikeLeft: {
  32923. height: math.unit(2.4, "meters"),
  32924. weight: math.unit(1600, "kg"),
  32925. name: "Bike (Left)",
  32926. image: {
  32927. source: "./media/characters/joanna/bike-left.svg",
  32928. extra: 720 / 720,
  32929. bottom: 8 / 728
  32930. }
  32931. },
  32932. bikeRight: {
  32933. height: math.unit(2.4, "meters"),
  32934. weight: math.unit(1600, "kg"),
  32935. name: "Bike (Right)",
  32936. image: {
  32937. source: "./media/characters/joanna/bike-right.svg",
  32938. extra: 720 / 720,
  32939. bottom: 8 / 728
  32940. }
  32941. },
  32942. },
  32943. [
  32944. {
  32945. name: "Incognito",
  32946. height: math.unit(3.5, "meters")
  32947. },
  32948. {
  32949. name: "Casual Big",
  32950. height: math.unit(200, "meters")
  32951. },
  32952. {
  32953. name: "Macro",
  32954. height: math.unit(600, "meters")
  32955. },
  32956. {
  32957. name: "Original",
  32958. height: math.unit(20, "km"),
  32959. default: true
  32960. },
  32961. {
  32962. name: "Giga",
  32963. height: math.unit(400, "km")
  32964. },
  32965. {
  32966. name: "Lounging",
  32967. height: math.unit(1500, "km")
  32968. },
  32969. {
  32970. name: "Planetary",
  32971. height: math.unit(200000, "km")
  32972. },
  32973. ]
  32974. ))
  32975. characterMakers.push(() => makeCharacter(
  32976. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32977. {
  32978. front: {
  32979. height: math.unit(6, "feet"),
  32980. weight: math.unit(150, "lb"),
  32981. name: "Front",
  32982. image: {
  32983. source: "./media/characters/hugo-sigil/front.svg",
  32984. extra: 522 / 500,
  32985. bottom: 2 / 524
  32986. }
  32987. },
  32988. back: {
  32989. height: math.unit(6, "feet"),
  32990. weight: math.unit(150, "lb"),
  32991. name: "Back",
  32992. image: {
  32993. source: "./media/characters/hugo-sigil/back.svg",
  32994. extra: 519 / 495,
  32995. bottom: 5 / 524
  32996. }
  32997. },
  32998. maw: {
  32999. height: math.unit(1.4, "feet"),
  33000. weight: math.unit(150, "lb"),
  33001. name: "Maw",
  33002. image: {
  33003. source: "./media/characters/hugo-sigil/maw.svg"
  33004. }
  33005. },
  33006. feet: {
  33007. height: math.unit(1.56, "feet"),
  33008. weight: math.unit(150, "lb"),
  33009. name: "Feet",
  33010. image: {
  33011. source: "./media/characters/hugo-sigil/feet.svg",
  33012. extra: 177 / 177,
  33013. bottom: 12 / 189
  33014. }
  33015. },
  33016. },
  33017. [
  33018. {
  33019. name: "Normal",
  33020. height: math.unit(6, "feet")
  33021. },
  33022. {
  33023. name: "Macro",
  33024. height: math.unit(200, "feet"),
  33025. default: true
  33026. },
  33027. ]
  33028. ))
  33029. characterMakers.push(() => makeCharacter(
  33030. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33031. {
  33032. front: {
  33033. height: math.unit(6, "feet"),
  33034. weight: math.unit(150, "lb"),
  33035. name: "Front",
  33036. image: {
  33037. source: "./media/characters/peri/front.svg",
  33038. extra: 2354 / 2233,
  33039. bottom: 49 / 2403
  33040. }
  33041. },
  33042. },
  33043. [
  33044. {
  33045. name: "Really Small",
  33046. height: math.unit(1, "nm")
  33047. },
  33048. {
  33049. name: "Micro",
  33050. height: math.unit(4, "inches")
  33051. },
  33052. {
  33053. name: "Normal",
  33054. height: math.unit(7, "inches"),
  33055. default: true
  33056. },
  33057. {
  33058. name: "Macro",
  33059. height: math.unit(400, "feet")
  33060. },
  33061. {
  33062. name: "Megamacro",
  33063. height: math.unit(100, "miles")
  33064. },
  33065. ]
  33066. ))
  33067. characterMakers.push(() => makeCharacter(
  33068. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33069. {
  33070. frontSlim: {
  33071. height: math.unit(7, "feet"),
  33072. name: "Front (Slim)",
  33073. image: {
  33074. source: "./media/characters/issilora/front-slim.svg",
  33075. extra: 529 / 449,
  33076. bottom: 53 / 582
  33077. }
  33078. },
  33079. sideSlim: {
  33080. height: math.unit(7, "feet"),
  33081. name: "Side (Slim)",
  33082. image: {
  33083. source: "./media/characters/issilora/side-slim.svg",
  33084. extra: 570 / 480,
  33085. bottom: 30 / 600
  33086. }
  33087. },
  33088. backSlim: {
  33089. height: math.unit(7, "feet"),
  33090. name: "Back (Slim)",
  33091. image: {
  33092. source: "./media/characters/issilora/back-slim.svg",
  33093. extra: 537 / 455,
  33094. bottom: 46 / 583
  33095. }
  33096. },
  33097. frontBuff: {
  33098. height: math.unit(7, "feet"),
  33099. name: "Front (Buff)",
  33100. image: {
  33101. source: "./media/characters/issilora/front-buff.svg",
  33102. extra: 2310 / 2035,
  33103. bottom: 335 / 2645
  33104. }
  33105. },
  33106. head: {
  33107. height: math.unit(1.94, "feet"),
  33108. name: "Head",
  33109. image: {
  33110. source: "./media/characters/issilora/head.svg"
  33111. }
  33112. },
  33113. },
  33114. [
  33115. {
  33116. name: "Minimum",
  33117. height: math.unit(7, "feet")
  33118. },
  33119. {
  33120. name: "Comfortable",
  33121. height: math.unit(17, "feet")
  33122. },
  33123. {
  33124. name: "Fun Size",
  33125. height: math.unit(47, "feet")
  33126. },
  33127. {
  33128. name: "Natural Macro",
  33129. height: math.unit(137, "feet"),
  33130. default: true
  33131. },
  33132. {
  33133. name: "Maximum Kaiju",
  33134. height: math.unit(397, "feet")
  33135. },
  33136. ]
  33137. ))
  33138. characterMakers.push(() => makeCharacter(
  33139. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33140. {
  33141. front: {
  33142. height: math.unit(50 + 9/12, "feet"),
  33143. weight: math.unit(32.8, "tons"),
  33144. name: "Front",
  33145. image: {
  33146. source: "./media/characters/irb'iiritaahn/front.svg",
  33147. extra: 1878/1826,
  33148. bottom: 326/2204
  33149. }
  33150. },
  33151. back: {
  33152. height: math.unit(50 + 9/12, "feet"),
  33153. weight: math.unit(32.8, "tons"),
  33154. name: "Back",
  33155. image: {
  33156. source: "./media/characters/irb'iiritaahn/back.svg",
  33157. extra: 2052/2018,
  33158. bottom: 152/2204
  33159. }
  33160. },
  33161. head: {
  33162. height: math.unit(12.86, "feet"),
  33163. name: "Head",
  33164. image: {
  33165. source: "./media/characters/irb'iiritaahn/head.svg"
  33166. }
  33167. },
  33168. maw: {
  33169. height: math.unit(9.66, "feet"),
  33170. name: "Maw",
  33171. image: {
  33172. source: "./media/characters/irb'iiritaahn/maw.svg"
  33173. }
  33174. },
  33175. frontDick: {
  33176. height: math.unit(8.78461, "feet"),
  33177. name: "Front Dick",
  33178. image: {
  33179. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33180. }
  33181. },
  33182. rearDick: {
  33183. height: math.unit(8.78461, "feet"),
  33184. name: "Rear Dick",
  33185. image: {
  33186. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33187. }
  33188. },
  33189. rearDickUnfolded: {
  33190. height: math.unit(8.78, "feet"),
  33191. name: "Rear Dick (Unfolded)",
  33192. image: {
  33193. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33194. }
  33195. },
  33196. wings: {
  33197. height: math.unit(43, "feet"),
  33198. name: "Wings",
  33199. image: {
  33200. source: "./media/characters/irb'iiritaahn/wings.svg"
  33201. }
  33202. },
  33203. },
  33204. [
  33205. {
  33206. name: "Macro",
  33207. height: math.unit(50 + 9/12, "feet"),
  33208. default: true
  33209. },
  33210. ]
  33211. ))
  33212. characterMakers.push(() => makeCharacter(
  33213. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33214. {
  33215. front: {
  33216. height: math.unit(205, "cm"),
  33217. weight: math.unit(102, "kg"),
  33218. name: "Front",
  33219. image: {
  33220. source: "./media/characters/irbisgreif/front.svg",
  33221. extra: 785/706,
  33222. bottom: 13/798
  33223. }
  33224. },
  33225. back: {
  33226. height: math.unit(205, "cm"),
  33227. weight: math.unit(102, "kg"),
  33228. name: "Back",
  33229. image: {
  33230. source: "./media/characters/irbisgreif/back.svg",
  33231. extra: 713/701,
  33232. bottom: 26/739
  33233. }
  33234. },
  33235. frontDressed: {
  33236. height: math.unit(216, "cm"),
  33237. weight: math.unit(102, "kg"),
  33238. name: "Front-dressed",
  33239. image: {
  33240. source: "./media/characters/irbisgreif/front-dressed.svg",
  33241. extra: 902/776,
  33242. bottom: 14/916
  33243. }
  33244. },
  33245. sideDressed: {
  33246. height: math.unit(195, "cm"),
  33247. weight: math.unit(102, "kg"),
  33248. name: "Side-dressed",
  33249. image: {
  33250. source: "./media/characters/irbisgreif/side-dressed.svg",
  33251. extra: 788/688,
  33252. bottom: 21/809
  33253. }
  33254. },
  33255. backDressed: {
  33256. height: math.unit(216, "cm"),
  33257. weight: math.unit(102, "kg"),
  33258. name: "Back-dressed",
  33259. image: {
  33260. source: "./media/characters/irbisgreif/back-dressed.svg",
  33261. extra: 901/783,
  33262. bottom: 10/911
  33263. }
  33264. },
  33265. dick: {
  33266. height: math.unit(0.49, "feet"),
  33267. name: "Dick",
  33268. image: {
  33269. source: "./media/characters/irbisgreif/dick.svg"
  33270. }
  33271. },
  33272. wingTop: {
  33273. height: math.unit(1.93 , "feet"),
  33274. name: "Wing-top",
  33275. image: {
  33276. source: "./media/characters/irbisgreif/wing-top.svg"
  33277. }
  33278. },
  33279. wingBottom: {
  33280. height: math.unit(1.93 , "feet"),
  33281. name: "Wing-bottom",
  33282. image: {
  33283. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33284. }
  33285. },
  33286. },
  33287. [
  33288. {
  33289. name: "Normal",
  33290. height: math.unit(216, "cm"),
  33291. default: true
  33292. },
  33293. ]
  33294. ))
  33295. characterMakers.push(() => makeCharacter(
  33296. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33297. {
  33298. front: {
  33299. height: math.unit(6, "feet"),
  33300. weight: math.unit(150, "lb"),
  33301. name: "Front",
  33302. image: {
  33303. source: "./media/characters/pride/front.svg",
  33304. extra: 1299/1230,
  33305. bottom: 18/1317
  33306. }
  33307. },
  33308. },
  33309. [
  33310. {
  33311. name: "Normal",
  33312. height: math.unit(7, "feet")
  33313. },
  33314. {
  33315. name: "Mini-macro",
  33316. height: math.unit(11, "feet")
  33317. },
  33318. {
  33319. name: "Macro",
  33320. height: math.unit(15, "meters"),
  33321. default: true
  33322. },
  33323. {
  33324. name: "Macro+",
  33325. height: math.unit(40, "meters")
  33326. },
  33327. ]
  33328. ))
  33329. characterMakers.push(() => makeCharacter(
  33330. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33331. {
  33332. front: {
  33333. height: math.unit(4 + 2 / 12, "feet"),
  33334. weight: math.unit(95, "lb"),
  33335. name: "Front",
  33336. image: {
  33337. source: "./media/characters/vaelophis-nyx/front.svg",
  33338. extra: 2532/2330,
  33339. bottom: 0/2532
  33340. }
  33341. },
  33342. back: {
  33343. height: math.unit(4 + 2 / 12, "feet"),
  33344. weight: math.unit(95, "lb"),
  33345. name: "Back",
  33346. image: {
  33347. source: "./media/characters/vaelophis-nyx/back.svg",
  33348. extra: 2484/2361,
  33349. bottom: 0/2484
  33350. }
  33351. },
  33352. feralSide: {
  33353. height: math.unit(2 + 1/12, "feet"),
  33354. weight: math.unit(20, "lb"),
  33355. name: "Feral (Side)",
  33356. image: {
  33357. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33358. extra: 1721/1581,
  33359. bottom: 70/1791
  33360. }
  33361. },
  33362. feralLazing: {
  33363. height: math.unit(1.08, "feet"),
  33364. weight: math.unit(20, "lb"),
  33365. name: "Feral (Lazing)",
  33366. image: {
  33367. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33368. extra: 822/822,
  33369. bottom: 248/1070
  33370. }
  33371. },
  33372. ear: {
  33373. height: math.unit(0.416, "feet"),
  33374. name: "Ear",
  33375. image: {
  33376. source: "./media/characters/vaelophis-nyx/ear.svg"
  33377. }
  33378. },
  33379. eye: {
  33380. height: math.unit(0.0748, "feet"),
  33381. name: "Eye",
  33382. image: {
  33383. source: "./media/characters/vaelophis-nyx/eye.svg"
  33384. }
  33385. },
  33386. mouth: {
  33387. height: math.unit(0.378, "feet"),
  33388. name: "Mouth",
  33389. image: {
  33390. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33391. }
  33392. },
  33393. spade: {
  33394. height: math.unit(0.55, "feet"),
  33395. name: "Spade",
  33396. image: {
  33397. source: "./media/characters/vaelophis-nyx/spade.svg"
  33398. }
  33399. },
  33400. },
  33401. [
  33402. {
  33403. name: "Normal",
  33404. height: math.unit(4 + 2/12, "feet"),
  33405. default: true
  33406. },
  33407. ]
  33408. ))
  33409. characterMakers.push(() => makeCharacter(
  33410. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33411. {
  33412. front: {
  33413. height: math.unit(7, "feet"),
  33414. weight: math.unit(231, "lb"),
  33415. name: "Front",
  33416. image: {
  33417. source: "./media/characters/flux/front.svg",
  33418. extra: 919/871,
  33419. bottom: 0/919
  33420. }
  33421. },
  33422. back: {
  33423. height: math.unit(7, "feet"),
  33424. weight: math.unit(231, "lb"),
  33425. name: "Back",
  33426. image: {
  33427. source: "./media/characters/flux/back.svg",
  33428. extra: 1040/992,
  33429. bottom: 0/1040
  33430. }
  33431. },
  33432. frontDressed: {
  33433. height: math.unit(7, "feet"),
  33434. weight: math.unit(231, "lb"),
  33435. name: "Front (Dressed)",
  33436. image: {
  33437. source: "./media/characters/flux/front-dressed.svg",
  33438. extra: 919/871,
  33439. bottom: 0/919
  33440. }
  33441. },
  33442. feralSide: {
  33443. height: math.unit(5, "feet"),
  33444. weight: math.unit(150, "lb"),
  33445. name: "Feral (Side)",
  33446. image: {
  33447. source: "./media/characters/flux/feral-side.svg",
  33448. extra: 598/528,
  33449. bottom: 28/626
  33450. }
  33451. },
  33452. head: {
  33453. height: math.unit(1.585, "feet"),
  33454. name: "Head",
  33455. image: {
  33456. source: "./media/characters/flux/head.svg"
  33457. }
  33458. },
  33459. headSide: {
  33460. height: math.unit(1.74, "feet"),
  33461. name: "Head (Side)",
  33462. image: {
  33463. source: "./media/characters/flux/head-side.svg"
  33464. }
  33465. },
  33466. headSideFire: {
  33467. height: math.unit(1.76, "feet"),
  33468. name: "Head (Side, Fire)",
  33469. image: {
  33470. source: "./media/characters/flux/head-side-fire.svg"
  33471. }
  33472. },
  33473. },
  33474. [
  33475. {
  33476. name: "Normal",
  33477. height: math.unit(7, "feet"),
  33478. default: true
  33479. },
  33480. ]
  33481. ))
  33482. characterMakers.push(() => makeCharacter(
  33483. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33484. {
  33485. front: {
  33486. height: math.unit(9, "feet"),
  33487. weight: math.unit(1012, "lb"),
  33488. name: "Front",
  33489. image: {
  33490. source: "./media/characters/ulfra-lupae/front.svg",
  33491. extra: 1083/1011,
  33492. bottom: 67/1150
  33493. }
  33494. },
  33495. },
  33496. [
  33497. {
  33498. name: "Micro",
  33499. height: math.unit(6, "inches")
  33500. },
  33501. {
  33502. name: "Socializing",
  33503. height: math.unit(6 + 5/12, "feet")
  33504. },
  33505. {
  33506. name: "Normal",
  33507. height: math.unit(9, "feet"),
  33508. default: true
  33509. },
  33510. {
  33511. name: "Macro",
  33512. height: math.unit(150, "feet")
  33513. },
  33514. ]
  33515. ))
  33516. characterMakers.push(() => makeCharacter(
  33517. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33518. {
  33519. front: {
  33520. height: math.unit(5 + 2/12, "feet"),
  33521. weight: math.unit(120, "lb"),
  33522. name: "Front",
  33523. image: {
  33524. source: "./media/characters/timber/front.svg",
  33525. extra: 2814/2705,
  33526. bottom: 181/2995
  33527. }
  33528. },
  33529. },
  33530. [
  33531. {
  33532. name: "Normal",
  33533. height: math.unit(5 + 2/12, "feet"),
  33534. default: true
  33535. },
  33536. ]
  33537. ))
  33538. characterMakers.push(() => makeCharacter(
  33539. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33540. {
  33541. front: {
  33542. height: math.unit(9, "feet"),
  33543. name: "Front",
  33544. image: {
  33545. source: "./media/characters/nicki/front.svg",
  33546. extra: 1240/990,
  33547. bottom: 45/1285
  33548. },
  33549. form: "anthro",
  33550. default: true
  33551. },
  33552. side: {
  33553. height: math.unit(9, "feet"),
  33554. name: "Side",
  33555. image: {
  33556. source: "./media/characters/nicki/side.svg",
  33557. extra: 1047/973,
  33558. bottom: 61/1108
  33559. },
  33560. form: "anthro"
  33561. },
  33562. back: {
  33563. height: math.unit(9, "feet"),
  33564. name: "Back",
  33565. image: {
  33566. source: "./media/characters/nicki/back.svg",
  33567. extra: 1006/965,
  33568. bottom: 39/1045
  33569. },
  33570. form: "anthro"
  33571. },
  33572. taur: {
  33573. height: math.unit(15, "feet"),
  33574. name: "Taur",
  33575. image: {
  33576. source: "./media/characters/nicki/taur.svg",
  33577. extra: 1592/1347,
  33578. bottom: 0/1592
  33579. },
  33580. form: "taur",
  33581. default: true
  33582. },
  33583. },
  33584. [
  33585. {
  33586. name: "Normal",
  33587. height: math.unit(9, "feet"),
  33588. form: "anthro",
  33589. default: true
  33590. },
  33591. {
  33592. name: "Normal",
  33593. height: math.unit(15, "feet"),
  33594. form: "taur",
  33595. default: true
  33596. }
  33597. ],
  33598. {
  33599. "anthro": {
  33600. name: "Anthro",
  33601. default: true
  33602. },
  33603. "taur": {
  33604. name: "Taur"
  33605. }
  33606. }
  33607. ))
  33608. characterMakers.push(() => makeCharacter(
  33609. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33610. {
  33611. front: {
  33612. height: math.unit(7 + 10/12, "feet"),
  33613. weight: math.unit(3.5, "tons"),
  33614. name: "Front",
  33615. image: {
  33616. source: "./media/characters/lee/front.svg",
  33617. extra: 1773/1615,
  33618. bottom: 86/1859
  33619. }
  33620. },
  33621. hand: {
  33622. height: math.unit(1.78, "feet"),
  33623. name: "Hand",
  33624. image: {
  33625. source: "./media/characters/lee/hand.svg"
  33626. }
  33627. },
  33628. maw: {
  33629. height: math.unit(1.18, "feet"),
  33630. name: "Maw",
  33631. image: {
  33632. source: "./media/characters/lee/maw.svg"
  33633. }
  33634. },
  33635. },
  33636. [
  33637. {
  33638. name: "Normal",
  33639. height: math.unit(7 + 10/12, "feet"),
  33640. default: true
  33641. },
  33642. ]
  33643. ))
  33644. characterMakers.push(() => makeCharacter(
  33645. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33646. {
  33647. front: {
  33648. height: math.unit(9, "feet"),
  33649. name: "Front",
  33650. image: {
  33651. source: "./media/characters/guti/front.svg",
  33652. extra: 4551/4355,
  33653. bottom: 123/4674
  33654. }
  33655. },
  33656. tongue: {
  33657. height: math.unit(1, "feet"),
  33658. name: "Tongue",
  33659. image: {
  33660. source: "./media/characters/guti/tongue.svg"
  33661. }
  33662. },
  33663. paw: {
  33664. height: math.unit(1.18, "feet"),
  33665. name: "Paw",
  33666. image: {
  33667. source: "./media/characters/guti/paw.svg"
  33668. }
  33669. },
  33670. },
  33671. [
  33672. {
  33673. name: "Normal",
  33674. height: math.unit(9, "feet"),
  33675. default: true
  33676. },
  33677. ]
  33678. ))
  33679. characterMakers.push(() => makeCharacter(
  33680. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33681. {
  33682. side: {
  33683. height: math.unit(5, "meters"),
  33684. name: "Side",
  33685. image: {
  33686. source: "./media/characters/vesper/side.svg",
  33687. extra: 1605/1518,
  33688. bottom: 0/1605
  33689. }
  33690. },
  33691. },
  33692. [
  33693. {
  33694. name: "Small",
  33695. height: math.unit(5, "meters")
  33696. },
  33697. {
  33698. name: "Sage",
  33699. height: math.unit(100, "meters"),
  33700. default: true
  33701. },
  33702. {
  33703. name: "Fun Size",
  33704. height: math.unit(600, "meters")
  33705. },
  33706. {
  33707. name: "Goddess",
  33708. height: math.unit(20000, "km")
  33709. },
  33710. {
  33711. name: "Maximum",
  33712. height: math.unit(5, "galaxies")
  33713. },
  33714. ]
  33715. ))
  33716. characterMakers.push(() => makeCharacter(
  33717. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33718. {
  33719. front: {
  33720. height: math.unit(6 + 3/12, "feet"),
  33721. weight: math.unit(190, "lb"),
  33722. name: "Front",
  33723. image: {
  33724. source: "./media/characters/gawain/front.svg",
  33725. extra: 2222/2139,
  33726. bottom: 90/2312
  33727. }
  33728. },
  33729. back: {
  33730. height: math.unit(6 + 3/12, "feet"),
  33731. weight: math.unit(190, "lb"),
  33732. name: "Back",
  33733. image: {
  33734. source: "./media/characters/gawain/back.svg",
  33735. extra: 2199/2111,
  33736. bottom: 73/2272
  33737. }
  33738. },
  33739. },
  33740. [
  33741. {
  33742. name: "Normal",
  33743. height: math.unit(6 + 3/12, "feet"),
  33744. default: true
  33745. },
  33746. ]
  33747. ))
  33748. characterMakers.push(() => makeCharacter(
  33749. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33750. {
  33751. side: {
  33752. height: math.unit(3.5, "meters"),
  33753. weight: math.unit(16000, "lb"),
  33754. name: "Side",
  33755. image: {
  33756. source: "./media/characters/dascalti/side.svg",
  33757. extra: 392/273,
  33758. bottom: 47/439
  33759. }
  33760. },
  33761. breath: {
  33762. height: math.unit(7.4, "feet"),
  33763. name: "Breath",
  33764. image: {
  33765. source: "./media/characters/dascalti/breath.svg"
  33766. }
  33767. },
  33768. fed: {
  33769. height: math.unit(3.6, "meters"),
  33770. weight: math.unit(16000, "lb"),
  33771. name: "Fed",
  33772. image: {
  33773. source: "./media/characters/dascalti/fed.svg",
  33774. extra: 1419/820,
  33775. bottom: 95/1514
  33776. }
  33777. },
  33778. },
  33779. [
  33780. {
  33781. name: "Normal",
  33782. height: math.unit(3.5, "meters"),
  33783. default: true
  33784. },
  33785. ]
  33786. ))
  33787. characterMakers.push(() => makeCharacter(
  33788. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33789. {
  33790. front: {
  33791. height: math.unit(3 + 5/12, "feet"),
  33792. name: "Front",
  33793. image: {
  33794. source: "./media/characters/mauve/front.svg",
  33795. extra: 1126/1033,
  33796. bottom: 65/1191
  33797. }
  33798. },
  33799. side: {
  33800. height: math.unit(3 + 5/12, "feet"),
  33801. name: "Side",
  33802. image: {
  33803. source: "./media/characters/mauve/side.svg",
  33804. extra: 1089/1001,
  33805. bottom: 29/1118
  33806. }
  33807. },
  33808. back: {
  33809. height: math.unit(3 + 5/12, "feet"),
  33810. name: "Back",
  33811. image: {
  33812. source: "./media/characters/mauve/back.svg",
  33813. extra: 1173/1053,
  33814. bottom: 109/1282
  33815. }
  33816. },
  33817. },
  33818. [
  33819. {
  33820. name: "Normal",
  33821. height: math.unit(3 + 5/12, "feet"),
  33822. default: true
  33823. },
  33824. ]
  33825. ))
  33826. characterMakers.push(() => makeCharacter(
  33827. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33828. {
  33829. front: {
  33830. height: math.unit(6 + 3/12, "feet"),
  33831. weight: math.unit(430, "lb"),
  33832. name: "Front",
  33833. image: {
  33834. source: "./media/characters/carlos/front.svg",
  33835. extra: 1964/1913,
  33836. bottom: 70/2034
  33837. }
  33838. },
  33839. },
  33840. [
  33841. {
  33842. name: "Normal",
  33843. height: math.unit(6 + 3/12, "feet"),
  33844. default: true
  33845. },
  33846. ]
  33847. ))
  33848. characterMakers.push(() => makeCharacter(
  33849. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33850. {
  33851. back: {
  33852. height: math.unit(5 + 10/12, "feet"),
  33853. weight: math.unit(200, "lb"),
  33854. name: "Back",
  33855. image: {
  33856. source: "./media/characters/jax/back.svg",
  33857. extra: 764/739,
  33858. bottom: 25/789
  33859. }
  33860. },
  33861. },
  33862. [
  33863. {
  33864. name: "Normal",
  33865. height: math.unit(5 + 10/12, "feet"),
  33866. default: true
  33867. },
  33868. ]
  33869. ))
  33870. characterMakers.push(() => makeCharacter(
  33871. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33872. {
  33873. front: {
  33874. height: math.unit(8, "feet"),
  33875. weight: math.unit(250, "lb"),
  33876. name: "Front",
  33877. image: {
  33878. source: "./media/characters/eikthynir/front.svg",
  33879. extra: 1332/1166,
  33880. bottom: 82/1414
  33881. }
  33882. },
  33883. back: {
  33884. height: math.unit(8, "feet"),
  33885. weight: math.unit(250, "lb"),
  33886. name: "Back",
  33887. image: {
  33888. source: "./media/characters/eikthynir/back.svg",
  33889. extra: 1342/1190,
  33890. bottom: 19/1361
  33891. }
  33892. },
  33893. dick: {
  33894. height: math.unit(2.35, "feet"),
  33895. name: "Dick",
  33896. image: {
  33897. source: "./media/characters/eikthynir/dick.svg"
  33898. }
  33899. },
  33900. },
  33901. [
  33902. {
  33903. name: "Normal",
  33904. height: math.unit(8, "feet"),
  33905. default: true
  33906. },
  33907. ]
  33908. ))
  33909. characterMakers.push(() => makeCharacter(
  33910. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33911. {
  33912. front: {
  33913. height: math.unit(99, "meters"),
  33914. weight: math.unit(13000, "tons"),
  33915. name: "Front",
  33916. image: {
  33917. source: "./media/characters/zlmos/front.svg",
  33918. extra: 2202/1992,
  33919. bottom: 315/2517
  33920. }
  33921. },
  33922. },
  33923. [
  33924. {
  33925. name: "Macro",
  33926. height: math.unit(99, "meters"),
  33927. default: true
  33928. },
  33929. ]
  33930. ))
  33931. characterMakers.push(() => makeCharacter(
  33932. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33933. {
  33934. front: {
  33935. height: math.unit(6 + 5/12, "feet"),
  33936. name: "Front",
  33937. image: {
  33938. source: "./media/characters/purri/front.svg",
  33939. extra: 1698/1610,
  33940. bottom: 32/1730
  33941. }
  33942. },
  33943. frontAlt: {
  33944. height: math.unit(6 + 5/12, "feet"),
  33945. name: "Front (Alt)",
  33946. image: {
  33947. source: "./media/characters/purri/front-alt.svg",
  33948. extra: 450/420,
  33949. bottom: 26/476
  33950. }
  33951. },
  33952. boots: {
  33953. height: math.unit(5.5, "feet"),
  33954. name: "Boots",
  33955. image: {
  33956. source: "./media/characters/purri/boots.svg",
  33957. extra: 905/853,
  33958. bottom: 18/923
  33959. },
  33960. extraAttributes: {
  33961. "shoeSize": {
  33962. name: "Shoe Size",
  33963. power: 1,
  33964. type: "length",
  33965. base: math.unit(12, "ShoeSizeMensUS")
  33966. },
  33967. "platformHeight": {
  33968. name: "Platform Height",
  33969. power: 1,
  33970. type: "length",
  33971. base: math.unit(2, "inches")
  33972. },
  33973. }
  33974. },
  33975. lying: {
  33976. height: math.unit(2, "feet"),
  33977. name: "Lying",
  33978. image: {
  33979. source: "./media/characters/purri/lying.svg",
  33980. extra: 940/843,
  33981. bottom: 146/1086
  33982. }
  33983. },
  33984. devious: {
  33985. height: math.unit(1.77, "feet"),
  33986. name: "Devious",
  33987. image: {
  33988. source: "./media/characters/purri/devious.svg",
  33989. extra: 1440/1155,
  33990. bottom: 147/1587
  33991. }
  33992. },
  33993. bean: {
  33994. height: math.unit(1.94, "feet"),
  33995. name: "Bean",
  33996. image: {
  33997. source: "./media/characters/purri/bean.svg"
  33998. }
  33999. },
  34000. },
  34001. [
  34002. {
  34003. name: "Micro",
  34004. height: math.unit(1, "mm")
  34005. },
  34006. {
  34007. name: "Normal",
  34008. height: math.unit(6 + 5/12, "feet"),
  34009. default: true
  34010. },
  34011. {
  34012. name: "Macro :3c",
  34013. height: math.unit(2, "miles")
  34014. },
  34015. ]
  34016. ))
  34017. characterMakers.push(() => makeCharacter(
  34018. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34019. {
  34020. front: {
  34021. height: math.unit(6 + 2/12, "feet"),
  34022. weight: math.unit(250, "lb"),
  34023. name: "Front",
  34024. image: {
  34025. source: "./media/characters/moonlight/front.svg",
  34026. extra: 1044/908,
  34027. bottom: 56/1100
  34028. }
  34029. },
  34030. feral: {
  34031. height: math.unit(3 + 1/12, "feet"),
  34032. weight: math.unit(50, "kg"),
  34033. name: "Feral",
  34034. image: {
  34035. source: "./media/characters/moonlight/feral.svg",
  34036. extra: 3705/2791,
  34037. bottom: 145/3850
  34038. }
  34039. },
  34040. paw: {
  34041. height: math.unit(1, "feet"),
  34042. name: "Paw",
  34043. image: {
  34044. source: "./media/characters/moonlight/paw.svg"
  34045. }
  34046. },
  34047. paws: {
  34048. height: math.unit(0.98, "feet"),
  34049. name: "Paws",
  34050. image: {
  34051. source: "./media/characters/moonlight/paws.svg",
  34052. extra: 939/939,
  34053. bottom: 50/989
  34054. }
  34055. },
  34056. mouth: {
  34057. height: math.unit(0.48, "feet"),
  34058. name: "Mouth",
  34059. image: {
  34060. source: "./media/characters/moonlight/mouth.svg"
  34061. }
  34062. },
  34063. dick: {
  34064. height: math.unit(1.46, "feet"),
  34065. name: "Dick",
  34066. image: {
  34067. source: "./media/characters/moonlight/dick.svg"
  34068. }
  34069. },
  34070. },
  34071. [
  34072. {
  34073. name: "Normal",
  34074. height: math.unit(6 + 2/12, "feet"),
  34075. default: true
  34076. },
  34077. {
  34078. name: "Macro",
  34079. height: math.unit(300, "feet")
  34080. },
  34081. {
  34082. name: "Macro+",
  34083. height: math.unit(1, "mile")
  34084. },
  34085. {
  34086. name: "Mt. Moon",
  34087. height: math.unit(5, "miles")
  34088. },
  34089. {
  34090. name: "Megamacro",
  34091. height: math.unit(15, "miles")
  34092. },
  34093. ]
  34094. ))
  34095. characterMakers.push(() => makeCharacter(
  34096. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34097. {
  34098. back: {
  34099. height: math.unit(6, "feet"),
  34100. weight: math.unit(150, "lb"),
  34101. name: "Back",
  34102. image: {
  34103. source: "./media/characters/sylen/back.svg",
  34104. extra: 1335/1273,
  34105. bottom: 107/1442
  34106. }
  34107. },
  34108. },
  34109. [
  34110. {
  34111. name: "Normal",
  34112. height: math.unit(5 + 5/12, "feet")
  34113. },
  34114. {
  34115. name: "Megamacro",
  34116. height: math.unit(3, "miles"),
  34117. default: true
  34118. },
  34119. ]
  34120. ))
  34121. characterMakers.push(() => makeCharacter(
  34122. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34123. {
  34124. front: {
  34125. height: math.unit(6, "feet"),
  34126. weight: math.unit(190, "lb"),
  34127. name: "Front",
  34128. image: {
  34129. source: "./media/characters/huttser/front.svg",
  34130. extra: 1152/1058,
  34131. bottom: 23/1175
  34132. }
  34133. },
  34134. side: {
  34135. height: math.unit(6, "feet"),
  34136. weight: math.unit(190, "lb"),
  34137. name: "Side",
  34138. image: {
  34139. source: "./media/characters/huttser/side.svg",
  34140. extra: 1174/1065,
  34141. bottom: 18/1192
  34142. }
  34143. },
  34144. back: {
  34145. height: math.unit(6, "feet"),
  34146. weight: math.unit(190, "lb"),
  34147. name: "Back",
  34148. image: {
  34149. source: "./media/characters/huttser/back.svg",
  34150. extra: 1158/1056,
  34151. bottom: 12/1170
  34152. }
  34153. },
  34154. },
  34155. [
  34156. ]
  34157. ))
  34158. characterMakers.push(() => makeCharacter(
  34159. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34160. {
  34161. side: {
  34162. height: math.unit(12 + 9/12, "feet"),
  34163. weight: math.unit(15000, "lb"),
  34164. name: "Side",
  34165. image: {
  34166. source: "./media/characters/faan/side.svg",
  34167. extra: 2747/2697,
  34168. bottom: 0/2747
  34169. }
  34170. },
  34171. front: {
  34172. height: math.unit(12 + 9/12, "feet"),
  34173. weight: math.unit(15000, "lb"),
  34174. name: "Front",
  34175. image: {
  34176. source: "./media/characters/faan/front.svg",
  34177. extra: 607/571,
  34178. bottom: 24/631
  34179. }
  34180. },
  34181. head: {
  34182. height: math.unit(2.85, "feet"),
  34183. name: "Head",
  34184. image: {
  34185. source: "./media/characters/faan/head.svg"
  34186. }
  34187. },
  34188. headAlt: {
  34189. height: math.unit(3.13, "feet"),
  34190. name: "Head-alt",
  34191. image: {
  34192. source: "./media/characters/faan/head-alt.svg"
  34193. }
  34194. },
  34195. },
  34196. [
  34197. {
  34198. name: "Normal",
  34199. height: math.unit(12 + 9/12, "feet"),
  34200. default: true
  34201. },
  34202. ]
  34203. ))
  34204. characterMakers.push(() => makeCharacter(
  34205. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34206. {
  34207. front: {
  34208. height: math.unit(6, "feet"),
  34209. weight: math.unit(300, "lb"),
  34210. name: "Front",
  34211. image: {
  34212. source: "./media/characters/tanio/front.svg",
  34213. extra: 711/673,
  34214. bottom: 25/736
  34215. }
  34216. },
  34217. },
  34218. [
  34219. {
  34220. name: "Normal",
  34221. height: math.unit(6, "feet"),
  34222. default: true
  34223. },
  34224. ]
  34225. ))
  34226. characterMakers.push(() => makeCharacter(
  34227. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34228. {
  34229. front: {
  34230. height: math.unit(3, "inches"),
  34231. name: "Front",
  34232. image: {
  34233. source: "./media/characters/noboru/front.svg",
  34234. extra: 1039/932,
  34235. bottom: 18/1057
  34236. }
  34237. },
  34238. },
  34239. [
  34240. {
  34241. name: "Micro",
  34242. height: math.unit(3, "inches"),
  34243. default: true
  34244. },
  34245. ]
  34246. ))
  34247. characterMakers.push(() => makeCharacter(
  34248. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34249. {
  34250. front: {
  34251. height: math.unit(1.85, "meters"),
  34252. weight: math.unit(80, "kg"),
  34253. name: "Front",
  34254. image: {
  34255. source: "./media/characters/daniel-barrett/front.svg",
  34256. extra: 355/337,
  34257. bottom: 9/364
  34258. }
  34259. },
  34260. },
  34261. [
  34262. {
  34263. name: "Pico",
  34264. height: math.unit(0.0433, "mm")
  34265. },
  34266. {
  34267. name: "Nano",
  34268. height: math.unit(1.5, "mm")
  34269. },
  34270. {
  34271. name: "Micro",
  34272. height: math.unit(5.3, "cm"),
  34273. default: true
  34274. },
  34275. {
  34276. name: "Normal",
  34277. height: math.unit(1.85, "meters")
  34278. },
  34279. {
  34280. name: "Macro",
  34281. height: math.unit(64.7, "meters")
  34282. },
  34283. {
  34284. name: "Megamacro",
  34285. height: math.unit(2.26, "km")
  34286. },
  34287. {
  34288. name: "Gigamacro",
  34289. height: math.unit(79, "km")
  34290. },
  34291. {
  34292. name: "Teramacro",
  34293. height: math.unit(2765, "km")
  34294. },
  34295. {
  34296. name: "Petamacro",
  34297. height: math.unit(96678, "km")
  34298. },
  34299. ]
  34300. ))
  34301. characterMakers.push(() => makeCharacter(
  34302. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34303. {
  34304. front: {
  34305. height: math.unit(30, "meters"),
  34306. weight: math.unit(400, "tons"),
  34307. name: "Front",
  34308. image: {
  34309. source: "./media/characters/zeel/front.svg",
  34310. extra: 2599/2599,
  34311. bottom: 226/2825
  34312. }
  34313. },
  34314. },
  34315. [
  34316. {
  34317. name: "Macro",
  34318. height: math.unit(30, "meters"),
  34319. default: true
  34320. },
  34321. ]
  34322. ))
  34323. characterMakers.push(() => makeCharacter(
  34324. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34325. {
  34326. front: {
  34327. height: math.unit(6 + 7/12, "feet"),
  34328. weight: math.unit(210, "lb"),
  34329. name: "Front",
  34330. image: {
  34331. source: "./media/characters/tarn/front.svg",
  34332. extra: 3517/3220,
  34333. bottom: 91/3608
  34334. }
  34335. },
  34336. back: {
  34337. height: math.unit(6 + 7/12, "feet"),
  34338. weight: math.unit(210, "lb"),
  34339. name: "Back",
  34340. image: {
  34341. source: "./media/characters/tarn/back.svg",
  34342. extra: 3566/3241,
  34343. bottom: 34/3600
  34344. }
  34345. },
  34346. dick: {
  34347. height: math.unit(1.65, "feet"),
  34348. name: "Dick",
  34349. image: {
  34350. source: "./media/characters/tarn/dick.svg"
  34351. }
  34352. },
  34353. paw: {
  34354. height: math.unit(1.80, "feet"),
  34355. name: "Paw",
  34356. image: {
  34357. source: "./media/characters/tarn/paw.svg"
  34358. }
  34359. },
  34360. tongue: {
  34361. height: math.unit(0.97, "feet"),
  34362. name: "Tongue",
  34363. image: {
  34364. source: "./media/characters/tarn/tongue.svg"
  34365. }
  34366. },
  34367. },
  34368. [
  34369. {
  34370. name: "Micro",
  34371. height: math.unit(4, "inches")
  34372. },
  34373. {
  34374. name: "Normal",
  34375. height: math.unit(6 + 7/12, "feet"),
  34376. default: true
  34377. },
  34378. {
  34379. name: "Macro",
  34380. height: math.unit(300, "feet")
  34381. },
  34382. ]
  34383. ))
  34384. characterMakers.push(() => makeCharacter(
  34385. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34386. {
  34387. front: {
  34388. height: math.unit(5 + 7/12, "feet"),
  34389. weight: math.unit(80, "kg"),
  34390. name: "Front",
  34391. image: {
  34392. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34393. extra: 3023/2865,
  34394. bottom: 33/3056
  34395. }
  34396. },
  34397. back: {
  34398. height: math.unit(5 + 7/12, "feet"),
  34399. weight: math.unit(80, "kg"),
  34400. name: "Back",
  34401. image: {
  34402. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34403. extra: 3020/2886,
  34404. bottom: 30/3050
  34405. }
  34406. },
  34407. dick: {
  34408. height: math.unit(0.98, "feet"),
  34409. name: "Dick",
  34410. image: {
  34411. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34412. }
  34413. },
  34414. anatomy: {
  34415. height: math.unit(2.86, "feet"),
  34416. name: "Anatomy",
  34417. image: {
  34418. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34419. }
  34420. },
  34421. },
  34422. [
  34423. {
  34424. name: "Really Small",
  34425. height: math.unit(2, "inches")
  34426. },
  34427. {
  34428. name: "Micro",
  34429. height: math.unit(5.583, "inches")
  34430. },
  34431. {
  34432. name: "Normal",
  34433. height: math.unit(5 + 7/12, "feet"),
  34434. default: true
  34435. },
  34436. {
  34437. name: "Macro",
  34438. height: math.unit(67, "feet")
  34439. },
  34440. {
  34441. name: "Megamacro",
  34442. height: math.unit(134, "feet")
  34443. },
  34444. ]
  34445. ))
  34446. characterMakers.push(() => makeCharacter(
  34447. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34448. {
  34449. front: {
  34450. height: math.unit(9, "feet"),
  34451. weight: math.unit(120, "lb"),
  34452. name: "Front",
  34453. image: {
  34454. source: "./media/characters/sally/front.svg",
  34455. extra: 1506/1349,
  34456. bottom: 66/1572
  34457. }
  34458. },
  34459. },
  34460. [
  34461. {
  34462. name: "Normal",
  34463. height: math.unit(9, "feet"),
  34464. default: true
  34465. },
  34466. ]
  34467. ))
  34468. characterMakers.push(() => makeCharacter(
  34469. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34470. {
  34471. front: {
  34472. height: math.unit(8, "feet"),
  34473. weight: math.unit(900, "lb"),
  34474. name: "Front",
  34475. image: {
  34476. source: "./media/characters/owen/front.svg",
  34477. extra: 1761/1657,
  34478. bottom: 74/1835
  34479. }
  34480. },
  34481. side: {
  34482. height: math.unit(8, "feet"),
  34483. weight: math.unit(900, "lb"),
  34484. name: "Side",
  34485. image: {
  34486. source: "./media/characters/owen/side.svg",
  34487. extra: 1797/1734,
  34488. bottom: 30/1827
  34489. }
  34490. },
  34491. back: {
  34492. height: math.unit(8, "feet"),
  34493. weight: math.unit(900, "lb"),
  34494. name: "Back",
  34495. image: {
  34496. source: "./media/characters/owen/back.svg",
  34497. extra: 1796/1706,
  34498. bottom: 59/1855
  34499. }
  34500. },
  34501. maw: {
  34502. height: math.unit(1.76, "feet"),
  34503. name: "Maw",
  34504. image: {
  34505. source: "./media/characters/owen/maw.svg"
  34506. }
  34507. },
  34508. },
  34509. [
  34510. {
  34511. name: "Normal",
  34512. height: math.unit(8, "feet"),
  34513. default: true
  34514. },
  34515. ]
  34516. ))
  34517. characterMakers.push(() => makeCharacter(
  34518. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34519. {
  34520. front: {
  34521. height: math.unit(4, "feet"),
  34522. weight: math.unit(400, "lb"),
  34523. name: "Front",
  34524. image: {
  34525. source: "./media/characters/ryth/front.svg",
  34526. extra: 1920/1748,
  34527. bottom: 42/1962
  34528. }
  34529. },
  34530. back: {
  34531. height: math.unit(4, "feet"),
  34532. weight: math.unit(400, "lb"),
  34533. name: "Back",
  34534. image: {
  34535. source: "./media/characters/ryth/back.svg",
  34536. extra: 1897/1690,
  34537. bottom: 89/1986
  34538. }
  34539. },
  34540. mouth: {
  34541. height: math.unit(1.39, "feet"),
  34542. name: "Mouth",
  34543. image: {
  34544. source: "./media/characters/ryth/mouth.svg"
  34545. }
  34546. },
  34547. tailmaw: {
  34548. height: math.unit(1.23, "feet"),
  34549. name: "Tailmaw",
  34550. image: {
  34551. source: "./media/characters/ryth/tailmaw.svg"
  34552. }
  34553. },
  34554. goia: {
  34555. height: math.unit(4, "meters"),
  34556. weight: math.unit(10800, "lb"),
  34557. name: "Goia",
  34558. image: {
  34559. source: "./media/characters/ryth/goia.svg",
  34560. extra: 745/640,
  34561. bottom: 107/852
  34562. }
  34563. },
  34564. goiaFront: {
  34565. height: math.unit(4, "meters"),
  34566. weight: math.unit(10800, "lb"),
  34567. name: "Goia (Front)",
  34568. image: {
  34569. source: "./media/characters/ryth/goia-front.svg",
  34570. extra: 750/586,
  34571. bottom: 114/864
  34572. }
  34573. },
  34574. goiaMaw: {
  34575. height: math.unit(5.55, "feet"),
  34576. name: "Goia Maw",
  34577. image: {
  34578. source: "./media/characters/ryth/goia-maw.svg"
  34579. }
  34580. },
  34581. goiaForepaw: {
  34582. height: math.unit(3.5, "feet"),
  34583. name: "Goia Forepaw",
  34584. image: {
  34585. source: "./media/characters/ryth/goia-forepaw.svg"
  34586. }
  34587. },
  34588. goiaHindpaw: {
  34589. height: math.unit(5.55, "feet"),
  34590. name: "Goia Hindpaw",
  34591. image: {
  34592. source: "./media/characters/ryth/goia-hindpaw.svg"
  34593. }
  34594. },
  34595. },
  34596. [
  34597. {
  34598. name: "Normal",
  34599. height: math.unit(4, "feet"),
  34600. default: true
  34601. },
  34602. ]
  34603. ))
  34604. characterMakers.push(() => makeCharacter(
  34605. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34606. {
  34607. front: {
  34608. height: math.unit(7, "feet"),
  34609. weight: math.unit(180, "lb"),
  34610. name: "Front",
  34611. image: {
  34612. source: "./media/characters/necrolance/front.svg",
  34613. extra: 1062/947,
  34614. bottom: 41/1103
  34615. }
  34616. },
  34617. back: {
  34618. height: math.unit(7, "feet"),
  34619. weight: math.unit(180, "lb"),
  34620. name: "Back",
  34621. image: {
  34622. source: "./media/characters/necrolance/back.svg",
  34623. extra: 1045/984,
  34624. bottom: 14/1059
  34625. }
  34626. },
  34627. wing: {
  34628. height: math.unit(2.67, "feet"),
  34629. name: "Wing",
  34630. image: {
  34631. source: "./media/characters/necrolance/wing.svg"
  34632. }
  34633. },
  34634. },
  34635. [
  34636. {
  34637. name: "Normal",
  34638. height: math.unit(7, "feet"),
  34639. default: true
  34640. },
  34641. ]
  34642. ))
  34643. characterMakers.push(() => makeCharacter(
  34644. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34645. {
  34646. front: {
  34647. height: math.unit(76, "meters"),
  34648. weight: math.unit(30000, "tons"),
  34649. name: "Front",
  34650. image: {
  34651. source: "./media/characters/tyler/front.svg",
  34652. extra: 1640/1640,
  34653. bottom: 114/1754
  34654. }
  34655. },
  34656. },
  34657. [
  34658. {
  34659. name: "Macro",
  34660. height: math.unit(76, "meters"),
  34661. default: true
  34662. },
  34663. ]
  34664. ))
  34665. characterMakers.push(() => makeCharacter(
  34666. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34667. {
  34668. front: {
  34669. height: math.unit(4 + 11/12, "feet"),
  34670. weight: math.unit(132, "lb"),
  34671. name: "Front",
  34672. image: {
  34673. source: "./media/characters/icey/front.svg",
  34674. extra: 2750/2550,
  34675. bottom: 33/2783
  34676. }
  34677. },
  34678. back: {
  34679. height: math.unit(4 + 11/12, "feet"),
  34680. weight: math.unit(132, "lb"),
  34681. name: "Back",
  34682. image: {
  34683. source: "./media/characters/icey/back.svg",
  34684. extra: 2624/2481,
  34685. bottom: 35/2659
  34686. }
  34687. },
  34688. },
  34689. [
  34690. {
  34691. name: "Normal",
  34692. height: math.unit(4 + 11/12, "feet"),
  34693. default: true
  34694. },
  34695. ]
  34696. ))
  34697. characterMakers.push(() => makeCharacter(
  34698. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34699. {
  34700. front: {
  34701. height: math.unit(100, "feet"),
  34702. weight: math.unit(0, "lb"),
  34703. name: "Front",
  34704. image: {
  34705. source: "./media/characters/smile/front.svg",
  34706. extra: 2983/2912,
  34707. bottom: 162/3145
  34708. }
  34709. },
  34710. back: {
  34711. height: math.unit(100, "feet"),
  34712. weight: math.unit(0, "lb"),
  34713. name: "Back",
  34714. image: {
  34715. source: "./media/characters/smile/back.svg",
  34716. extra: 3143/3031,
  34717. bottom: 91/3234
  34718. }
  34719. },
  34720. head: {
  34721. height: math.unit(26.3, "feet"),
  34722. weight: math.unit(0, "lb"),
  34723. name: "Head",
  34724. image: {
  34725. source: "./media/characters/smile/head.svg"
  34726. }
  34727. },
  34728. collar: {
  34729. height: math.unit(5.3, "feet"),
  34730. weight: math.unit(0, "lb"),
  34731. name: "Collar",
  34732. image: {
  34733. source: "./media/characters/smile/collar.svg"
  34734. }
  34735. },
  34736. },
  34737. [
  34738. {
  34739. name: "Macro",
  34740. height: math.unit(100, "feet"),
  34741. default: true
  34742. },
  34743. ]
  34744. ))
  34745. characterMakers.push(() => makeCharacter(
  34746. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34747. {
  34748. dragon: {
  34749. height: math.unit(26, "feet"),
  34750. weight: math.unit(36, "tons"),
  34751. name: "Dragon",
  34752. image: {
  34753. source: "./media/characters/arimphae/dragon.svg",
  34754. extra: 1574/983,
  34755. bottom: 357/1931
  34756. }
  34757. },
  34758. drake: {
  34759. height: math.unit(9, "feet"),
  34760. weight: math.unit(1.5, "tons"),
  34761. name: "Drake",
  34762. image: {
  34763. source: "./media/characters/arimphae/drake.svg",
  34764. extra: 1120/925,
  34765. bottom: 435/1555
  34766. }
  34767. },
  34768. },
  34769. [
  34770. {
  34771. name: "Small",
  34772. height: math.unit(26*5/9, "feet")
  34773. },
  34774. {
  34775. name: "Normal",
  34776. height: math.unit(26, "feet"),
  34777. default: true
  34778. },
  34779. ]
  34780. ))
  34781. characterMakers.push(() => makeCharacter(
  34782. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34783. {
  34784. front: {
  34785. height: math.unit(8 + 9/12, "feet"),
  34786. name: "Front",
  34787. image: {
  34788. source: "./media/characters/xander/front.svg",
  34789. extra: 1237/974,
  34790. bottom: 94/1331
  34791. }
  34792. },
  34793. },
  34794. [
  34795. {
  34796. name: "Normal",
  34797. height: math.unit(8 + 9/12, "feet"),
  34798. default: true
  34799. },
  34800. {
  34801. name: "Gaze Grabber",
  34802. height: math.unit(13 + 8/12, "feet")
  34803. },
  34804. {
  34805. name: "Jaw Dropper",
  34806. height: math.unit(27, "feet")
  34807. },
  34808. {
  34809. name: "Show Stopper",
  34810. height: math.unit(136, "feet")
  34811. },
  34812. {
  34813. name: "Superstar",
  34814. height: math.unit(1.9e6, "miles")
  34815. },
  34816. ]
  34817. ))
  34818. characterMakers.push(() => makeCharacter(
  34819. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34820. {
  34821. side: {
  34822. height: math.unit(2100, "feet"),
  34823. name: "Side",
  34824. image: {
  34825. source: "./media/characters/osiris/side.svg",
  34826. extra: 1105/939,
  34827. bottom: 167/1272
  34828. }
  34829. },
  34830. },
  34831. [
  34832. {
  34833. name: "Macro",
  34834. height: math.unit(2100, "feet"),
  34835. default: true
  34836. },
  34837. ]
  34838. ))
  34839. characterMakers.push(() => makeCharacter(
  34840. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34841. {
  34842. front: {
  34843. height: math.unit(6 + 8/12, "feet"),
  34844. weight: math.unit(225, "lb"),
  34845. name: "Front",
  34846. image: {
  34847. source: "./media/characters/rhys-londe/front.svg",
  34848. extra: 2258/2141,
  34849. bottom: 188/2446
  34850. }
  34851. },
  34852. back: {
  34853. height: math.unit(6 + 8/12, "feet"),
  34854. weight: math.unit(225, "lb"),
  34855. name: "Back",
  34856. image: {
  34857. source: "./media/characters/rhys-londe/back.svg",
  34858. extra: 2237/2137,
  34859. bottom: 63/2300
  34860. }
  34861. },
  34862. frontNsfw: {
  34863. height: math.unit(6 + 8/12, "feet"),
  34864. weight: math.unit(225, "lb"),
  34865. name: "Front (NSFW)",
  34866. image: {
  34867. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34868. extra: 2258/2141,
  34869. bottom: 188/2446
  34870. }
  34871. },
  34872. backNsfw: {
  34873. height: math.unit(6 + 8/12, "feet"),
  34874. weight: math.unit(225, "lb"),
  34875. name: "Back (NSFW)",
  34876. image: {
  34877. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34878. extra: 2237/2137,
  34879. bottom: 63/2300
  34880. }
  34881. },
  34882. dick: {
  34883. height: math.unit(30, "inches"),
  34884. name: "Dick",
  34885. image: {
  34886. source: "./media/characters/rhys-londe/dick.svg"
  34887. }
  34888. },
  34889. maw: {
  34890. height: math.unit(1.6, "feet"),
  34891. name: "Maw",
  34892. image: {
  34893. source: "./media/characters/rhys-londe/maw.svg"
  34894. }
  34895. },
  34896. },
  34897. [
  34898. {
  34899. name: "Normal",
  34900. height: math.unit(6 + 8/12, "feet"),
  34901. default: true
  34902. },
  34903. ]
  34904. ))
  34905. characterMakers.push(() => makeCharacter(
  34906. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34907. {
  34908. front: {
  34909. height: math.unit(3 + 10/12, "feet"),
  34910. weight: math.unit(90, "lb"),
  34911. name: "Front",
  34912. image: {
  34913. source: "./media/characters/taivas-ensim/front.svg",
  34914. extra: 1327/1216,
  34915. bottom: 96/1423
  34916. }
  34917. },
  34918. back: {
  34919. height: math.unit(3 + 10/12, "feet"),
  34920. weight: math.unit(90, "lb"),
  34921. name: "Back",
  34922. image: {
  34923. source: "./media/characters/taivas-ensim/back.svg",
  34924. extra: 1355/1247,
  34925. bottom: 11/1366
  34926. }
  34927. },
  34928. frontNsfw: {
  34929. height: math.unit(3 + 10/12, "feet"),
  34930. weight: math.unit(90, "lb"),
  34931. name: "Front (NSFW)",
  34932. image: {
  34933. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34934. extra: 1327/1216,
  34935. bottom: 96/1423
  34936. }
  34937. },
  34938. backNsfw: {
  34939. height: math.unit(3 + 10/12, "feet"),
  34940. weight: math.unit(90, "lb"),
  34941. name: "Back (NSFW)",
  34942. image: {
  34943. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34944. extra: 1355/1247,
  34945. bottom: 11/1366
  34946. }
  34947. },
  34948. },
  34949. [
  34950. {
  34951. name: "Normal",
  34952. height: math.unit(3 + 10/12, "feet"),
  34953. default: true
  34954. },
  34955. ]
  34956. ))
  34957. characterMakers.push(() => makeCharacter(
  34958. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34959. {
  34960. front: {
  34961. height: math.unit(9 + 6/12, "feet"),
  34962. weight: math.unit(940, "lb"),
  34963. name: "Front",
  34964. image: {
  34965. source: "./media/characters/byliss/front.svg",
  34966. extra: 1327/1290,
  34967. bottom: 82/1409
  34968. }
  34969. },
  34970. back: {
  34971. height: math.unit(9 + 6/12, "feet"),
  34972. weight: math.unit(940, "lb"),
  34973. name: "Back",
  34974. image: {
  34975. source: "./media/characters/byliss/back.svg",
  34976. extra: 1376/1349,
  34977. bottom: 9/1385
  34978. }
  34979. },
  34980. frontNsfw: {
  34981. height: math.unit(9 + 6/12, "feet"),
  34982. weight: math.unit(940, "lb"),
  34983. name: "Front (NSFW)",
  34984. image: {
  34985. source: "./media/characters/byliss/front-nsfw.svg",
  34986. extra: 1327/1290,
  34987. bottom: 82/1409
  34988. }
  34989. },
  34990. backNsfw: {
  34991. height: math.unit(9 + 6/12, "feet"),
  34992. weight: math.unit(940, "lb"),
  34993. name: "Back (NSFW)",
  34994. image: {
  34995. source: "./media/characters/byliss/back-nsfw.svg",
  34996. extra: 1376/1349,
  34997. bottom: 9/1385
  34998. }
  34999. },
  35000. },
  35001. [
  35002. {
  35003. name: "Normal",
  35004. height: math.unit(9 + 6/12, "feet"),
  35005. default: true
  35006. },
  35007. ]
  35008. ))
  35009. characterMakers.push(() => makeCharacter(
  35010. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35011. {
  35012. front: {
  35013. height: math.unit(5 + 2/12, "feet"),
  35014. weight: math.unit(200, "lb"),
  35015. name: "Front",
  35016. image: {
  35017. source: "./media/characters/noraly/front.svg",
  35018. extra: 4985/4773,
  35019. bottom: 150/5135
  35020. }
  35021. },
  35022. full: {
  35023. height: math.unit(5 + 2/12, "feet"),
  35024. weight: math.unit(164, "lb"),
  35025. name: "Full",
  35026. image: {
  35027. source: "./media/characters/noraly/full.svg",
  35028. extra: 1114/1059,
  35029. bottom: 35/1149
  35030. }
  35031. },
  35032. fuller: {
  35033. height: math.unit(5 + 2/12, "feet"),
  35034. weight: math.unit(230, "lb"),
  35035. name: "Fuller",
  35036. image: {
  35037. source: "./media/characters/noraly/fuller.svg",
  35038. extra: 1114/1059,
  35039. bottom: 35/1149
  35040. }
  35041. },
  35042. fullest: {
  35043. height: math.unit(5 + 2/12, "feet"),
  35044. weight: math.unit(300, "lb"),
  35045. name: "Fullest",
  35046. image: {
  35047. source: "./media/characters/noraly/fullest.svg",
  35048. extra: 1114/1059,
  35049. bottom: 35/1149
  35050. }
  35051. },
  35052. },
  35053. [
  35054. {
  35055. name: "Normal",
  35056. height: math.unit(5 + 2/12, "feet"),
  35057. default: true
  35058. },
  35059. ]
  35060. ))
  35061. characterMakers.push(() => makeCharacter(
  35062. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35063. {
  35064. front: {
  35065. height: math.unit(5 + 2/12, "feet"),
  35066. weight: math.unit(210, "lb"),
  35067. name: "Front",
  35068. image: {
  35069. source: "./media/characters/pera/front.svg",
  35070. extra: 1560/1531,
  35071. bottom: 165/1725
  35072. }
  35073. },
  35074. back: {
  35075. height: math.unit(5 + 2/12, "feet"),
  35076. weight: math.unit(210, "lb"),
  35077. name: "Back",
  35078. image: {
  35079. source: "./media/characters/pera/back.svg",
  35080. extra: 1523/1493,
  35081. bottom: 152/1675
  35082. }
  35083. },
  35084. dick: {
  35085. height: math.unit(2.4, "feet"),
  35086. name: "Dick",
  35087. image: {
  35088. source: "./media/characters/pera/dick.svg"
  35089. }
  35090. },
  35091. },
  35092. [
  35093. {
  35094. name: "Normal",
  35095. height: math.unit(5 + 2/12, "feet"),
  35096. default: true
  35097. },
  35098. ]
  35099. ))
  35100. characterMakers.push(() => makeCharacter(
  35101. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35102. {
  35103. front: {
  35104. height: math.unit(12, "feet"),
  35105. weight: math.unit(3200, "lb"),
  35106. name: "Front",
  35107. image: {
  35108. source: "./media/characters/julian/front.svg",
  35109. extra: 2962/2701,
  35110. bottom: 184/3146
  35111. }
  35112. },
  35113. maw: {
  35114. height: math.unit(5.35, "feet"),
  35115. name: "Maw",
  35116. image: {
  35117. source: "./media/characters/julian/maw.svg"
  35118. }
  35119. },
  35120. paw: {
  35121. height: math.unit(3.07, "feet"),
  35122. name: "Paw",
  35123. image: {
  35124. source: "./media/characters/julian/paw.svg"
  35125. }
  35126. },
  35127. },
  35128. [
  35129. {
  35130. name: "Default",
  35131. height: math.unit(12, "feet"),
  35132. default: true
  35133. },
  35134. {
  35135. name: "Big",
  35136. height: math.unit(50, "feet")
  35137. },
  35138. {
  35139. name: "Really Big",
  35140. height: math.unit(1, "mile")
  35141. },
  35142. {
  35143. name: "Extremely Big",
  35144. height: math.unit(100, "miles")
  35145. },
  35146. {
  35147. name: "Planet Hugger",
  35148. height: math.unit(200, "megameters")
  35149. },
  35150. {
  35151. name: "Unreasonably Big",
  35152. height: math.unit(1e300, "meters")
  35153. },
  35154. ]
  35155. ))
  35156. characterMakers.push(() => makeCharacter(
  35157. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35158. {
  35159. solgooleo: {
  35160. height: math.unit(4, "meters"),
  35161. weight: math.unit(6000*1.5, "kg"),
  35162. volume: math.unit(6000, "liters"),
  35163. name: "Solgooleo",
  35164. image: {
  35165. source: "./media/characters/pi/solgooleo.svg",
  35166. extra: 388/331,
  35167. bottom: 29/417
  35168. }
  35169. },
  35170. },
  35171. [
  35172. {
  35173. name: "Normal",
  35174. height: math.unit(4, "meters"),
  35175. default: true
  35176. },
  35177. ]
  35178. ))
  35179. characterMakers.push(() => makeCharacter(
  35180. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35181. {
  35182. front: {
  35183. height: math.unit(8, "feet"),
  35184. weight: math.unit(4, "tons"),
  35185. name: "Front",
  35186. image: {
  35187. source: "./media/characters/shaun/front.svg",
  35188. extra: 503/495,
  35189. bottom: 20/523
  35190. }
  35191. },
  35192. back: {
  35193. height: math.unit(8, "feet"),
  35194. weight: math.unit(4, "tons"),
  35195. name: "Back",
  35196. image: {
  35197. source: "./media/characters/shaun/back.svg",
  35198. extra: 487/480,
  35199. bottom: 20/507
  35200. }
  35201. },
  35202. },
  35203. [
  35204. {
  35205. name: "Lorg",
  35206. height: math.unit(8, "feet"),
  35207. default: true
  35208. },
  35209. ]
  35210. ))
  35211. characterMakers.push(() => makeCharacter(
  35212. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35213. {
  35214. frontAnthro: {
  35215. height: math.unit(7, "feet"),
  35216. name: "Front",
  35217. image: {
  35218. source: "./media/characters/sini/front-anthro.svg",
  35219. extra: 726/678,
  35220. bottom: 35/761
  35221. },
  35222. form: "anthro",
  35223. default: true
  35224. },
  35225. backAnthro: {
  35226. height: math.unit(7, "feet"),
  35227. name: "Back",
  35228. image: {
  35229. source: "./media/characters/sini/back-anthro.svg",
  35230. extra: 743/701,
  35231. bottom: 12/755
  35232. },
  35233. form: "anthro",
  35234. },
  35235. frontAnthroNsfw: {
  35236. height: math.unit(7, "feet"),
  35237. name: "Front (NSFW)",
  35238. image: {
  35239. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35240. extra: 726/678,
  35241. bottom: 35/761
  35242. },
  35243. form: "anthro"
  35244. },
  35245. backAnthroNsfw: {
  35246. height: math.unit(7, "feet"),
  35247. name: "Back (NSFW)",
  35248. image: {
  35249. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35250. extra: 743/701,
  35251. bottom: 12/755
  35252. },
  35253. form: "anthro",
  35254. },
  35255. mawAnthro: {
  35256. height: math.unit(2.14, "feet"),
  35257. name: "Maw",
  35258. image: {
  35259. source: "./media/characters/sini/maw-anthro.svg"
  35260. },
  35261. form: "anthro"
  35262. },
  35263. dick: {
  35264. height: math.unit(1.45, "feet"),
  35265. name: "Dick",
  35266. image: {
  35267. source: "./media/characters/sini/dick-anthro.svg"
  35268. },
  35269. form: "anthro"
  35270. },
  35271. feral: {
  35272. height: math.unit(16, "feet"),
  35273. name: "Feral",
  35274. image: {
  35275. source: "./media/characters/sini/feral.svg",
  35276. extra: 814/605,
  35277. bottom: 11/825
  35278. },
  35279. form: "feral",
  35280. default: true
  35281. },
  35282. feralNsfw: {
  35283. height: math.unit(16, "feet"),
  35284. name: "Feral (NSFW)",
  35285. image: {
  35286. source: "./media/characters/sini/feral-nsfw.svg",
  35287. extra: 814/605,
  35288. bottom: 11/825
  35289. },
  35290. form: "feral"
  35291. },
  35292. mawFeral: {
  35293. height: math.unit(5.66, "feet"),
  35294. name: "Maw",
  35295. image: {
  35296. source: "./media/characters/sini/maw-feral.svg"
  35297. },
  35298. form: "feral",
  35299. },
  35300. pawFeral: {
  35301. height: math.unit(5.17, "feet"),
  35302. name: "Paw",
  35303. image: {
  35304. source: "./media/characters/sini/paw-feral.svg"
  35305. },
  35306. form: "feral",
  35307. },
  35308. rumpFeral: {
  35309. height: math.unit(13.11, "feet"),
  35310. name: "Rump",
  35311. image: {
  35312. source: "./media/characters/sini/rump-feral.svg"
  35313. },
  35314. form: "feral",
  35315. },
  35316. dickFeral: {
  35317. height: math.unit(1, "feet"),
  35318. name: "Dick",
  35319. image: {
  35320. source: "./media/characters/sini/dick-feral.svg"
  35321. },
  35322. form: "feral",
  35323. },
  35324. eyeFeral: {
  35325. height: math.unit(1.23, "feet"),
  35326. name: "Eye",
  35327. image: {
  35328. source: "./media/characters/sini/eye-feral.svg"
  35329. },
  35330. form: "feral",
  35331. },
  35332. },
  35333. [
  35334. {
  35335. name: "Normal",
  35336. height: math.unit(7, "feet"),
  35337. default: true,
  35338. form: "anthro"
  35339. },
  35340. {
  35341. name: "Normal",
  35342. height: math.unit(16, "feet"),
  35343. default: true,
  35344. form: "feral"
  35345. },
  35346. ],
  35347. {
  35348. "anthro": {
  35349. name: "Anthro",
  35350. default: true
  35351. },
  35352. "feral": {
  35353. name: "Feral",
  35354. }
  35355. }
  35356. ))
  35357. characterMakers.push(() => makeCharacter(
  35358. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35359. {
  35360. side: {
  35361. height: math.unit(47.2, "meters"),
  35362. weight: math.unit(10000, "tons"),
  35363. name: "Side",
  35364. image: {
  35365. source: "./media/characters/raylldo/side.svg",
  35366. extra: 2363/642,
  35367. bottom: 221/2584
  35368. }
  35369. },
  35370. top: {
  35371. height: math.unit(240, "meters"),
  35372. weight: math.unit(10000, "tons"),
  35373. name: "Top",
  35374. image: {
  35375. source: "./media/characters/raylldo/top.svg"
  35376. }
  35377. },
  35378. bottom: {
  35379. height: math.unit(240, "meters"),
  35380. weight: math.unit(10000, "tons"),
  35381. name: "Bottom",
  35382. image: {
  35383. source: "./media/characters/raylldo/bottom.svg"
  35384. }
  35385. },
  35386. head: {
  35387. height: math.unit(38.6, "meters"),
  35388. name: "Head",
  35389. image: {
  35390. source: "./media/characters/raylldo/head.svg",
  35391. extra: 1335/1112,
  35392. bottom: 0/1335
  35393. }
  35394. },
  35395. maw: {
  35396. height: math.unit(16.37, "meters"),
  35397. name: "Maw",
  35398. image: {
  35399. source: "./media/characters/raylldo/maw.svg",
  35400. extra: 883/660,
  35401. bottom: 0/883
  35402. },
  35403. extraAttributes: {
  35404. preyCapacity: {
  35405. name: "Capacity",
  35406. power: 3,
  35407. type: "volume",
  35408. base: math.unit(1000, "people")
  35409. },
  35410. tongueSize: {
  35411. name: "Tongue Size",
  35412. power: 2,
  35413. type: "area",
  35414. base: math.unit(21, "m^2")
  35415. }
  35416. }
  35417. },
  35418. forepaw: {
  35419. height: math.unit(18, "meters"),
  35420. name: "Forepaw",
  35421. image: {
  35422. source: "./media/characters/raylldo/forepaw.svg"
  35423. }
  35424. },
  35425. hindpaw: {
  35426. height: math.unit(23, "meters"),
  35427. name: "Hindpaw",
  35428. image: {
  35429. source: "./media/characters/raylldo/hindpaw.svg"
  35430. }
  35431. },
  35432. genitals: {
  35433. height: math.unit(42, "meters"),
  35434. name: "Genitals",
  35435. image: {
  35436. source: "./media/characters/raylldo/genitals.svg"
  35437. }
  35438. },
  35439. },
  35440. [
  35441. {
  35442. name: "Normal",
  35443. height: math.unit(47.2, "meters"),
  35444. default: true
  35445. },
  35446. ]
  35447. ))
  35448. characterMakers.push(() => makeCharacter(
  35449. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35450. {
  35451. anthroFront: {
  35452. height: math.unit(9, "feet"),
  35453. weight: math.unit(600, "lb"),
  35454. name: "Anthro (Front)",
  35455. image: {
  35456. source: "./media/characters/glint/anthro-front.svg",
  35457. extra: 1097/1018,
  35458. bottom: 28/1125
  35459. }
  35460. },
  35461. anthroBack: {
  35462. height: math.unit(9, "feet"),
  35463. weight: math.unit(600, "lb"),
  35464. name: "Anthro (Back)",
  35465. image: {
  35466. source: "./media/characters/glint/anthro-back.svg",
  35467. extra: 1154/997,
  35468. bottom: 36/1190
  35469. }
  35470. },
  35471. feral: {
  35472. height: math.unit(11, "feet"),
  35473. weight: math.unit(50000, "lb"),
  35474. name: "Feral",
  35475. image: {
  35476. source: "./media/characters/glint/feral.svg",
  35477. extra: 3035/1585,
  35478. bottom: 1169/4204
  35479. }
  35480. },
  35481. dickAnthro: {
  35482. height: math.unit(0.7, "meters"),
  35483. name: "Dick (Anthro)",
  35484. image: {
  35485. source: "./media/characters/glint/dick-anthro.svg"
  35486. }
  35487. },
  35488. dickFeral: {
  35489. height: math.unit(2.65, "meters"),
  35490. name: "Dick (Feral)",
  35491. image: {
  35492. source: "./media/characters/glint/dick-feral.svg"
  35493. }
  35494. },
  35495. slitHidden: {
  35496. height: math.unit(5.85, "meters"),
  35497. name: "Slit (Hidden)",
  35498. image: {
  35499. source: "./media/characters/glint/slit-hidden.svg"
  35500. }
  35501. },
  35502. slitErect: {
  35503. height: math.unit(5.85, "meters"),
  35504. name: "Slit (Erect)",
  35505. image: {
  35506. source: "./media/characters/glint/slit-erect.svg"
  35507. }
  35508. },
  35509. mawAnthro: {
  35510. height: math.unit(0.63, "meters"),
  35511. name: "Maw (Anthro)",
  35512. image: {
  35513. source: "./media/characters/glint/maw.svg"
  35514. }
  35515. },
  35516. mawFeral: {
  35517. height: math.unit(2.89, "meters"),
  35518. name: "Maw (Feral)",
  35519. image: {
  35520. source: "./media/characters/glint/maw.svg"
  35521. }
  35522. },
  35523. },
  35524. [
  35525. {
  35526. name: "Normal",
  35527. height: math.unit(9, "feet"),
  35528. default: true
  35529. },
  35530. ]
  35531. ))
  35532. characterMakers.push(() => makeCharacter(
  35533. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35534. {
  35535. side: {
  35536. height: math.unit(15, "feet"),
  35537. weight: math.unit(5000, "kg"),
  35538. name: "Side",
  35539. image: {
  35540. source: "./media/characters/kairne/side.svg",
  35541. extra: 979/811,
  35542. bottom: 13/992
  35543. }
  35544. },
  35545. front: {
  35546. height: math.unit(15, "feet"),
  35547. weight: math.unit(5000, "kg"),
  35548. name: "Front",
  35549. image: {
  35550. source: "./media/characters/kairne/front.svg",
  35551. extra: 908/814,
  35552. bottom: 26/934
  35553. }
  35554. },
  35555. sideNsfw: {
  35556. height: math.unit(15, "feet"),
  35557. weight: math.unit(5000, "kg"),
  35558. name: "Side (NSFW)",
  35559. image: {
  35560. source: "./media/characters/kairne/side-nsfw.svg",
  35561. extra: 979/811,
  35562. bottom: 13/992
  35563. }
  35564. },
  35565. frontNsfw: {
  35566. height: math.unit(15, "feet"),
  35567. weight: math.unit(5000, "kg"),
  35568. name: "Front (NSFW)",
  35569. image: {
  35570. source: "./media/characters/kairne/front-nsfw.svg",
  35571. extra: 908/814,
  35572. bottom: 26/934
  35573. }
  35574. },
  35575. dickCaged: {
  35576. height: math.unit(0.65, "meters"),
  35577. name: "Dick-caged",
  35578. image: {
  35579. source: "./media/characters/kairne/dick-caged.svg"
  35580. }
  35581. },
  35582. dick: {
  35583. height: math.unit(0.79, "meters"),
  35584. name: "Dick",
  35585. image: {
  35586. source: "./media/characters/kairne/dick.svg"
  35587. }
  35588. },
  35589. genitals: {
  35590. height: math.unit(1.29, "meters"),
  35591. name: "Genitals",
  35592. image: {
  35593. source: "./media/characters/kairne/genitals.svg"
  35594. }
  35595. },
  35596. maw: {
  35597. height: math.unit(1.73, "meters"),
  35598. name: "Maw",
  35599. image: {
  35600. source: "./media/characters/kairne/maw.svg"
  35601. }
  35602. },
  35603. },
  35604. [
  35605. {
  35606. name: "Normal",
  35607. height: math.unit(15, "feet"),
  35608. default: true
  35609. },
  35610. ]
  35611. ))
  35612. characterMakers.push(() => makeCharacter(
  35613. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35614. {
  35615. front: {
  35616. height: math.unit(5 + 8/12, "feet"),
  35617. weight: math.unit(139, "lb"),
  35618. name: "Front",
  35619. image: {
  35620. source: "./media/characters/biscuit-jackal/front.svg",
  35621. extra: 2106/1961,
  35622. bottom: 58/2164
  35623. }
  35624. },
  35625. back: {
  35626. height: math.unit(5 + 8/12, "feet"),
  35627. weight: math.unit(139, "lb"),
  35628. name: "Back",
  35629. image: {
  35630. source: "./media/characters/biscuit-jackal/back.svg",
  35631. extra: 2132/1976,
  35632. bottom: 57/2189
  35633. }
  35634. },
  35635. werejackal: {
  35636. height: math.unit(6 + 3/12, "feet"),
  35637. weight: math.unit(188, "lb"),
  35638. name: "Werejackal",
  35639. image: {
  35640. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35641. extra: 2373/2178,
  35642. bottom: 53/2426
  35643. }
  35644. },
  35645. },
  35646. [
  35647. {
  35648. name: "Normal",
  35649. height: math.unit(5 + 8/12, "feet"),
  35650. default: true
  35651. },
  35652. ]
  35653. ))
  35654. characterMakers.push(() => makeCharacter(
  35655. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35656. {
  35657. front: {
  35658. height: math.unit(140, "cm"),
  35659. weight: math.unit(45, "kg"),
  35660. name: "Front",
  35661. image: {
  35662. source: "./media/characters/tayra-white/front.svg",
  35663. extra: 2229/2192,
  35664. bottom: 75/2304
  35665. }
  35666. },
  35667. },
  35668. [
  35669. {
  35670. name: "Normal",
  35671. height: math.unit(140, "cm"),
  35672. default: true
  35673. },
  35674. ]
  35675. ))
  35676. characterMakers.push(() => makeCharacter(
  35677. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35678. {
  35679. front: {
  35680. height: math.unit(4 + 5/12, "feet"),
  35681. name: "Front",
  35682. image: {
  35683. source: "./media/characters/scoop/front.svg",
  35684. extra: 1257/1136,
  35685. bottom: 69/1326
  35686. }
  35687. },
  35688. back: {
  35689. height: math.unit(4 + 5/12, "feet"),
  35690. name: "Back",
  35691. image: {
  35692. source: "./media/characters/scoop/back.svg",
  35693. extra: 1321/1152,
  35694. bottom: 32/1353
  35695. }
  35696. },
  35697. maw: {
  35698. height: math.unit(0.68, "feet"),
  35699. name: "Maw",
  35700. image: {
  35701. source: "./media/characters/scoop/maw.svg"
  35702. }
  35703. },
  35704. },
  35705. [
  35706. {
  35707. name: "Really Small",
  35708. height: math.unit(1, "mm")
  35709. },
  35710. {
  35711. name: "Micro",
  35712. height: math.unit(1, "inch")
  35713. },
  35714. {
  35715. name: "Normal",
  35716. height: math.unit(4 + 5/12, "feet"),
  35717. default: true
  35718. },
  35719. {
  35720. name: "Macro",
  35721. height: math.unit(200, "feet")
  35722. },
  35723. {
  35724. name: "Megamacro",
  35725. height: math.unit(3240, "feet")
  35726. },
  35727. {
  35728. name: "Teramacro",
  35729. height: math.unit(2500, "miles")
  35730. },
  35731. ]
  35732. ))
  35733. characterMakers.push(() => makeCharacter(
  35734. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35735. {
  35736. front: {
  35737. height: math.unit(15 + 7/12, "feet"),
  35738. weight: math.unit(1150, "tons"),
  35739. name: "Front",
  35740. image: {
  35741. source: "./media/characters/saphinara/front.svg",
  35742. extra: 1837/1643,
  35743. bottom: 84/1921
  35744. },
  35745. form: "normal",
  35746. default: true
  35747. },
  35748. side: {
  35749. height: math.unit(15 + 7/12, "feet"),
  35750. weight: math.unit(1150, "tons"),
  35751. name: "Side",
  35752. image: {
  35753. source: "./media/characters/saphinara/side.svg",
  35754. extra: 605/547,
  35755. bottom: 6/611
  35756. },
  35757. form: "normal"
  35758. },
  35759. back: {
  35760. height: math.unit(15 + 7/12, "feet"),
  35761. weight: math.unit(1150, "tons"),
  35762. name: "Back",
  35763. image: {
  35764. source: "./media/characters/saphinara/back.svg",
  35765. extra: 591/531,
  35766. bottom: 13/604
  35767. },
  35768. form: "normal"
  35769. },
  35770. frontTail: {
  35771. height: math.unit(15 + 7/12, "feet"),
  35772. weight: math.unit(1150, "tons"),
  35773. name: "Front (Full Tail)",
  35774. image: {
  35775. source: "./media/characters/saphinara/front-tail.svg",
  35776. extra: 2256/1630,
  35777. bottom: 261/2517
  35778. },
  35779. form: "normal"
  35780. },
  35781. insides: {
  35782. height: math.unit(11.92, "feet"),
  35783. name: "Insides",
  35784. image: {
  35785. source: "./media/characters/saphinara/insides.svg"
  35786. },
  35787. form: "normal"
  35788. },
  35789. head: {
  35790. height: math.unit(4.17, "feet"),
  35791. name: "Head",
  35792. image: {
  35793. source: "./media/characters/saphinara/head.svg"
  35794. },
  35795. form: "normal"
  35796. },
  35797. tongue: {
  35798. height: math.unit(4.60, "feet"),
  35799. name: "Tongue",
  35800. image: {
  35801. source: "./media/characters/saphinara/tongue.svg"
  35802. },
  35803. form: "normal"
  35804. },
  35805. headEnraged: {
  35806. height: math.unit(5.55, "feet"),
  35807. name: "Head (Enraged)",
  35808. image: {
  35809. source: "./media/characters/saphinara/head-enraged.svg"
  35810. },
  35811. form: "normal"
  35812. },
  35813. wings: {
  35814. height: math.unit(11.95, "feet"),
  35815. name: "Wings",
  35816. image: {
  35817. source: "./media/characters/saphinara/wings.svg"
  35818. },
  35819. form: "normal"
  35820. },
  35821. feathers: {
  35822. height: math.unit(8.92, "feet"),
  35823. name: "Feathers",
  35824. image: {
  35825. source: "./media/characters/saphinara/feathers.svg"
  35826. },
  35827. form: "normal"
  35828. },
  35829. shackles: {
  35830. height: math.unit(2, "feet"),
  35831. name: "Shackles",
  35832. image: {
  35833. source: "./media/characters/saphinara/shackles.svg"
  35834. },
  35835. form: "normal"
  35836. },
  35837. eyes: {
  35838. height: math.unit(1.331, "feet"),
  35839. name: "Eyes",
  35840. image: {
  35841. source: "./media/characters/saphinara/eyes.svg"
  35842. },
  35843. form: "normal"
  35844. },
  35845. eyesEnraged: {
  35846. height: math.unit(1.331, "feet"),
  35847. name: "Eyes (Enraged)",
  35848. image: {
  35849. source: "./media/characters/saphinara/eyes-enraged.svg"
  35850. },
  35851. form: "normal"
  35852. },
  35853. trueFormSide: {
  35854. height: math.unit(200, "feet"),
  35855. weight: math.unit(1e7, "tons"),
  35856. name: "Side",
  35857. image: {
  35858. source: "./media/characters/saphinara/true-form-side.svg",
  35859. extra: 1399/770,
  35860. bottom: 97/1496
  35861. },
  35862. form: "true-form",
  35863. default: true
  35864. },
  35865. trueFormMaw: {
  35866. height: math.unit(71.5, "feet"),
  35867. name: "Maw",
  35868. image: {
  35869. source: "./media/characters/saphinara/true-form-maw.svg",
  35870. extra: 2302/1453,
  35871. bottom: 0/2302
  35872. },
  35873. form: "true-form"
  35874. },
  35875. meowberusSide: {
  35876. height: math.unit(75, "feet"),
  35877. weight: math.unit(180000, "kg"),
  35878. preyCapacity: math.unit(50000, "people"),
  35879. name: "Side",
  35880. image: {
  35881. source: "./media/characters/saphinara/meowberus-side.svg",
  35882. extra: 1400/711,
  35883. bottom: 126/1526
  35884. },
  35885. form: "meowberus",
  35886. extraAttributes: {
  35887. "pawArea": {
  35888. name: "Paw Size",
  35889. power: 2,
  35890. type: "area",
  35891. base: math.unit(35, "m^2")
  35892. }
  35893. }
  35894. },
  35895. },
  35896. [
  35897. {
  35898. name: "Normal",
  35899. height: math.unit(15 + 7/12, "feet"),
  35900. default: true,
  35901. form: "normal"
  35902. },
  35903. {
  35904. name: "Angry",
  35905. height: math.unit(30 + 6/12, "feet"),
  35906. form: "normal"
  35907. },
  35908. {
  35909. name: "Enraged",
  35910. height: math.unit(102 + 1/12, "feet"),
  35911. form: "normal"
  35912. },
  35913. {
  35914. name: "True",
  35915. height: math.unit(200, "feet"),
  35916. default: true,
  35917. form: "true-form"
  35918. },
  35919. {
  35920. name: "Normal",
  35921. height: math.unit(75, "feet"),
  35922. default: true,
  35923. form: "meowberus"
  35924. },
  35925. ],
  35926. {
  35927. "normal": {
  35928. name: "Normal",
  35929. default: true
  35930. },
  35931. "true-form": {
  35932. name: "True Form"
  35933. },
  35934. "meowberus": {
  35935. name: "Meowberus",
  35936. },
  35937. }
  35938. ))
  35939. characterMakers.push(() => makeCharacter(
  35940. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35941. {
  35942. front: {
  35943. height: math.unit(6 + 8/12, "feet"),
  35944. weight: math.unit(300, "lb"),
  35945. name: "Front",
  35946. image: {
  35947. source: "./media/characters/jrain/front.svg",
  35948. extra: 3039/2865,
  35949. bottom: 399/3438
  35950. }
  35951. },
  35952. back: {
  35953. height: math.unit(6 + 8/12, "feet"),
  35954. weight: math.unit(300, "lb"),
  35955. name: "Back",
  35956. image: {
  35957. source: "./media/characters/jrain/back.svg",
  35958. extra: 3089/2938,
  35959. bottom: 172/3261
  35960. }
  35961. },
  35962. head: {
  35963. height: math.unit(2.14, "feet"),
  35964. name: "Head",
  35965. image: {
  35966. source: "./media/characters/jrain/head.svg"
  35967. }
  35968. },
  35969. maw: {
  35970. height: math.unit(1.77, "feet"),
  35971. name: "Maw",
  35972. image: {
  35973. source: "./media/characters/jrain/maw.svg"
  35974. }
  35975. },
  35976. leftHand: {
  35977. height: math.unit(1.1, "feet"),
  35978. name: "Left Hand",
  35979. image: {
  35980. source: "./media/characters/jrain/left-hand.svg"
  35981. }
  35982. },
  35983. rightHand: {
  35984. height: math.unit(1.1, "feet"),
  35985. name: "Right Hand",
  35986. image: {
  35987. source: "./media/characters/jrain/right-hand.svg"
  35988. }
  35989. },
  35990. eye: {
  35991. height: math.unit(0.35, "feet"),
  35992. name: "Eye",
  35993. image: {
  35994. source: "./media/characters/jrain/eye.svg"
  35995. }
  35996. },
  35997. },
  35998. [
  35999. {
  36000. name: "Normal",
  36001. height: math.unit(6 + 8/12, "feet"),
  36002. default: true
  36003. },
  36004. {
  36005. name: "Casually Large",
  36006. height: math.unit(25, "feet")
  36007. },
  36008. {
  36009. name: "Giant",
  36010. height: math.unit(100, "feet")
  36011. },
  36012. {
  36013. name: "Kaiju",
  36014. height: math.unit(300, "feet")
  36015. },
  36016. ]
  36017. ))
  36018. characterMakers.push(() => makeCharacter(
  36019. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36020. {
  36021. dragon: {
  36022. height: math.unit(5, "meters"),
  36023. name: "Dragon",
  36024. image: {
  36025. source: "./media/characters/sabrina/dragon.svg",
  36026. extra: 3670 / 2365,
  36027. bottom: 333 / 4003
  36028. }
  36029. },
  36030. gryphon: {
  36031. height: math.unit(3, "meters"),
  36032. name: "Gryphon",
  36033. image: {
  36034. source: "./media/characters/sabrina/gryphon.svg",
  36035. extra: 1576 / 945,
  36036. bottom: 71 / 1647
  36037. }
  36038. },
  36039. snake: {
  36040. height: math.unit(12, "meters"),
  36041. name: "Snake",
  36042. image: {
  36043. source: "./media/characters/sabrina/snake.svg",
  36044. extra: 1758 / 1320,
  36045. bottom: 186 / 1944
  36046. }
  36047. },
  36048. collar: {
  36049. height: math.unit(1.86, "meters"),
  36050. name: "Collar",
  36051. image: {
  36052. source: "./media/characters/sabrina/collar.svg"
  36053. }
  36054. },
  36055. eye: {
  36056. height: math.unit(0.53, "meters"),
  36057. name: "Eye",
  36058. image: {
  36059. source: "./media/characters/sabrina/eye.svg"
  36060. }
  36061. },
  36062. foot: {
  36063. height: math.unit(1.86, "meters"),
  36064. name: "Foot",
  36065. image: {
  36066. source: "./media/characters/sabrina/foot.svg"
  36067. }
  36068. },
  36069. hand: {
  36070. height: math.unit(1.32, "meters"),
  36071. name: "Hand",
  36072. image: {
  36073. source: "./media/characters/sabrina/hand.svg"
  36074. }
  36075. },
  36076. head: {
  36077. height: math.unit(2.44, "meters"),
  36078. name: "Head",
  36079. image: {
  36080. source: "./media/characters/sabrina/head.svg"
  36081. }
  36082. },
  36083. headAngry: {
  36084. height: math.unit(2.44, "meters"),
  36085. name: "Head (Angry))",
  36086. image: {
  36087. source: "./media/characters/sabrina/head-angry.svg"
  36088. }
  36089. },
  36090. maw: {
  36091. height: math.unit(1.65, "meters"),
  36092. name: "Maw",
  36093. image: {
  36094. source: "./media/characters/sabrina/maw.svg"
  36095. }
  36096. },
  36097. spikes: {
  36098. height: math.unit(1.69, "meters"),
  36099. name: "Spikes",
  36100. image: {
  36101. source: "./media/characters/sabrina/spikes.svg"
  36102. }
  36103. },
  36104. stomach: {
  36105. height: math.unit(1.15, "meters"),
  36106. name: "Stomach",
  36107. image: {
  36108. source: "./media/characters/sabrina/stomach.svg"
  36109. }
  36110. },
  36111. tongue: {
  36112. height: math.unit(1.27, "meters"),
  36113. name: "Tongue",
  36114. image: {
  36115. source: "./media/characters/sabrina/tongue.svg"
  36116. }
  36117. },
  36118. wingDorsal: {
  36119. height: math.unit(4.85, "meters"),
  36120. name: "Wing (Dorsal)",
  36121. image: {
  36122. source: "./media/characters/sabrina/wing-dorsal.svg"
  36123. }
  36124. },
  36125. wingVentral: {
  36126. height: math.unit(4.85, "meters"),
  36127. name: "Wing (Ventral)",
  36128. image: {
  36129. source: "./media/characters/sabrina/wing-ventral.svg"
  36130. }
  36131. },
  36132. },
  36133. [
  36134. {
  36135. name: "Normal",
  36136. height: math.unit(5, "meters"),
  36137. default: true
  36138. },
  36139. ]
  36140. ))
  36141. characterMakers.push(() => makeCharacter(
  36142. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36143. {
  36144. frontMaid: {
  36145. height: math.unit(5 + 5/12, "feet"),
  36146. weight: math.unit(130, "lb"),
  36147. name: "Front (Maid)",
  36148. image: {
  36149. source: "./media/characters/midnight-tales/front-maid.svg",
  36150. extra: 489/454,
  36151. bottom: 61/550
  36152. }
  36153. },
  36154. frontFormal: {
  36155. height: math.unit(5 + 5/12, "feet"),
  36156. weight: math.unit(130, "lb"),
  36157. name: "Front (Formal)",
  36158. image: {
  36159. source: "./media/characters/midnight-tales/front-formal.svg",
  36160. extra: 489/454,
  36161. bottom: 61/550
  36162. }
  36163. },
  36164. back: {
  36165. height: math.unit(5 + 5/12, "feet"),
  36166. weight: math.unit(130, "lb"),
  36167. name: "Back",
  36168. image: {
  36169. source: "./media/characters/midnight-tales/back.svg",
  36170. extra: 498/456,
  36171. bottom: 33/531
  36172. }
  36173. },
  36174. frontBeast: {
  36175. height: math.unit(40, "feet"),
  36176. weight: math.unit(64000, "lb"),
  36177. name: "Front (Beast)",
  36178. image: {
  36179. source: "./media/characters/midnight-tales/front-beast.svg",
  36180. extra: 927/860,
  36181. bottom: 53/980
  36182. }
  36183. },
  36184. backBeast: {
  36185. height: math.unit(40, "feet"),
  36186. weight: math.unit(64000, "lb"),
  36187. name: "Back (Beast)",
  36188. image: {
  36189. source: "./media/characters/midnight-tales/back-beast.svg",
  36190. extra: 929/855,
  36191. bottom: 16/945
  36192. }
  36193. },
  36194. footBeast: {
  36195. height: math.unit(6.7, "feet"),
  36196. name: "Foot (Beast)",
  36197. image: {
  36198. source: "./media/characters/midnight-tales/foot-beast.svg"
  36199. }
  36200. },
  36201. headBeast: {
  36202. height: math.unit(8, "feet"),
  36203. name: "Head (Beast)",
  36204. image: {
  36205. source: "./media/characters/midnight-tales/head-beast.svg"
  36206. }
  36207. },
  36208. },
  36209. [
  36210. {
  36211. name: "Normal",
  36212. height: math.unit(5 + 5 / 12, "feet"),
  36213. default: true
  36214. },
  36215. {
  36216. name: "Macro",
  36217. height: math.unit(25, "feet")
  36218. },
  36219. ]
  36220. ))
  36221. characterMakers.push(() => makeCharacter(
  36222. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36223. {
  36224. front: {
  36225. height: math.unit(5 + 10/12, "feet"),
  36226. name: "Front",
  36227. image: {
  36228. source: "./media/characters/argon/front.svg",
  36229. extra: 2009/1935,
  36230. bottom: 118/2127
  36231. }
  36232. },
  36233. back: {
  36234. height: math.unit(5 + 10/12, "feet"),
  36235. name: "Back",
  36236. image: {
  36237. source: "./media/characters/argon/back.svg",
  36238. extra: 2047/1992,
  36239. bottom: 20/2067
  36240. }
  36241. },
  36242. frontDressed: {
  36243. height: math.unit(5 + 10/12, "feet"),
  36244. name: "Front (Dressed)",
  36245. image: {
  36246. source: "./media/characters/argon/front-dressed.svg",
  36247. extra: 2009/1935,
  36248. bottom: 118/2127
  36249. }
  36250. },
  36251. },
  36252. [
  36253. {
  36254. name: "Normal",
  36255. height: math.unit(5 + 10/12, "feet"),
  36256. default: true
  36257. },
  36258. ]
  36259. ))
  36260. characterMakers.push(() => makeCharacter(
  36261. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36262. {
  36263. front: {
  36264. height: math.unit(8 + 6/12, "feet"),
  36265. weight: math.unit(1150, "lb"),
  36266. name: "Front",
  36267. image: {
  36268. source: "./media/characters/kichi/front.svg",
  36269. extra: 1267/1164,
  36270. bottom: 61/1328
  36271. }
  36272. },
  36273. back: {
  36274. height: math.unit(8 + 6/12, "feet"),
  36275. weight: math.unit(1150, "lb"),
  36276. name: "Back",
  36277. image: {
  36278. source: "./media/characters/kichi/back.svg",
  36279. extra: 1273/1166,
  36280. bottom: 33/1306
  36281. }
  36282. },
  36283. },
  36284. [
  36285. {
  36286. name: "Normal",
  36287. height: math.unit(8 + 6/12, "feet"),
  36288. default: true
  36289. },
  36290. ]
  36291. ))
  36292. characterMakers.push(() => makeCharacter(
  36293. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36294. {
  36295. front: {
  36296. height: math.unit(6, "feet"),
  36297. weight: math.unit(210, "lb"),
  36298. name: "Front",
  36299. image: {
  36300. source: "./media/characters/manetel-greyscale/front.svg",
  36301. extra: 350/312,
  36302. bottom: 8/358
  36303. }
  36304. },
  36305. },
  36306. [
  36307. {
  36308. name: "Micro",
  36309. height: math.unit(2, "inches")
  36310. },
  36311. {
  36312. name: "Normal",
  36313. height: math.unit(6, "feet"),
  36314. default: true
  36315. },
  36316. {
  36317. name: "Minimacro",
  36318. height: math.unit(17, "feet")
  36319. },
  36320. {
  36321. name: "Macro",
  36322. height: math.unit(117, "feet")
  36323. },
  36324. ]
  36325. ))
  36326. characterMakers.push(() => makeCharacter(
  36327. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36328. {
  36329. side: {
  36330. height: math.unit(5 + 1/12, "feet"),
  36331. weight: math.unit(418, "lb"),
  36332. name: "Side",
  36333. image: {
  36334. source: "./media/characters/softpurr/side.svg",
  36335. extra: 1993/1945,
  36336. bottom: 134/2127
  36337. }
  36338. },
  36339. front: {
  36340. height: math.unit(5 + 1/12, "feet"),
  36341. weight: math.unit(418, "lb"),
  36342. name: "Front",
  36343. image: {
  36344. source: "./media/characters/softpurr/front.svg",
  36345. extra: 1950/1856,
  36346. bottom: 174/2124
  36347. }
  36348. },
  36349. paw: {
  36350. height: math.unit(1, "feet"),
  36351. name: "Paw",
  36352. image: {
  36353. source: "./media/characters/softpurr/paw.svg"
  36354. }
  36355. },
  36356. },
  36357. [
  36358. {
  36359. name: "Normal",
  36360. height: math.unit(5 + 1/12, "feet"),
  36361. default: true
  36362. },
  36363. ]
  36364. ))
  36365. characterMakers.push(() => makeCharacter(
  36366. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36367. {
  36368. front: {
  36369. height: math.unit(260, "meters"),
  36370. name: "Front",
  36371. image: {
  36372. source: "./media/characters/anahita/front.svg",
  36373. extra: 665/635,
  36374. bottom: 89/754
  36375. }
  36376. },
  36377. },
  36378. [
  36379. {
  36380. name: "Macro",
  36381. height: math.unit(260, "meters"),
  36382. default: true
  36383. },
  36384. ]
  36385. ))
  36386. characterMakers.push(() => makeCharacter(
  36387. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36388. {
  36389. front: {
  36390. height: math.unit(4 + 10/12, "feet"),
  36391. weight: math.unit(160, "lb"),
  36392. name: "Front",
  36393. image: {
  36394. source: "./media/characters/chip-mouse/front.svg",
  36395. extra: 3528/3408,
  36396. bottom: 0/3528
  36397. }
  36398. },
  36399. frontNsfw: {
  36400. height: math.unit(4 + 10/12, "feet"),
  36401. weight: math.unit(160, "lb"),
  36402. name: "Front (NSFW)",
  36403. image: {
  36404. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36405. extra: 3528/3408,
  36406. bottom: 0/3528
  36407. }
  36408. },
  36409. },
  36410. [
  36411. {
  36412. name: "Normal",
  36413. height: math.unit(4 + 10/12, "feet"),
  36414. default: true
  36415. },
  36416. ]
  36417. ))
  36418. characterMakers.push(() => makeCharacter(
  36419. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36420. {
  36421. side: {
  36422. height: math.unit(10, "feet"),
  36423. weight: math.unit(14000, "lb"),
  36424. name: "Side",
  36425. image: {
  36426. source: "./media/characters/kremm/side.svg",
  36427. extra: 1390/1053,
  36428. bottom: 90/1480
  36429. }
  36430. },
  36431. gut: {
  36432. height: math.unit(5.8, "feet"),
  36433. name: "Gut",
  36434. image: {
  36435. source: "./media/characters/kremm/gut.svg"
  36436. }
  36437. },
  36438. ass: {
  36439. height: math.unit(6.1, "feet"),
  36440. name: "Ass",
  36441. image: {
  36442. source: "./media/characters/kremm/ass.svg"
  36443. }
  36444. },
  36445. jaws: {
  36446. height: math.unit(2.2, "feet"),
  36447. name: "Jaws",
  36448. image: {
  36449. source: "./media/characters/kremm/jaws.svg"
  36450. }
  36451. },
  36452. dick: {
  36453. height: math.unit(4.26, "feet"),
  36454. name: "Dick",
  36455. image: {
  36456. source: "./media/characters/kremm/dick.svg"
  36457. }
  36458. },
  36459. },
  36460. [
  36461. {
  36462. name: "Normal",
  36463. height: math.unit(10, "feet"),
  36464. default: true
  36465. },
  36466. ]
  36467. ))
  36468. characterMakers.push(() => makeCharacter(
  36469. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36470. {
  36471. front: {
  36472. height: math.unit(30, "stories"),
  36473. name: "Front",
  36474. image: {
  36475. source: "./media/characters/kai/front.svg",
  36476. extra: 1892/1718,
  36477. bottom: 162/2054
  36478. }
  36479. },
  36480. },
  36481. [
  36482. {
  36483. name: "Macro",
  36484. height: math.unit(30, "stories"),
  36485. default: true
  36486. },
  36487. ]
  36488. ))
  36489. characterMakers.push(() => makeCharacter(
  36490. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36491. {
  36492. front: {
  36493. height: math.unit(6 + 4/12, "feet"),
  36494. weight: math.unit(145, "lb"),
  36495. name: "Front",
  36496. image: {
  36497. source: "./media/characters/sykes/front.svg",
  36498. extra: 1321 / 1187,
  36499. bottom: 66 / 1387
  36500. }
  36501. },
  36502. back: {
  36503. height: math.unit(6 + 4/12, "feet"),
  36504. weight: math.unit(145, "lb"),
  36505. name: "Back",
  36506. image: {
  36507. source: "./media/characters/sykes/back.svg",
  36508. extra: 1326/1181,
  36509. bottom: 31/1357
  36510. }
  36511. },
  36512. traditionalOutfit: {
  36513. height: math.unit(6 + 4/12, "feet"),
  36514. weight: math.unit(145, "lb"),
  36515. name: "Traditional Outfit",
  36516. image: {
  36517. source: "./media/characters/sykes/traditional-outfit.svg",
  36518. extra: 1321 / 1187,
  36519. bottom: 66 / 1387
  36520. }
  36521. },
  36522. adventureOutfit: {
  36523. height: math.unit(6 + 4/12, "feet"),
  36524. weight: math.unit(145, "lb"),
  36525. name: "Adventure Outfit",
  36526. image: {
  36527. source: "./media/characters/sykes/adventure-outfit.svg",
  36528. extra: 1321 / 1187,
  36529. bottom: 66 / 1387
  36530. }
  36531. },
  36532. handLeft: {
  36533. height: math.unit(0.9, "feet"),
  36534. name: "Hand (Left)",
  36535. image: {
  36536. source: "./media/characters/sykes/hand-left.svg"
  36537. }
  36538. },
  36539. handRight: {
  36540. height: math.unit(0.839, "feet"),
  36541. name: "Hand (Right)",
  36542. image: {
  36543. source: "./media/characters/sykes/hand-right.svg"
  36544. }
  36545. },
  36546. leftFoot: {
  36547. height: math.unit(1.2, "feet"),
  36548. name: "Foot (Left)",
  36549. image: {
  36550. source: "./media/characters/sykes/foot-left.svg"
  36551. }
  36552. },
  36553. rightFoot: {
  36554. height: math.unit(1.2, "feet"),
  36555. name: "Foot (Right)",
  36556. image: {
  36557. source: "./media/characters/sykes/foot-right.svg"
  36558. }
  36559. },
  36560. maw: {
  36561. height: math.unit(1.93, "feet"),
  36562. name: "Maw",
  36563. image: {
  36564. source: "./media/characters/sykes/maw.svg"
  36565. }
  36566. },
  36567. teeth: {
  36568. height: math.unit(0.51, "feet"),
  36569. name: "Teeth",
  36570. image: {
  36571. source: "./media/characters/sykes/teeth.svg"
  36572. }
  36573. },
  36574. tongue: {
  36575. height: math.unit(2.13, "feet"),
  36576. name: "Tongue",
  36577. image: {
  36578. source: "./media/characters/sykes/tongue.svg"
  36579. }
  36580. },
  36581. uvula: {
  36582. height: math.unit(0.16, "feet"),
  36583. name: "Uvula",
  36584. image: {
  36585. source: "./media/characters/sykes/uvula.svg"
  36586. }
  36587. },
  36588. collar: {
  36589. height: math.unit(0.287, "feet"),
  36590. name: "Collar",
  36591. image: {
  36592. source: "./media/characters/sykes/collar.svg"
  36593. }
  36594. },
  36595. tail: {
  36596. height: math.unit(3.8, "feet"),
  36597. name: "Tail",
  36598. image: {
  36599. source: "./media/characters/sykes/tail.svg"
  36600. }
  36601. },
  36602. },
  36603. [
  36604. {
  36605. name: "Shrunken",
  36606. height: math.unit(5, "inches")
  36607. },
  36608. {
  36609. name: "Normal",
  36610. height: math.unit(6 + 4 / 12, "feet"),
  36611. default: true
  36612. },
  36613. {
  36614. name: "Big",
  36615. height: math.unit(15, "feet")
  36616. },
  36617. ]
  36618. ))
  36619. characterMakers.push(() => makeCharacter(
  36620. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36621. {
  36622. front: {
  36623. height: math.unit(5 + 8/12, "feet"),
  36624. weight: math.unit(190, "lb"),
  36625. name: "Front",
  36626. image: {
  36627. source: "./media/characters/oven-otter/front.svg",
  36628. extra: 1809/1740,
  36629. bottom: 181/1990
  36630. }
  36631. },
  36632. back: {
  36633. height: math.unit(5 + 8/12, "feet"),
  36634. weight: math.unit(190, "lb"),
  36635. name: "Back",
  36636. image: {
  36637. source: "./media/characters/oven-otter/back.svg",
  36638. extra: 1709/1635,
  36639. bottom: 118/1827
  36640. }
  36641. },
  36642. hand: {
  36643. height: math.unit(1.07, "feet"),
  36644. name: "Hand",
  36645. image: {
  36646. source: "./media/characters/oven-otter/hand.svg"
  36647. }
  36648. },
  36649. beans: {
  36650. height: math.unit(1.74, "feet"),
  36651. name: "Beans",
  36652. image: {
  36653. source: "./media/characters/oven-otter/beans.svg"
  36654. }
  36655. },
  36656. },
  36657. [
  36658. {
  36659. name: "Micro",
  36660. height: math.unit(0.5, "inches")
  36661. },
  36662. {
  36663. name: "Normal",
  36664. height: math.unit(5 + 8/12, "feet"),
  36665. default: true
  36666. },
  36667. {
  36668. name: "Macro",
  36669. height: math.unit(250, "feet")
  36670. },
  36671. {
  36672. name: "Really High",
  36673. height: math.unit(420, "feet")
  36674. },
  36675. ]
  36676. ))
  36677. characterMakers.push(() => makeCharacter(
  36678. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36679. {
  36680. front: {
  36681. height: math.unit(5, "meters"),
  36682. weight: math.unit(292000000000000, "kg"),
  36683. name: "Front",
  36684. image: {
  36685. source: "./media/characters/devourer/front.svg",
  36686. extra: 1800/1733,
  36687. bottom: 211/2011
  36688. }
  36689. },
  36690. maw: {
  36691. height: math.unit(1.1, "meter"),
  36692. name: "Maw",
  36693. image: {
  36694. source: "./media/characters/devourer/maw.svg"
  36695. }
  36696. },
  36697. },
  36698. [
  36699. {
  36700. name: "Small",
  36701. height: math.unit(3, "meters")
  36702. },
  36703. {
  36704. name: "Large",
  36705. height: math.unit(5, "meters"),
  36706. default: true
  36707. },
  36708. ]
  36709. ))
  36710. characterMakers.push(() => makeCharacter(
  36711. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36712. {
  36713. front: {
  36714. height: math.unit(6, "feet"),
  36715. weight: math.unit(400, "lb"),
  36716. name: "Front",
  36717. image: {
  36718. source: "./media/characters/ellarby/front.svg",
  36719. extra: 1909/1763,
  36720. bottom: 80/1989
  36721. }
  36722. },
  36723. back: {
  36724. height: math.unit(6, "feet"),
  36725. weight: math.unit(400, "lb"),
  36726. name: "Back",
  36727. image: {
  36728. source: "./media/characters/ellarby/back.svg",
  36729. extra: 1914/1784,
  36730. bottom: 172/2086
  36731. }
  36732. },
  36733. },
  36734. [
  36735. {
  36736. name: "Mischief",
  36737. height: math.unit(18, "inches")
  36738. },
  36739. {
  36740. name: "Trouble",
  36741. height: math.unit(12, "feet")
  36742. },
  36743. {
  36744. name: "Havoc",
  36745. height: math.unit(200, "feet"),
  36746. default: true
  36747. },
  36748. {
  36749. name: "Pandemonium",
  36750. height: math.unit(1, "mile")
  36751. },
  36752. {
  36753. name: "Catastrophe",
  36754. height: math.unit(100, "miles")
  36755. },
  36756. ]
  36757. ))
  36758. characterMakers.push(() => makeCharacter(
  36759. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36760. {
  36761. front: {
  36762. height: math.unit(4.7, "meters"),
  36763. weight: math.unit(6500, "kg"),
  36764. name: "Front",
  36765. image: {
  36766. source: "./media/characters/vex/front.svg",
  36767. extra: 1288/1140,
  36768. bottom: 100/1388
  36769. }
  36770. },
  36771. },
  36772. [
  36773. {
  36774. name: "Normal",
  36775. height: math.unit(4.7, "meters"),
  36776. default: true
  36777. },
  36778. ]
  36779. ))
  36780. characterMakers.push(() => makeCharacter(
  36781. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36782. {
  36783. normal: {
  36784. height: math.unit(6, "feet"),
  36785. weight: math.unit(350, "lb"),
  36786. name: "Normal",
  36787. image: {
  36788. source: "./media/characters/teshy/normal.svg",
  36789. extra: 1795/1735,
  36790. bottom: 16/1811
  36791. }
  36792. },
  36793. monsterFront: {
  36794. height: math.unit(12, "feet"),
  36795. weight: math.unit(4700, "lb"),
  36796. name: "Monster (Front)",
  36797. image: {
  36798. source: "./media/characters/teshy/monster-front.svg",
  36799. extra: 2042/2034,
  36800. bottom: 128/2170
  36801. }
  36802. },
  36803. monsterSide: {
  36804. height: math.unit(12, "feet"),
  36805. weight: math.unit(4700, "lb"),
  36806. name: "Monster (Side)",
  36807. image: {
  36808. source: "./media/characters/teshy/monster-side.svg",
  36809. extra: 2067/2056,
  36810. bottom: 70/2137
  36811. }
  36812. },
  36813. monsterBack: {
  36814. height: math.unit(12, "feet"),
  36815. weight: math.unit(4700, "lb"),
  36816. name: "Monster (Back)",
  36817. image: {
  36818. source: "./media/characters/teshy/monster-back.svg",
  36819. extra: 1921/1914,
  36820. bottom: 171/2092
  36821. }
  36822. },
  36823. },
  36824. [
  36825. {
  36826. name: "Normal",
  36827. height: math.unit(6, "feet"),
  36828. default: true
  36829. },
  36830. ]
  36831. ))
  36832. characterMakers.push(() => makeCharacter(
  36833. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36834. {
  36835. front: {
  36836. height: math.unit(6, "feet"),
  36837. name: "Front",
  36838. image: {
  36839. source: "./media/characters/ramey/front.svg",
  36840. extra: 790/787,
  36841. bottom: 27/817
  36842. }
  36843. },
  36844. },
  36845. [
  36846. {
  36847. name: "Normal",
  36848. height: math.unit(6, "feet"),
  36849. default: true
  36850. },
  36851. ]
  36852. ))
  36853. characterMakers.push(() => makeCharacter(
  36854. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36855. {
  36856. front: {
  36857. height: math.unit(5 + 5/12, "feet"),
  36858. weight: math.unit(120, "lb"),
  36859. name: "Front",
  36860. image: {
  36861. source: "./media/characters/phirae/front.svg",
  36862. extra: 2491/2436,
  36863. bottom: 38/2529
  36864. }
  36865. },
  36866. },
  36867. [
  36868. {
  36869. name: "Normal",
  36870. height: math.unit(5 + 5/12, "feet"),
  36871. default: true
  36872. },
  36873. ]
  36874. ))
  36875. characterMakers.push(() => makeCharacter(
  36876. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36877. {
  36878. front: {
  36879. height: math.unit(5 + 3/12, "feet"),
  36880. name: "Front",
  36881. image: {
  36882. source: "./media/characters/stagglas/front.svg",
  36883. extra: 962/882,
  36884. bottom: 53/1015
  36885. }
  36886. },
  36887. feral: {
  36888. height: math.unit(335, "cm"),
  36889. name: "Feral",
  36890. image: {
  36891. source: "./media/characters/stagglas/feral.svg",
  36892. extra: 1732/1090,
  36893. bottom: 48/1780
  36894. }
  36895. },
  36896. },
  36897. [
  36898. {
  36899. name: "Normal",
  36900. height: math.unit(5 + 3/12, "feet"),
  36901. default: true
  36902. },
  36903. ]
  36904. ))
  36905. characterMakers.push(() => makeCharacter(
  36906. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36907. {
  36908. front: {
  36909. height: math.unit(5 + 4/12, "feet"),
  36910. weight: math.unit(145, "lb"),
  36911. name: "Front",
  36912. image: {
  36913. source: "./media/characters/starra/front.svg",
  36914. extra: 1790/1691,
  36915. bottom: 91/1881
  36916. }
  36917. },
  36918. },
  36919. [
  36920. {
  36921. name: "Normal",
  36922. height: math.unit(5 + 4/12, "feet"),
  36923. default: true
  36924. },
  36925. ]
  36926. ))
  36927. characterMakers.push(() => makeCharacter(
  36928. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36929. {
  36930. front: {
  36931. height: math.unit(3.5, "meters"),
  36932. name: "Front",
  36933. image: {
  36934. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36935. extra: 1248/972,
  36936. bottom: 38/1286
  36937. }
  36938. },
  36939. },
  36940. [
  36941. {
  36942. name: "Normal",
  36943. height: math.unit(3.5, "meters"),
  36944. default: true
  36945. },
  36946. ]
  36947. ))
  36948. characterMakers.push(() => makeCharacter(
  36949. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36950. {
  36951. side: {
  36952. height: math.unit(8 + 2/12, "feet"),
  36953. weight: math.unit(1240, "lb"),
  36954. name: "Side",
  36955. image: {
  36956. source: "./media/characters/mika-valentine/side.svg",
  36957. extra: 2670/2501,
  36958. bottom: 250/2920
  36959. }
  36960. },
  36961. },
  36962. [
  36963. {
  36964. name: "Normal",
  36965. height: math.unit(8 + 2/12, "feet"),
  36966. default: true
  36967. },
  36968. ]
  36969. ))
  36970. characterMakers.push(() => makeCharacter(
  36971. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36972. {
  36973. front: {
  36974. height: math.unit(7 + 2/12, "feet"),
  36975. name: "Front",
  36976. image: {
  36977. source: "./media/characters/xoltol/front.svg",
  36978. extra: 2212/2124,
  36979. bottom: 84/2296
  36980. }
  36981. },
  36982. side: {
  36983. height: math.unit(7 + 2/12, "feet"),
  36984. name: "Side",
  36985. image: {
  36986. source: "./media/characters/xoltol/side.svg",
  36987. extra: 2273/2197,
  36988. bottom: 26/2299
  36989. }
  36990. },
  36991. hand: {
  36992. height: math.unit(2.5, "feet"),
  36993. name: "Hand",
  36994. image: {
  36995. source: "./media/characters/xoltol/hand.svg"
  36996. }
  36997. },
  36998. },
  36999. [
  37000. {
  37001. name: "Small-ish",
  37002. height: math.unit(5 + 11/12, "feet")
  37003. },
  37004. {
  37005. name: "Normal",
  37006. height: math.unit(7 + 2/12, "feet")
  37007. },
  37008. {
  37009. name: "\"Macro\"",
  37010. height: math.unit(14 + 9/12, "feet"),
  37011. default: true
  37012. },
  37013. {
  37014. name: "Alternate Height",
  37015. height: math.unit(20, "feet")
  37016. },
  37017. {
  37018. name: "Actually Macro",
  37019. height: math.unit(100, "feet")
  37020. },
  37021. ]
  37022. ))
  37023. characterMakers.push(() => makeCharacter(
  37024. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37025. {
  37026. front: {
  37027. height: math.unit(5 + 2/12, "feet"),
  37028. weight: math.unit(75, "kg"),
  37029. name: "Front",
  37030. image: {
  37031. source: "./media/characters/kotetsu-redwood/front.svg",
  37032. extra: 1053/942,
  37033. bottom: 60/1113
  37034. }
  37035. },
  37036. },
  37037. [
  37038. {
  37039. name: "Normal",
  37040. height: math.unit(5 + 2/12, "feet"),
  37041. default: true
  37042. },
  37043. ]
  37044. ))
  37045. characterMakers.push(() => makeCharacter(
  37046. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37047. {
  37048. front: {
  37049. height: math.unit(2.4, "meters"),
  37050. weight: math.unit(125, "kg"),
  37051. name: "Front",
  37052. image: {
  37053. source: "./media/characters/lilith/front.svg",
  37054. extra: 1590/1513,
  37055. bottom: 203/1793
  37056. }
  37057. },
  37058. },
  37059. [
  37060. {
  37061. name: "Humanoid",
  37062. height: math.unit(2.4, "meters")
  37063. },
  37064. {
  37065. name: "Normal",
  37066. height: math.unit(6, "meters"),
  37067. default: true
  37068. },
  37069. {
  37070. name: "Largest",
  37071. height: math.unit(55, "meters")
  37072. },
  37073. ]
  37074. ))
  37075. characterMakers.push(() => makeCharacter(
  37076. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37077. {
  37078. front: {
  37079. height: math.unit(8 + 4/12, "feet"),
  37080. weight: math.unit(535, "lb"),
  37081. name: "Front",
  37082. image: {
  37083. source: "./media/characters/beh'kah-bolger/front.svg",
  37084. extra: 1660/1603,
  37085. bottom: 37/1697
  37086. }
  37087. },
  37088. },
  37089. [
  37090. {
  37091. name: "Normal",
  37092. height: math.unit(8 + 4/12, "feet"),
  37093. default: true
  37094. },
  37095. {
  37096. name: "Kaiju",
  37097. height: math.unit(250, "feet")
  37098. },
  37099. {
  37100. name: "Still Growing",
  37101. height: math.unit(10, "miles")
  37102. },
  37103. {
  37104. name: "Continental",
  37105. height: math.unit(5000, "miles")
  37106. },
  37107. {
  37108. name: "Final Form",
  37109. height: math.unit(2500000, "miles")
  37110. },
  37111. ]
  37112. ))
  37113. characterMakers.push(() => makeCharacter(
  37114. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37115. {
  37116. front: {
  37117. height: math.unit(7 + 2/12, "feet"),
  37118. weight: math.unit(230, "kg"),
  37119. name: "Front",
  37120. image: {
  37121. source: "./media/characters/tatyana-milewska/front.svg",
  37122. extra: 1199/1150,
  37123. bottom: 86/1285
  37124. }
  37125. },
  37126. },
  37127. [
  37128. {
  37129. name: "Normal",
  37130. height: math.unit(7 + 2/12, "feet"),
  37131. default: true
  37132. },
  37133. {
  37134. name: "Big",
  37135. height: math.unit(12, "feet")
  37136. },
  37137. {
  37138. name: "Minimacro",
  37139. height: math.unit(20, "feet")
  37140. },
  37141. {
  37142. name: "Macro",
  37143. height: math.unit(120, "feet")
  37144. },
  37145. ]
  37146. ))
  37147. characterMakers.push(() => makeCharacter(
  37148. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37149. {
  37150. front: {
  37151. height: math.unit(7 + 8/12, "feet"),
  37152. weight: math.unit(152, "kg"),
  37153. name: "Front",
  37154. image: {
  37155. source: "./media/characters/helen-arri/front.svg",
  37156. extra: 440/423,
  37157. bottom: 14/454
  37158. }
  37159. },
  37160. back: {
  37161. height: math.unit(7 + 8/12, "feet"),
  37162. weight: math.unit(152, "kg"),
  37163. name: "Back",
  37164. image: {
  37165. source: "./media/characters/helen-arri/back.svg",
  37166. extra: 443/426,
  37167. bottom: 8/451
  37168. }
  37169. },
  37170. },
  37171. [
  37172. {
  37173. name: "Normal",
  37174. height: math.unit(7 + 8/12, "feet"),
  37175. default: true
  37176. },
  37177. {
  37178. name: "Big",
  37179. height: math.unit(14, "feet")
  37180. },
  37181. {
  37182. name: "Minimacro",
  37183. height: math.unit(24, "feet")
  37184. },
  37185. {
  37186. name: "Macro",
  37187. height: math.unit(140, "feet")
  37188. },
  37189. ]
  37190. ))
  37191. characterMakers.push(() => makeCharacter(
  37192. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37193. {
  37194. front: {
  37195. height: math.unit(6, "meters"),
  37196. name: "Front",
  37197. image: {
  37198. source: "./media/characters/ehanu-rehu/front.svg",
  37199. extra: 1800/1800,
  37200. bottom: 59/1859
  37201. }
  37202. },
  37203. },
  37204. [
  37205. {
  37206. name: "Normal",
  37207. height: math.unit(6, "meters"),
  37208. default: true
  37209. },
  37210. ]
  37211. ))
  37212. characterMakers.push(() => makeCharacter(
  37213. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37214. {
  37215. front: {
  37216. height: math.unit(7 + 3/12, "feet"),
  37217. name: "Front",
  37218. image: {
  37219. source: "./media/characters/renholder/front.svg",
  37220. extra: 3096/2960,
  37221. bottom: 250/3346
  37222. }
  37223. },
  37224. },
  37225. [
  37226. {
  37227. name: "Normal Bat",
  37228. height: math.unit(7 + 3/12, "feet"),
  37229. default: true
  37230. },
  37231. {
  37232. name: "Slightly Tall Bat",
  37233. height: math.unit(100, "feet")
  37234. },
  37235. {
  37236. name: "Big Bat",
  37237. height: math.unit(1000, "feet")
  37238. },
  37239. {
  37240. name: "City-Sized Bat",
  37241. height: math.unit(200000, "feet")
  37242. },
  37243. {
  37244. name: "Bigger Bat",
  37245. height: math.unit(10000, "miles")
  37246. },
  37247. {
  37248. name: "Solar Sized Bat",
  37249. height: math.unit(100, "AU")
  37250. },
  37251. {
  37252. name: "Galactic Bat",
  37253. height: math.unit(200000, "lightyears")
  37254. },
  37255. {
  37256. name: "Universally Known Bat",
  37257. height: math.unit(1, "universe")
  37258. },
  37259. ]
  37260. ))
  37261. characterMakers.push(() => makeCharacter(
  37262. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37263. {
  37264. front: {
  37265. height: math.unit(6 + 11/12, "feet"),
  37266. weight: math.unit(250, "lb"),
  37267. name: "Front",
  37268. image: {
  37269. source: "./media/characters/cookiecat/front.svg",
  37270. extra: 893/827,
  37271. bottom: 14/907
  37272. }
  37273. },
  37274. },
  37275. [
  37276. {
  37277. name: "Micro",
  37278. height: math.unit(3, "inches")
  37279. },
  37280. {
  37281. name: "Normal",
  37282. height: math.unit(6 + 11/12, "feet"),
  37283. default: true
  37284. },
  37285. {
  37286. name: "Macro",
  37287. height: math.unit(100, "feet")
  37288. },
  37289. {
  37290. name: "Macro+",
  37291. height: math.unit(404, "feet")
  37292. },
  37293. {
  37294. name: "Megamacro",
  37295. height: math.unit(165, "miles")
  37296. },
  37297. {
  37298. name: "Planetary",
  37299. height: math.unit(4600, "miles")
  37300. },
  37301. ]
  37302. ))
  37303. characterMakers.push(() => makeCharacter(
  37304. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37305. {
  37306. front: {
  37307. height: math.unit(10 + 3/12, "feet"),
  37308. weight: math.unit(1500, "lb"),
  37309. name: "Front",
  37310. image: {
  37311. source: "./media/characters/tux-kusanagi/front.svg",
  37312. extra: 944/840,
  37313. bottom: 39/983
  37314. }
  37315. },
  37316. back: {
  37317. height: math.unit(10 + 3/12, "feet"),
  37318. weight: math.unit(1500, "lb"),
  37319. name: "Back",
  37320. image: {
  37321. source: "./media/characters/tux-kusanagi/back.svg",
  37322. extra: 941/842,
  37323. bottom: 28/969
  37324. }
  37325. },
  37326. rump: {
  37327. height: math.unit(5.25, "feet"),
  37328. name: "Rump",
  37329. image: {
  37330. source: "./media/characters/tux-kusanagi/rump.svg"
  37331. }
  37332. },
  37333. beak: {
  37334. height: math.unit(1.54, "feet"),
  37335. name: "Beak",
  37336. image: {
  37337. source: "./media/characters/tux-kusanagi/beak.svg"
  37338. }
  37339. },
  37340. },
  37341. [
  37342. {
  37343. name: "Normal",
  37344. height: math.unit(10 + 3/12, "feet"),
  37345. default: true
  37346. },
  37347. ]
  37348. ))
  37349. characterMakers.push(() => makeCharacter(
  37350. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37351. {
  37352. front: {
  37353. height: math.unit(58, "feet"),
  37354. weight: math.unit(200, "tons"),
  37355. name: "Front",
  37356. image: {
  37357. source: "./media/characters/uzarmazari/front.svg",
  37358. extra: 1575/1455,
  37359. bottom: 152/1727
  37360. }
  37361. },
  37362. back: {
  37363. height: math.unit(58, "feet"),
  37364. weight: math.unit(200, "tons"),
  37365. name: "Back",
  37366. image: {
  37367. source: "./media/characters/uzarmazari/back.svg",
  37368. extra: 1585/1510,
  37369. bottom: 157/1742
  37370. }
  37371. },
  37372. head: {
  37373. height: math.unit(26, "feet"),
  37374. name: "Head",
  37375. image: {
  37376. source: "./media/characters/uzarmazari/head.svg"
  37377. }
  37378. },
  37379. },
  37380. [
  37381. {
  37382. name: "Normal",
  37383. height: math.unit(58, "feet"),
  37384. default: true
  37385. },
  37386. ]
  37387. ))
  37388. characterMakers.push(() => makeCharacter(
  37389. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37390. {
  37391. side: {
  37392. height: math.unit(15, "feet"),
  37393. name: "Side",
  37394. image: {
  37395. source: "./media/characters/akitu/side.svg",
  37396. extra: 1421/1321,
  37397. bottom: 157/1578
  37398. }
  37399. },
  37400. front: {
  37401. height: math.unit(15, "feet"),
  37402. name: "Front",
  37403. image: {
  37404. source: "./media/characters/akitu/front.svg",
  37405. extra: 1435/1326,
  37406. bottom: 232/1667
  37407. }
  37408. },
  37409. },
  37410. [
  37411. {
  37412. name: "Normal",
  37413. height: math.unit(15, "feet"),
  37414. default: true
  37415. },
  37416. ]
  37417. ))
  37418. characterMakers.push(() => makeCharacter(
  37419. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37420. {
  37421. front: {
  37422. height: math.unit(10 + 8/12, "feet"),
  37423. name: "Front",
  37424. image: {
  37425. source: "./media/characters/azalie-croixland/front.svg",
  37426. extra: 1972/1856,
  37427. bottom: 31/2003
  37428. }
  37429. },
  37430. },
  37431. [
  37432. {
  37433. name: "Original Height",
  37434. height: math.unit(5 + 4/12, "feet")
  37435. },
  37436. {
  37437. name: "Normal Height",
  37438. height: math.unit(10 + 8/12, "feet"),
  37439. default: true
  37440. },
  37441. ]
  37442. ))
  37443. characterMakers.push(() => makeCharacter(
  37444. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37445. {
  37446. side: {
  37447. height: math.unit(7 + 1/12, "feet"),
  37448. weight: math.unit(245, "lb"),
  37449. name: "Side",
  37450. image: {
  37451. source: "./media/characters/kavus-kazian/side.svg",
  37452. extra: 349/342,
  37453. bottom: 15/364
  37454. }
  37455. },
  37456. },
  37457. [
  37458. {
  37459. name: "Normal",
  37460. height: math.unit(7 + 1/12, "feet"),
  37461. default: true
  37462. },
  37463. ]
  37464. ))
  37465. characterMakers.push(() => makeCharacter(
  37466. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37467. {
  37468. normalFront: {
  37469. height: math.unit(5 + 11/12, "feet"),
  37470. name: "Front",
  37471. image: {
  37472. source: "./media/characters/moonlight-rose/normal-front.svg",
  37473. extra: 1980/1825,
  37474. bottom: 18/1998
  37475. },
  37476. form: "normal",
  37477. default: true
  37478. },
  37479. normalBack: {
  37480. height: math.unit(5 + 11/12, "feet"),
  37481. name: "Back",
  37482. image: {
  37483. source: "./media/characters/moonlight-rose/normal-back.svg",
  37484. extra: 2010/1839,
  37485. bottom: 10/2020
  37486. },
  37487. form: "normal"
  37488. },
  37489. demonFront: {
  37490. height: math.unit(1.5, "earths"),
  37491. name: "Front",
  37492. image: {
  37493. source: "./media/characters/moonlight-rose/demon.svg",
  37494. extra: 1400/1294,
  37495. bottom: 45/1445
  37496. },
  37497. form: "demon",
  37498. default: true
  37499. },
  37500. terraFront: {
  37501. height: math.unit(1.5, "earths"),
  37502. name: "Front",
  37503. image: {
  37504. source: "./media/characters/moonlight-rose/terra.svg"
  37505. },
  37506. form: "terra",
  37507. default: true
  37508. },
  37509. jupiterFront: {
  37510. height: math.unit(69911*2, "km"),
  37511. name: "Front",
  37512. image: {
  37513. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37514. extra: 1367/1286,
  37515. bottom: 55/1422
  37516. },
  37517. form: "jupiter",
  37518. default: true
  37519. },
  37520. neptuneFront: {
  37521. height: math.unit(24622*2, "feet"),
  37522. name: "Front",
  37523. image: {
  37524. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37525. extra: 1851/1712,
  37526. bottom: 0/1851
  37527. },
  37528. form: "neptune",
  37529. default: true
  37530. },
  37531. },
  37532. [
  37533. {
  37534. name: "\"Natural\" Height",
  37535. height: math.unit(5 + 11/12, "feet"),
  37536. form: "normal"
  37537. },
  37538. {
  37539. name: "Smallest comfortable size",
  37540. height: math.unit(40, "meters"),
  37541. form: "normal"
  37542. },
  37543. {
  37544. name: "Common size",
  37545. height: math.unit(50, "km"),
  37546. form: "normal",
  37547. default: true
  37548. },
  37549. {
  37550. name: "Normal",
  37551. height: math.unit(1.5, "earths"),
  37552. form: "demon",
  37553. default: true
  37554. },
  37555. {
  37556. name: "Universal",
  37557. height: math.unit(15, "universes"),
  37558. form: "demon"
  37559. },
  37560. {
  37561. name: "Earth",
  37562. height: math.unit(1.5, "earths"),
  37563. form: "terra",
  37564. default: true
  37565. },
  37566. {
  37567. name: "Super Earth",
  37568. height: math.unit(67.5, "earths"),
  37569. form: "terra"
  37570. },
  37571. {
  37572. name: "Doesn't fit in a solar system...",
  37573. height: math.unit(1, "galaxy"),
  37574. form: "terra"
  37575. },
  37576. {
  37577. name: "Saturn",
  37578. height: math.unit(58232*2, "km"),
  37579. form: "jupiter"
  37580. },
  37581. {
  37582. name: "Jupiter",
  37583. height: math.unit(69911*2, "km"),
  37584. form: "jupiter",
  37585. default: true
  37586. },
  37587. {
  37588. name: "HD 100546 b",
  37589. height: math.unit(482938, "km"),
  37590. form: "jupiter"
  37591. },
  37592. {
  37593. name: "Enceladus",
  37594. height: math.unit(513*2, "km"),
  37595. form: "neptune"
  37596. },
  37597. {
  37598. name: "Europe",
  37599. height: math.unit(1560*2, "km"),
  37600. form: "neptune"
  37601. },
  37602. {
  37603. name: "Neptune",
  37604. height: math.unit(24622*2, "km"),
  37605. form: "neptune",
  37606. default: true
  37607. },
  37608. {
  37609. name: "CoRoT-9b",
  37610. height: math.unit(75067*2, "km"),
  37611. form: "neptune"
  37612. },
  37613. ],
  37614. {
  37615. "normal": {
  37616. name: "Normal",
  37617. default: true
  37618. },
  37619. "demon": {
  37620. name: "Demon"
  37621. },
  37622. "terra": {
  37623. name: "Terra"
  37624. },
  37625. "jupiter": {
  37626. name: "Jupiter"
  37627. },
  37628. "neptune": {
  37629. name: "Neptune"
  37630. }
  37631. }
  37632. ))
  37633. characterMakers.push(() => makeCharacter(
  37634. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37635. {
  37636. front: {
  37637. height: math.unit(16, "feet"),
  37638. weight: math.unit(610, "kg"),
  37639. name: "Front",
  37640. image: {
  37641. source: "./media/characters/huckle/front.svg",
  37642. extra: 1731/1625,
  37643. bottom: 33/1764
  37644. }
  37645. },
  37646. back: {
  37647. height: math.unit(16, "feet"),
  37648. weight: math.unit(610, "kg"),
  37649. name: "Back",
  37650. image: {
  37651. source: "./media/characters/huckle/back.svg",
  37652. extra: 1738/1651,
  37653. bottom: 37/1775
  37654. }
  37655. },
  37656. laughing: {
  37657. height: math.unit(3.75, "feet"),
  37658. name: "Laughing",
  37659. image: {
  37660. source: "./media/characters/huckle/laughing.svg"
  37661. }
  37662. },
  37663. angry: {
  37664. height: math.unit(4.15, "feet"),
  37665. name: "Angry",
  37666. image: {
  37667. source: "./media/characters/huckle/angry.svg"
  37668. }
  37669. },
  37670. },
  37671. [
  37672. {
  37673. name: "Normal",
  37674. height: math.unit(16, "feet"),
  37675. default: true
  37676. },
  37677. {
  37678. name: "Mini Macro",
  37679. height: math.unit(463, "feet")
  37680. },
  37681. {
  37682. name: "Macro",
  37683. height: math.unit(1680, "meters")
  37684. },
  37685. {
  37686. name: "Mega Macro",
  37687. height: math.unit(175, "km")
  37688. },
  37689. {
  37690. name: "Terra Macro",
  37691. height: math.unit(32, "gigameters")
  37692. },
  37693. {
  37694. name: "Multiverse+",
  37695. height: math.unit(2.56e23, "yottameters")
  37696. },
  37697. ]
  37698. ))
  37699. characterMakers.push(() => makeCharacter(
  37700. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37701. {
  37702. front: {
  37703. height: math.unit(6 + 9/12, "feet"),
  37704. weight: math.unit(280, "lb"),
  37705. name: "Front",
  37706. image: {
  37707. source: "./media/characters/candy/front.svg",
  37708. extra: 234/217,
  37709. bottom: 11/245
  37710. }
  37711. },
  37712. },
  37713. [
  37714. {
  37715. name: "Really Small",
  37716. height: math.unit(0.1, "nm")
  37717. },
  37718. {
  37719. name: "Micro",
  37720. height: math.unit(2, "inches")
  37721. },
  37722. {
  37723. name: "Normal",
  37724. height: math.unit(6 + 9/12, "feet"),
  37725. default: true
  37726. },
  37727. {
  37728. name: "Small Macro",
  37729. height: math.unit(69, "feet")
  37730. },
  37731. {
  37732. name: "Macro",
  37733. height: math.unit(160, "feet")
  37734. },
  37735. {
  37736. name: "Megamacro",
  37737. height: math.unit(22000, "miles")
  37738. },
  37739. {
  37740. name: "Gigamacro",
  37741. height: math.unit(50000, "miles")
  37742. },
  37743. ]
  37744. ))
  37745. characterMakers.push(() => makeCharacter(
  37746. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37747. {
  37748. front: {
  37749. height: math.unit(4, "feet"),
  37750. weight: math.unit(90, "lb"),
  37751. name: "Front",
  37752. image: {
  37753. source: "./media/characters/joey-mcdonald/front.svg",
  37754. extra: 1059/852,
  37755. bottom: 33/1092
  37756. }
  37757. },
  37758. back: {
  37759. height: math.unit(4, "feet"),
  37760. weight: math.unit(90, "lb"),
  37761. name: "Back",
  37762. image: {
  37763. source: "./media/characters/joey-mcdonald/back.svg",
  37764. extra: 1077/879,
  37765. bottom: 5/1082
  37766. }
  37767. },
  37768. frontKobold: {
  37769. height: math.unit(4, "feet"),
  37770. weight: math.unit(100, "lb"),
  37771. name: "Front-kobold",
  37772. image: {
  37773. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37774. extra: 1480/1367,
  37775. bottom: 0/1480
  37776. }
  37777. },
  37778. backKobold: {
  37779. height: math.unit(4, "feet"),
  37780. weight: math.unit(100, "lb"),
  37781. name: "Back-kobold",
  37782. image: {
  37783. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37784. extra: 1449/1361,
  37785. bottom: 0/1449
  37786. }
  37787. },
  37788. },
  37789. [
  37790. {
  37791. name: "Normal",
  37792. height: math.unit(4, "feet"),
  37793. default: true
  37794. },
  37795. ]
  37796. ))
  37797. characterMakers.push(() => makeCharacter(
  37798. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37799. {
  37800. front: {
  37801. height: math.unit(12 + 6/12, "feet"),
  37802. name: "Front",
  37803. image: {
  37804. source: "./media/characters/kass-lockheed/front.svg",
  37805. extra: 354/343,
  37806. bottom: 9/363
  37807. }
  37808. },
  37809. back: {
  37810. height: math.unit(12 + 6/12, "feet"),
  37811. name: "Back",
  37812. image: {
  37813. source: "./media/characters/kass-lockheed/back.svg",
  37814. extra: 364/352,
  37815. bottom: 3/367
  37816. }
  37817. },
  37818. dick: {
  37819. height: math.unit(3.12, "feet"),
  37820. name: "Dick",
  37821. image: {
  37822. source: "./media/characters/kass-lockheed/dick.svg"
  37823. }
  37824. },
  37825. head: {
  37826. height: math.unit(2.6, "feet"),
  37827. name: "Head",
  37828. image: {
  37829. source: "./media/characters/kass-lockheed/head.svg"
  37830. }
  37831. },
  37832. bleh: {
  37833. height: math.unit(2.85, "feet"),
  37834. name: "Bleh",
  37835. image: {
  37836. source: "./media/characters/kass-lockheed/bleh.svg"
  37837. }
  37838. },
  37839. smug: {
  37840. height: math.unit(2.85, "feet"),
  37841. name: "Smug",
  37842. image: {
  37843. source: "./media/characters/kass-lockheed/smug.svg"
  37844. }
  37845. },
  37846. },
  37847. [
  37848. {
  37849. name: "Normal",
  37850. height: math.unit(12 + 6/12, "feet"),
  37851. default: true
  37852. },
  37853. ]
  37854. ))
  37855. characterMakers.push(() => makeCharacter(
  37856. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37857. {
  37858. front: {
  37859. height: math.unit(6 + 2/12, "feet"),
  37860. name: "Front",
  37861. image: {
  37862. source: "./media/characters/taylor/front.svg",
  37863. extra: 639/495,
  37864. bottom: 12/651
  37865. }
  37866. },
  37867. },
  37868. [
  37869. {
  37870. name: "Normal",
  37871. height: math.unit(6 + 2/12, "feet"),
  37872. default: true
  37873. },
  37874. {
  37875. name: "Big",
  37876. height: math.unit(15, "feet")
  37877. },
  37878. {
  37879. name: "Lorg",
  37880. height: math.unit(80, "feet")
  37881. },
  37882. {
  37883. name: "Too Lorg",
  37884. height: math.unit(120, "feet")
  37885. },
  37886. ]
  37887. ))
  37888. characterMakers.push(() => makeCharacter(
  37889. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37890. {
  37891. front: {
  37892. height: math.unit(15, "feet"),
  37893. name: "Front",
  37894. image: {
  37895. source: "./media/characters/kaizer/front.svg",
  37896. extra: 1612/1436,
  37897. bottom: 43/1655
  37898. }
  37899. },
  37900. },
  37901. [
  37902. {
  37903. name: "Normal",
  37904. height: math.unit(15, "feet"),
  37905. default: true
  37906. },
  37907. ]
  37908. ))
  37909. characterMakers.push(() => makeCharacter(
  37910. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37911. {
  37912. front: {
  37913. height: math.unit(2, "feet"),
  37914. weight: math.unit(30, "lb"),
  37915. name: "Front",
  37916. image: {
  37917. source: "./media/characters/sandy/front.svg",
  37918. extra: 1439/1307,
  37919. bottom: 194/1633
  37920. }
  37921. },
  37922. },
  37923. [
  37924. {
  37925. name: "Normal",
  37926. height: math.unit(2, "feet"),
  37927. default: true
  37928. },
  37929. ]
  37930. ))
  37931. characterMakers.push(() => makeCharacter(
  37932. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37933. {
  37934. front: {
  37935. height: math.unit(3, "feet"),
  37936. name: "Front",
  37937. image: {
  37938. source: "./media/characters/mellvi/front.svg",
  37939. extra: 1831/1630,
  37940. bottom: 58/1889
  37941. }
  37942. },
  37943. },
  37944. [
  37945. {
  37946. name: "Normal",
  37947. height: math.unit(3, "feet"),
  37948. default: true
  37949. },
  37950. ]
  37951. ))
  37952. characterMakers.push(() => makeCharacter(
  37953. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37954. {
  37955. front: {
  37956. height: math.unit(5 + 11/12, "feet"),
  37957. weight: math.unit(200, "lb"),
  37958. name: "Front",
  37959. image: {
  37960. source: "./media/characters/shirou/front.svg",
  37961. extra: 2491/2383,
  37962. bottom: 189/2680
  37963. }
  37964. },
  37965. back: {
  37966. height: math.unit(5 + 11/12, "feet"),
  37967. weight: math.unit(200, "lb"),
  37968. name: "Back",
  37969. image: {
  37970. source: "./media/characters/shirou/back.svg",
  37971. extra: 2554/2450,
  37972. bottom: 76/2630
  37973. }
  37974. },
  37975. },
  37976. [
  37977. {
  37978. name: "Normal",
  37979. height: math.unit(5 + 11/12, "feet"),
  37980. default: true
  37981. },
  37982. ]
  37983. ))
  37984. characterMakers.push(() => makeCharacter(
  37985. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37986. {
  37987. front: {
  37988. height: math.unit(6 + 3/12, "feet"),
  37989. weight: math.unit(177, "lb"),
  37990. name: "Front",
  37991. image: {
  37992. source: "./media/characters/noryu/front.svg",
  37993. extra: 973/885,
  37994. bottom: 10/983
  37995. }
  37996. },
  37997. },
  37998. [
  37999. {
  38000. name: "Normal",
  38001. height: math.unit(6 + 3/12, "feet"),
  38002. default: true
  38003. },
  38004. ]
  38005. ))
  38006. characterMakers.push(() => makeCharacter(
  38007. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38008. {
  38009. front: {
  38010. height: math.unit(5 + 6/12, "feet"),
  38011. weight: math.unit(170, "lb"),
  38012. name: "Front",
  38013. image: {
  38014. source: "./media/characters/mevolas-rubenido/front.svg",
  38015. extra: 2109/1901,
  38016. bottom: 96/2205
  38017. }
  38018. },
  38019. },
  38020. [
  38021. {
  38022. name: "Normal",
  38023. height: math.unit(5 + 6/12, "feet"),
  38024. default: true
  38025. },
  38026. ]
  38027. ))
  38028. characterMakers.push(() => makeCharacter(
  38029. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38030. {
  38031. front: {
  38032. height: math.unit(100, "feet"),
  38033. name: "Front",
  38034. image: {
  38035. source: "./media/characters/dee/front.svg",
  38036. extra: 2153/2036,
  38037. bottom: 59/2212
  38038. }
  38039. },
  38040. back: {
  38041. height: math.unit(100, "feet"),
  38042. name: "Back",
  38043. image: {
  38044. source: "./media/characters/dee/back.svg",
  38045. extra: 2183/2058,
  38046. bottom: 75/2258
  38047. }
  38048. },
  38049. foot: {
  38050. height: math.unit(19.43, "feet"),
  38051. name: "Foot",
  38052. image: {
  38053. source: "./media/characters/dee/foot.svg"
  38054. }
  38055. },
  38056. hoof: {
  38057. height: math.unit(20.6, "feet"),
  38058. name: "Hoof",
  38059. image: {
  38060. source: "./media/characters/dee/hoof.svg"
  38061. }
  38062. },
  38063. },
  38064. [
  38065. {
  38066. name: "Macro",
  38067. height: math.unit(100, "feet"),
  38068. default: true
  38069. },
  38070. ]
  38071. ))
  38072. characterMakers.push(() => makeCharacter(
  38073. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38074. {
  38075. front: {
  38076. height: math.unit(5 + 6/12, "feet"),
  38077. name: "Front",
  38078. image: {
  38079. source: "./media/characters/teh/front.svg",
  38080. extra: 1002/847,
  38081. bottom: 62/1064
  38082. }
  38083. },
  38084. },
  38085. [
  38086. {
  38087. name: "Normal",
  38088. height: math.unit(5 + 6/12, "feet"),
  38089. default: true
  38090. },
  38091. ]
  38092. ))
  38093. characterMakers.push(() => makeCharacter(
  38094. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38095. {
  38096. side: {
  38097. height: math.unit(6 + 1/12, "feet"),
  38098. weight: math.unit(204, "lb"),
  38099. name: "Side",
  38100. image: {
  38101. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38102. extra: 974/775,
  38103. bottom: 169/1143
  38104. }
  38105. },
  38106. sitting: {
  38107. height: math.unit(6 + 2/12, "feet"),
  38108. weight: math.unit(204, "lb"),
  38109. name: "Sitting",
  38110. image: {
  38111. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38112. extra: 1175/964,
  38113. bottom: 378/1553
  38114. }
  38115. },
  38116. },
  38117. [
  38118. {
  38119. name: "Normal",
  38120. height: math.unit(6 + 1/12, "feet"),
  38121. default: true
  38122. },
  38123. ]
  38124. ))
  38125. characterMakers.push(() => makeCharacter(
  38126. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38127. {
  38128. front: {
  38129. height: math.unit(6, "inches"),
  38130. name: "Front",
  38131. image: {
  38132. source: "./media/characters/tululi/front.svg",
  38133. extra: 1997/1876,
  38134. bottom: 20/2017
  38135. }
  38136. },
  38137. },
  38138. [
  38139. {
  38140. name: "Normal",
  38141. height: math.unit(6, "inches"),
  38142. default: true
  38143. },
  38144. ]
  38145. ))
  38146. characterMakers.push(() => makeCharacter(
  38147. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38148. {
  38149. front: {
  38150. height: math.unit(4 + 1/12, "feet"),
  38151. name: "Front",
  38152. image: {
  38153. source: "./media/characters/star/front.svg",
  38154. extra: 1493/1189,
  38155. bottom: 48/1541
  38156. }
  38157. },
  38158. },
  38159. [
  38160. {
  38161. name: "Normal",
  38162. height: math.unit(4 + 1/12, "feet"),
  38163. default: true
  38164. },
  38165. ]
  38166. ))
  38167. characterMakers.push(() => makeCharacter(
  38168. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38169. {
  38170. front: {
  38171. height: math.unit(6 + 3/12, "feet"),
  38172. name: "Front",
  38173. image: {
  38174. source: "./media/characters/comet/front.svg",
  38175. extra: 1681/1462,
  38176. bottom: 26/1707
  38177. }
  38178. },
  38179. },
  38180. [
  38181. {
  38182. name: "Normal",
  38183. height: math.unit(6 + 3/12, "feet"),
  38184. default: true
  38185. },
  38186. ]
  38187. ))
  38188. characterMakers.push(() => makeCharacter(
  38189. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38190. {
  38191. front: {
  38192. height: math.unit(950, "feet"),
  38193. name: "Front",
  38194. image: {
  38195. source: "./media/characters/vortex/front.svg",
  38196. extra: 1497/1434,
  38197. bottom: 56/1553
  38198. }
  38199. },
  38200. maw: {
  38201. height: math.unit(285, "feet"),
  38202. name: "Maw",
  38203. image: {
  38204. source: "./media/characters/vortex/maw.svg"
  38205. }
  38206. },
  38207. },
  38208. [
  38209. {
  38210. name: "Macro",
  38211. height: math.unit(950, "feet"),
  38212. default: true
  38213. },
  38214. ]
  38215. ))
  38216. characterMakers.push(() => makeCharacter(
  38217. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38218. {
  38219. front: {
  38220. height: math.unit(600, "feet"),
  38221. weight: math.unit(0.02, "grams"),
  38222. name: "Front",
  38223. image: {
  38224. source: "./media/characters/doodle/front.svg",
  38225. extra: 1578/1413,
  38226. bottom: 37/1615
  38227. }
  38228. },
  38229. },
  38230. [
  38231. {
  38232. name: "Macro",
  38233. height: math.unit(600, "feet"),
  38234. default: true
  38235. },
  38236. ]
  38237. ))
  38238. characterMakers.push(() => makeCharacter(
  38239. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38240. {
  38241. front: {
  38242. height: math.unit(6 + 6/12, "feet"),
  38243. name: "Front",
  38244. image: {
  38245. source: "./media/characters/jai/front.svg",
  38246. extra: 1645/1534,
  38247. bottom: 115/1760
  38248. }
  38249. },
  38250. },
  38251. [
  38252. {
  38253. name: "Normal",
  38254. height: math.unit(6 + 6/12, "feet"),
  38255. default: true
  38256. },
  38257. ]
  38258. ))
  38259. characterMakers.push(() => makeCharacter(
  38260. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38261. {
  38262. front: {
  38263. height: math.unit(6 + 8/12, "feet"),
  38264. name: "Front",
  38265. image: {
  38266. source: "./media/characters/pixel/front.svg",
  38267. extra: 1900/1735,
  38268. bottom: 63/1963
  38269. }
  38270. },
  38271. },
  38272. [
  38273. {
  38274. name: "Normal",
  38275. height: math.unit(6 + 8/12, "feet"),
  38276. default: true
  38277. },
  38278. ]
  38279. ))
  38280. characterMakers.push(() => makeCharacter(
  38281. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38282. {
  38283. back: {
  38284. height: math.unit(4 + 1/12, "feet"),
  38285. weight: math.unit(75, "lb"),
  38286. name: "Back",
  38287. image: {
  38288. source: "./media/characters/rhett/back.svg",
  38289. extra: 930/878,
  38290. bottom: 25/955
  38291. }
  38292. },
  38293. front: {
  38294. height: math.unit(4 + 1/12, "feet"),
  38295. weight: math.unit(75, "lb"),
  38296. name: "Front",
  38297. image: {
  38298. source: "./media/characters/rhett/front.svg",
  38299. extra: 1682/1586,
  38300. bottom: 92/1774
  38301. }
  38302. },
  38303. },
  38304. [
  38305. {
  38306. name: "Micro",
  38307. height: math.unit(8, "inches")
  38308. },
  38309. {
  38310. name: "Tiny",
  38311. height: math.unit(2, "feet")
  38312. },
  38313. {
  38314. name: "Normal",
  38315. height: math.unit(4 + 1/12, "feet"),
  38316. default: true
  38317. },
  38318. ]
  38319. ))
  38320. characterMakers.push(() => makeCharacter(
  38321. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38322. {
  38323. front: {
  38324. height: math.unit(3 + 3/12, "feet"),
  38325. name: "Front",
  38326. image: {
  38327. source: "./media/characters/penny/front.svg",
  38328. extra: 1406/1311,
  38329. bottom: 26/1432
  38330. }
  38331. },
  38332. },
  38333. [
  38334. {
  38335. name: "Normal",
  38336. height: math.unit(3 + 3/12, "feet"),
  38337. default: true
  38338. },
  38339. ]
  38340. ))
  38341. characterMakers.push(() => makeCharacter(
  38342. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38343. {
  38344. front: {
  38345. height: math.unit(4 + 11/12, "feet"),
  38346. name: "Front",
  38347. image: {
  38348. source: "./media/characters/monty/front.svg",
  38349. extra: 1479/1209,
  38350. bottom: 0/1479
  38351. }
  38352. },
  38353. },
  38354. [
  38355. {
  38356. name: "Normal",
  38357. height: math.unit(4 + 11/12, "feet"),
  38358. default: true
  38359. },
  38360. ]
  38361. ))
  38362. characterMakers.push(() => makeCharacter(
  38363. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38364. {
  38365. front: {
  38366. height: math.unit(8 + 4/12, "feet"),
  38367. name: "Front",
  38368. image: {
  38369. source: "./media/characters/sterling/front.svg",
  38370. extra: 1420/1236,
  38371. bottom: 27/1447
  38372. }
  38373. },
  38374. },
  38375. [
  38376. {
  38377. name: "Normal",
  38378. height: math.unit(8 + 4/12, "feet"),
  38379. default: true
  38380. },
  38381. ]
  38382. ))
  38383. characterMakers.push(() => makeCharacter(
  38384. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38385. {
  38386. front: {
  38387. height: math.unit(15, "feet"),
  38388. name: "Front",
  38389. image: {
  38390. source: "./media/characters/marble/front.svg",
  38391. extra: 973/937,
  38392. bottom: 32/1005
  38393. }
  38394. },
  38395. },
  38396. [
  38397. {
  38398. name: "Normal",
  38399. height: math.unit(15, "feet"),
  38400. default: true
  38401. },
  38402. ]
  38403. ))
  38404. characterMakers.push(() => makeCharacter(
  38405. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38406. {
  38407. front: {
  38408. height: math.unit(3, "inches"),
  38409. name: "Front",
  38410. image: {
  38411. source: "./media/characters/powder/front.svg",
  38412. extra: 1504/1334,
  38413. bottom: 518/2022
  38414. }
  38415. },
  38416. },
  38417. [
  38418. {
  38419. name: "Normal",
  38420. height: math.unit(3, "inches"),
  38421. default: true
  38422. },
  38423. ]
  38424. ))
  38425. characterMakers.push(() => makeCharacter(
  38426. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38427. {
  38428. front: {
  38429. height: math.unit(4 + 5/12, "feet"),
  38430. name: "Front",
  38431. image: {
  38432. source: "./media/characters/joey-raccoon/front.svg",
  38433. extra: 1273/1197,
  38434. bottom: 0/1273
  38435. }
  38436. },
  38437. },
  38438. [
  38439. {
  38440. name: "Normal",
  38441. height: math.unit(4 + 5/12, "feet"),
  38442. default: true
  38443. },
  38444. ]
  38445. ))
  38446. characterMakers.push(() => makeCharacter(
  38447. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38448. {
  38449. front: {
  38450. height: math.unit(8 + 4/12, "feet"),
  38451. name: "Front",
  38452. image: {
  38453. source: "./media/characters/vick/front.svg",
  38454. extra: 2187/2118,
  38455. bottom: 47/2234
  38456. }
  38457. },
  38458. },
  38459. [
  38460. {
  38461. name: "Normal",
  38462. height: math.unit(8 + 4/12, "feet"),
  38463. default: true
  38464. },
  38465. ]
  38466. ))
  38467. characterMakers.push(() => makeCharacter(
  38468. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38469. {
  38470. front: {
  38471. height: math.unit(5 + 5/12, "feet"),
  38472. name: "Front",
  38473. image: {
  38474. source: "./media/characters/mitsy/front.svg",
  38475. extra: 1842/1695,
  38476. bottom: 0/1842
  38477. }
  38478. },
  38479. },
  38480. [
  38481. {
  38482. name: "Normal",
  38483. height: math.unit(5 + 5/12, "feet"),
  38484. default: true
  38485. },
  38486. ]
  38487. ))
  38488. characterMakers.push(() => makeCharacter(
  38489. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38490. {
  38491. front: {
  38492. height: math.unit(6 + 3/12, "feet"),
  38493. name: "Front",
  38494. image: {
  38495. source: "./media/characters/silvy/front.svg",
  38496. extra: 1995/1836,
  38497. bottom: 225/2220
  38498. }
  38499. },
  38500. },
  38501. [
  38502. {
  38503. name: "Normal",
  38504. height: math.unit(6 + 3/12, "feet"),
  38505. default: true
  38506. },
  38507. ]
  38508. ))
  38509. characterMakers.push(() => makeCharacter(
  38510. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38511. {
  38512. front: {
  38513. height: math.unit(3 + 8/12, "feet"),
  38514. name: "Front",
  38515. image: {
  38516. source: "./media/characters/rodney/front.svg",
  38517. extra: 1956/1747,
  38518. bottom: 31/1987
  38519. }
  38520. },
  38521. frontDressed: {
  38522. height: math.unit(2.9, "feet"),
  38523. name: "Front (Dressed)",
  38524. image: {
  38525. source: "./media/characters/rodney/front-dressed.svg",
  38526. extra: 1382/1241,
  38527. bottom: 385/1767
  38528. }
  38529. },
  38530. },
  38531. [
  38532. {
  38533. name: "Normal",
  38534. height: math.unit(3 + 8/12, "feet"),
  38535. default: true
  38536. },
  38537. ]
  38538. ))
  38539. characterMakers.push(() => makeCharacter(
  38540. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38541. {
  38542. front: {
  38543. height: math.unit(5 + 9/12, "feet"),
  38544. weight: math.unit(194, "lbs"),
  38545. name: "Front",
  38546. image: {
  38547. source: "./media/characters/zakail-sudekai/front.svg",
  38548. extra: 2696/2533,
  38549. bottom: 248/2944
  38550. }
  38551. },
  38552. maw: {
  38553. height: math.unit(1.35, "feet"),
  38554. name: "Maw",
  38555. image: {
  38556. source: "./media/characters/zakail-sudekai/maw.svg"
  38557. }
  38558. },
  38559. },
  38560. [
  38561. {
  38562. name: "Normal",
  38563. height: math.unit(5 + 9/12, "feet"),
  38564. default: true
  38565. },
  38566. ]
  38567. ))
  38568. characterMakers.push(() => makeCharacter(
  38569. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38570. {
  38571. front: {
  38572. height: math.unit(8 + 4/12, "feet"),
  38573. weight: math.unit(1200, "lb"),
  38574. name: "Front",
  38575. image: {
  38576. source: "./media/characters/eleanor/front.svg",
  38577. extra: 1226/1192,
  38578. bottom: 52/1278
  38579. }
  38580. },
  38581. back: {
  38582. height: math.unit(8 + 4/12, "feet"),
  38583. weight: math.unit(1200, "lb"),
  38584. name: "Back",
  38585. image: {
  38586. source: "./media/characters/eleanor/back.svg",
  38587. extra: 1242/1184,
  38588. bottom: 60/1302
  38589. }
  38590. },
  38591. head: {
  38592. height: math.unit(2.62, "feet"),
  38593. name: "Head",
  38594. image: {
  38595. source: "./media/characters/eleanor/head.svg"
  38596. }
  38597. },
  38598. },
  38599. [
  38600. {
  38601. name: "Normal",
  38602. height: math.unit(8 + 4/12, "feet"),
  38603. default: true
  38604. },
  38605. ]
  38606. ))
  38607. characterMakers.push(() => makeCharacter(
  38608. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38609. {
  38610. front: {
  38611. height: math.unit(8 + 4/12, "feet"),
  38612. weight: math.unit(750, "lb"),
  38613. name: "Front",
  38614. image: {
  38615. source: "./media/characters/tanya/front.svg",
  38616. extra: 1749/1615,
  38617. bottom: 33/1782
  38618. }
  38619. },
  38620. },
  38621. [
  38622. {
  38623. name: "Normal",
  38624. height: math.unit(8 + 4/12, "feet"),
  38625. default: true
  38626. },
  38627. ]
  38628. ))
  38629. characterMakers.push(() => makeCharacter(
  38630. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38631. {
  38632. front: {
  38633. height: math.unit(5, "feet"),
  38634. weight: math.unit(225, "lb"),
  38635. name: "Front",
  38636. image: {
  38637. source: "./media/characters/cindy/front.svg",
  38638. extra: 1320/1250,
  38639. bottom: 42/1362
  38640. }
  38641. },
  38642. frontDressed: {
  38643. height: math.unit(5, "feet"),
  38644. weight: math.unit(225, "lb"),
  38645. name: "Front (Dressed)",
  38646. image: {
  38647. source: "./media/characters/cindy/front-dressed.svg",
  38648. extra: 1320/1250,
  38649. bottom: 42/1362
  38650. }
  38651. },
  38652. back: {
  38653. height: math.unit(5, "feet"),
  38654. weight: math.unit(225, "lb"),
  38655. name: "Back",
  38656. image: {
  38657. source: "./media/characters/cindy/back.svg",
  38658. extra: 1384/1346,
  38659. bottom: 14/1398
  38660. }
  38661. },
  38662. },
  38663. [
  38664. {
  38665. name: "Normal",
  38666. height: math.unit(5, "feet"),
  38667. default: true
  38668. },
  38669. ]
  38670. ))
  38671. characterMakers.push(() => makeCharacter(
  38672. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38673. {
  38674. front: {
  38675. height: math.unit(6 + 9/12, "feet"),
  38676. weight: math.unit(440, "lb"),
  38677. name: "Front",
  38678. image: {
  38679. source: "./media/characters/wilbur-owen/front.svg",
  38680. extra: 1575/1448,
  38681. bottom: 72/1647
  38682. }
  38683. },
  38684. back: {
  38685. height: math.unit(6 + 9/12, "feet"),
  38686. weight: math.unit(440, "lb"),
  38687. name: "Back",
  38688. image: {
  38689. source: "./media/characters/wilbur-owen/back.svg",
  38690. extra: 1578/1445,
  38691. bottom: 36/1614
  38692. }
  38693. },
  38694. },
  38695. [
  38696. {
  38697. name: "Normal",
  38698. height: math.unit(6 + 9/12, "feet"),
  38699. default: true
  38700. },
  38701. ]
  38702. ))
  38703. characterMakers.push(() => makeCharacter(
  38704. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38705. {
  38706. front: {
  38707. height: math.unit(6 + 5/12, "feet"),
  38708. weight: math.unit(650, "lb"),
  38709. name: "Front",
  38710. image: {
  38711. source: "./media/characters/keegan/front.svg",
  38712. extra: 2387/2198,
  38713. bottom: 33/2420
  38714. }
  38715. },
  38716. side: {
  38717. height: math.unit(6 + 5/12, "feet"),
  38718. weight: math.unit(650, "lb"),
  38719. name: "Side",
  38720. image: {
  38721. source: "./media/characters/keegan/side.svg",
  38722. extra: 2390/2202,
  38723. bottom: 47/2437
  38724. }
  38725. },
  38726. back: {
  38727. height: math.unit(6 + 5/12, "feet"),
  38728. weight: math.unit(650, "lb"),
  38729. name: "Back",
  38730. image: {
  38731. source: "./media/characters/keegan/back.svg",
  38732. extra: 2418/2268,
  38733. bottom: 15/2433
  38734. }
  38735. },
  38736. frontSfw: {
  38737. height: math.unit(6 + 5/12, "feet"),
  38738. weight: math.unit(650, "lb"),
  38739. name: "Front (SFW)",
  38740. image: {
  38741. source: "./media/characters/keegan/front-sfw.svg",
  38742. extra: 2387/2198,
  38743. bottom: 33/2420
  38744. }
  38745. },
  38746. beans: {
  38747. height: math.unit(1.85, "feet"),
  38748. name: "Beans",
  38749. image: {
  38750. source: "./media/characters/keegan/beans.svg"
  38751. }
  38752. },
  38753. },
  38754. [
  38755. {
  38756. name: "Normal",
  38757. height: math.unit(6 + 5/12, "feet"),
  38758. default: true
  38759. },
  38760. ]
  38761. ))
  38762. characterMakers.push(() => makeCharacter(
  38763. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38764. {
  38765. front: {
  38766. height: math.unit(9, "feet"),
  38767. name: "Front",
  38768. image: {
  38769. source: "./media/characters/colton/front.svg",
  38770. extra: 1589/1326,
  38771. bottom: 139/1728
  38772. }
  38773. },
  38774. },
  38775. [
  38776. {
  38777. name: "Normal",
  38778. height: math.unit(9, "feet"),
  38779. default: true
  38780. },
  38781. ]
  38782. ))
  38783. characterMakers.push(() => makeCharacter(
  38784. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38785. {
  38786. front: {
  38787. height: math.unit(2 + 9/12, "feet"),
  38788. name: "Front",
  38789. image: {
  38790. source: "./media/characters/bora/front.svg",
  38791. extra: 1265/1250,
  38792. bottom: 24/1289
  38793. }
  38794. },
  38795. },
  38796. [
  38797. {
  38798. name: "Normal",
  38799. height: math.unit(2 + 9/12, "feet"),
  38800. default: true
  38801. },
  38802. ]
  38803. ))
  38804. characterMakers.push(() => makeCharacter(
  38805. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38806. {
  38807. front: {
  38808. height: math.unit(8, "feet"),
  38809. name: "Front",
  38810. image: {
  38811. source: "./media/characters/myu-myu/front.svg",
  38812. extra: 1949/1857,
  38813. bottom: 90/2039
  38814. }
  38815. },
  38816. },
  38817. [
  38818. {
  38819. name: "Normal",
  38820. height: math.unit(8, "feet"),
  38821. default: true
  38822. },
  38823. {
  38824. name: "Big",
  38825. height: math.unit(15, "feet")
  38826. },
  38827. {
  38828. name: "BIG",
  38829. height: math.unit(25, "feet")
  38830. },
  38831. ]
  38832. ))
  38833. characterMakers.push(() => makeCharacter(
  38834. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38835. {
  38836. side: {
  38837. height: math.unit(7 + 5/12, "feet"),
  38838. weight: math.unit(2800, "lb"),
  38839. name: "Side",
  38840. image: {
  38841. source: "./media/characters/haloren/side.svg",
  38842. extra: 1793/409,
  38843. bottom: 59/1852
  38844. }
  38845. },
  38846. frontPaw: {
  38847. height: math.unit(2.36, "feet"),
  38848. name: "Front paw",
  38849. image: {
  38850. source: "./media/characters/haloren/front-paw.svg"
  38851. }
  38852. },
  38853. hindPaw: {
  38854. height: math.unit(3.18, "feet"),
  38855. name: "Hind paw",
  38856. image: {
  38857. source: "./media/characters/haloren/hind-paw.svg"
  38858. }
  38859. },
  38860. maw: {
  38861. height: math.unit(5.05, "feet"),
  38862. name: "Maw",
  38863. image: {
  38864. source: "./media/characters/haloren/maw.svg"
  38865. }
  38866. },
  38867. dick: {
  38868. height: math.unit(2.90, "feet"),
  38869. name: "Dick",
  38870. image: {
  38871. source: "./media/characters/haloren/dick.svg"
  38872. }
  38873. },
  38874. },
  38875. [
  38876. {
  38877. name: "Normal",
  38878. height: math.unit(7 + 5/12, "feet"),
  38879. default: true
  38880. },
  38881. {
  38882. name: "Enhanced",
  38883. height: math.unit(14 + 3/12, "feet")
  38884. },
  38885. ]
  38886. ))
  38887. characterMakers.push(() => makeCharacter(
  38888. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38889. {
  38890. front: {
  38891. height: math.unit(171, "cm"),
  38892. name: "Front",
  38893. image: {
  38894. source: "./media/characters/kimmy/front.svg",
  38895. extra: 1491/1435,
  38896. bottom: 53/1544
  38897. }
  38898. },
  38899. },
  38900. [
  38901. {
  38902. name: "Small",
  38903. height: math.unit(9, "cm")
  38904. },
  38905. {
  38906. name: "Normal",
  38907. height: math.unit(171, "cm"),
  38908. default: true
  38909. },
  38910. ]
  38911. ))
  38912. characterMakers.push(() => makeCharacter(
  38913. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38914. {
  38915. front: {
  38916. height: math.unit(8, "feet"),
  38917. weight: math.unit(300, "lb"),
  38918. name: "Front",
  38919. image: {
  38920. source: "./media/characters/galeboomer/front.svg",
  38921. extra: 4651/4415,
  38922. bottom: 162/4813
  38923. }
  38924. },
  38925. back: {
  38926. height: math.unit(8, "feet"),
  38927. weight: math.unit(300, "lb"),
  38928. name: "Back",
  38929. image: {
  38930. source: "./media/characters/galeboomer/back.svg",
  38931. extra: 4544/4314,
  38932. bottom: 16/4560
  38933. }
  38934. },
  38935. frontAlt: {
  38936. height: math.unit(8, "feet"),
  38937. weight: math.unit(300, "lb"),
  38938. name: "Front (Alt)",
  38939. image: {
  38940. source: "./media/characters/galeboomer/front-alt.svg",
  38941. extra: 4458/4228,
  38942. bottom: 68/4526
  38943. }
  38944. },
  38945. maw: {
  38946. height: math.unit(1.2, "feet"),
  38947. name: "Maw",
  38948. image: {
  38949. source: "./media/characters/galeboomer/maw.svg"
  38950. }
  38951. },
  38952. },
  38953. [
  38954. {
  38955. name: "Normal",
  38956. height: math.unit(8, "feet"),
  38957. default: true
  38958. },
  38959. ]
  38960. ))
  38961. characterMakers.push(() => makeCharacter(
  38962. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38963. {
  38964. front: {
  38965. height: math.unit(5 + 9/12, "feet"),
  38966. weight: math.unit(120, "lb"),
  38967. name: "Front",
  38968. image: {
  38969. source: "./media/characters/chyr/front.svg",
  38970. extra: 1323/1254,
  38971. bottom: 63/1386
  38972. }
  38973. },
  38974. back: {
  38975. height: math.unit(5 + 9/12, "feet"),
  38976. weight: math.unit(120, "lb"),
  38977. name: "Back",
  38978. image: {
  38979. source: "./media/characters/chyr/back.svg",
  38980. extra: 1323/1252,
  38981. bottom: 48/1371
  38982. }
  38983. },
  38984. },
  38985. [
  38986. {
  38987. name: "Normal",
  38988. height: math.unit(5 + 9/12, "feet"),
  38989. default: true
  38990. },
  38991. ]
  38992. ))
  38993. characterMakers.push(() => makeCharacter(
  38994. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38995. {
  38996. front: {
  38997. height: math.unit(7, "feet"),
  38998. weight: math.unit(310, "lb"),
  38999. name: "Front",
  39000. image: {
  39001. source: "./media/characters/solarus/front.svg",
  39002. extra: 2415/2021,
  39003. bottom: 103/2518
  39004. }
  39005. },
  39006. back: {
  39007. height: math.unit(7, "feet"),
  39008. weight: math.unit(310, "lb"),
  39009. name: "Back",
  39010. image: {
  39011. source: "./media/characters/solarus/back.svg",
  39012. extra: 2463/2089,
  39013. bottom: 79/2542
  39014. }
  39015. },
  39016. },
  39017. [
  39018. {
  39019. name: "Normal",
  39020. height: math.unit(7, "feet"),
  39021. default: true
  39022. },
  39023. ]
  39024. ))
  39025. characterMakers.push(() => makeCharacter(
  39026. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39027. {
  39028. front: {
  39029. height: math.unit(16, "feet"),
  39030. name: "Front",
  39031. image: {
  39032. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39033. extra: 1844/1780,
  39034. bottom: 58/1902
  39035. }
  39036. },
  39037. winterCoat: {
  39038. height: math.unit(16, "feet"),
  39039. name: "Winter Coat",
  39040. image: {
  39041. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39042. extra: 1807/1775,
  39043. bottom: 69/1876
  39044. }
  39045. },
  39046. },
  39047. [
  39048. {
  39049. name: "Normal",
  39050. height: math.unit(16, "feet"),
  39051. default: true
  39052. },
  39053. {
  39054. name: "Chicago Size",
  39055. height: math.unit(560, "feet")
  39056. },
  39057. ]
  39058. ))
  39059. characterMakers.push(() => makeCharacter(
  39060. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39061. {
  39062. front: {
  39063. height: math.unit(11 + 6/12, "feet"),
  39064. weight: math.unit(1366, "lb"),
  39065. name: "Front",
  39066. image: {
  39067. source: "./media/characters/lexor/front.svg",
  39068. extra: 1560/1481,
  39069. bottom: 211/1771
  39070. }
  39071. },
  39072. back: {
  39073. height: math.unit(11 + 6/12, "feet"),
  39074. weight: math.unit(1366, "lb"),
  39075. name: "Back",
  39076. image: {
  39077. source: "./media/characters/lexor/back.svg",
  39078. extra: 1614/1533,
  39079. bottom: 76/1690
  39080. }
  39081. },
  39082. maw: {
  39083. height: math.unit(3, "feet"),
  39084. name: "Maw",
  39085. image: {
  39086. source: "./media/characters/lexor/maw.svg"
  39087. }
  39088. },
  39089. dick: {
  39090. height: math.unit(2.59, "feet"),
  39091. name: "Dick",
  39092. image: {
  39093. source: "./media/characters/lexor/dick.svg"
  39094. }
  39095. },
  39096. },
  39097. [
  39098. {
  39099. name: "Normal",
  39100. height: math.unit(11 + 6/12, "feet"),
  39101. default: true
  39102. },
  39103. ]
  39104. ))
  39105. characterMakers.push(() => makeCharacter(
  39106. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39107. {
  39108. front: {
  39109. height: math.unit(5 + 8/12, "feet"),
  39110. name: "Front",
  39111. image: {
  39112. source: "./media/characters/magnum/front.svg",
  39113. extra: 942/855,
  39114. bottom: 26/968
  39115. }
  39116. },
  39117. },
  39118. [
  39119. {
  39120. name: "Normal",
  39121. height: math.unit(5 + 8/12, "feet"),
  39122. default: true
  39123. },
  39124. ]
  39125. ))
  39126. characterMakers.push(() => makeCharacter(
  39127. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39128. {
  39129. front: {
  39130. height: math.unit(18 + 4/12, "feet"),
  39131. weight: math.unit(1500, "kg"),
  39132. name: "Front",
  39133. image: {
  39134. source: "./media/characters/solas-sharpsman/front.svg",
  39135. extra: 1698/1589,
  39136. bottom: 0/1698
  39137. }
  39138. },
  39139. },
  39140. [
  39141. {
  39142. name: "Normal",
  39143. height: math.unit(18 + 4/12, "feet"),
  39144. default: true
  39145. },
  39146. ]
  39147. ))
  39148. characterMakers.push(() => makeCharacter(
  39149. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39150. {
  39151. front: {
  39152. height: math.unit(5 + 5/12, "feet"),
  39153. weight: math.unit(180, "lb"),
  39154. name: "Front",
  39155. image: {
  39156. source: "./media/characters/october/front.svg",
  39157. extra: 1800/1650,
  39158. bottom: 0/1800
  39159. }
  39160. },
  39161. frontNsfw: {
  39162. height: math.unit(5 + 5/12, "feet"),
  39163. weight: math.unit(180, "lb"),
  39164. name: "Front (NSFW)",
  39165. image: {
  39166. source: "./media/characters/october/front-nsfw.svg",
  39167. extra: 1392/1307,
  39168. bottom: 42/1434
  39169. }
  39170. },
  39171. },
  39172. [
  39173. {
  39174. name: "Normal",
  39175. height: math.unit(5 + 5/12, "feet"),
  39176. default: true
  39177. },
  39178. ]
  39179. ))
  39180. characterMakers.push(() => makeCharacter(
  39181. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39182. {
  39183. front: {
  39184. height: math.unit(8 + 6/12, "feet"),
  39185. name: "Front",
  39186. image: {
  39187. source: "./media/characters/essynkardi/front.svg",
  39188. extra: 1541/1457,
  39189. bottom: 47/1588
  39190. }
  39191. },
  39192. },
  39193. [
  39194. {
  39195. name: "Normal",
  39196. height: math.unit(8 + 6/12, "feet"),
  39197. default: true
  39198. },
  39199. ]
  39200. ))
  39201. characterMakers.push(() => makeCharacter(
  39202. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39203. {
  39204. front: {
  39205. height: math.unit(6 + 6/12, "feet"),
  39206. weight: math.unit(7, "lb"),
  39207. name: "Front",
  39208. image: {
  39209. source: "./media/characters/icky/front.svg",
  39210. extra: 813/782,
  39211. bottom: 66/879
  39212. }
  39213. },
  39214. back: {
  39215. height: math.unit(6 + 6/12, "feet"),
  39216. weight: math.unit(7, "lb"),
  39217. name: "Back",
  39218. image: {
  39219. source: "./media/characters/icky/back.svg",
  39220. extra: 754/735,
  39221. bottom: 56/810
  39222. }
  39223. },
  39224. },
  39225. [
  39226. {
  39227. name: "Normal",
  39228. height: math.unit(6 + 6/12, "feet"),
  39229. default: true
  39230. },
  39231. ]
  39232. ))
  39233. characterMakers.push(() => makeCharacter(
  39234. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39235. {
  39236. front: {
  39237. height: math.unit(15, "feet"),
  39238. name: "Front",
  39239. image: {
  39240. source: "./media/characters/rojas/front.svg",
  39241. extra: 1462/1408,
  39242. bottom: 95/1557
  39243. }
  39244. },
  39245. back: {
  39246. height: math.unit(15, "feet"),
  39247. name: "Back",
  39248. image: {
  39249. source: "./media/characters/rojas/back.svg",
  39250. extra: 1023/954,
  39251. bottom: 28/1051
  39252. }
  39253. },
  39254. },
  39255. [
  39256. {
  39257. name: "Normal",
  39258. height: math.unit(15, "feet"),
  39259. default: true
  39260. },
  39261. ]
  39262. ))
  39263. characterMakers.push(() => makeCharacter(
  39264. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39265. {
  39266. frontHuman: {
  39267. height: math.unit(5 + 7/12, "feet"),
  39268. name: "Front (Human)",
  39269. image: {
  39270. source: "./media/characters/alek-dryagan/front-human.svg",
  39271. extra: 1687/1667,
  39272. bottom: 69/1756
  39273. }
  39274. },
  39275. backHuman: {
  39276. height: math.unit(5 + 7/12, "feet"),
  39277. name: "Back (Human)",
  39278. image: {
  39279. source: "./media/characters/alek-dryagan/back-human.svg",
  39280. extra: 1670/1649,
  39281. bottom: 65/1735
  39282. }
  39283. },
  39284. frontDemi: {
  39285. height: math.unit(65, "feet"),
  39286. name: "Front (Demi)",
  39287. image: {
  39288. source: "./media/characters/alek-dryagan/front-demi.svg",
  39289. extra: 1669/1642,
  39290. bottom: 49/1718
  39291. }
  39292. },
  39293. backDemi: {
  39294. height: math.unit(65, "feet"),
  39295. name: "Back (Demi)",
  39296. image: {
  39297. source: "./media/characters/alek-dryagan/back-demi.svg",
  39298. extra: 1658/1637,
  39299. bottom: 40/1698
  39300. }
  39301. },
  39302. mawHuman: {
  39303. height: math.unit(0.3, "feet"),
  39304. name: "Maw (Human)",
  39305. image: {
  39306. source: "./media/characters/alek-dryagan/maw-human.svg"
  39307. }
  39308. },
  39309. mawDemi: {
  39310. height: math.unit(3.8, "feet"),
  39311. name: "Maw (Demi)",
  39312. image: {
  39313. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39314. }
  39315. },
  39316. },
  39317. [
  39318. {
  39319. name: "Normal",
  39320. height: math.unit(5 + 7/12, "feet"),
  39321. default: true
  39322. },
  39323. ]
  39324. ))
  39325. characterMakers.push(() => makeCharacter(
  39326. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39327. {
  39328. frontHuman: {
  39329. height: math.unit(5 + 2/12, "feet"),
  39330. name: "Front (Human)",
  39331. image: {
  39332. source: "./media/characters/gen/front-human.svg",
  39333. extra: 1627/1538,
  39334. bottom: 71/1698
  39335. }
  39336. },
  39337. backHuman: {
  39338. height: math.unit(5 + 2/12, "feet"),
  39339. name: "Back (Human)",
  39340. image: {
  39341. source: "./media/characters/gen/back-human.svg",
  39342. extra: 1638/1548,
  39343. bottom: 69/1707
  39344. }
  39345. },
  39346. frontDemi: {
  39347. height: math.unit(5 + 2/12, "feet"),
  39348. name: "Front (Demi)",
  39349. image: {
  39350. source: "./media/characters/gen/front-demi.svg",
  39351. extra: 1627/1538,
  39352. bottom: 71/1698
  39353. }
  39354. },
  39355. backDemi: {
  39356. height: math.unit(5 + 2/12, "feet"),
  39357. name: "Back (Demi)",
  39358. image: {
  39359. source: "./media/characters/gen/back-demi.svg",
  39360. extra: 1638/1548,
  39361. bottom: 69/1707
  39362. }
  39363. },
  39364. },
  39365. [
  39366. {
  39367. name: "Normal",
  39368. height: math.unit(5 + 2/12, "feet"),
  39369. default: true
  39370. },
  39371. ]
  39372. ))
  39373. characterMakers.push(() => makeCharacter(
  39374. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39375. {
  39376. frontImp: {
  39377. height: math.unit(1 + 11/12, "feet"),
  39378. name: "Front (Imp)",
  39379. image: {
  39380. source: "./media/characters/max-kobold/front-imp.svg",
  39381. extra: 1238/1134,
  39382. bottom: 81/1319
  39383. }
  39384. },
  39385. backImp: {
  39386. height: math.unit(1 + 11/12, "feet"),
  39387. name: "Back (Imp)",
  39388. image: {
  39389. source: "./media/characters/max-kobold/back-imp.svg",
  39390. extra: 1334/1175,
  39391. bottom: 34/1368
  39392. }
  39393. },
  39394. frontDemi: {
  39395. height: math.unit(5 + 9/12, "feet"),
  39396. name: "Front (Demi)",
  39397. image: {
  39398. source: "./media/characters/max-kobold/front-demi.svg",
  39399. extra: 1715/1685,
  39400. bottom: 54/1769
  39401. }
  39402. },
  39403. backDemi: {
  39404. height: math.unit(5 + 9/12, "feet"),
  39405. name: "Back (Demi)",
  39406. image: {
  39407. source: "./media/characters/max-kobold/back-demi.svg",
  39408. extra: 1752/1729,
  39409. bottom: 41/1793
  39410. }
  39411. },
  39412. handImp: {
  39413. height: math.unit(0.45, "feet"),
  39414. name: "Hand (Imp)",
  39415. image: {
  39416. source: "./media/characters/max-kobold/hand.svg"
  39417. }
  39418. },
  39419. pawImp: {
  39420. height: math.unit(0.46, "feet"),
  39421. name: "Paw (Imp)",
  39422. image: {
  39423. source: "./media/characters/max-kobold/paw.svg"
  39424. }
  39425. },
  39426. handDemi: {
  39427. height: math.unit(0.80, "feet"),
  39428. name: "Hand (Demi)",
  39429. image: {
  39430. source: "./media/characters/max-kobold/hand.svg"
  39431. }
  39432. },
  39433. pawDemi: {
  39434. height: math.unit(1.1, "feet"),
  39435. name: "Paw (Demi)",
  39436. image: {
  39437. source: "./media/characters/max-kobold/paw.svg"
  39438. }
  39439. },
  39440. headImp: {
  39441. height: math.unit(1.33, "feet"),
  39442. name: "Head (Imp)",
  39443. image: {
  39444. source: "./media/characters/max-kobold/head-imp.svg"
  39445. }
  39446. },
  39447. mawImp: {
  39448. height: math.unit(0.75, "feet"),
  39449. name: "Maw (Imp)",
  39450. image: {
  39451. source: "./media/characters/max-kobold/maw-imp.svg"
  39452. }
  39453. },
  39454. mawDemi: {
  39455. height: math.unit(0.42, "feet"),
  39456. name: "Maw (Demi)",
  39457. image: {
  39458. source: "./media/characters/max-kobold/maw-demi.svg"
  39459. }
  39460. },
  39461. },
  39462. [
  39463. {
  39464. name: "Normal",
  39465. height: math.unit(1 + 11/12, "feet"),
  39466. default: true
  39467. },
  39468. ]
  39469. ))
  39470. characterMakers.push(() => makeCharacter(
  39471. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39472. {
  39473. front: {
  39474. height: math.unit(7 + 5/12, "feet"),
  39475. name: "Front",
  39476. image: {
  39477. source: "./media/characters/carbon/front.svg",
  39478. extra: 1754/1689,
  39479. bottom: 65/1819
  39480. }
  39481. },
  39482. back: {
  39483. height: math.unit(7 + 5/12, "feet"),
  39484. name: "Back",
  39485. image: {
  39486. source: "./media/characters/carbon/back.svg",
  39487. extra: 1762/1695,
  39488. bottom: 24/1786
  39489. }
  39490. },
  39491. frontGigantamax: {
  39492. height: math.unit(150, "feet"),
  39493. name: "Front (Gigantamax)",
  39494. image: {
  39495. source: "./media/characters/carbon/front-gigantamax.svg",
  39496. extra: 1826/1669,
  39497. bottom: 59/1885
  39498. }
  39499. },
  39500. backGigantamax: {
  39501. height: math.unit(150, "feet"),
  39502. name: "Back (Gigantamax)",
  39503. image: {
  39504. source: "./media/characters/carbon/back-gigantamax.svg",
  39505. extra: 1796/1653,
  39506. bottom: 53/1849
  39507. }
  39508. },
  39509. maw: {
  39510. height: math.unit(0.48, "feet"),
  39511. name: "Maw",
  39512. image: {
  39513. source: "./media/characters/carbon/maw.svg"
  39514. }
  39515. },
  39516. mawGigantamax: {
  39517. height: math.unit(7.5, "feet"),
  39518. name: "Maw (Gigantamax)",
  39519. image: {
  39520. source: "./media/characters/carbon/maw-gigantamax.svg"
  39521. }
  39522. },
  39523. },
  39524. [
  39525. {
  39526. name: "Normal",
  39527. height: math.unit(7 + 5/12, "feet"),
  39528. default: true
  39529. },
  39530. ]
  39531. ))
  39532. characterMakers.push(() => makeCharacter(
  39533. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39534. {
  39535. front: {
  39536. height: math.unit(6, "feet"),
  39537. name: "Front",
  39538. image: {
  39539. source: "./media/characters/maverick/front.svg",
  39540. extra: 1672/1661,
  39541. bottom: 85/1757
  39542. }
  39543. },
  39544. back: {
  39545. height: math.unit(6, "feet"),
  39546. name: "Back",
  39547. image: {
  39548. source: "./media/characters/maverick/back.svg",
  39549. extra: 1642/1631,
  39550. bottom: 38/1680
  39551. }
  39552. },
  39553. },
  39554. [
  39555. {
  39556. name: "Normal",
  39557. height: math.unit(6, "feet"),
  39558. default: true
  39559. },
  39560. ]
  39561. ))
  39562. characterMakers.push(() => makeCharacter(
  39563. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39564. {
  39565. front: {
  39566. height: math.unit(15, "feet"),
  39567. weight: math.unit(615, "lb"),
  39568. name: "Front",
  39569. image: {
  39570. source: "./media/characters/grockle/front.svg",
  39571. extra: 1535/1427,
  39572. bottom: 56/1591
  39573. }
  39574. },
  39575. },
  39576. [
  39577. {
  39578. name: "Normal",
  39579. height: math.unit(15, "feet"),
  39580. default: true
  39581. },
  39582. {
  39583. name: "Large",
  39584. height: math.unit(150, "feet")
  39585. },
  39586. {
  39587. name: "Macro",
  39588. height: math.unit(1876, "feet")
  39589. },
  39590. {
  39591. name: "Mega Macro",
  39592. height: math.unit(121940, "feet")
  39593. },
  39594. {
  39595. name: "Giga Macro",
  39596. height: math.unit(750, "km")
  39597. },
  39598. {
  39599. name: "Tera Macro",
  39600. height: math.unit(750000, "km")
  39601. },
  39602. {
  39603. name: "Galactic",
  39604. height: math.unit(1.4e5, "km")
  39605. },
  39606. {
  39607. name: "Godlike",
  39608. height: math.unit(9.8e280, "galaxies")
  39609. },
  39610. ]
  39611. ))
  39612. characterMakers.push(() => makeCharacter(
  39613. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39614. {
  39615. front: {
  39616. height: math.unit(11, "meters"),
  39617. weight: math.unit(20, "tonnes"),
  39618. name: "Front",
  39619. image: {
  39620. source: "./media/characters/alistair/front.svg",
  39621. extra: 1265/1009,
  39622. bottom: 93/1358
  39623. }
  39624. },
  39625. },
  39626. [
  39627. {
  39628. name: "Normal",
  39629. height: math.unit(11, "meters"),
  39630. default: true
  39631. },
  39632. ]
  39633. ))
  39634. characterMakers.push(() => makeCharacter(
  39635. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39636. {
  39637. front: {
  39638. height: math.unit(5 + 8/12, "feet"),
  39639. name: "Front",
  39640. image: {
  39641. source: "./media/characters/haruka/front.svg",
  39642. extra: 2012/1952,
  39643. bottom: 0/2012
  39644. }
  39645. },
  39646. },
  39647. [
  39648. {
  39649. name: "Normal",
  39650. height: math.unit(5 + 8/12, "feet"),
  39651. default: true
  39652. },
  39653. ]
  39654. ))
  39655. characterMakers.push(() => makeCharacter(
  39656. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39657. {
  39658. back: {
  39659. height: math.unit(9, "feet"),
  39660. name: "Back",
  39661. image: {
  39662. source: "./media/characters/vivian-sylveon/back.svg",
  39663. extra: 1853/1714,
  39664. bottom: 0/1853
  39665. }
  39666. },
  39667. },
  39668. [
  39669. {
  39670. name: "Normal",
  39671. height: math.unit(9, "feet"),
  39672. default: true
  39673. },
  39674. {
  39675. name: "Macro",
  39676. height: math.unit(500, "feet")
  39677. },
  39678. {
  39679. name: "Megamacro",
  39680. height: math.unit(600, "miles")
  39681. },
  39682. {
  39683. name: "Gigamacro",
  39684. height: math.unit(30000, "miles")
  39685. },
  39686. ]
  39687. ))
  39688. characterMakers.push(() => makeCharacter(
  39689. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39690. {
  39691. anthro: {
  39692. height: math.unit(5 + 10/12, "feet"),
  39693. weight: math.unit(100, "lb"),
  39694. name: "Anthro",
  39695. image: {
  39696. source: "./media/characters/daiki/anthro.svg",
  39697. extra: 1115/1027,
  39698. bottom: 69/1184
  39699. }
  39700. },
  39701. feral: {
  39702. height: math.unit(200, "feet"),
  39703. name: "Feral",
  39704. image: {
  39705. source: "./media/characters/daiki/feral.svg",
  39706. extra: 1256/313,
  39707. bottom: 39/1295
  39708. }
  39709. },
  39710. feralHead: {
  39711. height: math.unit(171, "feet"),
  39712. name: "Feral Head",
  39713. image: {
  39714. source: "./media/characters/daiki/feral-head.svg"
  39715. }
  39716. },
  39717. manaDragon: {
  39718. height: math.unit(170, "meters"),
  39719. name: "Mana-dragon",
  39720. image: {
  39721. source: "./media/characters/daiki/mana-dragon.svg",
  39722. extra: 763/420,
  39723. bottom: 97/860
  39724. }
  39725. },
  39726. },
  39727. [
  39728. {
  39729. name: "Normal",
  39730. height: math.unit(5 + 10/12, "feet"),
  39731. default: true
  39732. },
  39733. ]
  39734. ))
  39735. characterMakers.push(() => makeCharacter(
  39736. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39737. {
  39738. fullyEquippedFront: {
  39739. height: math.unit(3 + 1/12, "feet"),
  39740. weight: math.unit(24, "lb"),
  39741. name: "Fully Equipped (Front)",
  39742. image: {
  39743. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39744. extra: 687/605,
  39745. bottom: 18/705
  39746. }
  39747. },
  39748. fullyEquippedBack: {
  39749. height: math.unit(3 + 1/12, "feet"),
  39750. weight: math.unit(24, "lb"),
  39751. name: "Fully Equipped (Back)",
  39752. image: {
  39753. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39754. extra: 689/590,
  39755. bottom: 18/707
  39756. }
  39757. },
  39758. dailyWear: {
  39759. height: math.unit(3 + 1/12, "feet"),
  39760. weight: math.unit(24, "lb"),
  39761. name: "Daily Wear",
  39762. image: {
  39763. source: "./media/characters/tea-spot/daily-wear.svg",
  39764. extra: 701/620,
  39765. bottom: 21/722
  39766. }
  39767. },
  39768. maidWork: {
  39769. height: math.unit(3 + 1/12, "feet"),
  39770. weight: math.unit(24, "lb"),
  39771. name: "Maid Work",
  39772. image: {
  39773. source: "./media/characters/tea-spot/maid-work.svg",
  39774. extra: 693/609,
  39775. bottom: 15/708
  39776. }
  39777. },
  39778. },
  39779. [
  39780. {
  39781. name: "Normal",
  39782. height: math.unit(3 + 1/12, "feet"),
  39783. default: true
  39784. },
  39785. ]
  39786. ))
  39787. characterMakers.push(() => makeCharacter(
  39788. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39789. {
  39790. front: {
  39791. height: math.unit(175, "cm"),
  39792. weight: math.unit(75, "kg"),
  39793. name: "Front",
  39794. image: {
  39795. source: "./media/characters/chee/front.svg",
  39796. extra: 1796/1740,
  39797. bottom: 40/1836
  39798. }
  39799. },
  39800. },
  39801. [
  39802. {
  39803. name: "Micro-Micro",
  39804. height: math.unit(1, "nm")
  39805. },
  39806. {
  39807. name: "Micro-erst",
  39808. height: math.unit(1, "micrometer")
  39809. },
  39810. {
  39811. name: "Micro-er",
  39812. height: math.unit(1, "cm")
  39813. },
  39814. {
  39815. name: "Normal",
  39816. height: math.unit(175, "cm"),
  39817. default: true
  39818. },
  39819. {
  39820. name: "Macro",
  39821. height: math.unit(100, "m")
  39822. },
  39823. {
  39824. name: "Macro-er",
  39825. height: math.unit(1, "km")
  39826. },
  39827. {
  39828. name: "Macro-erst",
  39829. height: math.unit(10, "km")
  39830. },
  39831. {
  39832. name: "Macro-Macro",
  39833. height: math.unit(100, "km")
  39834. },
  39835. ]
  39836. ))
  39837. characterMakers.push(() => makeCharacter(
  39838. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39839. {
  39840. front: {
  39841. height: math.unit(11 + 9/12, "feet"),
  39842. weight: math.unit(935, "lb"),
  39843. name: "Front",
  39844. image: {
  39845. source: "./media/characters/kingsley/front.svg",
  39846. extra: 1803/1674,
  39847. bottom: 127/1930
  39848. }
  39849. },
  39850. frontNude: {
  39851. height: math.unit(11 + 9/12, "feet"),
  39852. weight: math.unit(935, "lb"),
  39853. name: "Front (Nude)",
  39854. image: {
  39855. source: "./media/characters/kingsley/front-nude.svg",
  39856. extra: 1803/1674,
  39857. bottom: 127/1930
  39858. }
  39859. },
  39860. },
  39861. [
  39862. {
  39863. name: "Normal",
  39864. height: math.unit(11 + 9/12, "feet"),
  39865. default: true
  39866. },
  39867. ]
  39868. ))
  39869. characterMakers.push(() => makeCharacter(
  39870. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39871. {
  39872. side: {
  39873. height: math.unit(9, "feet"),
  39874. name: "Side",
  39875. image: {
  39876. source: "./media/characters/rymel/side.svg",
  39877. extra: 792/469,
  39878. bottom: 121/913
  39879. }
  39880. },
  39881. maw: {
  39882. height: math.unit(2.4, "meters"),
  39883. name: "Maw",
  39884. image: {
  39885. source: "./media/characters/rymel/maw.svg"
  39886. }
  39887. },
  39888. },
  39889. [
  39890. {
  39891. name: "House Drake",
  39892. height: math.unit(2, "feet")
  39893. },
  39894. {
  39895. name: "Reduced",
  39896. height: math.unit(4.5, "feet")
  39897. },
  39898. {
  39899. name: "Normal",
  39900. height: math.unit(9, "feet"),
  39901. default: true
  39902. },
  39903. ]
  39904. ))
  39905. characterMakers.push(() => makeCharacter(
  39906. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39907. {
  39908. front: {
  39909. height: math.unit(1.74, "meters"),
  39910. weight: math.unit(55, "kg"),
  39911. name: "Front",
  39912. image: {
  39913. source: "./media/characters/rubus/front.svg",
  39914. extra: 1894/1742,
  39915. bottom: 44/1938
  39916. }
  39917. },
  39918. },
  39919. [
  39920. {
  39921. name: "Normal",
  39922. height: math.unit(1.74, "meters"),
  39923. default: true
  39924. },
  39925. ]
  39926. ))
  39927. characterMakers.push(() => makeCharacter(
  39928. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39929. {
  39930. front: {
  39931. height: math.unit(5 + 2/12, "feet"),
  39932. weight: math.unit(112, "lb"),
  39933. name: "Front",
  39934. image: {
  39935. source: "./media/characters/cassie-kingston/front.svg",
  39936. extra: 1438/1390,
  39937. bottom: 47/1485
  39938. }
  39939. },
  39940. },
  39941. [
  39942. {
  39943. name: "Normal",
  39944. height: math.unit(5 + 2/12, "feet"),
  39945. default: true
  39946. },
  39947. {
  39948. name: "Macro",
  39949. height: math.unit(128, "feet")
  39950. },
  39951. {
  39952. name: "Megamacro",
  39953. height: math.unit(2.56, "miles")
  39954. },
  39955. ]
  39956. ))
  39957. characterMakers.push(() => makeCharacter(
  39958. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39959. {
  39960. front: {
  39961. height: math.unit(7, "feet"),
  39962. name: "Front",
  39963. image: {
  39964. source: "./media/characters/fox/front.svg",
  39965. extra: 1798/1703,
  39966. bottom: 55/1853
  39967. }
  39968. },
  39969. back: {
  39970. height: math.unit(7, "feet"),
  39971. name: "Back",
  39972. image: {
  39973. source: "./media/characters/fox/back.svg",
  39974. extra: 1748/1649,
  39975. bottom: 32/1780
  39976. }
  39977. },
  39978. head: {
  39979. height: math.unit(1.95, "feet"),
  39980. name: "Head",
  39981. image: {
  39982. source: "./media/characters/fox/head.svg"
  39983. }
  39984. },
  39985. dick: {
  39986. height: math.unit(1.33, "feet"),
  39987. name: "Dick",
  39988. image: {
  39989. source: "./media/characters/fox/dick.svg"
  39990. }
  39991. },
  39992. foot: {
  39993. height: math.unit(1, "feet"),
  39994. name: "Foot",
  39995. image: {
  39996. source: "./media/characters/fox/foot.svg"
  39997. }
  39998. },
  39999. paw: {
  40000. height: math.unit(0.92, "feet"),
  40001. name: "Paw",
  40002. image: {
  40003. source: "./media/characters/fox/paw.svg"
  40004. }
  40005. },
  40006. },
  40007. [
  40008. {
  40009. name: "Small",
  40010. height: math.unit(3, "inches")
  40011. },
  40012. {
  40013. name: "\"Realistic\"",
  40014. height: math.unit(7, "feet")
  40015. },
  40016. {
  40017. name: "Normal",
  40018. height: math.unit(150, "feet"),
  40019. default: true
  40020. },
  40021. {
  40022. name: "BIG",
  40023. height: math.unit(1200, "feet")
  40024. },
  40025. {
  40026. name: "👀",
  40027. height: math.unit(5, "miles")
  40028. },
  40029. {
  40030. name: "👀👀👀",
  40031. height: math.unit(64, "miles")
  40032. },
  40033. ]
  40034. ))
  40035. characterMakers.push(() => makeCharacter(
  40036. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40037. {
  40038. front: {
  40039. height: math.unit(625, "feet"),
  40040. name: "Front",
  40041. image: {
  40042. source: "./media/characters/asonja-rossa/front.svg",
  40043. extra: 1833/1686,
  40044. bottom: 24/1857
  40045. }
  40046. },
  40047. back: {
  40048. height: math.unit(625, "feet"),
  40049. name: "Back",
  40050. image: {
  40051. source: "./media/characters/asonja-rossa/back.svg",
  40052. extra: 1852/1753,
  40053. bottom: 26/1878
  40054. }
  40055. },
  40056. },
  40057. [
  40058. {
  40059. name: "Macro",
  40060. height: math.unit(625, "feet"),
  40061. default: true
  40062. },
  40063. ]
  40064. ))
  40065. characterMakers.push(() => makeCharacter(
  40066. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40067. {
  40068. side: {
  40069. height: math.unit(8, "feet"),
  40070. name: "Side",
  40071. image: {
  40072. source: "./media/characters/rezukii/side.svg",
  40073. extra: 979/542,
  40074. bottom: 87/1066
  40075. }
  40076. },
  40077. sitting: {
  40078. height: math.unit(14.6, "feet"),
  40079. name: "Sitting",
  40080. image: {
  40081. source: "./media/characters/rezukii/sitting.svg",
  40082. extra: 1023/813,
  40083. bottom: 45/1068
  40084. }
  40085. },
  40086. },
  40087. [
  40088. {
  40089. name: "Tiny",
  40090. height: math.unit(2, "feet")
  40091. },
  40092. {
  40093. name: "Smol",
  40094. height: math.unit(4, "feet")
  40095. },
  40096. {
  40097. name: "Normal",
  40098. height: math.unit(8, "feet"),
  40099. default: true
  40100. },
  40101. {
  40102. name: "Big",
  40103. height: math.unit(12, "feet")
  40104. },
  40105. {
  40106. name: "Macro",
  40107. height: math.unit(30, "feet")
  40108. },
  40109. ]
  40110. ))
  40111. characterMakers.push(() => makeCharacter(
  40112. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40113. {
  40114. front: {
  40115. height: math.unit(14, "feet"),
  40116. weight: math.unit(9.5, "tonnes"),
  40117. name: "Front",
  40118. image: {
  40119. source: "./media/characters/dawnheart/front.svg",
  40120. extra: 2792/2675,
  40121. bottom: 64/2856
  40122. }
  40123. },
  40124. },
  40125. [
  40126. {
  40127. name: "Normal",
  40128. height: math.unit(14, "feet"),
  40129. default: true
  40130. },
  40131. ]
  40132. ))
  40133. characterMakers.push(() => makeCharacter(
  40134. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40135. {
  40136. front: {
  40137. height: math.unit(1.7, "m"),
  40138. name: "Front",
  40139. image: {
  40140. source: "./media/characters/gladi/front.svg",
  40141. extra: 1460/1362,
  40142. bottom: 19/1479
  40143. }
  40144. },
  40145. back: {
  40146. height: math.unit(1.7, "m"),
  40147. name: "Back",
  40148. image: {
  40149. source: "./media/characters/gladi/back.svg",
  40150. extra: 1459/1357,
  40151. bottom: 12/1471
  40152. }
  40153. },
  40154. feral: {
  40155. height: math.unit(2.05, "m"),
  40156. name: "Feral",
  40157. image: {
  40158. source: "./media/characters/gladi/feral.svg",
  40159. extra: 821/557,
  40160. bottom: 91/912
  40161. }
  40162. },
  40163. },
  40164. [
  40165. {
  40166. name: "Shortest",
  40167. height: math.unit(70, "cm")
  40168. },
  40169. {
  40170. name: "Normal",
  40171. height: math.unit(1.7, "m")
  40172. },
  40173. {
  40174. name: "Macro",
  40175. height: math.unit(10, "m"),
  40176. default: true
  40177. },
  40178. {
  40179. name: "Tallest",
  40180. height: math.unit(200, "m")
  40181. },
  40182. ]
  40183. ))
  40184. characterMakers.push(() => makeCharacter(
  40185. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40186. {
  40187. front: {
  40188. height: math.unit(5 + 7/12, "feet"),
  40189. weight: math.unit(2, "tons"),
  40190. name: "Front",
  40191. image: {
  40192. source: "./media/characters/erdno/front.svg",
  40193. extra: 1234/1129,
  40194. bottom: 35/1269
  40195. }
  40196. },
  40197. angled: {
  40198. height: math.unit(5 + 7/12, "feet"),
  40199. weight: math.unit(2, "tons"),
  40200. name: "Angled",
  40201. image: {
  40202. source: "./media/characters/erdno/angled.svg",
  40203. extra: 1185/1139,
  40204. bottom: 36/1221
  40205. }
  40206. },
  40207. side: {
  40208. height: math.unit(5 + 7/12, "feet"),
  40209. weight: math.unit(2, "tons"),
  40210. name: "Side",
  40211. image: {
  40212. source: "./media/characters/erdno/side.svg",
  40213. extra: 1191/1144,
  40214. bottom: 40/1231
  40215. }
  40216. },
  40217. back: {
  40218. height: math.unit(5 + 7/12, "feet"),
  40219. weight: math.unit(2, "tons"),
  40220. name: "Back",
  40221. image: {
  40222. source: "./media/characters/erdno/back.svg",
  40223. extra: 1202/1146,
  40224. bottom: 17/1219
  40225. }
  40226. },
  40227. frontNsfw: {
  40228. height: math.unit(5 + 7/12, "feet"),
  40229. weight: math.unit(2, "tons"),
  40230. name: "Front (NSFW)",
  40231. image: {
  40232. source: "./media/characters/erdno/front-nsfw.svg",
  40233. extra: 1234/1129,
  40234. bottom: 35/1269
  40235. }
  40236. },
  40237. angledNsfw: {
  40238. height: math.unit(5 + 7/12, "feet"),
  40239. weight: math.unit(2, "tons"),
  40240. name: "Angled (NSFW)",
  40241. image: {
  40242. source: "./media/characters/erdno/angled-nsfw.svg",
  40243. extra: 1185/1139,
  40244. bottom: 36/1221
  40245. }
  40246. },
  40247. sideNsfw: {
  40248. height: math.unit(5 + 7/12, "feet"),
  40249. weight: math.unit(2, "tons"),
  40250. name: "Side (NSFW)",
  40251. image: {
  40252. source: "./media/characters/erdno/side-nsfw.svg",
  40253. extra: 1191/1144,
  40254. bottom: 40/1231
  40255. }
  40256. },
  40257. backNsfw: {
  40258. height: math.unit(5 + 7/12, "feet"),
  40259. weight: math.unit(2, "tons"),
  40260. name: "Back (NSFW)",
  40261. image: {
  40262. source: "./media/characters/erdno/back-nsfw.svg",
  40263. extra: 1202/1146,
  40264. bottom: 17/1219
  40265. }
  40266. },
  40267. frontHyper: {
  40268. height: math.unit(5 + 7/12, "feet"),
  40269. weight: math.unit(2, "tons"),
  40270. name: "Front (Hyper)",
  40271. image: {
  40272. source: "./media/characters/erdno/front-hyper.svg",
  40273. extra: 1298/1136,
  40274. bottom: 35/1333
  40275. }
  40276. },
  40277. },
  40278. [
  40279. {
  40280. name: "Normal",
  40281. height: math.unit(5 + 7/12, "feet"),
  40282. default: true
  40283. },
  40284. {
  40285. name: "Big",
  40286. height: math.unit(5.7, "meters")
  40287. },
  40288. {
  40289. name: "Macro",
  40290. height: math.unit(5.7, "kilometers")
  40291. },
  40292. {
  40293. name: "Megamacro",
  40294. height: math.unit(5.7, "earths")
  40295. },
  40296. ]
  40297. ))
  40298. characterMakers.push(() => makeCharacter(
  40299. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40300. {
  40301. front: {
  40302. height: math.unit(5 + 10/12, "feet"),
  40303. weight: math.unit(150, "lb"),
  40304. name: "Front",
  40305. image: {
  40306. source: "./media/characters/jamie/front.svg",
  40307. extra: 1908/1768,
  40308. bottom: 19/1927
  40309. }
  40310. },
  40311. },
  40312. [
  40313. {
  40314. name: "Minimum",
  40315. height: math.unit(2, "cm")
  40316. },
  40317. {
  40318. name: "Micro",
  40319. height: math.unit(3, "inches")
  40320. },
  40321. {
  40322. name: "Normal",
  40323. height: math.unit(5 + 10/12, "feet"),
  40324. default: true
  40325. },
  40326. {
  40327. name: "Macro",
  40328. height: math.unit(150, "feet")
  40329. },
  40330. {
  40331. name: "Megamacro",
  40332. height: math.unit(10000, "m")
  40333. },
  40334. ]
  40335. ))
  40336. characterMakers.push(() => makeCharacter(
  40337. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40338. {
  40339. front: {
  40340. height: math.unit(2, "meters"),
  40341. weight: math.unit(100, "kg"),
  40342. name: "Front",
  40343. image: {
  40344. source: "./media/characters/shiron/front.svg",
  40345. extra: 2103/1985,
  40346. bottom: 98/2201
  40347. }
  40348. },
  40349. back: {
  40350. height: math.unit(2, "meters"),
  40351. weight: math.unit(100, "kg"),
  40352. name: "Back",
  40353. image: {
  40354. source: "./media/characters/shiron/back.svg",
  40355. extra: 2110/2015,
  40356. bottom: 89/2199
  40357. }
  40358. },
  40359. hand: {
  40360. height: math.unit(0.96, "feet"),
  40361. name: "Hand",
  40362. image: {
  40363. source: "./media/characters/shiron/hand.svg"
  40364. }
  40365. },
  40366. foot: {
  40367. height: math.unit(1.464, "feet"),
  40368. name: "Foot",
  40369. image: {
  40370. source: "./media/characters/shiron/foot.svg"
  40371. }
  40372. },
  40373. },
  40374. [
  40375. {
  40376. name: "Normal",
  40377. height: math.unit(2, "meters")
  40378. },
  40379. {
  40380. name: "Macro",
  40381. height: math.unit(500, "meters"),
  40382. default: true
  40383. },
  40384. {
  40385. name: "Megamacro",
  40386. height: math.unit(20, "km")
  40387. },
  40388. ]
  40389. ))
  40390. characterMakers.push(() => makeCharacter(
  40391. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40392. {
  40393. front: {
  40394. height: math.unit(6, "feet"),
  40395. name: "Front",
  40396. image: {
  40397. source: "./media/characters/sam/front.svg",
  40398. extra: 849/826,
  40399. bottom: 19/868
  40400. }
  40401. },
  40402. },
  40403. [
  40404. {
  40405. name: "Normal",
  40406. height: math.unit(6, "feet"),
  40407. default: true
  40408. },
  40409. ]
  40410. ))
  40411. characterMakers.push(() => makeCharacter(
  40412. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40413. {
  40414. front: {
  40415. height: math.unit(8 + 4/12, "feet"),
  40416. weight: math.unit(122, "kg"),
  40417. name: "Front",
  40418. image: {
  40419. source: "./media/characters/namori-kurogawa/front.svg",
  40420. extra: 1894/1576,
  40421. bottom: 34/1928
  40422. }
  40423. },
  40424. },
  40425. [
  40426. {
  40427. name: "Normal",
  40428. height: math.unit(8 + 4/12, "feet"),
  40429. default: true
  40430. },
  40431. ]
  40432. ))
  40433. characterMakers.push(() => makeCharacter(
  40434. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40435. {
  40436. front: {
  40437. height: math.unit(9, "feet"),
  40438. weight: math.unit(621, "lb"),
  40439. name: "Front",
  40440. image: {
  40441. source: "./media/characters/unmru/front.svg",
  40442. extra: 1853/1747,
  40443. bottom: 73/1926
  40444. }
  40445. },
  40446. side: {
  40447. height: math.unit(9, "feet"),
  40448. weight: math.unit(621, "lb"),
  40449. name: "Side",
  40450. image: {
  40451. source: "./media/characters/unmru/side.svg",
  40452. extra: 1781/1671,
  40453. bottom: 127/1908
  40454. }
  40455. },
  40456. back: {
  40457. height: math.unit(9, "feet"),
  40458. weight: math.unit(621, "lb"),
  40459. name: "Back",
  40460. image: {
  40461. source: "./media/characters/unmru/back.svg",
  40462. extra: 1894/1765,
  40463. bottom: 75/1969
  40464. }
  40465. },
  40466. dick: {
  40467. height: math.unit(3, "feet"),
  40468. weight: math.unit(35, "lb"),
  40469. name: "Dick",
  40470. image: {
  40471. source: "./media/characters/unmru/dick.svg"
  40472. }
  40473. },
  40474. },
  40475. [
  40476. {
  40477. name: "Normal",
  40478. height: math.unit(9, "feet")
  40479. },
  40480. {
  40481. name: "Natural",
  40482. height: math.unit(27, "feet"),
  40483. default: true
  40484. },
  40485. {
  40486. name: "Giant",
  40487. height: math.unit(90, "feet")
  40488. },
  40489. {
  40490. name: "Kaiju",
  40491. height: math.unit(270, "feet")
  40492. },
  40493. {
  40494. name: "Macro",
  40495. height: math.unit(900, "feet")
  40496. },
  40497. {
  40498. name: "Macro+",
  40499. height: math.unit(2700, "feet")
  40500. },
  40501. {
  40502. name: "Megamacro",
  40503. height: math.unit(9000, "feet")
  40504. },
  40505. {
  40506. name: "City-Crushing",
  40507. height: math.unit(27000, "feet")
  40508. },
  40509. {
  40510. name: "Mountain-Mashing",
  40511. height: math.unit(90000, "feet")
  40512. },
  40513. {
  40514. name: "Earth-Eclipsing",
  40515. height: math.unit(2.7e8, "feet")
  40516. },
  40517. {
  40518. name: "Sol-Swallowing",
  40519. height: math.unit(9e10, "feet")
  40520. },
  40521. {
  40522. name: "Majoris-Munching",
  40523. height: math.unit(2.7e13, "feet")
  40524. },
  40525. ]
  40526. ))
  40527. characterMakers.push(() => makeCharacter(
  40528. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40529. {
  40530. front: {
  40531. height: math.unit(1, "inch"),
  40532. name: "Front",
  40533. image: {
  40534. source: "./media/characters/squeaks-mouse/front.svg",
  40535. extra: 352/308,
  40536. bottom: 25/377
  40537. }
  40538. },
  40539. },
  40540. [
  40541. {
  40542. name: "Micro",
  40543. height: math.unit(1, "inch"),
  40544. default: true
  40545. },
  40546. ]
  40547. ))
  40548. characterMakers.push(() => makeCharacter(
  40549. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40550. {
  40551. side: {
  40552. height: math.unit(35, "feet"),
  40553. name: "Side",
  40554. image: {
  40555. source: "./media/characters/sayko/side.svg",
  40556. extra: 1697/1021,
  40557. bottom: 82/1779
  40558. }
  40559. },
  40560. head: {
  40561. height: math.unit(16, "feet"),
  40562. name: "Head",
  40563. image: {
  40564. source: "./media/characters/sayko/head.svg"
  40565. }
  40566. },
  40567. forepaw: {
  40568. height: math.unit(7.85, "feet"),
  40569. name: "Forepaw",
  40570. image: {
  40571. source: "./media/characters/sayko/forepaw.svg"
  40572. }
  40573. },
  40574. hindpaw: {
  40575. height: math.unit(8.8, "feet"),
  40576. name: "Hindpaw",
  40577. image: {
  40578. source: "./media/characters/sayko/hindpaw.svg"
  40579. }
  40580. },
  40581. },
  40582. [
  40583. {
  40584. name: "Normal",
  40585. height: math.unit(35, "feet"),
  40586. default: true
  40587. },
  40588. {
  40589. name: "Colossus",
  40590. height: math.unit(100, "meters")
  40591. },
  40592. {
  40593. name: "\"Small\" Deity",
  40594. height: math.unit(1, "km")
  40595. },
  40596. {
  40597. name: "\"Large\" Deity",
  40598. height: math.unit(15, "km")
  40599. },
  40600. ]
  40601. ))
  40602. characterMakers.push(() => makeCharacter(
  40603. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40604. {
  40605. front: {
  40606. height: math.unit(6, "feet"),
  40607. weight: math.unit(250, "lb"),
  40608. name: "Front",
  40609. image: {
  40610. source: "./media/characters/mukiro/front.svg",
  40611. extra: 1368/1310,
  40612. bottom: 34/1402
  40613. }
  40614. },
  40615. },
  40616. [
  40617. {
  40618. name: "Normal",
  40619. height: math.unit(6, "feet"),
  40620. default: true
  40621. },
  40622. ]
  40623. ))
  40624. characterMakers.push(() => makeCharacter(
  40625. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40626. {
  40627. front: {
  40628. height: math.unit(12 + 4/12, "feet"),
  40629. name: "Front",
  40630. image: {
  40631. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40632. extra: 1346/1311,
  40633. bottom: 65/1411
  40634. }
  40635. },
  40636. },
  40637. [
  40638. {
  40639. name: "Base",
  40640. height: math.unit(12 + 4/12, "feet"),
  40641. default: true
  40642. },
  40643. {
  40644. name: "Macro",
  40645. height: math.unit(150, "feet")
  40646. },
  40647. {
  40648. name: "Mega",
  40649. height: math.unit(2, "miles")
  40650. },
  40651. {
  40652. name: "Demi God",
  40653. height: math.unit(4, "AU")
  40654. },
  40655. {
  40656. name: "God Size",
  40657. height: math.unit(1, "universe")
  40658. },
  40659. ]
  40660. ))
  40661. characterMakers.push(() => makeCharacter(
  40662. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40663. {
  40664. front: {
  40665. height: math.unit(3 + 3/12, "feet"),
  40666. weight: math.unit(88, "lb"),
  40667. name: "Front",
  40668. image: {
  40669. source: "./media/characters/trey/front.svg",
  40670. extra: 1815/1509,
  40671. bottom: 60/1875
  40672. }
  40673. },
  40674. },
  40675. [
  40676. {
  40677. name: "Normal",
  40678. height: math.unit(3 + 3/12, "feet"),
  40679. default: true
  40680. },
  40681. ]
  40682. ))
  40683. characterMakers.push(() => makeCharacter(
  40684. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40685. {
  40686. front: {
  40687. height: math.unit(4, "meters"),
  40688. name: "Front",
  40689. image: {
  40690. source: "./media/characters/adelonda/front.svg",
  40691. extra: 1077/982,
  40692. bottom: 39/1116
  40693. }
  40694. },
  40695. back: {
  40696. height: math.unit(4, "meters"),
  40697. name: "Back",
  40698. image: {
  40699. source: "./media/characters/adelonda/back.svg",
  40700. extra: 1105/1003,
  40701. bottom: 25/1130
  40702. }
  40703. },
  40704. feral: {
  40705. height: math.unit(40/1.5, "meters"),
  40706. name: "Feral",
  40707. image: {
  40708. source: "./media/characters/adelonda/feral.svg",
  40709. extra: 597/271,
  40710. bottom: 387/984
  40711. }
  40712. },
  40713. },
  40714. [
  40715. {
  40716. name: "Normal",
  40717. height: math.unit(4, "meters"),
  40718. default: true
  40719. },
  40720. ]
  40721. ))
  40722. characterMakers.push(() => makeCharacter(
  40723. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40724. {
  40725. front: {
  40726. height: math.unit(8 + 4/12, "feet"),
  40727. weight: math.unit(670, "lb"),
  40728. name: "Front",
  40729. image: {
  40730. source: "./media/characters/acadiel/front.svg",
  40731. extra: 1901/1595,
  40732. bottom: 142/2043
  40733. }
  40734. },
  40735. },
  40736. [
  40737. {
  40738. name: "Normal",
  40739. height: math.unit(8 + 4/12, "feet"),
  40740. default: true
  40741. },
  40742. {
  40743. name: "Macro",
  40744. height: math.unit(200, "feet")
  40745. },
  40746. ]
  40747. ))
  40748. characterMakers.push(() => makeCharacter(
  40749. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40750. {
  40751. front: {
  40752. height: math.unit(6 + 2/12, "feet"),
  40753. weight: math.unit(185, "lb"),
  40754. name: "Front",
  40755. image: {
  40756. source: "./media/characters/kayne-ein/front.svg",
  40757. extra: 1780/1560,
  40758. bottom: 81/1861
  40759. }
  40760. },
  40761. },
  40762. [
  40763. {
  40764. name: "Normal",
  40765. height: math.unit(6 + 2/12, "feet"),
  40766. default: true
  40767. },
  40768. {
  40769. name: "Transformation Stage",
  40770. height: math.unit(15, "feet")
  40771. },
  40772. {
  40773. name: "Macro",
  40774. height: math.unit(150, "feet")
  40775. },
  40776. {
  40777. name: "Earth's Shadow",
  40778. height: math.unit(6200, "miles")
  40779. },
  40780. {
  40781. name: "Universal Demon",
  40782. height: math.unit(28e9, "parsecs")
  40783. },
  40784. {
  40785. name: "Multiverse God",
  40786. height: math.unit(3, "multiverses")
  40787. },
  40788. ]
  40789. ))
  40790. characterMakers.push(() => makeCharacter(
  40791. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40792. {
  40793. front: {
  40794. height: math.unit(5 + 5/12, "feet"),
  40795. name: "Front",
  40796. image: {
  40797. source: "./media/characters/fawn/front.svg",
  40798. extra: 1873/1731,
  40799. bottom: 95/1968
  40800. }
  40801. },
  40802. back: {
  40803. height: math.unit(5 + 5/12, "feet"),
  40804. name: "Back",
  40805. image: {
  40806. source: "./media/characters/fawn/back.svg",
  40807. extra: 1813/1700,
  40808. bottom: 14/1827
  40809. }
  40810. },
  40811. hoof: {
  40812. height: math.unit(1.45, "feet"),
  40813. name: "Hoof",
  40814. image: {
  40815. source: "./media/characters/fawn/hoof.svg"
  40816. }
  40817. },
  40818. },
  40819. [
  40820. {
  40821. name: "Normal",
  40822. height: math.unit(5 + 5/12, "feet"),
  40823. default: true
  40824. },
  40825. ]
  40826. ))
  40827. characterMakers.push(() => makeCharacter(
  40828. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40829. {
  40830. front: {
  40831. height: math.unit(2 + 5/12, "feet"),
  40832. name: "Front",
  40833. image: {
  40834. source: "./media/characters/orion/front.svg",
  40835. extra: 1366/1304,
  40836. bottom: 43/1409
  40837. }
  40838. },
  40839. paw: {
  40840. height: math.unit(0.52, "feet"),
  40841. name: "Paw",
  40842. image: {
  40843. source: "./media/characters/orion/paw.svg"
  40844. }
  40845. },
  40846. },
  40847. [
  40848. {
  40849. name: "Normal",
  40850. height: math.unit(2 + 5/12, "feet"),
  40851. default: true
  40852. },
  40853. ]
  40854. ))
  40855. characterMakers.push(() => makeCharacter(
  40856. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40857. {
  40858. front: {
  40859. height: math.unit(5 + 10/12, "feet"),
  40860. name: "Front",
  40861. image: {
  40862. source: "./media/characters/vera/front.svg",
  40863. extra: 1680/1575,
  40864. bottom: 49/1729
  40865. }
  40866. },
  40867. back: {
  40868. height: math.unit(5 + 10/12, "feet"),
  40869. name: "Back",
  40870. image: {
  40871. source: "./media/characters/vera/back.svg",
  40872. extra: 1700/1588,
  40873. bottom: 18/1718
  40874. }
  40875. },
  40876. arcanine: {
  40877. height: math.unit(6 + 8/12, "feet"),
  40878. name: "Arcanine",
  40879. image: {
  40880. source: "./media/characters/vera/arcanine.svg",
  40881. extra: 1590/1511,
  40882. bottom: 71/1661
  40883. }
  40884. },
  40885. maw: {
  40886. height: math.unit(0.82, "feet"),
  40887. name: "Maw",
  40888. image: {
  40889. source: "./media/characters/vera/maw.svg"
  40890. }
  40891. },
  40892. mawArcanine: {
  40893. height: math.unit(0.97, "feet"),
  40894. name: "Maw (Arcanine)",
  40895. image: {
  40896. source: "./media/characters/vera/maw-arcanine.svg"
  40897. }
  40898. },
  40899. paw: {
  40900. height: math.unit(0.75, "feet"),
  40901. name: "Paw",
  40902. image: {
  40903. source: "./media/characters/vera/paw.svg"
  40904. }
  40905. },
  40906. pawprint: {
  40907. height: math.unit(0.52, "feet"),
  40908. name: "Pawprint",
  40909. image: {
  40910. source: "./media/characters/vera/pawprint.svg"
  40911. }
  40912. },
  40913. },
  40914. [
  40915. {
  40916. name: "Normal",
  40917. height: math.unit(5 + 10/12, "feet"),
  40918. default: true
  40919. },
  40920. {
  40921. name: "Macro",
  40922. height: math.unit(75, "feet")
  40923. },
  40924. ]
  40925. ))
  40926. characterMakers.push(() => makeCharacter(
  40927. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40928. {
  40929. front: {
  40930. height: math.unit(4, "feet"),
  40931. weight: math.unit(40, "lb"),
  40932. name: "Front",
  40933. image: {
  40934. source: "./media/characters/orvan-rabbit/front.svg",
  40935. extra: 1896/1642,
  40936. bottom: 29/1925
  40937. }
  40938. },
  40939. },
  40940. [
  40941. {
  40942. name: "Normal",
  40943. height: math.unit(4, "feet"),
  40944. default: true
  40945. },
  40946. ]
  40947. ))
  40948. characterMakers.push(() => makeCharacter(
  40949. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40950. {
  40951. front: {
  40952. height: math.unit(6, "feet"),
  40953. weight: math.unit(168, "lb"),
  40954. name: "Front",
  40955. image: {
  40956. source: "./media/characters/lisa/front.svg",
  40957. extra: 2065/1867,
  40958. bottom: 46/2111
  40959. }
  40960. },
  40961. back: {
  40962. height: math.unit(6, "feet"),
  40963. weight: math.unit(168, "lb"),
  40964. name: "Back",
  40965. image: {
  40966. source: "./media/characters/lisa/back.svg",
  40967. extra: 1982/1838,
  40968. bottom: 29/2011
  40969. }
  40970. },
  40971. maw: {
  40972. height: math.unit(0.81, "feet"),
  40973. name: "Maw",
  40974. image: {
  40975. source: "./media/characters/lisa/maw.svg"
  40976. }
  40977. },
  40978. paw: {
  40979. height: math.unit(0.9, "feet"),
  40980. name: "Paw",
  40981. image: {
  40982. source: "./media/characters/lisa/paw.svg"
  40983. }
  40984. },
  40985. caribousune: {
  40986. height: math.unit(7 + 2/12, "feet"),
  40987. weight: math.unit(268, "lb"),
  40988. name: "Caribousune",
  40989. image: {
  40990. source: "./media/characters/lisa/caribousune.svg",
  40991. extra: 1843/1633,
  40992. bottom: 29/1872
  40993. }
  40994. },
  40995. frontCaribousune: {
  40996. height: math.unit(7 + 2/12, "feet"),
  40997. weight: math.unit(268, "lb"),
  40998. name: "Front (Caribousune)",
  40999. image: {
  41000. source: "./media/characters/lisa/front-caribousune.svg",
  41001. extra: 1818/1638,
  41002. bottom: 52/1870
  41003. }
  41004. },
  41005. sideCaribousune: {
  41006. height: math.unit(7 + 2/12, "feet"),
  41007. weight: math.unit(268, "lb"),
  41008. name: "Side (Caribousune)",
  41009. image: {
  41010. source: "./media/characters/lisa/side-caribousune.svg",
  41011. extra: 1851/1635,
  41012. bottom: 16/1867
  41013. }
  41014. },
  41015. backCaribousune: {
  41016. height: math.unit(7 + 2/12, "feet"),
  41017. weight: math.unit(268, "lb"),
  41018. name: "Back (Caribousune)",
  41019. image: {
  41020. source: "./media/characters/lisa/back-caribousune.svg",
  41021. extra: 1801/1604,
  41022. bottom: 44/1845
  41023. }
  41024. },
  41025. caribou: {
  41026. height: math.unit(7 + 2/12, "feet"),
  41027. weight: math.unit(268, "lb"),
  41028. name: "Caribou",
  41029. image: {
  41030. source: "./media/characters/lisa/caribou.svg",
  41031. extra: 1843/1633,
  41032. bottom: 29/1872
  41033. }
  41034. },
  41035. frontCaribou: {
  41036. height: math.unit(7 + 2/12, "feet"),
  41037. weight: math.unit(268, "lb"),
  41038. name: "Front (Caribou)",
  41039. image: {
  41040. source: "./media/characters/lisa/front-caribou.svg",
  41041. extra: 1818/1638,
  41042. bottom: 52/1870
  41043. }
  41044. },
  41045. sideCaribou: {
  41046. height: math.unit(7 + 2/12, "feet"),
  41047. weight: math.unit(268, "lb"),
  41048. name: "Side (Caribou)",
  41049. image: {
  41050. source: "./media/characters/lisa/side-caribou.svg",
  41051. extra: 1851/1635,
  41052. bottom: 16/1867
  41053. }
  41054. },
  41055. backCaribou: {
  41056. height: math.unit(7 + 2/12, "feet"),
  41057. weight: math.unit(268, "lb"),
  41058. name: "Back (Caribou)",
  41059. image: {
  41060. source: "./media/characters/lisa/back-caribou.svg",
  41061. extra: 1801/1604,
  41062. bottom: 44/1845
  41063. }
  41064. },
  41065. mawCaribou: {
  41066. height: math.unit(1.45, "feet"),
  41067. name: "Maw (Caribou)",
  41068. image: {
  41069. source: "./media/characters/lisa/maw-caribou.svg"
  41070. }
  41071. },
  41072. mawCaribousune: {
  41073. height: math.unit(1.45, "feet"),
  41074. name: "Maw (Caribousune)",
  41075. image: {
  41076. source: "./media/characters/lisa/maw-caribousune.svg"
  41077. }
  41078. },
  41079. pawCaribousune: {
  41080. height: math.unit(1.61, "feet"),
  41081. name: "Paw (Caribou)",
  41082. image: {
  41083. source: "./media/characters/lisa/paw-caribousune.svg"
  41084. }
  41085. },
  41086. },
  41087. [
  41088. {
  41089. name: "Normal",
  41090. height: math.unit(6, "feet")
  41091. },
  41092. {
  41093. name: "God Size",
  41094. height: math.unit(72, "feet"),
  41095. default: true
  41096. },
  41097. {
  41098. name: "Towering",
  41099. height: math.unit(288, "feet")
  41100. },
  41101. {
  41102. name: "City Size",
  41103. height: math.unit(48384, "feet")
  41104. },
  41105. {
  41106. name: "Continental",
  41107. height: math.unit(4200, "miles")
  41108. },
  41109. {
  41110. name: "Planet Eater",
  41111. height: math.unit(42, "earths")
  41112. },
  41113. {
  41114. name: "Star Swallower",
  41115. height: math.unit(42, "solarradii")
  41116. },
  41117. {
  41118. name: "System Swallower",
  41119. height: math.unit(84000, "AU")
  41120. },
  41121. {
  41122. name: "Galaxy Gobbler",
  41123. height: math.unit(42, "galaxies")
  41124. },
  41125. {
  41126. name: "Universe Devourer",
  41127. height: math.unit(42, "universes")
  41128. },
  41129. {
  41130. name: "Multiverse Muncher",
  41131. height: math.unit(42, "multiverses")
  41132. },
  41133. ]
  41134. ))
  41135. characterMakers.push(() => makeCharacter(
  41136. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41137. {
  41138. front: {
  41139. height: math.unit(36, "feet"),
  41140. name: "Front",
  41141. image: {
  41142. source: "./media/characters/shadow-rat/front.svg",
  41143. extra: 1845/1758,
  41144. bottom: 83/1928
  41145. }
  41146. },
  41147. },
  41148. [
  41149. {
  41150. name: "Macro",
  41151. height: math.unit(36, "feet"),
  41152. default: true
  41153. },
  41154. ]
  41155. ))
  41156. characterMakers.push(() => makeCharacter(
  41157. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41158. {
  41159. side: {
  41160. height: math.unit(8, "feet"),
  41161. weight: math.unit(2630, "lb"),
  41162. name: "Side",
  41163. image: {
  41164. source: "./media/characters/torallia/side.svg",
  41165. extra: 2164/2021,
  41166. bottom: 371/2535
  41167. }
  41168. },
  41169. },
  41170. [
  41171. {
  41172. name: "Mortal Interaction",
  41173. height: math.unit(8, "feet")
  41174. },
  41175. {
  41176. name: "Natural",
  41177. height: math.unit(24, "feet"),
  41178. default: true
  41179. },
  41180. {
  41181. name: "Giant",
  41182. height: math.unit(80, "feet")
  41183. },
  41184. {
  41185. name: "Kaiju",
  41186. height: math.unit(240, "feet")
  41187. },
  41188. {
  41189. name: "Macro",
  41190. height: math.unit(800, "feet")
  41191. },
  41192. {
  41193. name: "Macro+",
  41194. height: math.unit(2400, "feet")
  41195. },
  41196. {
  41197. name: "Macro++",
  41198. height: math.unit(8000, "feet")
  41199. },
  41200. {
  41201. name: "City-Crushing",
  41202. height: math.unit(24000, "feet")
  41203. },
  41204. {
  41205. name: "Mountain-Mashing",
  41206. height: math.unit(80000, "feet")
  41207. },
  41208. {
  41209. name: "District Demolisher",
  41210. height: math.unit(240000, "feet")
  41211. },
  41212. {
  41213. name: "Tri-County Terror",
  41214. height: math.unit(800000, "feet")
  41215. },
  41216. {
  41217. name: "State Smasher",
  41218. height: math.unit(2.4e6, "feet")
  41219. },
  41220. {
  41221. name: "Nation Nemesis",
  41222. height: math.unit(8e6, "feet")
  41223. },
  41224. {
  41225. name: "Continent Cracker",
  41226. height: math.unit(2.4e7, "feet")
  41227. },
  41228. {
  41229. name: "Planet-Pillaging",
  41230. height: math.unit(8e7, "feet")
  41231. },
  41232. {
  41233. name: "Earth-Eclipsing",
  41234. height: math.unit(2.4e8, "feet")
  41235. },
  41236. {
  41237. name: "Jovian-Jostling",
  41238. height: math.unit(8e8, "feet")
  41239. },
  41240. {
  41241. name: "Gas Giant Gulper",
  41242. height: math.unit(2.4e9, "feet")
  41243. },
  41244. {
  41245. name: "Astral Annihilator",
  41246. height: math.unit(8e9, "feet")
  41247. },
  41248. {
  41249. name: "Celestial Conqueror",
  41250. height: math.unit(2.4e10, "feet")
  41251. },
  41252. {
  41253. name: "Sol-Swallowing",
  41254. height: math.unit(8e10, "feet")
  41255. },
  41256. {
  41257. name: "Hunter of the Heavens",
  41258. height: math.unit(2.4e13, "feet")
  41259. },
  41260. ]
  41261. ))
  41262. characterMakers.push(() => makeCharacter(
  41263. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41264. {
  41265. front: {
  41266. height: math.unit(6 + 8/12, "feet"),
  41267. weight: math.unit(250, "kilograms"),
  41268. volume: math.unit(28, "liters"),
  41269. name: "Front",
  41270. image: {
  41271. source: "./media/characters/rebecca-pawlson/front.svg",
  41272. extra: 1737/1596,
  41273. bottom: 107/1844
  41274. }
  41275. },
  41276. back: {
  41277. height: math.unit(6 + 8/12, "feet"),
  41278. weight: math.unit(250, "kilograms"),
  41279. volume: math.unit(28, "liters"),
  41280. name: "Back",
  41281. image: {
  41282. source: "./media/characters/rebecca-pawlson/back.svg",
  41283. extra: 1702/1523,
  41284. bottom: 86/1788
  41285. }
  41286. },
  41287. },
  41288. [
  41289. {
  41290. name: "Normal",
  41291. height: math.unit(6 + 8/12, "feet")
  41292. },
  41293. {
  41294. name: "Mini Macro",
  41295. height: math.unit(10, "feet"),
  41296. default: true
  41297. },
  41298. {
  41299. name: "Macro",
  41300. height: math.unit(100, "feet")
  41301. },
  41302. {
  41303. name: "Mega Macro",
  41304. height: math.unit(2500, "feet")
  41305. },
  41306. {
  41307. name: "Giga Macro",
  41308. height: math.unit(50, "miles")
  41309. },
  41310. ]
  41311. ))
  41312. characterMakers.push(() => makeCharacter(
  41313. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41314. {
  41315. front: {
  41316. height: math.unit(7 + 6/12, "feet"),
  41317. weight: math.unit(600, "lb"),
  41318. name: "Front",
  41319. image: {
  41320. source: "./media/characters/moxie-nova/front.svg",
  41321. extra: 1734/1652,
  41322. bottom: 41/1775
  41323. }
  41324. },
  41325. },
  41326. [
  41327. {
  41328. name: "Normal",
  41329. height: math.unit(7 + 6/12, "feet"),
  41330. default: true
  41331. },
  41332. ]
  41333. ))
  41334. characterMakers.push(() => makeCharacter(
  41335. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41336. {
  41337. goat: {
  41338. height: math.unit(4, "feet"),
  41339. weight: math.unit(180, "lb"),
  41340. name: "Goat",
  41341. image: {
  41342. source: "./media/characters/tiffany/goat.svg",
  41343. extra: 1845/1595,
  41344. bottom: 106/1951
  41345. }
  41346. },
  41347. front: {
  41348. height: math.unit(5, "feet"),
  41349. weight: math.unit(150, "lb"),
  41350. name: "Foxcoon",
  41351. image: {
  41352. source: "./media/characters/tiffany/foxcoon.svg",
  41353. extra: 1941/1845,
  41354. bottom: 58/1999
  41355. }
  41356. },
  41357. },
  41358. [
  41359. {
  41360. name: "Normal",
  41361. height: math.unit(5, "feet"),
  41362. default: true
  41363. },
  41364. ]
  41365. ))
  41366. characterMakers.push(() => makeCharacter(
  41367. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41368. {
  41369. front: {
  41370. height: math.unit(8, "feet"),
  41371. weight: math.unit(300, "lb"),
  41372. name: "Front",
  41373. image: {
  41374. source: "./media/characters/raxinath/front.svg",
  41375. extra: 1407/1309,
  41376. bottom: 39/1446
  41377. }
  41378. },
  41379. back: {
  41380. height: math.unit(8, "feet"),
  41381. weight: math.unit(300, "lb"),
  41382. name: "Back",
  41383. image: {
  41384. source: "./media/characters/raxinath/back.svg",
  41385. extra: 1405/1315,
  41386. bottom: 9/1414
  41387. }
  41388. },
  41389. },
  41390. [
  41391. {
  41392. name: "Speck",
  41393. height: math.unit(0.5, "nm")
  41394. },
  41395. {
  41396. name: "Micro",
  41397. height: math.unit(3, "inches")
  41398. },
  41399. {
  41400. name: "Kobold",
  41401. height: math.unit(3, "feet")
  41402. },
  41403. {
  41404. name: "Normal",
  41405. height: math.unit(8, "feet"),
  41406. default: true
  41407. },
  41408. {
  41409. name: "Giant",
  41410. height: math.unit(50, "feet")
  41411. },
  41412. {
  41413. name: "Macro",
  41414. height: math.unit(1000, "feet")
  41415. },
  41416. {
  41417. name: "Megamacro",
  41418. height: math.unit(1, "mile")
  41419. },
  41420. ]
  41421. ))
  41422. characterMakers.push(() => makeCharacter(
  41423. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41424. {
  41425. front: {
  41426. height: math.unit(10, "feet"),
  41427. weight: math.unit(1442, "lb"),
  41428. name: "Front",
  41429. image: {
  41430. source: "./media/characters/mal-dragon/front.svg",
  41431. extra: 1515/1444,
  41432. bottom: 113/1628
  41433. }
  41434. },
  41435. back: {
  41436. height: math.unit(10, "feet"),
  41437. weight: math.unit(1442, "lb"),
  41438. name: "Back",
  41439. image: {
  41440. source: "./media/characters/mal-dragon/back.svg",
  41441. extra: 1527/1434,
  41442. bottom: 25/1552
  41443. }
  41444. },
  41445. },
  41446. [
  41447. {
  41448. name: "Mortal Interaction",
  41449. height: math.unit(10, "feet"),
  41450. default: true
  41451. },
  41452. {
  41453. name: "Large",
  41454. height: math.unit(30, "feet")
  41455. },
  41456. {
  41457. name: "Kaiju",
  41458. height: math.unit(300, "feet")
  41459. },
  41460. {
  41461. name: "Megamacro",
  41462. height: math.unit(10000, "feet")
  41463. },
  41464. {
  41465. name: "Continent Cracker",
  41466. height: math.unit(30000000, "feet")
  41467. },
  41468. {
  41469. name: "Sol-Swallowing",
  41470. height: math.unit(1e11, "feet")
  41471. },
  41472. {
  41473. name: "Light Universal",
  41474. height: math.unit(5, "universes")
  41475. },
  41476. {
  41477. name: "Universe Atoms",
  41478. height: math.unit(1.829e9, "universes")
  41479. },
  41480. {
  41481. name: "Light Multiversal",
  41482. height: math.unit(5, "multiverses")
  41483. },
  41484. {
  41485. name: "Multiverse Atoms",
  41486. height: math.unit(1.829e9, "multiverses")
  41487. },
  41488. {
  41489. name: "Fabric of Time",
  41490. height: math.unit(1e262, "multiverses")
  41491. },
  41492. ]
  41493. ))
  41494. characterMakers.push(() => makeCharacter(
  41495. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41496. {
  41497. front: {
  41498. height: math.unit(9, "feet"),
  41499. weight: math.unit(1050, "lb"),
  41500. name: "Front",
  41501. image: {
  41502. source: "./media/characters/tabitha/front.svg",
  41503. extra: 2083/1994,
  41504. bottom: 68/2151
  41505. }
  41506. },
  41507. },
  41508. [
  41509. {
  41510. name: "Baseline",
  41511. height: math.unit(9, "feet"),
  41512. default: true
  41513. },
  41514. {
  41515. name: "Giant",
  41516. height: math.unit(90, "feet")
  41517. },
  41518. {
  41519. name: "Macro",
  41520. height: math.unit(900, "feet")
  41521. },
  41522. {
  41523. name: "Megamacro",
  41524. height: math.unit(9000, "feet")
  41525. },
  41526. {
  41527. name: "City-Crushing",
  41528. height: math.unit(27000, "feet")
  41529. },
  41530. {
  41531. name: "Mountain-Mashing",
  41532. height: math.unit(90000, "feet")
  41533. },
  41534. {
  41535. name: "Nation Nemesis",
  41536. height: math.unit(9e6, "feet")
  41537. },
  41538. {
  41539. name: "Continent Cracker",
  41540. height: math.unit(27e6, "feet")
  41541. },
  41542. {
  41543. name: "Earth-Eclipsing",
  41544. height: math.unit(2.7e8, "feet")
  41545. },
  41546. {
  41547. name: "Gas Giant Gulper",
  41548. height: math.unit(2.7e9, "feet")
  41549. },
  41550. {
  41551. name: "Sol-Swallowing",
  41552. height: math.unit(9e10, "feet")
  41553. },
  41554. {
  41555. name: "Galaxy Gulper",
  41556. height: math.unit(9, "galaxies")
  41557. },
  41558. {
  41559. name: "Cosmos Churner",
  41560. height: math.unit(9, "universes")
  41561. },
  41562. ]
  41563. ))
  41564. characterMakers.push(() => makeCharacter(
  41565. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41566. {
  41567. front: {
  41568. height: math.unit(160, "cm"),
  41569. weight: math.unit(55, "kg"),
  41570. name: "Front",
  41571. image: {
  41572. source: "./media/characters/tow/front.svg",
  41573. extra: 1751/1722,
  41574. bottom: 74/1825
  41575. }
  41576. },
  41577. },
  41578. [
  41579. {
  41580. name: "Norm",
  41581. height: math.unit(160, "cm")
  41582. },
  41583. {
  41584. name: "Casual",
  41585. height: math.unit(3200, "m"),
  41586. default: true
  41587. },
  41588. {
  41589. name: "Show-Off",
  41590. height: math.unit(160, "km")
  41591. },
  41592. ]
  41593. ))
  41594. characterMakers.push(() => makeCharacter(
  41595. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41596. {
  41597. front: {
  41598. height: math.unit(7 + 11/12, "feet"),
  41599. weight: math.unit(342.8, "lb"),
  41600. name: "Front",
  41601. image: {
  41602. source: "./media/characters/vivian-orca-dragon/front.svg",
  41603. extra: 1890/1865,
  41604. bottom: 28/1918
  41605. }
  41606. },
  41607. },
  41608. [
  41609. {
  41610. name: "Micro",
  41611. height: math.unit(5, "inches")
  41612. },
  41613. {
  41614. name: "Normal",
  41615. height: math.unit(7 + 11/12, "feet"),
  41616. default: true
  41617. },
  41618. {
  41619. name: "Macro",
  41620. height: math.unit(395 + 7/12, "feet")
  41621. },
  41622. ]
  41623. ))
  41624. characterMakers.push(() => makeCharacter(
  41625. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41626. {
  41627. side: {
  41628. height: math.unit(10, "feet"),
  41629. weight: math.unit(1442, "lb"),
  41630. name: "Side",
  41631. image: {
  41632. source: "./media/characters/lotherakon/side.svg",
  41633. extra: 1604/1497,
  41634. bottom: 89/1693
  41635. }
  41636. },
  41637. },
  41638. [
  41639. {
  41640. name: "Mortal Interaction",
  41641. height: math.unit(10, "feet")
  41642. },
  41643. {
  41644. name: "Large",
  41645. height: math.unit(30, "feet"),
  41646. default: true
  41647. },
  41648. {
  41649. name: "Giant",
  41650. height: math.unit(100, "feet")
  41651. },
  41652. {
  41653. name: "Kaiju",
  41654. height: math.unit(300, "feet")
  41655. },
  41656. {
  41657. name: "Macro",
  41658. height: math.unit(1000, "feet")
  41659. },
  41660. {
  41661. name: "Macro+",
  41662. height: math.unit(3000, "feet")
  41663. },
  41664. {
  41665. name: "Megamacro",
  41666. height: math.unit(10000, "feet")
  41667. },
  41668. {
  41669. name: "City-Crushing",
  41670. height: math.unit(30000, "feet")
  41671. },
  41672. {
  41673. name: "Continent Cracker",
  41674. height: math.unit(30e6, "feet")
  41675. },
  41676. {
  41677. name: "Earth Eclipsing",
  41678. height: math.unit(3e8, "feet")
  41679. },
  41680. {
  41681. name: "Gas Giant Gulper",
  41682. height: math.unit(3e9, "feet")
  41683. },
  41684. {
  41685. name: "Sol-Swallowing",
  41686. height: math.unit(1e11, "feet")
  41687. },
  41688. {
  41689. name: "System Swallower",
  41690. height: math.unit(3e14, "feet")
  41691. },
  41692. {
  41693. name: "Galaxy Gulper",
  41694. height: math.unit(10, "galaxies")
  41695. },
  41696. {
  41697. name: "Light Universal",
  41698. height: math.unit(5, "universes")
  41699. },
  41700. {
  41701. name: "Universe Palm",
  41702. height: math.unit(20, "universes")
  41703. },
  41704. {
  41705. name: "Light Multiversal",
  41706. height: math.unit(5, "multiverses")
  41707. },
  41708. {
  41709. name: "Multiverse Palm",
  41710. height: math.unit(20, "multiverses")
  41711. },
  41712. {
  41713. name: "Inferno Incarnate",
  41714. height: math.unit(1e7, "multiverses")
  41715. },
  41716. ]
  41717. ))
  41718. characterMakers.push(() => makeCharacter(
  41719. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41720. {
  41721. front: {
  41722. height: math.unit(8, "feet"),
  41723. weight: math.unit(1200, "lb"),
  41724. name: "Front",
  41725. image: {
  41726. source: "./media/characters/malithee/front.svg",
  41727. extra: 1675/1640,
  41728. bottom: 162/1837
  41729. }
  41730. },
  41731. },
  41732. [
  41733. {
  41734. name: "Mortal Interaction",
  41735. height: math.unit(8, "feet"),
  41736. default: true
  41737. },
  41738. {
  41739. name: "Large",
  41740. height: math.unit(24, "feet")
  41741. },
  41742. {
  41743. name: "Kaiju",
  41744. height: math.unit(240, "feet")
  41745. },
  41746. {
  41747. name: "Megamacro",
  41748. height: math.unit(8000, "feet")
  41749. },
  41750. {
  41751. name: "Continent Cracker",
  41752. height: math.unit(24e6, "feet")
  41753. },
  41754. {
  41755. name: "Earth-Eclipsing",
  41756. height: math.unit(2.4e8, "feet")
  41757. },
  41758. {
  41759. name: "Sol-Swallowing",
  41760. height: math.unit(8e10, "feet")
  41761. },
  41762. {
  41763. name: "Galaxy Gulper",
  41764. height: math.unit(8, "galaxies")
  41765. },
  41766. {
  41767. name: "Light Universal",
  41768. height: math.unit(4, "universes")
  41769. },
  41770. {
  41771. name: "Universe Atoms",
  41772. height: math.unit(1.829e9, "universes")
  41773. },
  41774. {
  41775. name: "Light Multiversal",
  41776. height: math.unit(4, "multiverses")
  41777. },
  41778. {
  41779. name: "Multiverse Atoms",
  41780. height: math.unit(1.829e9, "multiverses")
  41781. },
  41782. {
  41783. name: "Nigh-Omnipresence",
  41784. height: math.unit(8e261, "multiverses")
  41785. },
  41786. ]
  41787. ))
  41788. characterMakers.push(() => makeCharacter(
  41789. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41790. {
  41791. front: {
  41792. height: math.unit(10, "feet"),
  41793. weight: math.unit(1500, "lb"),
  41794. name: "Front",
  41795. image: {
  41796. source: "./media/characters/miles-thestia/front.svg",
  41797. extra: 1812/1727,
  41798. bottom: 86/1898
  41799. }
  41800. },
  41801. back: {
  41802. height: math.unit(10, "feet"),
  41803. weight: math.unit(1500, "lb"),
  41804. name: "Back",
  41805. image: {
  41806. source: "./media/characters/miles-thestia/back.svg",
  41807. extra: 1799/1690,
  41808. bottom: 47/1846
  41809. }
  41810. },
  41811. frontNsfw: {
  41812. height: math.unit(10, "feet"),
  41813. weight: math.unit(1500, "lb"),
  41814. name: "Front (NSFW)",
  41815. image: {
  41816. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41817. extra: 1812/1727,
  41818. bottom: 86/1898
  41819. }
  41820. },
  41821. },
  41822. [
  41823. {
  41824. name: "Mini-Macro",
  41825. height: math.unit(10, "feet"),
  41826. default: true
  41827. },
  41828. ]
  41829. ))
  41830. characterMakers.push(() => makeCharacter(
  41831. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41832. {
  41833. front: {
  41834. height: math.unit(25, "feet"),
  41835. name: "Front",
  41836. image: {
  41837. source: "./media/characters/titan-s-wulf/front.svg",
  41838. extra: 1560/1484,
  41839. bottom: 76/1636
  41840. }
  41841. },
  41842. },
  41843. [
  41844. {
  41845. name: "Smallest",
  41846. height: math.unit(25, "feet"),
  41847. default: true
  41848. },
  41849. {
  41850. name: "Normal",
  41851. height: math.unit(200, "feet")
  41852. },
  41853. {
  41854. name: "Macro",
  41855. height: math.unit(200000, "feet")
  41856. },
  41857. {
  41858. name: "Multiversal Original",
  41859. height: math.unit(10000, "multiverses")
  41860. },
  41861. ]
  41862. ))
  41863. characterMakers.push(() => makeCharacter(
  41864. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41865. {
  41866. front: {
  41867. height: math.unit(8, "feet"),
  41868. weight: math.unit(553, "lb"),
  41869. name: "Front",
  41870. image: {
  41871. source: "./media/characters/tawendeh/front.svg",
  41872. extra: 2365/2268,
  41873. bottom: 83/2448
  41874. }
  41875. },
  41876. frontClothed: {
  41877. height: math.unit(8, "feet"),
  41878. weight: math.unit(553, "lb"),
  41879. name: "Front (Clothed)",
  41880. image: {
  41881. source: "./media/characters/tawendeh/front-clothed.svg",
  41882. extra: 2365/2268,
  41883. bottom: 83/2448
  41884. }
  41885. },
  41886. back: {
  41887. height: math.unit(8, "feet"),
  41888. weight: math.unit(553, "lb"),
  41889. name: "Back",
  41890. image: {
  41891. source: "./media/characters/tawendeh/back.svg",
  41892. extra: 2397/2294,
  41893. bottom: 42/2439
  41894. }
  41895. },
  41896. },
  41897. [
  41898. {
  41899. name: "Mortal Interaction",
  41900. height: math.unit(8, "feet"),
  41901. default: true
  41902. },
  41903. {
  41904. name: "Giant",
  41905. height: math.unit(80, "feet")
  41906. },
  41907. {
  41908. name: "Macro",
  41909. height: math.unit(800, "feet")
  41910. },
  41911. {
  41912. name: "Megamacro",
  41913. height: math.unit(8000, "feet")
  41914. },
  41915. {
  41916. name: "City-Crushing",
  41917. height: math.unit(24000, "feet")
  41918. },
  41919. {
  41920. name: "Mountain-Mashing",
  41921. height: math.unit(80000, "feet")
  41922. },
  41923. {
  41924. name: "Nation Nemesis",
  41925. height: math.unit(8e6, "feet")
  41926. },
  41927. {
  41928. name: "Continent Cracker",
  41929. height: math.unit(24e6, "feet")
  41930. },
  41931. {
  41932. name: "Earth-Eclipsing",
  41933. height: math.unit(2.4e8, "feet")
  41934. },
  41935. {
  41936. name: "Gas Giant Gulper",
  41937. height: math.unit(2.4e9, "feet")
  41938. },
  41939. {
  41940. name: "Sol-Swallowing",
  41941. height: math.unit(8e10, "feet")
  41942. },
  41943. {
  41944. name: "Galaxy Gulper",
  41945. height: math.unit(8, "galaxies")
  41946. },
  41947. {
  41948. name: "Cosmos Churner",
  41949. height: math.unit(8, "universes")
  41950. },
  41951. {
  41952. name: "Omnipotent Otter",
  41953. height: math.unit(80, "universes")
  41954. },
  41955. ]
  41956. ))
  41957. characterMakers.push(() => makeCharacter(
  41958. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41959. {
  41960. front: {
  41961. height: math.unit(2.6, "meters"),
  41962. weight: math.unit(900, "kg"),
  41963. name: "Front",
  41964. image: {
  41965. source: "./media/characters/neesha/front.svg",
  41966. extra: 1803/1653,
  41967. bottom: 128/1931
  41968. }
  41969. },
  41970. },
  41971. [
  41972. {
  41973. name: "Normal",
  41974. height: math.unit(2.6, "meters"),
  41975. default: true
  41976. },
  41977. {
  41978. name: "Macro",
  41979. height: math.unit(50, "meters")
  41980. },
  41981. ]
  41982. ))
  41983. characterMakers.push(() => makeCharacter(
  41984. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41985. {
  41986. front: {
  41987. height: math.unit(5, "feet"),
  41988. weight: math.unit(185, "lb"),
  41989. name: "Front",
  41990. image: {
  41991. source: "./media/characters/kyera/front.svg",
  41992. extra: 1875/1790,
  41993. bottom: 96/1971
  41994. }
  41995. },
  41996. },
  41997. [
  41998. {
  41999. name: "Normal",
  42000. height: math.unit(5, "feet"),
  42001. default: true
  42002. },
  42003. ]
  42004. ))
  42005. characterMakers.push(() => makeCharacter(
  42006. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42007. {
  42008. front: {
  42009. height: math.unit(7 + 6/12, "feet"),
  42010. weight: math.unit(540, "lb"),
  42011. name: "Front",
  42012. image: {
  42013. source: "./media/characters/yuko/front.svg",
  42014. extra: 1282/1222,
  42015. bottom: 101/1383
  42016. }
  42017. },
  42018. frontClothed: {
  42019. height: math.unit(7 + 6/12, "feet"),
  42020. weight: math.unit(540, "lb"),
  42021. name: "Front (Clothed)",
  42022. image: {
  42023. source: "./media/characters/yuko/front-clothed.svg",
  42024. extra: 1282/1222,
  42025. bottom: 101/1383
  42026. }
  42027. },
  42028. },
  42029. [
  42030. {
  42031. name: "Normal",
  42032. height: math.unit(7 + 6/12, "feet"),
  42033. default: true
  42034. },
  42035. {
  42036. name: "Macro",
  42037. height: math.unit(26 + 9/12, "feet")
  42038. },
  42039. {
  42040. name: "Megamacro",
  42041. height: math.unit(300, "feet")
  42042. },
  42043. {
  42044. name: "Gigamacro",
  42045. height: math.unit(5000, "feet")
  42046. },
  42047. {
  42048. name: "Planetary",
  42049. height: math.unit(10000, "miles")
  42050. },
  42051. ]
  42052. ))
  42053. characterMakers.push(() => makeCharacter(
  42054. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42055. {
  42056. front: {
  42057. height: math.unit(8 + 2/12, "feet"),
  42058. weight: math.unit(600, "lb"),
  42059. name: "Front",
  42060. image: {
  42061. source: "./media/characters/deam-nitrel/front.svg",
  42062. extra: 1308/1234,
  42063. bottom: 125/1433
  42064. }
  42065. },
  42066. },
  42067. [
  42068. {
  42069. name: "Normal",
  42070. height: math.unit(8 + 2/12, "feet"),
  42071. default: true
  42072. },
  42073. ]
  42074. ))
  42075. characterMakers.push(() => makeCharacter(
  42076. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42077. {
  42078. front: {
  42079. height: math.unit(6.1, "feet"),
  42080. weight: math.unit(180, "lb"),
  42081. name: "Front",
  42082. image: {
  42083. source: "./media/characters/skyress/front.svg",
  42084. extra: 1045/915,
  42085. bottom: 28/1073
  42086. }
  42087. },
  42088. maw: {
  42089. height: math.unit(1, "feet"),
  42090. name: "Maw",
  42091. image: {
  42092. source: "./media/characters/skyress/maw.svg"
  42093. }
  42094. },
  42095. },
  42096. [
  42097. {
  42098. name: "Normal",
  42099. height: math.unit(6.1, "feet"),
  42100. default: true
  42101. },
  42102. {
  42103. name: "Macro",
  42104. height: math.unit(200, "feet")
  42105. },
  42106. ]
  42107. ))
  42108. characterMakers.push(() => makeCharacter(
  42109. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42110. {
  42111. front: {
  42112. height: math.unit(4 + 2/12, "feet"),
  42113. weight: math.unit(40, "kg"),
  42114. name: "Front",
  42115. image: {
  42116. source: "./media/characters/amethyst-jones/front.svg",
  42117. extra: 1220/1150,
  42118. bottom: 101/1321
  42119. }
  42120. },
  42121. },
  42122. [
  42123. {
  42124. name: "Normal",
  42125. height: math.unit(4 + 2/12, "feet"),
  42126. default: true
  42127. },
  42128. ]
  42129. ))
  42130. characterMakers.push(() => makeCharacter(
  42131. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42132. {
  42133. front: {
  42134. height: math.unit(1.7, "m"),
  42135. weight: math.unit(135, "lb"),
  42136. name: "Front",
  42137. image: {
  42138. source: "./media/characters/jade/front.svg",
  42139. extra: 1818/1767,
  42140. bottom: 32/1850
  42141. }
  42142. },
  42143. back: {
  42144. height: math.unit(1.7, "m"),
  42145. weight: math.unit(135, "lb"),
  42146. name: "Back",
  42147. image: {
  42148. source: "./media/characters/jade/back.svg",
  42149. extra: 1869/1809,
  42150. bottom: 35/1904
  42151. }
  42152. },
  42153. hand: {
  42154. height: math.unit(0.24, "m"),
  42155. name: "Hand",
  42156. image: {
  42157. source: "./media/characters/jade/hand.svg"
  42158. }
  42159. },
  42160. foot: {
  42161. height: math.unit(0.263, "m"),
  42162. name: "Foot",
  42163. image: {
  42164. source: "./media/characters/jade/foot.svg"
  42165. }
  42166. },
  42167. dick: {
  42168. height: math.unit(0.47, "m"),
  42169. name: "Dick",
  42170. image: {
  42171. source: "./media/characters/jade/dick.svg"
  42172. }
  42173. },
  42174. },
  42175. [
  42176. {
  42177. name: "Micro",
  42178. height: math.unit(22, "cm")
  42179. },
  42180. {
  42181. name: "Normal",
  42182. height: math.unit(1.7, "m"),
  42183. default: true
  42184. },
  42185. {
  42186. name: "Macro",
  42187. height: math.unit(152, "m")
  42188. },
  42189. ]
  42190. ))
  42191. characterMakers.push(() => makeCharacter(
  42192. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42193. {
  42194. front: {
  42195. height: math.unit(100, "miles"),
  42196. weight: math.unit(20000, "tons"),
  42197. name: "Front",
  42198. image: {
  42199. source: "./media/characters/cookie/front.svg",
  42200. extra: 1125/1070,
  42201. bottom: 30/1155
  42202. }
  42203. },
  42204. },
  42205. [
  42206. {
  42207. name: "Big",
  42208. height: math.unit(50, "feet")
  42209. },
  42210. {
  42211. name: "Macro",
  42212. height: math.unit(100, "miles"),
  42213. default: true
  42214. },
  42215. {
  42216. name: "Megamacro",
  42217. height: math.unit(90000, "miles")
  42218. },
  42219. ]
  42220. ))
  42221. characterMakers.push(() => makeCharacter(
  42222. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42223. {
  42224. front: {
  42225. height: math.unit(6, "feet"),
  42226. weight: math.unit(145, "lb"),
  42227. name: "Front",
  42228. image: {
  42229. source: "./media/characters/farzian/front.svg",
  42230. extra: 1902/1693,
  42231. bottom: 108/2010
  42232. }
  42233. },
  42234. },
  42235. [
  42236. {
  42237. name: "Macro",
  42238. height: math.unit(500, "feet"),
  42239. default: true
  42240. },
  42241. ]
  42242. ))
  42243. characterMakers.push(() => makeCharacter(
  42244. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42245. {
  42246. front: {
  42247. height: math.unit(3 + 6/12, "feet"),
  42248. weight: math.unit(50, "lb"),
  42249. name: "Front",
  42250. image: {
  42251. source: "./media/characters/kimberly-tilson/front.svg",
  42252. extra: 1400/1322,
  42253. bottom: 36/1436
  42254. }
  42255. },
  42256. back: {
  42257. height: math.unit(3 + 6/12, "feet"),
  42258. weight: math.unit(50, "lb"),
  42259. name: "Back",
  42260. image: {
  42261. source: "./media/characters/kimberly-tilson/back.svg",
  42262. extra: 1370/1307,
  42263. bottom: 20/1390
  42264. }
  42265. },
  42266. },
  42267. [
  42268. {
  42269. name: "Normal",
  42270. height: math.unit(3 + 6/12, "feet"),
  42271. default: true
  42272. },
  42273. ]
  42274. ))
  42275. characterMakers.push(() => makeCharacter(
  42276. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  42277. {
  42278. front: {
  42279. height: math.unit(1148, "feet"),
  42280. weight: math.unit(34057, "lb"),
  42281. name: "Front",
  42282. image: {
  42283. source: "./media/characters/harthos/front.svg",
  42284. extra: 1391/1339,
  42285. bottom: 13/1404
  42286. }
  42287. },
  42288. },
  42289. [
  42290. {
  42291. name: "Macro",
  42292. height: math.unit(1148, "feet"),
  42293. default: true
  42294. },
  42295. ]
  42296. ))
  42297. characterMakers.push(() => makeCharacter(
  42298. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42299. {
  42300. front: {
  42301. height: math.unit(15, "feet"),
  42302. name: "Front",
  42303. image: {
  42304. source: "./media/characters/hypatia/front.svg",
  42305. extra: 1653/1591,
  42306. bottom: 79/1732
  42307. }
  42308. },
  42309. },
  42310. [
  42311. {
  42312. name: "Normal",
  42313. height: math.unit(15, "feet")
  42314. },
  42315. {
  42316. name: "Small",
  42317. height: math.unit(300, "feet")
  42318. },
  42319. {
  42320. name: "Macro",
  42321. height: math.unit(2500, "feet"),
  42322. default: true
  42323. },
  42324. {
  42325. name: "Mega Macro",
  42326. height: math.unit(1500, "miles")
  42327. },
  42328. {
  42329. name: "Giga Macro",
  42330. height: math.unit(1.5e6, "miles")
  42331. },
  42332. ]
  42333. ))
  42334. characterMakers.push(() => makeCharacter(
  42335. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42336. {
  42337. front: {
  42338. height: math.unit(6, "feet"),
  42339. weight: math.unit(200, "lb"),
  42340. name: "Front",
  42341. image: {
  42342. source: "./media/characters/wulver/front.svg",
  42343. extra: 1724/1632,
  42344. bottom: 130/1854
  42345. }
  42346. },
  42347. frontNsfw: {
  42348. height: math.unit(6, "feet"),
  42349. weight: math.unit(200, "lb"),
  42350. name: "Front (NSFW)",
  42351. image: {
  42352. source: "./media/characters/wulver/front-nsfw.svg",
  42353. extra: 1724/1632,
  42354. bottom: 130/1854
  42355. }
  42356. },
  42357. },
  42358. [
  42359. {
  42360. name: "Human-Sized",
  42361. height: math.unit(6, "feet")
  42362. },
  42363. {
  42364. name: "Normal",
  42365. height: math.unit(4, "meters"),
  42366. default: true
  42367. },
  42368. {
  42369. name: "Large",
  42370. height: math.unit(6, "m")
  42371. },
  42372. ]
  42373. ))
  42374. characterMakers.push(() => makeCharacter(
  42375. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42376. {
  42377. front: {
  42378. height: math.unit(7, "feet"),
  42379. name: "Front",
  42380. image: {
  42381. source: "./media/characters/maru/front.svg",
  42382. extra: 1595/1570,
  42383. bottom: 0/1595
  42384. }
  42385. },
  42386. },
  42387. [
  42388. {
  42389. name: "Normal",
  42390. height: math.unit(7, "feet"),
  42391. default: true
  42392. },
  42393. {
  42394. name: "Macro",
  42395. height: math.unit(700, "feet")
  42396. },
  42397. {
  42398. name: "Mega Macro",
  42399. height: math.unit(25, "miles")
  42400. },
  42401. ]
  42402. ))
  42403. characterMakers.push(() => makeCharacter(
  42404. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42405. {
  42406. front: {
  42407. height: math.unit(6, "feet"),
  42408. weight: math.unit(170, "lb"),
  42409. name: "Front",
  42410. image: {
  42411. source: "./media/characters/xenon/front.svg",
  42412. extra: 1376/1305,
  42413. bottom: 56/1432
  42414. }
  42415. },
  42416. back: {
  42417. height: math.unit(6, "feet"),
  42418. weight: math.unit(170, "lb"),
  42419. name: "Back",
  42420. image: {
  42421. source: "./media/characters/xenon/back.svg",
  42422. extra: 1328/1259,
  42423. bottom: 95/1423
  42424. }
  42425. },
  42426. maw: {
  42427. height: math.unit(0.52, "feet"),
  42428. name: "Maw",
  42429. image: {
  42430. source: "./media/characters/xenon/maw.svg"
  42431. }
  42432. },
  42433. handLeft: {
  42434. height: math.unit(0.82 * 169 / 153, "feet"),
  42435. name: "Hand (Left)",
  42436. image: {
  42437. source: "./media/characters/xenon/hand-left.svg"
  42438. }
  42439. },
  42440. handRight: {
  42441. height: math.unit(0.82, "feet"),
  42442. name: "Hand (Right)",
  42443. image: {
  42444. source: "./media/characters/xenon/hand-right.svg"
  42445. }
  42446. },
  42447. footLeft: {
  42448. height: math.unit(1.13, "feet"),
  42449. name: "Foot (Left)",
  42450. image: {
  42451. source: "./media/characters/xenon/foot-left.svg"
  42452. }
  42453. },
  42454. footRight: {
  42455. height: math.unit(1.13 * 194 / 196, "feet"),
  42456. name: "Foot (Right)",
  42457. image: {
  42458. source: "./media/characters/xenon/foot-right.svg"
  42459. }
  42460. },
  42461. },
  42462. [
  42463. {
  42464. name: "Micro",
  42465. height: math.unit(0.8, "inches")
  42466. },
  42467. {
  42468. name: "Normal",
  42469. height: math.unit(6, "feet")
  42470. },
  42471. {
  42472. name: "Macro",
  42473. height: math.unit(50, "feet"),
  42474. default: true
  42475. },
  42476. {
  42477. name: "Macro+",
  42478. height: math.unit(250, "feet")
  42479. },
  42480. {
  42481. name: "Megamacro",
  42482. height: math.unit(1500, "feet")
  42483. },
  42484. ]
  42485. ))
  42486. characterMakers.push(() => makeCharacter(
  42487. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42488. {
  42489. front: {
  42490. height: math.unit(7 + 5/12, "feet"),
  42491. name: "Front",
  42492. image: {
  42493. source: "./media/characters/zane/front.svg",
  42494. extra: 1260/1203,
  42495. bottom: 94/1354
  42496. }
  42497. },
  42498. back: {
  42499. height: math.unit(5.05, "feet"),
  42500. name: "Back",
  42501. image: {
  42502. source: "./media/characters/zane/back.svg",
  42503. extra: 893/829,
  42504. bottom: 30/923
  42505. }
  42506. },
  42507. werewolf: {
  42508. height: math.unit(11, "feet"),
  42509. name: "Werewolf",
  42510. image: {
  42511. source: "./media/characters/zane/werewolf.svg",
  42512. extra: 1383/1323,
  42513. bottom: 89/1472
  42514. }
  42515. },
  42516. foot: {
  42517. height: math.unit(1.46, "feet"),
  42518. name: "Foot",
  42519. image: {
  42520. source: "./media/characters/zane/foot.svg"
  42521. }
  42522. },
  42523. footFront: {
  42524. height: math.unit(0.784, "feet"),
  42525. name: "Foot (Front)",
  42526. image: {
  42527. source: "./media/characters/zane/foot-front.svg"
  42528. }
  42529. },
  42530. dick: {
  42531. height: math.unit(1.95, "feet"),
  42532. name: "Dick",
  42533. image: {
  42534. source: "./media/characters/zane/dick.svg"
  42535. }
  42536. },
  42537. dickWerewolf: {
  42538. height: math.unit(3.77, "feet"),
  42539. name: "Dick (Werewolf)",
  42540. image: {
  42541. source: "./media/characters/zane/dick.svg"
  42542. }
  42543. },
  42544. },
  42545. [
  42546. {
  42547. name: "Normal",
  42548. height: math.unit(7 + 5/12, "feet"),
  42549. default: true
  42550. },
  42551. ]
  42552. ))
  42553. characterMakers.push(() => makeCharacter(
  42554. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42555. {
  42556. front: {
  42557. height: math.unit(6 + 2/12, "feet"),
  42558. weight: math.unit(284, "lb"),
  42559. name: "Front",
  42560. image: {
  42561. source: "./media/characters/benni-desparque/front.svg",
  42562. extra: 1353/1126,
  42563. bottom: 69/1422
  42564. }
  42565. },
  42566. },
  42567. [
  42568. {
  42569. name: "Civilian",
  42570. height: math.unit(6 + 2/12, "feet")
  42571. },
  42572. {
  42573. name: "Normal",
  42574. height: math.unit(98, "feet"),
  42575. default: true
  42576. },
  42577. {
  42578. name: "Kaiju Fighter",
  42579. height: math.unit(268, "feet")
  42580. },
  42581. ]
  42582. ))
  42583. characterMakers.push(() => makeCharacter(
  42584. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42585. {
  42586. front: {
  42587. height: math.unit(5, "feet"),
  42588. weight: math.unit(105, "lb"),
  42589. name: "Front",
  42590. image: {
  42591. source: "./media/characters/maxine/front.svg",
  42592. extra: 1386/1250,
  42593. bottom: 71/1457
  42594. }
  42595. },
  42596. },
  42597. [
  42598. {
  42599. name: "Normal",
  42600. height: math.unit(5, "feet"),
  42601. default: true
  42602. },
  42603. ]
  42604. ))
  42605. characterMakers.push(() => makeCharacter(
  42606. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42607. {
  42608. front: {
  42609. height: math.unit(11 + 7/12, "feet"),
  42610. weight: math.unit(9576, "lb"),
  42611. name: "Front",
  42612. image: {
  42613. source: "./media/characters/scaly/front.svg",
  42614. extra: 888/867,
  42615. bottom: 36/924
  42616. }
  42617. },
  42618. },
  42619. [
  42620. {
  42621. name: "Normal",
  42622. height: math.unit(11 + 7/12, "feet"),
  42623. default: true
  42624. },
  42625. ]
  42626. ))
  42627. characterMakers.push(() => makeCharacter(
  42628. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42629. {
  42630. front: {
  42631. height: math.unit(6 + 3/12, "feet"),
  42632. name: "Front",
  42633. image: {
  42634. source: "./media/characters/saelria/front.svg",
  42635. extra: 1243/1138,
  42636. bottom: 46/1289
  42637. }
  42638. },
  42639. },
  42640. [
  42641. {
  42642. name: "Micro",
  42643. height: math.unit(6, "inches"),
  42644. },
  42645. {
  42646. name: "Normal",
  42647. height: math.unit(6 + 3/12, "feet"),
  42648. default: true
  42649. },
  42650. {
  42651. name: "Macro",
  42652. height: math.unit(25, "feet")
  42653. },
  42654. ]
  42655. ))
  42656. characterMakers.push(() => makeCharacter(
  42657. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42658. {
  42659. front: {
  42660. height: math.unit(80, "meters"),
  42661. weight: math.unit(7000, "tonnes"),
  42662. name: "Front",
  42663. image: {
  42664. source: "./media/characters/tef/front.svg",
  42665. extra: 2036/1991,
  42666. bottom: 54/2090
  42667. }
  42668. },
  42669. back: {
  42670. height: math.unit(80, "meters"),
  42671. weight: math.unit(7000, "tonnes"),
  42672. name: "Back",
  42673. image: {
  42674. source: "./media/characters/tef/back.svg",
  42675. extra: 2036/1991,
  42676. bottom: 54/2090
  42677. }
  42678. },
  42679. },
  42680. [
  42681. {
  42682. name: "Macro",
  42683. height: math.unit(80, "meters"),
  42684. default: true
  42685. },
  42686. ]
  42687. ))
  42688. characterMakers.push(() => makeCharacter(
  42689. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42690. {
  42691. front: {
  42692. height: math.unit(13, "feet"),
  42693. weight: math.unit(6, "tons"),
  42694. name: "Front",
  42695. image: {
  42696. source: "./media/characters/rover/front.svg",
  42697. extra: 1233/1156,
  42698. bottom: 50/1283
  42699. }
  42700. },
  42701. back: {
  42702. height: math.unit(13, "feet"),
  42703. weight: math.unit(6, "tons"),
  42704. name: "Back",
  42705. image: {
  42706. source: "./media/characters/rover/back.svg",
  42707. extra: 1327/1258,
  42708. bottom: 39/1366
  42709. }
  42710. },
  42711. },
  42712. [
  42713. {
  42714. name: "Normal",
  42715. height: math.unit(13, "feet"),
  42716. default: true
  42717. },
  42718. {
  42719. name: "Macro",
  42720. height: math.unit(1300, "feet")
  42721. },
  42722. {
  42723. name: "Megamacro",
  42724. height: math.unit(1300, "miles")
  42725. },
  42726. {
  42727. name: "Gigamacro",
  42728. height: math.unit(1300000, "miles")
  42729. },
  42730. ]
  42731. ))
  42732. characterMakers.push(() => makeCharacter(
  42733. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42734. {
  42735. front: {
  42736. height: math.unit(6, "feet"),
  42737. weight: math.unit(150, "lb"),
  42738. name: "Front",
  42739. image: {
  42740. source: "./media/characters/ariz/front.svg",
  42741. extra: 1401/1346,
  42742. bottom: 5/1406
  42743. }
  42744. },
  42745. },
  42746. [
  42747. {
  42748. name: "Normal",
  42749. height: math.unit(10, "feet"),
  42750. default: true
  42751. },
  42752. ]
  42753. ))
  42754. characterMakers.push(() => makeCharacter(
  42755. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42756. {
  42757. front: {
  42758. height: math.unit(6, "feet"),
  42759. weight: math.unit(140, "lb"),
  42760. name: "Front",
  42761. image: {
  42762. source: "./media/characters/sigrun/front.svg",
  42763. extra: 1418/1359,
  42764. bottom: 27/1445
  42765. }
  42766. },
  42767. },
  42768. [
  42769. {
  42770. name: "Macro",
  42771. height: math.unit(35, "feet"),
  42772. default: true
  42773. },
  42774. ]
  42775. ))
  42776. characterMakers.push(() => makeCharacter(
  42777. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42778. {
  42779. front: {
  42780. height: math.unit(6, "feet"),
  42781. weight: math.unit(150, "lb"),
  42782. name: "Front",
  42783. image: {
  42784. source: "./media/characters/numin/front.svg",
  42785. extra: 1433/1388,
  42786. bottom: 12/1445
  42787. }
  42788. },
  42789. },
  42790. [
  42791. {
  42792. name: "Macro",
  42793. height: math.unit(21.5, "km"),
  42794. default: true
  42795. },
  42796. ]
  42797. ))
  42798. characterMakers.push(() => makeCharacter(
  42799. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42800. {
  42801. front: {
  42802. height: math.unit(6, "feet"),
  42803. weight: math.unit(463, "lb"),
  42804. name: "Front",
  42805. image: {
  42806. source: "./media/characters/melwa/front.svg",
  42807. extra: 1307/1248,
  42808. bottom: 93/1400
  42809. }
  42810. },
  42811. },
  42812. [
  42813. {
  42814. name: "Macro",
  42815. height: math.unit(50, "meters"),
  42816. default: true
  42817. },
  42818. ]
  42819. ))
  42820. characterMakers.push(() => makeCharacter(
  42821. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42822. {
  42823. front: {
  42824. height: math.unit(325, "feet"),
  42825. name: "Front",
  42826. image: {
  42827. source: "./media/characters/zorkaiju/front.svg",
  42828. extra: 1955/1814,
  42829. bottom: 40/1995
  42830. }
  42831. },
  42832. frontExtended: {
  42833. height: math.unit(325, "feet"),
  42834. name: "Front (Extended)",
  42835. image: {
  42836. source: "./media/characters/zorkaiju/front-extended.svg",
  42837. extra: 1955/1814,
  42838. bottom: 40/1995
  42839. }
  42840. },
  42841. side: {
  42842. height: math.unit(325, "feet"),
  42843. name: "Side",
  42844. image: {
  42845. source: "./media/characters/zorkaiju/side.svg",
  42846. extra: 1495/1396,
  42847. bottom: 17/1512
  42848. }
  42849. },
  42850. sideExtended: {
  42851. height: math.unit(325, "feet"),
  42852. name: "Side (Extended)",
  42853. image: {
  42854. source: "./media/characters/zorkaiju/side-extended.svg",
  42855. extra: 1495/1396,
  42856. bottom: 17/1512
  42857. }
  42858. },
  42859. back: {
  42860. height: math.unit(325, "feet"),
  42861. name: "Back",
  42862. image: {
  42863. source: "./media/characters/zorkaiju/back.svg",
  42864. extra: 1959/1821,
  42865. bottom: 31/1990
  42866. }
  42867. },
  42868. backExtended: {
  42869. height: math.unit(325, "feet"),
  42870. name: "Back (Extended)",
  42871. image: {
  42872. source: "./media/characters/zorkaiju/back-extended.svg",
  42873. extra: 1959/1821,
  42874. bottom: 31/1990
  42875. }
  42876. },
  42877. hand: {
  42878. height: math.unit(58.4, "feet"),
  42879. name: "Hand",
  42880. image: {
  42881. source: "./media/characters/zorkaiju/hand.svg"
  42882. }
  42883. },
  42884. handExtended: {
  42885. height: math.unit(61.4, "feet"),
  42886. name: "Hand (Extended)",
  42887. image: {
  42888. source: "./media/characters/zorkaiju/hand-extended.svg"
  42889. }
  42890. },
  42891. foot: {
  42892. height: math.unit(95, "feet"),
  42893. name: "Foot",
  42894. image: {
  42895. source: "./media/characters/zorkaiju/foot.svg"
  42896. }
  42897. },
  42898. leftArm: {
  42899. height: math.unit(59, "feet"),
  42900. name: "Left Arm",
  42901. image: {
  42902. source: "./media/characters/zorkaiju/left-arm.svg"
  42903. }
  42904. },
  42905. rightArm: {
  42906. height: math.unit(59, "feet"),
  42907. name: "Right Arm",
  42908. image: {
  42909. source: "./media/characters/zorkaiju/right-arm.svg"
  42910. }
  42911. },
  42912. leftArmExtended: {
  42913. height: math.unit(59 * 1.033546, "feet"),
  42914. name: "Left Arm (Extended)",
  42915. image: {
  42916. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42917. }
  42918. },
  42919. rightArmExtended: {
  42920. height: math.unit(59 * 1.0496, "feet"),
  42921. name: "Right Arm (Extended)",
  42922. image: {
  42923. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42924. }
  42925. },
  42926. tail: {
  42927. height: math.unit(104, "feet"),
  42928. name: "Tail",
  42929. image: {
  42930. source: "./media/characters/zorkaiju/tail.svg"
  42931. }
  42932. },
  42933. tailExtended: {
  42934. height: math.unit(104, "feet"),
  42935. name: "Tail (Extended)",
  42936. image: {
  42937. source: "./media/characters/zorkaiju/tail-extended.svg"
  42938. }
  42939. },
  42940. tailBottom: {
  42941. height: math.unit(104, "feet"),
  42942. name: "Tail Bottom",
  42943. image: {
  42944. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42945. }
  42946. },
  42947. crystal: {
  42948. height: math.unit(27.54, "feet"),
  42949. name: "Crystal",
  42950. image: {
  42951. source: "./media/characters/zorkaiju/crystal.svg"
  42952. }
  42953. },
  42954. },
  42955. [
  42956. {
  42957. name: "Kaiju",
  42958. height: math.unit(325, "feet"),
  42959. default: true
  42960. },
  42961. ]
  42962. ))
  42963. characterMakers.push(() => makeCharacter(
  42964. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42965. {
  42966. front: {
  42967. height: math.unit(6 + 1/12, "feet"),
  42968. weight: math.unit(115, "lb"),
  42969. name: "Front",
  42970. image: {
  42971. source: "./media/characters/bailey-belfry/front.svg",
  42972. extra: 1240/1121,
  42973. bottom: 101/1341
  42974. }
  42975. },
  42976. },
  42977. [
  42978. {
  42979. name: "Normal",
  42980. height: math.unit(6 + 1/12, "feet"),
  42981. default: true
  42982. },
  42983. ]
  42984. ))
  42985. characterMakers.push(() => makeCharacter(
  42986. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42987. {
  42988. side: {
  42989. height: math.unit(4, "meters"),
  42990. weight: math.unit(250, "kg"),
  42991. name: "Side",
  42992. image: {
  42993. source: "./media/characters/blacky/side.svg",
  42994. extra: 1027/919,
  42995. bottom: 43/1070
  42996. }
  42997. },
  42998. maw: {
  42999. height: math.unit(1, "meters"),
  43000. name: "Maw",
  43001. image: {
  43002. source: "./media/characters/blacky/maw.svg"
  43003. }
  43004. },
  43005. paw: {
  43006. height: math.unit(1, "meters"),
  43007. name: "Paw",
  43008. image: {
  43009. source: "./media/characters/blacky/paw.svg"
  43010. }
  43011. },
  43012. },
  43013. [
  43014. {
  43015. name: "Normal",
  43016. height: math.unit(4, "meters"),
  43017. default: true
  43018. },
  43019. ]
  43020. ))
  43021. characterMakers.push(() => makeCharacter(
  43022. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43023. {
  43024. front: {
  43025. height: math.unit(170, "cm"),
  43026. weight: math.unit(66, "kg"),
  43027. name: "Front",
  43028. image: {
  43029. source: "./media/characters/thux-ei/front.svg",
  43030. extra: 1109/1011,
  43031. bottom: 8/1117
  43032. }
  43033. },
  43034. },
  43035. [
  43036. {
  43037. name: "Normal",
  43038. height: math.unit(170, "cm"),
  43039. default: true
  43040. },
  43041. ]
  43042. ))
  43043. characterMakers.push(() => makeCharacter(
  43044. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43045. {
  43046. front: {
  43047. height: math.unit(5, "feet"),
  43048. weight: math.unit(120, "lb"),
  43049. name: "Front",
  43050. image: {
  43051. source: "./media/characters/roxanne-voltaire/front.svg",
  43052. extra: 1901/1779,
  43053. bottom: 53/1954
  43054. }
  43055. },
  43056. },
  43057. [
  43058. {
  43059. name: "Normal",
  43060. height: math.unit(5, "feet"),
  43061. default: true
  43062. },
  43063. {
  43064. name: "Giant",
  43065. height: math.unit(50, "feet")
  43066. },
  43067. {
  43068. name: "Titan",
  43069. height: math.unit(500, "feet")
  43070. },
  43071. {
  43072. name: "Macro",
  43073. height: math.unit(5000, "feet")
  43074. },
  43075. {
  43076. name: "Megamacro",
  43077. height: math.unit(50000, "feet")
  43078. },
  43079. {
  43080. name: "Gigamacro",
  43081. height: math.unit(500000, "feet")
  43082. },
  43083. {
  43084. name: "Teramacro",
  43085. height: math.unit(5e6, "feet")
  43086. },
  43087. ]
  43088. ))
  43089. characterMakers.push(() => makeCharacter(
  43090. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43091. {
  43092. front: {
  43093. height: math.unit(6 + 2/12, "feet"),
  43094. name: "Front",
  43095. image: {
  43096. source: "./media/characters/squeaks/front.svg",
  43097. extra: 1823/1768,
  43098. bottom: 138/1961
  43099. }
  43100. },
  43101. },
  43102. [
  43103. {
  43104. name: "Micro",
  43105. height: math.unit(0.5, "inches")
  43106. },
  43107. {
  43108. name: "Normal",
  43109. height: math.unit(6 + 2/12, "feet"),
  43110. default: true
  43111. },
  43112. {
  43113. name: "Macro",
  43114. height: math.unit(600, "feet")
  43115. },
  43116. ]
  43117. ))
  43118. characterMakers.push(() => makeCharacter(
  43119. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43120. {
  43121. front: {
  43122. height: math.unit(1.72, "meters"),
  43123. name: "Front",
  43124. image: {
  43125. source: "./media/characters/archinger/front.svg",
  43126. extra: 1861/1675,
  43127. bottom: 125/1986
  43128. }
  43129. },
  43130. back: {
  43131. height: math.unit(1.72, "meters"),
  43132. name: "Back",
  43133. image: {
  43134. source: "./media/characters/archinger/back.svg",
  43135. extra: 1844/1701,
  43136. bottom: 104/1948
  43137. }
  43138. },
  43139. cock: {
  43140. height: math.unit(0.59, "feet"),
  43141. name: "Cock",
  43142. image: {
  43143. source: "./media/characters/archinger/cock.svg"
  43144. }
  43145. },
  43146. },
  43147. [
  43148. {
  43149. name: "Normal",
  43150. height: math.unit(1.72, "meters"),
  43151. default: true
  43152. },
  43153. {
  43154. name: "Macro",
  43155. height: math.unit(84, "meters")
  43156. },
  43157. {
  43158. name: "Macro+",
  43159. height: math.unit(112, "meters")
  43160. },
  43161. {
  43162. name: "Macro++",
  43163. height: math.unit(960, "meters")
  43164. },
  43165. {
  43166. name: "Macro+++",
  43167. height: math.unit(4, "km")
  43168. },
  43169. {
  43170. name: "Macro++++",
  43171. height: math.unit(48, "km")
  43172. },
  43173. {
  43174. name: "Macro+++++",
  43175. height: math.unit(4500, "km")
  43176. },
  43177. ]
  43178. ))
  43179. characterMakers.push(() => makeCharacter(
  43180. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43181. {
  43182. front: {
  43183. height: math.unit(5 + 5/12, "feet"),
  43184. name: "Front",
  43185. image: {
  43186. source: "./media/characters/alsnapz/front.svg",
  43187. extra: 1157/1065,
  43188. bottom: 42/1199
  43189. }
  43190. },
  43191. },
  43192. [
  43193. {
  43194. name: "Normal",
  43195. height: math.unit(5 + 5/12, "feet"),
  43196. default: true
  43197. },
  43198. ]
  43199. ))
  43200. characterMakers.push(() => makeCharacter(
  43201. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43202. {
  43203. side: {
  43204. height: math.unit(3.2, "earths"),
  43205. name: "Side",
  43206. image: {
  43207. source: "./media/characters/mag/side.svg",
  43208. extra: 1331/1008,
  43209. bottom: 52/1383
  43210. }
  43211. },
  43212. wing: {
  43213. height: math.unit(1.94, "earths"),
  43214. name: "Wing",
  43215. image: {
  43216. source: "./media/characters/mag/wing.svg"
  43217. }
  43218. },
  43219. dick: {
  43220. height: math.unit(1.8, "earths"),
  43221. name: "Dick",
  43222. image: {
  43223. source: "./media/characters/mag/dick.svg"
  43224. }
  43225. },
  43226. ass: {
  43227. height: math.unit(1.33, "earths"),
  43228. name: "Ass",
  43229. image: {
  43230. source: "./media/characters/mag/ass.svg"
  43231. }
  43232. },
  43233. head: {
  43234. height: math.unit(1.1, "earths"),
  43235. name: "Head",
  43236. image: {
  43237. source: "./media/characters/mag/head.svg"
  43238. }
  43239. },
  43240. maw: {
  43241. height: math.unit(1.62, "earths"),
  43242. name: "Maw",
  43243. image: {
  43244. source: "./media/characters/mag/maw.svg"
  43245. }
  43246. },
  43247. },
  43248. [
  43249. {
  43250. name: "Small",
  43251. height: math.unit(162, "feet")
  43252. },
  43253. {
  43254. name: "Normal",
  43255. height: math.unit(3.2, "earths"),
  43256. default: true
  43257. },
  43258. ]
  43259. ))
  43260. characterMakers.push(() => makeCharacter(
  43261. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43262. {
  43263. front: {
  43264. height: math.unit(512, "feet"),
  43265. weight: math.unit(63509, "tonnes"),
  43266. name: "Front",
  43267. image: {
  43268. source: "./media/characters/vorrel-harroc/front.svg",
  43269. extra: 1075/1063,
  43270. bottom: 62/1137
  43271. }
  43272. },
  43273. },
  43274. [
  43275. {
  43276. name: "Normal",
  43277. height: math.unit(10, "feet")
  43278. },
  43279. {
  43280. name: "Macro",
  43281. height: math.unit(512, "feet"),
  43282. default: true
  43283. },
  43284. {
  43285. name: "Megamacro",
  43286. height: math.unit(256, "miles")
  43287. },
  43288. {
  43289. name: "Gigamacro",
  43290. height: math.unit(4096, "miles")
  43291. },
  43292. ]
  43293. ))
  43294. characterMakers.push(() => makeCharacter(
  43295. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43296. {
  43297. side: {
  43298. height: math.unit(50, "feet"),
  43299. name: "Side",
  43300. image: {
  43301. source: "./media/characters/froimar/side.svg",
  43302. extra: 855/638,
  43303. bottom: 99/954
  43304. }
  43305. },
  43306. },
  43307. [
  43308. {
  43309. name: "Macro",
  43310. height: math.unit(50, "feet"),
  43311. default: true
  43312. },
  43313. ]
  43314. ))
  43315. characterMakers.push(() => makeCharacter(
  43316. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43317. {
  43318. front: {
  43319. height: math.unit(210, "miles"),
  43320. name: "Front",
  43321. image: {
  43322. source: "./media/characters/timothy/front.svg",
  43323. extra: 1007/943,
  43324. bottom: 62/1069
  43325. }
  43326. },
  43327. frontSkirt: {
  43328. height: math.unit(210, "miles"),
  43329. name: "Front (Skirt)",
  43330. image: {
  43331. source: "./media/characters/timothy/front-skirt.svg",
  43332. extra: 1007/943,
  43333. bottom: 62/1069
  43334. }
  43335. },
  43336. frontCoat: {
  43337. height: math.unit(210, "miles"),
  43338. name: "Front (Coat)",
  43339. image: {
  43340. source: "./media/characters/timothy/front-coat.svg",
  43341. extra: 1007/943,
  43342. bottom: 62/1069
  43343. }
  43344. },
  43345. },
  43346. [
  43347. {
  43348. name: "Macro",
  43349. height: math.unit(210, "miles"),
  43350. default: true
  43351. },
  43352. {
  43353. name: "Megamacro",
  43354. height: math.unit(210000, "miles")
  43355. },
  43356. ]
  43357. ))
  43358. characterMakers.push(() => makeCharacter(
  43359. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43360. {
  43361. front: {
  43362. height: math.unit(188, "feet"),
  43363. name: "Front",
  43364. image: {
  43365. source: "./media/characters/pyotr/front.svg",
  43366. extra: 1912/1826,
  43367. bottom: 18/1930
  43368. }
  43369. },
  43370. },
  43371. [
  43372. {
  43373. name: "Macro",
  43374. height: math.unit(188, "feet"),
  43375. default: true
  43376. },
  43377. {
  43378. name: "Megamacro",
  43379. height: math.unit(8, "miles")
  43380. },
  43381. ]
  43382. ))
  43383. characterMakers.push(() => makeCharacter(
  43384. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43385. {
  43386. side: {
  43387. height: math.unit(10, "feet"),
  43388. weight: math.unit(4500, "lb"),
  43389. name: "Side",
  43390. image: {
  43391. source: "./media/characters/ackart/side.svg",
  43392. extra: 1776/1668,
  43393. bottom: 116/1892
  43394. }
  43395. },
  43396. },
  43397. [
  43398. {
  43399. name: "Normal",
  43400. height: math.unit(10, "feet"),
  43401. default: true
  43402. },
  43403. ]
  43404. ))
  43405. characterMakers.push(() => makeCharacter(
  43406. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43407. {
  43408. side: {
  43409. height: math.unit(21, "feet"),
  43410. name: "Side",
  43411. image: {
  43412. source: "./media/characters/nolow/side.svg",
  43413. extra: 1484/1434,
  43414. bottom: 85/1569
  43415. }
  43416. },
  43417. sideErect: {
  43418. height: math.unit(21, "feet"),
  43419. name: "Side-erect",
  43420. image: {
  43421. source: "./media/characters/nolow/side-erect.svg",
  43422. extra: 1484/1434,
  43423. bottom: 85/1569
  43424. }
  43425. },
  43426. },
  43427. [
  43428. {
  43429. name: "Regular",
  43430. height: math.unit(12, "feet")
  43431. },
  43432. {
  43433. name: "Big Chee",
  43434. height: math.unit(21, "feet"),
  43435. default: true
  43436. },
  43437. ]
  43438. ))
  43439. characterMakers.push(() => makeCharacter(
  43440. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43441. {
  43442. front: {
  43443. height: math.unit(7, "feet"),
  43444. weight: math.unit(250, "lb"),
  43445. name: "Front",
  43446. image: {
  43447. source: "./media/characters/nines/front.svg",
  43448. extra: 1741/1607,
  43449. bottom: 41/1782
  43450. }
  43451. },
  43452. side: {
  43453. height: math.unit(7, "feet"),
  43454. weight: math.unit(250, "lb"),
  43455. name: "Side",
  43456. image: {
  43457. source: "./media/characters/nines/side.svg",
  43458. extra: 1854/1735,
  43459. bottom: 93/1947
  43460. }
  43461. },
  43462. back: {
  43463. height: math.unit(7, "feet"),
  43464. weight: math.unit(250, "lb"),
  43465. name: "Back",
  43466. image: {
  43467. source: "./media/characters/nines/back.svg",
  43468. extra: 1748/1615,
  43469. bottom: 20/1768
  43470. }
  43471. },
  43472. },
  43473. [
  43474. {
  43475. name: "Megamacro",
  43476. height: math.unit(99, "km"),
  43477. default: true
  43478. },
  43479. ]
  43480. ))
  43481. characterMakers.push(() => makeCharacter(
  43482. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43483. {
  43484. front: {
  43485. height: math.unit(5 + 10/12, "feet"),
  43486. weight: math.unit(210, "lb"),
  43487. name: "Front",
  43488. image: {
  43489. source: "./media/characters/zenith/front.svg",
  43490. extra: 1531/1452,
  43491. bottom: 198/1729
  43492. }
  43493. },
  43494. back: {
  43495. height: math.unit(5 + 10/12, "feet"),
  43496. weight: math.unit(210, "lb"),
  43497. name: "Back",
  43498. image: {
  43499. source: "./media/characters/zenith/back.svg",
  43500. extra: 1571/1487,
  43501. bottom: 75/1646
  43502. }
  43503. },
  43504. },
  43505. [
  43506. {
  43507. name: "Normal",
  43508. height: math.unit(5 + 10/12, "feet"),
  43509. default: true
  43510. }
  43511. ]
  43512. ))
  43513. characterMakers.push(() => makeCharacter(
  43514. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43515. {
  43516. front: {
  43517. height: math.unit(4, "feet"),
  43518. weight: math.unit(60, "lb"),
  43519. name: "Front",
  43520. image: {
  43521. source: "./media/characters/jasper/front.svg",
  43522. extra: 1450/1379,
  43523. bottom: 19/1469
  43524. }
  43525. },
  43526. },
  43527. [
  43528. {
  43529. name: "Normal",
  43530. height: math.unit(4, "feet"),
  43531. default: true
  43532. },
  43533. ]
  43534. ))
  43535. characterMakers.push(() => makeCharacter(
  43536. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43537. {
  43538. front: {
  43539. height: math.unit(6 + 5/12, "feet"),
  43540. weight: math.unit(290, "lb"),
  43541. name: "Front",
  43542. image: {
  43543. source: "./media/characters/tiberius-thyben/front.svg",
  43544. extra: 757/739,
  43545. bottom: 39/796
  43546. }
  43547. },
  43548. },
  43549. [
  43550. {
  43551. name: "Micro",
  43552. height: math.unit(1.5, "inches")
  43553. },
  43554. {
  43555. name: "Normal",
  43556. height: math.unit(6 + 5/12, "feet"),
  43557. default: true
  43558. },
  43559. {
  43560. name: "Macro",
  43561. height: math.unit(300, "feet")
  43562. },
  43563. ]
  43564. ))
  43565. characterMakers.push(() => makeCharacter(
  43566. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43567. {
  43568. front: {
  43569. height: math.unit(5 + 6/12, "feet"),
  43570. weight: math.unit(60, "kg"),
  43571. name: "Front",
  43572. image: {
  43573. source: "./media/characters/sabre/front.svg",
  43574. extra: 738/671,
  43575. bottom: 27/765
  43576. }
  43577. },
  43578. },
  43579. [
  43580. {
  43581. name: "Teeny",
  43582. height: math.unit(2, "inches")
  43583. },
  43584. {
  43585. name: "Smol",
  43586. height: math.unit(8, "inches")
  43587. },
  43588. {
  43589. name: "Normal",
  43590. height: math.unit(5 + 6/12, "feet"),
  43591. default: true
  43592. },
  43593. {
  43594. name: "Mini-Macro",
  43595. height: math.unit(15, "feet")
  43596. },
  43597. {
  43598. name: "Macro",
  43599. height: math.unit(50, "feet")
  43600. },
  43601. ]
  43602. ))
  43603. characterMakers.push(() => makeCharacter(
  43604. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43605. {
  43606. front: {
  43607. height: math.unit(6 + 4/12, "feet"),
  43608. weight: math.unit(170, "lb"),
  43609. name: "Front",
  43610. image: {
  43611. source: "./media/characters/charlie/front.svg",
  43612. extra: 1348/1228,
  43613. bottom: 15/1363
  43614. }
  43615. },
  43616. },
  43617. [
  43618. {
  43619. name: "Macro",
  43620. height: math.unit(1700, "meters"),
  43621. default: true
  43622. },
  43623. {
  43624. name: "MegaMacro",
  43625. height: math.unit(20400, "meters")
  43626. },
  43627. ]
  43628. ))
  43629. characterMakers.push(() => makeCharacter(
  43630. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43631. {
  43632. front: {
  43633. height: math.unit(6 + 3/12, "feet"),
  43634. weight: math.unit(185, "lb"),
  43635. name: "Front",
  43636. image: {
  43637. source: "./media/characters/susan-grant/front.svg",
  43638. extra: 1351/1327,
  43639. bottom: 26/1377
  43640. }
  43641. },
  43642. },
  43643. [
  43644. {
  43645. name: "Normal",
  43646. height: math.unit(6 + 3/12, "feet"),
  43647. default: true
  43648. },
  43649. {
  43650. name: "Macro",
  43651. height: math.unit(225, "feet")
  43652. },
  43653. {
  43654. name: "Macro+",
  43655. height: math.unit(900, "feet")
  43656. },
  43657. {
  43658. name: "MegaMacro",
  43659. height: math.unit(14400, "feet")
  43660. },
  43661. ]
  43662. ))
  43663. characterMakers.push(() => makeCharacter(
  43664. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43665. {
  43666. front: {
  43667. height: math.unit(5 + 4/12, "feet"),
  43668. weight: math.unit(110, "lb"),
  43669. name: "Front",
  43670. image: {
  43671. source: "./media/characters/axel-isanov/front.svg",
  43672. extra: 1096/1065,
  43673. bottom: 13/1109
  43674. }
  43675. },
  43676. },
  43677. [
  43678. {
  43679. name: "Normal",
  43680. height: math.unit(5 + 4/12, "feet"),
  43681. default: true
  43682. },
  43683. ]
  43684. ))
  43685. characterMakers.push(() => makeCharacter(
  43686. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43687. {
  43688. front: {
  43689. height: math.unit(9, "feet"),
  43690. weight: math.unit(467, "lb"),
  43691. name: "Front",
  43692. image: {
  43693. source: "./media/characters/necahual/front.svg",
  43694. extra: 920/873,
  43695. bottom: 26/946
  43696. }
  43697. },
  43698. back: {
  43699. height: math.unit(9, "feet"),
  43700. weight: math.unit(467, "lb"),
  43701. name: "Back",
  43702. image: {
  43703. source: "./media/characters/necahual/back.svg",
  43704. extra: 930/884,
  43705. bottom: 16/946
  43706. }
  43707. },
  43708. frontUnderwear: {
  43709. height: math.unit(9, "feet"),
  43710. weight: math.unit(467, "lb"),
  43711. name: "Front (Underwear)",
  43712. image: {
  43713. source: "./media/characters/necahual/front-underwear.svg",
  43714. extra: 920/873,
  43715. bottom: 26/946
  43716. }
  43717. },
  43718. frontDressed: {
  43719. height: math.unit(9, "feet"),
  43720. weight: math.unit(467, "lb"),
  43721. name: "Front (Dressed)",
  43722. image: {
  43723. source: "./media/characters/necahual/front-dressed.svg",
  43724. extra: 920/873,
  43725. bottom: 26/946
  43726. }
  43727. },
  43728. },
  43729. [
  43730. {
  43731. name: "Comprsesed",
  43732. height: math.unit(9, "feet")
  43733. },
  43734. {
  43735. name: "Natural",
  43736. height: math.unit(15, "feet"),
  43737. default: true
  43738. },
  43739. {
  43740. name: "Boosted",
  43741. height: math.unit(50, "feet")
  43742. },
  43743. {
  43744. name: "Boosted+",
  43745. height: math.unit(150, "feet")
  43746. },
  43747. {
  43748. name: "Max",
  43749. height: math.unit(500, "feet")
  43750. },
  43751. ]
  43752. ))
  43753. characterMakers.push(() => makeCharacter(
  43754. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43755. {
  43756. front: {
  43757. height: math.unit(22 + 1/12, "feet"),
  43758. weight: math.unit(3200, "lb"),
  43759. name: "Front",
  43760. image: {
  43761. source: "./media/characters/theo-acacia/front.svg",
  43762. extra: 1796/1741,
  43763. bottom: 83/1879
  43764. }
  43765. },
  43766. frontUnderwear: {
  43767. height: math.unit(22 + 1/12, "feet"),
  43768. weight: math.unit(3200, "lb"),
  43769. name: "Front (Underwear)",
  43770. image: {
  43771. source: "./media/characters/theo-acacia/front-underwear.svg",
  43772. extra: 1796/1741,
  43773. bottom: 83/1879
  43774. }
  43775. },
  43776. frontNude: {
  43777. height: math.unit(22 + 1/12, "feet"),
  43778. weight: math.unit(3200, "lb"),
  43779. name: "Front (Nude)",
  43780. image: {
  43781. source: "./media/characters/theo-acacia/front-nude.svg",
  43782. extra: 1796/1741,
  43783. bottom: 83/1879
  43784. }
  43785. },
  43786. },
  43787. [
  43788. {
  43789. name: "Normal",
  43790. height: math.unit(22 + 1/12, "feet"),
  43791. default: true
  43792. },
  43793. ]
  43794. ))
  43795. characterMakers.push(() => makeCharacter(
  43796. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43797. {
  43798. front: {
  43799. height: math.unit(20, "feet"),
  43800. name: "Front",
  43801. image: {
  43802. source: "./media/characters/astra/front.svg",
  43803. extra: 1850/1714,
  43804. bottom: 106/1956
  43805. }
  43806. },
  43807. frontUndressed: {
  43808. height: math.unit(20, "feet"),
  43809. name: "Front (Undressed)",
  43810. image: {
  43811. source: "./media/characters/astra/front-undressed.svg",
  43812. extra: 1926/1749,
  43813. bottom: 0/1926
  43814. }
  43815. },
  43816. hand: {
  43817. height: math.unit(1.53, "feet"),
  43818. name: "Hand",
  43819. image: {
  43820. source: "./media/characters/astra/hand.svg"
  43821. }
  43822. },
  43823. paw: {
  43824. height: math.unit(1.53, "feet"),
  43825. name: "Paw",
  43826. image: {
  43827. source: "./media/characters/astra/paw.svg"
  43828. }
  43829. },
  43830. },
  43831. [
  43832. {
  43833. name: "Smallest",
  43834. height: math.unit(20, "feet")
  43835. },
  43836. {
  43837. name: "Normal",
  43838. height: math.unit(1e9, "miles"),
  43839. default: true
  43840. },
  43841. {
  43842. name: "Larger",
  43843. height: math.unit(5, "multiverses")
  43844. },
  43845. {
  43846. name: "Largest",
  43847. height: math.unit(1e9, "multiverses")
  43848. },
  43849. ]
  43850. ))
  43851. characterMakers.push(() => makeCharacter(
  43852. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43853. {
  43854. front: {
  43855. height: math.unit(8, "feet"),
  43856. name: "Front",
  43857. image: {
  43858. source: "./media/characters/breanna/front.svg",
  43859. extra: 1912/1632,
  43860. bottom: 33/1945
  43861. }
  43862. },
  43863. },
  43864. [
  43865. {
  43866. name: "Smallest",
  43867. height: math.unit(8, "feet")
  43868. },
  43869. {
  43870. name: "Normal",
  43871. height: math.unit(1, "mile"),
  43872. default: true
  43873. },
  43874. {
  43875. name: "Maximum",
  43876. height: math.unit(1500000000000, "lightyears")
  43877. },
  43878. ]
  43879. ))
  43880. characterMakers.push(() => makeCharacter(
  43881. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43882. {
  43883. front: {
  43884. height: math.unit(5 + 11/12, "feet"),
  43885. weight: math.unit(155, "lb"),
  43886. name: "Front",
  43887. image: {
  43888. source: "./media/characters/cai/front.svg",
  43889. extra: 1823/1702,
  43890. bottom: 32/1855
  43891. }
  43892. },
  43893. back: {
  43894. height: math.unit(5 + 11/12, "feet"),
  43895. weight: math.unit(155, "lb"),
  43896. name: "Back",
  43897. image: {
  43898. source: "./media/characters/cai/back.svg",
  43899. extra: 1809/1708,
  43900. bottom: 31/1840
  43901. }
  43902. },
  43903. },
  43904. [
  43905. {
  43906. name: "Normal",
  43907. height: math.unit(5 + 11/12, "feet"),
  43908. default: true
  43909. },
  43910. {
  43911. name: "Big",
  43912. height: math.unit(15, "feet")
  43913. },
  43914. {
  43915. name: "Macro",
  43916. height: math.unit(200, "feet")
  43917. },
  43918. ]
  43919. ))
  43920. characterMakers.push(() => makeCharacter(
  43921. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43922. {
  43923. front: {
  43924. height: math.unit(5 + 6/12, "feet"),
  43925. weight: math.unit(160, "lb"),
  43926. name: "Front",
  43927. image: {
  43928. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43929. extra: 1227/1174,
  43930. bottom: 37/1264
  43931. }
  43932. },
  43933. },
  43934. [
  43935. {
  43936. name: "Macro",
  43937. height: math.unit(444, "meters"),
  43938. default: true
  43939. },
  43940. ]
  43941. ))
  43942. characterMakers.push(() => makeCharacter(
  43943. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43944. {
  43945. front: {
  43946. height: math.unit(18 + 7/12, "feet"),
  43947. name: "Front",
  43948. image: {
  43949. source: "./media/characters/rex/front.svg",
  43950. extra: 1941/1807,
  43951. bottom: 66/2007
  43952. }
  43953. },
  43954. back: {
  43955. height: math.unit(18 + 7/12, "feet"),
  43956. name: "Back",
  43957. image: {
  43958. source: "./media/characters/rex/back.svg",
  43959. extra: 1937/1822,
  43960. bottom: 42/1979
  43961. }
  43962. },
  43963. boot: {
  43964. height: math.unit(3.45, "feet"),
  43965. name: "Boot",
  43966. image: {
  43967. source: "./media/characters/rex/boot.svg"
  43968. }
  43969. },
  43970. paw: {
  43971. height: math.unit(4.17, "feet"),
  43972. name: "Paw",
  43973. image: {
  43974. source: "./media/characters/rex/paw.svg"
  43975. }
  43976. },
  43977. head: {
  43978. height: math.unit(6.728, "feet"),
  43979. name: "Head",
  43980. image: {
  43981. source: "./media/characters/rex/head.svg"
  43982. }
  43983. },
  43984. },
  43985. [
  43986. {
  43987. name: "Nano",
  43988. height: math.unit(18 + 7/12, "feet")
  43989. },
  43990. {
  43991. name: "Micro",
  43992. height: math.unit(1.5, "megameters")
  43993. },
  43994. {
  43995. name: "Normal",
  43996. height: math.unit(440, "megameters"),
  43997. default: true
  43998. },
  43999. {
  44000. name: "Macro",
  44001. height: math.unit(2.5, "gigameters")
  44002. },
  44003. {
  44004. name: "Gigamacro",
  44005. height: math.unit(2, "galaxies")
  44006. },
  44007. ]
  44008. ))
  44009. characterMakers.push(() => makeCharacter(
  44010. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44011. {
  44012. side: {
  44013. height: math.unit(32, "feet"),
  44014. weight: math.unit(250000, "lb"),
  44015. name: "Side",
  44016. image: {
  44017. source: "./media/characters/silverwing/side.svg",
  44018. extra: 1100/1019,
  44019. bottom: 204/1304
  44020. }
  44021. },
  44022. },
  44023. [
  44024. {
  44025. name: "Normal",
  44026. height: math.unit(32, "feet"),
  44027. default: true
  44028. },
  44029. ]
  44030. ))
  44031. characterMakers.push(() => makeCharacter(
  44032. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44033. {
  44034. front: {
  44035. height: math.unit(6 + 6/12, "feet"),
  44036. weight: math.unit(350, "lb"),
  44037. name: "Front",
  44038. image: {
  44039. source: "./media/characters/tristan-hawthorne/front.svg",
  44040. extra: 1159/1124,
  44041. bottom: 37/1196
  44042. },
  44043. form: "labrador",
  44044. default: true
  44045. },
  44046. skunkFront: {
  44047. height: math.unit(4 + 6/12, "feet"),
  44048. weight: math.unit(120, "lb"),
  44049. name: "Front",
  44050. image: {
  44051. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44052. extra: 1609/1551,
  44053. bottom: 169/1778
  44054. },
  44055. form: "skunk",
  44056. default: true
  44057. },
  44058. },
  44059. [
  44060. {
  44061. name: "Normal",
  44062. height: math.unit(6 + 6/12, "feet"),
  44063. form: "labrador",
  44064. default: true
  44065. },
  44066. {
  44067. name: "Normal",
  44068. height: math.unit(4 + 6/12, "feet"),
  44069. form: "skunk",
  44070. default: true
  44071. },
  44072. ],
  44073. {
  44074. "labrador": {
  44075. name: "Labrador",
  44076. default: true
  44077. },
  44078. "skunk": {
  44079. name: "Skunk"
  44080. }
  44081. }
  44082. ))
  44083. characterMakers.push(() => makeCharacter(
  44084. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44085. {
  44086. front: {
  44087. height: math.unit(5 + 11/12, "feet"),
  44088. weight: math.unit(190, "lb"),
  44089. name: "Front",
  44090. image: {
  44091. source: "./media/characters/mizu/front.svg",
  44092. extra: 1988/1788,
  44093. bottom: 14/2002
  44094. }
  44095. },
  44096. },
  44097. [
  44098. {
  44099. name: "Normal",
  44100. height: math.unit(5 + 11/12, "feet"),
  44101. default: true
  44102. },
  44103. ]
  44104. ))
  44105. characterMakers.push(() => makeCharacter(
  44106. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44107. {
  44108. front: {
  44109. height: math.unit(1.7, "feet"),
  44110. weight: math.unit(50, "lb"),
  44111. name: "Front",
  44112. image: {
  44113. source: "./media/characters/dechroma/front.svg",
  44114. extra: 1095/859,
  44115. bottom: 64/1159
  44116. }
  44117. },
  44118. },
  44119. [
  44120. {
  44121. name: "Normal",
  44122. height: math.unit(1.7, "feet"),
  44123. default: true
  44124. },
  44125. ]
  44126. ))
  44127. characterMakers.push(() => makeCharacter(
  44128. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44129. {
  44130. side: {
  44131. height: math.unit(30, "feet"),
  44132. name: "Side",
  44133. image: {
  44134. source: "./media/characters/veluren-thanazel/side.svg",
  44135. extra: 1611/633,
  44136. bottom: 118/1729
  44137. }
  44138. },
  44139. front: {
  44140. height: math.unit(30, "feet"),
  44141. name: "Front",
  44142. image: {
  44143. source: "./media/characters/veluren-thanazel/front.svg",
  44144. extra: 1486/636,
  44145. bottom: 238/1724
  44146. }
  44147. },
  44148. head: {
  44149. height: math.unit(21.4, "feet"),
  44150. name: "Head",
  44151. image: {
  44152. source: "./media/characters/veluren-thanazel/head.svg"
  44153. }
  44154. },
  44155. genitals: {
  44156. height: math.unit(19.4, "feet"),
  44157. name: "Genitals",
  44158. image: {
  44159. source: "./media/characters/veluren-thanazel/genitals.svg"
  44160. }
  44161. },
  44162. },
  44163. [
  44164. {
  44165. name: "Social",
  44166. height: math.unit(6, "feet")
  44167. },
  44168. {
  44169. name: "Play",
  44170. height: math.unit(12, "feet")
  44171. },
  44172. {
  44173. name: "True",
  44174. height: math.unit(30, "feet"),
  44175. default: true
  44176. },
  44177. ]
  44178. ))
  44179. characterMakers.push(() => makeCharacter(
  44180. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44181. {
  44182. front: {
  44183. height: math.unit(7 + 6/12, "feet"),
  44184. weight: math.unit(500, "kg"),
  44185. name: "Front",
  44186. image: {
  44187. source: "./media/characters/arcturas/front.svg",
  44188. extra: 1700/1500,
  44189. bottom: 145/1845
  44190. }
  44191. },
  44192. },
  44193. [
  44194. {
  44195. name: "Normal",
  44196. height: math.unit(7 + 6/12, "feet"),
  44197. default: true
  44198. },
  44199. ]
  44200. ))
  44201. characterMakers.push(() => makeCharacter(
  44202. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44203. {
  44204. side: {
  44205. height: math.unit(6, "feet"),
  44206. weight: math.unit(2, "tons"),
  44207. name: "Side",
  44208. image: {
  44209. source: "./media/characters/vitaen/side.svg",
  44210. extra: 1157/617,
  44211. bottom: 122/1279
  44212. }
  44213. },
  44214. },
  44215. [
  44216. {
  44217. name: "Normal",
  44218. height: math.unit(6, "feet"),
  44219. default: true
  44220. },
  44221. ]
  44222. ))
  44223. characterMakers.push(() => makeCharacter(
  44224. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44225. {
  44226. front: {
  44227. height: math.unit(19, "feet"),
  44228. name: "Front",
  44229. image: {
  44230. source: "./media/characters/fia-dreamweaver/front.svg",
  44231. extra: 1630/1504,
  44232. bottom: 25/1655
  44233. }
  44234. },
  44235. },
  44236. [
  44237. {
  44238. name: "Normal",
  44239. height: math.unit(19, "feet"),
  44240. default: true
  44241. },
  44242. ]
  44243. ))
  44244. characterMakers.push(() => makeCharacter(
  44245. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44246. {
  44247. front: {
  44248. height: math.unit(5 + 4/12, "feet"),
  44249. name: "Front",
  44250. image: {
  44251. source: "./media/characters/artan/front.svg",
  44252. extra: 1618/1535,
  44253. bottom: 46/1664
  44254. }
  44255. },
  44256. back: {
  44257. height: math.unit(5 + 4/12, "feet"),
  44258. name: "Back",
  44259. image: {
  44260. source: "./media/characters/artan/back.svg",
  44261. extra: 1618/1543,
  44262. bottom: 31/1649
  44263. }
  44264. },
  44265. },
  44266. [
  44267. {
  44268. name: "Normal",
  44269. height: math.unit(5 + 4/12, "feet"),
  44270. default: true
  44271. },
  44272. ]
  44273. ))
  44274. characterMakers.push(() => makeCharacter(
  44275. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44276. {
  44277. side: {
  44278. height: math.unit(182, "cm"),
  44279. weight: math.unit(1000, "lb"),
  44280. name: "Side",
  44281. image: {
  44282. source: "./media/characters/silver-dragon/side.svg",
  44283. extra: 710/287,
  44284. bottom: 88/798
  44285. }
  44286. },
  44287. },
  44288. [
  44289. {
  44290. name: "Normal",
  44291. height: math.unit(182, "cm"),
  44292. default: true
  44293. },
  44294. ]
  44295. ))
  44296. characterMakers.push(() => makeCharacter(
  44297. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44298. {
  44299. side: {
  44300. height: math.unit(6 + 6/12, "feet"),
  44301. weight: math.unit(1.5, "tons"),
  44302. name: "Side",
  44303. image: {
  44304. source: "./media/characters/zephyr/side.svg",
  44305. extra: 1433/586,
  44306. bottom: 109/1542
  44307. }
  44308. },
  44309. },
  44310. [
  44311. {
  44312. name: "Normal",
  44313. height: math.unit(6 + 6/12, "feet"),
  44314. default: true
  44315. },
  44316. ]
  44317. ))
  44318. characterMakers.push(() => makeCharacter(
  44319. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44320. {
  44321. side: {
  44322. height: math.unit(1, "feet"),
  44323. name: "Side",
  44324. image: {
  44325. source: "./media/characters/vixye/side.svg",
  44326. extra: 632/541,
  44327. bottom: 0/632
  44328. }
  44329. },
  44330. },
  44331. [
  44332. {
  44333. name: "Normal",
  44334. height: math.unit(1, "feet"),
  44335. default: true
  44336. },
  44337. {
  44338. name: "True",
  44339. height: math.unit(1e15, "multiverses")
  44340. },
  44341. ]
  44342. ))
  44343. characterMakers.push(() => makeCharacter(
  44344. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44345. {
  44346. front: {
  44347. height: math.unit(8 + 2/12, "feet"),
  44348. weight: math.unit(650, "lb"),
  44349. name: "Front",
  44350. image: {
  44351. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44352. extra: 1174/1137,
  44353. bottom: 82/1256
  44354. }
  44355. },
  44356. back: {
  44357. height: math.unit(8 + 2/12, "feet"),
  44358. weight: math.unit(650, "lb"),
  44359. name: "Back",
  44360. image: {
  44361. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44362. extra: 1204/1157,
  44363. bottom: 46/1250
  44364. }
  44365. },
  44366. },
  44367. [
  44368. {
  44369. name: "Wildform",
  44370. height: math.unit(8 + 2/12, "feet"),
  44371. default: true
  44372. },
  44373. ]
  44374. ))
  44375. characterMakers.push(() => makeCharacter(
  44376. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44377. {
  44378. front: {
  44379. height: math.unit(18, "feet"),
  44380. name: "Front",
  44381. image: {
  44382. source: "./media/characters/cyphin/front.svg",
  44383. extra: 970/886,
  44384. bottom: 42/1012
  44385. }
  44386. },
  44387. back: {
  44388. height: math.unit(18, "feet"),
  44389. name: "Back",
  44390. image: {
  44391. source: "./media/characters/cyphin/back.svg",
  44392. extra: 1009/894,
  44393. bottom: 24/1033
  44394. }
  44395. },
  44396. head: {
  44397. height: math.unit(5.05, "feet"),
  44398. name: "Head",
  44399. image: {
  44400. source: "./media/characters/cyphin/head.svg"
  44401. }
  44402. },
  44403. tailbud: {
  44404. height: math.unit(5, "feet"),
  44405. name: "Tailbud",
  44406. image: {
  44407. source: "./media/characters/cyphin/tailbud.svg"
  44408. }
  44409. },
  44410. },
  44411. [
  44412. ]
  44413. ))
  44414. characterMakers.push(() => makeCharacter(
  44415. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44416. {
  44417. side: {
  44418. height: math.unit(10, "feet"),
  44419. weight: math.unit(6, "tons"),
  44420. name: "Side",
  44421. image: {
  44422. source: "./media/characters/raijin/side.svg",
  44423. extra: 1529/613,
  44424. bottom: 337/1866
  44425. }
  44426. },
  44427. },
  44428. [
  44429. {
  44430. name: "Normal",
  44431. height: math.unit(10, "feet"),
  44432. default: true
  44433. },
  44434. ]
  44435. ))
  44436. characterMakers.push(() => makeCharacter(
  44437. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44438. {
  44439. side: {
  44440. height: math.unit(9, "feet"),
  44441. name: "Side",
  44442. image: {
  44443. source: "./media/characters/nilghais/side.svg",
  44444. extra: 1047/744,
  44445. bottom: 91/1138
  44446. }
  44447. },
  44448. head: {
  44449. height: math.unit(3.14, "feet"),
  44450. name: "Head",
  44451. image: {
  44452. source: "./media/characters/nilghais/head.svg"
  44453. }
  44454. },
  44455. mouth: {
  44456. height: math.unit(4.6, "feet"),
  44457. name: "Mouth",
  44458. image: {
  44459. source: "./media/characters/nilghais/mouth.svg"
  44460. }
  44461. },
  44462. wings: {
  44463. height: math.unit(24, "feet"),
  44464. name: "Wings",
  44465. image: {
  44466. source: "./media/characters/nilghais/wings.svg"
  44467. }
  44468. },
  44469. ass: {
  44470. height: math.unit(6.12, "feet"),
  44471. name: "Ass",
  44472. image: {
  44473. source: "./media/characters/nilghais/ass.svg"
  44474. }
  44475. },
  44476. },
  44477. [
  44478. {
  44479. name: "Normal",
  44480. height: math.unit(9, "feet"),
  44481. default: true
  44482. },
  44483. ]
  44484. ))
  44485. characterMakers.push(() => makeCharacter(
  44486. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44487. {
  44488. regular: {
  44489. height: math.unit(16 + 2/12, "feet"),
  44490. weight: math.unit(2300, "lb"),
  44491. name: "Regular",
  44492. image: {
  44493. source: "./media/characters/zolgar/regular.svg",
  44494. extra: 1246/1004,
  44495. bottom: 124/1370
  44496. }
  44497. },
  44498. boxers: {
  44499. height: math.unit(16 + 2/12, "feet"),
  44500. weight: math.unit(2300, "lb"),
  44501. name: "Boxers",
  44502. image: {
  44503. source: "./media/characters/zolgar/boxers.svg",
  44504. extra: 1246/1004,
  44505. bottom: 124/1370
  44506. }
  44507. },
  44508. armored: {
  44509. height: math.unit(16 + 2/12, "feet"),
  44510. weight: math.unit(2300, "lb"),
  44511. name: "Armored",
  44512. image: {
  44513. source: "./media/characters/zolgar/armored.svg",
  44514. extra: 1246/1004,
  44515. bottom: 124/1370
  44516. }
  44517. },
  44518. goth: {
  44519. height: math.unit(16 + 2/12, "feet"),
  44520. weight: math.unit(2300, "lb"),
  44521. name: "Goth",
  44522. image: {
  44523. source: "./media/characters/zolgar/goth.svg",
  44524. extra: 1246/1004,
  44525. bottom: 124/1370
  44526. }
  44527. },
  44528. },
  44529. [
  44530. {
  44531. name: "Shrunken Down",
  44532. height: math.unit(9 + 2/12, "feet")
  44533. },
  44534. {
  44535. name: "Normal",
  44536. height: math.unit(16 + 2/12, "feet"),
  44537. default: true
  44538. },
  44539. ]
  44540. ))
  44541. characterMakers.push(() => makeCharacter(
  44542. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44543. {
  44544. front: {
  44545. height: math.unit(6, "feet"),
  44546. weight: math.unit(168, "lb"),
  44547. name: "Front",
  44548. image: {
  44549. source: "./media/characters/luca/front.svg",
  44550. extra: 841/667,
  44551. bottom: 102/943
  44552. }
  44553. },
  44554. },
  44555. [
  44556. {
  44557. name: "Normal",
  44558. height: math.unit(6, "feet"),
  44559. default: true
  44560. },
  44561. ]
  44562. ))
  44563. characterMakers.push(() => makeCharacter(
  44564. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44565. {
  44566. side: {
  44567. height: math.unit(7 + 3/12, "feet"),
  44568. weight: math.unit(312, "lb"),
  44569. name: "Side",
  44570. image: {
  44571. source: "./media/characters/zezo/side.svg",
  44572. extra: 1192/1067,
  44573. bottom: 63/1255
  44574. }
  44575. },
  44576. },
  44577. [
  44578. {
  44579. name: "Normal",
  44580. height: math.unit(7 + 3/12, "feet"),
  44581. default: true
  44582. },
  44583. ]
  44584. ))
  44585. characterMakers.push(() => makeCharacter(
  44586. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44587. {
  44588. front: {
  44589. height: math.unit(5 + 5/12, "feet"),
  44590. weight: math.unit(170, "lb"),
  44591. name: "Front",
  44592. image: {
  44593. source: "./media/characters/mayso/front.svg",
  44594. extra: 1215/1108,
  44595. bottom: 16/1231
  44596. }
  44597. },
  44598. },
  44599. [
  44600. {
  44601. name: "Normal",
  44602. height: math.unit(5 + 5/12, "feet"),
  44603. default: true
  44604. },
  44605. ]
  44606. ))
  44607. characterMakers.push(() => makeCharacter(
  44608. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44609. {
  44610. front: {
  44611. height: math.unit(4 + 3/12, "feet"),
  44612. weight: math.unit(80, "lb"),
  44613. name: "Front",
  44614. image: {
  44615. source: "./media/characters/hess/front.svg",
  44616. extra: 1200/1123,
  44617. bottom: 16/1216
  44618. }
  44619. },
  44620. },
  44621. [
  44622. {
  44623. name: "Normal",
  44624. height: math.unit(4 + 3/12, "feet"),
  44625. default: true
  44626. },
  44627. ]
  44628. ))
  44629. characterMakers.push(() => makeCharacter(
  44630. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44631. {
  44632. front: {
  44633. height: math.unit(1.9, "meters"),
  44634. name: "Front",
  44635. image: {
  44636. source: "./media/characters/ashgar/front.svg",
  44637. extra: 1177/1146,
  44638. bottom: 99/1276
  44639. }
  44640. },
  44641. back: {
  44642. height: math.unit(1.9, "meters"),
  44643. name: "Back",
  44644. image: {
  44645. source: "./media/characters/ashgar/back.svg",
  44646. extra: 1201/1183,
  44647. bottom: 53/1254
  44648. }
  44649. },
  44650. feral: {
  44651. height: math.unit(1.4, "meters"),
  44652. name: "Feral",
  44653. image: {
  44654. source: "./media/characters/ashgar/feral.svg",
  44655. extra: 370/345,
  44656. bottom: 45/415
  44657. }
  44658. },
  44659. },
  44660. [
  44661. {
  44662. name: "Normal",
  44663. height: math.unit(1.9, "meters"),
  44664. default: true
  44665. },
  44666. ]
  44667. ))
  44668. characterMakers.push(() => makeCharacter(
  44669. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44670. {
  44671. regular: {
  44672. height: math.unit(6, "feet"),
  44673. weight: math.unit(220, "lb"),
  44674. name: "Regular",
  44675. image: {
  44676. source: "./media/characters/phillip/regular.svg",
  44677. extra: 1373/1277,
  44678. bottom: 75/1448
  44679. }
  44680. },
  44681. dressed: {
  44682. height: math.unit(6, "feet"),
  44683. weight: math.unit(220, "lb"),
  44684. name: "Dressed",
  44685. image: {
  44686. source: "./media/characters/phillip/dressed.svg",
  44687. extra: 1373/1277,
  44688. bottom: 75/1448
  44689. }
  44690. },
  44691. paw: {
  44692. height: math.unit(1.44, "feet"),
  44693. name: "Paw",
  44694. image: {
  44695. source: "./media/characters/phillip/paw.svg"
  44696. }
  44697. },
  44698. },
  44699. [
  44700. {
  44701. name: "Normal",
  44702. height: math.unit(6, "feet"),
  44703. default: true
  44704. },
  44705. ]
  44706. ))
  44707. characterMakers.push(() => makeCharacter(
  44708. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44709. {
  44710. side: {
  44711. height: math.unit(42, "feet"),
  44712. name: "Side",
  44713. image: {
  44714. source: "./media/characters/uvula/side.svg",
  44715. extra: 683/586,
  44716. bottom: 60/743
  44717. }
  44718. },
  44719. front: {
  44720. height: math.unit(42, "feet"),
  44721. name: "Front",
  44722. image: {
  44723. source: "./media/characters/uvula/front.svg",
  44724. extra: 705/613,
  44725. bottom: 54/759
  44726. }
  44727. },
  44728. maw: {
  44729. height: math.unit(23.5, "feet"),
  44730. name: "Maw",
  44731. image: {
  44732. source: "./media/characters/uvula/maw.svg"
  44733. }
  44734. },
  44735. },
  44736. [
  44737. {
  44738. name: "Original Size",
  44739. height: math.unit(14, "inches")
  44740. },
  44741. {
  44742. name: "Human Size",
  44743. height: math.unit(6, "feet")
  44744. },
  44745. {
  44746. name: "Big",
  44747. height: math.unit(42, "feet"),
  44748. default: true
  44749. },
  44750. {
  44751. name: "Bigger",
  44752. height: math.unit(100, "feet")
  44753. },
  44754. ]
  44755. ))
  44756. characterMakers.push(() => makeCharacter(
  44757. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44758. {
  44759. front: {
  44760. height: math.unit(5 + 11/12, "feet"),
  44761. name: "Front",
  44762. image: {
  44763. source: "./media/characters/lannah/front.svg",
  44764. extra: 1208/1113,
  44765. bottom: 97/1305
  44766. }
  44767. },
  44768. },
  44769. [
  44770. {
  44771. name: "Normal",
  44772. height: math.unit(5 + 11/12, "feet"),
  44773. default: true
  44774. },
  44775. ]
  44776. ))
  44777. characterMakers.push(() => makeCharacter(
  44778. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44779. {
  44780. front: {
  44781. height: math.unit(6 + 3/12, "feet"),
  44782. weight: math.unit(3.5, "tons"),
  44783. name: "Front",
  44784. image: {
  44785. source: "./media/characters/emberflame/front.svg",
  44786. extra: 1198/672,
  44787. bottom: 82/1280
  44788. }
  44789. },
  44790. side: {
  44791. height: math.unit(6 + 3/12, "feet"),
  44792. weight: math.unit(3.5, "tons"),
  44793. name: "Side",
  44794. image: {
  44795. source: "./media/characters/emberflame/side.svg",
  44796. extra: 938/527,
  44797. bottom: 56/994
  44798. }
  44799. },
  44800. },
  44801. [
  44802. {
  44803. name: "Normal",
  44804. height: math.unit(6 + 3/12, "feet"),
  44805. default: true
  44806. },
  44807. ]
  44808. ))
  44809. characterMakers.push(() => makeCharacter(
  44810. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44811. {
  44812. side: {
  44813. height: math.unit(17.5, "feet"),
  44814. weight: math.unit(35, "tons"),
  44815. name: "Side",
  44816. image: {
  44817. source: "./media/characters/sophie-ambrose/side.svg",
  44818. extra: 1573/1242,
  44819. bottom: 71/1644
  44820. }
  44821. },
  44822. maw: {
  44823. height: math.unit(7.4, "feet"),
  44824. name: "Maw",
  44825. image: {
  44826. source: "./media/characters/sophie-ambrose/maw.svg"
  44827. }
  44828. },
  44829. },
  44830. [
  44831. {
  44832. name: "Normal",
  44833. height: math.unit(17.5, "feet"),
  44834. default: true
  44835. },
  44836. ]
  44837. ))
  44838. characterMakers.push(() => makeCharacter(
  44839. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44840. {
  44841. front: {
  44842. height: math.unit(280, "feet"),
  44843. weight: math.unit(550, "tons"),
  44844. name: "Front",
  44845. image: {
  44846. source: "./media/characters/king-mugi/front.svg",
  44847. extra: 1102/947,
  44848. bottom: 104/1206
  44849. }
  44850. },
  44851. },
  44852. [
  44853. {
  44854. name: "King Mugi",
  44855. height: math.unit(280, "feet"),
  44856. default: true
  44857. },
  44858. ]
  44859. ))
  44860. characterMakers.push(() => makeCharacter(
  44861. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44862. {
  44863. front: {
  44864. height: math.unit(64, "meters"),
  44865. name: "Front",
  44866. image: {
  44867. source: "./media/characters/nova-fox/front.svg",
  44868. extra: 1310/1246,
  44869. bottom: 65/1375
  44870. }
  44871. },
  44872. },
  44873. [
  44874. {
  44875. name: "Macro",
  44876. height: math.unit(64, "meters"),
  44877. default: true
  44878. },
  44879. ]
  44880. ))
  44881. characterMakers.push(() => makeCharacter(
  44882. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44883. {
  44884. front: {
  44885. height: math.unit(6 + 3/12, "feet"),
  44886. weight: math.unit(170, "lb"),
  44887. name: "Front",
  44888. image: {
  44889. source: "./media/characters/sam-bat/front.svg",
  44890. extra: 1601/1411,
  44891. bottom: 125/1726
  44892. }
  44893. },
  44894. back: {
  44895. height: math.unit(6 + 3/12, "feet"),
  44896. weight: math.unit(170, "lb"),
  44897. name: "Back",
  44898. image: {
  44899. source: "./media/characters/sam-bat/back.svg",
  44900. extra: 1577/1405,
  44901. bottom: 58/1635
  44902. }
  44903. },
  44904. },
  44905. [
  44906. {
  44907. name: "Normal",
  44908. height: math.unit(6 + 3/12, "feet"),
  44909. default: true
  44910. },
  44911. ]
  44912. ))
  44913. characterMakers.push(() => makeCharacter(
  44914. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44915. {
  44916. front: {
  44917. height: math.unit(59, "feet"),
  44918. weight: math.unit(40000, "lb"),
  44919. name: "Front",
  44920. image: {
  44921. source: "./media/characters/inari/front.svg",
  44922. extra: 1884/1350,
  44923. bottom: 95/1979
  44924. }
  44925. },
  44926. },
  44927. [
  44928. {
  44929. name: "Gigantamax",
  44930. height: math.unit(59, "feet"),
  44931. default: true
  44932. },
  44933. ]
  44934. ))
  44935. characterMakers.push(() => makeCharacter(
  44936. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44937. {
  44938. front: {
  44939. height: math.unit(5 + 8/12, "feet"),
  44940. name: "Front",
  44941. image: {
  44942. source: "./media/characters/elizabeth/front.svg",
  44943. extra: 1395/1298,
  44944. bottom: 54/1449
  44945. }
  44946. },
  44947. mouth: {
  44948. height: math.unit(1.97, "feet"),
  44949. name: "Mouth",
  44950. image: {
  44951. source: "./media/characters/elizabeth/mouth.svg"
  44952. }
  44953. },
  44954. foot: {
  44955. height: math.unit(1.17, "feet"),
  44956. name: "Foot",
  44957. image: {
  44958. source: "./media/characters/elizabeth/foot.svg"
  44959. }
  44960. },
  44961. },
  44962. [
  44963. {
  44964. name: "Normal",
  44965. height: math.unit(5 + 8/12, "feet"),
  44966. default: true
  44967. },
  44968. {
  44969. name: "Minimacro",
  44970. height: math.unit(18, "feet")
  44971. },
  44972. {
  44973. name: "Macro",
  44974. height: math.unit(180, "feet")
  44975. },
  44976. ]
  44977. ))
  44978. characterMakers.push(() => makeCharacter(
  44979. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44980. {
  44981. front: {
  44982. height: math.unit(5 + 2/12, "feet"),
  44983. name: "Front",
  44984. image: {
  44985. source: "./media/characters/october-gossamer/front.svg",
  44986. extra: 505/454,
  44987. bottom: 7/512
  44988. }
  44989. },
  44990. back: {
  44991. height: math.unit(5 + 2/12, "feet"),
  44992. name: "Back",
  44993. image: {
  44994. source: "./media/characters/october-gossamer/back.svg",
  44995. extra: 501/454,
  44996. bottom: 11/512
  44997. }
  44998. },
  44999. },
  45000. [
  45001. {
  45002. name: "Normal",
  45003. height: math.unit(5 + 2/12, "feet"),
  45004. default: true
  45005. },
  45006. ]
  45007. ))
  45008. characterMakers.push(() => makeCharacter(
  45009. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45010. {
  45011. front: {
  45012. height: math.unit(5, "feet"),
  45013. name: "Front",
  45014. image: {
  45015. source: "./media/characters/epiglottis/front.svg",
  45016. extra: 923/849,
  45017. bottom: 17/940
  45018. }
  45019. },
  45020. },
  45021. [
  45022. {
  45023. name: "Original Size",
  45024. height: math.unit(10, "inches")
  45025. },
  45026. {
  45027. name: "Human Size",
  45028. height: math.unit(5, "feet"),
  45029. default: true
  45030. },
  45031. {
  45032. name: "Big",
  45033. height: math.unit(25, "feet")
  45034. },
  45035. {
  45036. name: "Bigger",
  45037. height: math.unit(50, "feet")
  45038. },
  45039. {
  45040. name: "oh lawd",
  45041. height: math.unit(75, "feet")
  45042. },
  45043. ]
  45044. ))
  45045. characterMakers.push(() => makeCharacter(
  45046. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45047. {
  45048. front: {
  45049. height: math.unit(2 + 4/12, "feet"),
  45050. weight: math.unit(60, "lb"),
  45051. name: "Front",
  45052. image: {
  45053. source: "./media/characters/lerm/front.svg",
  45054. extra: 796/790,
  45055. bottom: 79/875
  45056. }
  45057. },
  45058. },
  45059. [
  45060. {
  45061. name: "Normal",
  45062. height: math.unit(2 + 4/12, "feet"),
  45063. default: true
  45064. },
  45065. ]
  45066. ))
  45067. characterMakers.push(() => makeCharacter(
  45068. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45069. {
  45070. front: {
  45071. height: math.unit(5.5, "feet"),
  45072. weight: math.unit(130, "lb"),
  45073. name: "Front",
  45074. image: {
  45075. source: "./media/characters/xena-nebadon/front.svg",
  45076. extra: 1828/1730,
  45077. bottom: 79/1907
  45078. }
  45079. },
  45080. },
  45081. [
  45082. {
  45083. name: "Tiny Puppy",
  45084. height: math.unit(3, "inches")
  45085. },
  45086. {
  45087. name: "Normal",
  45088. height: math.unit(5.5, "feet"),
  45089. default: true
  45090. },
  45091. {
  45092. name: "Lotta Lady",
  45093. height: math.unit(12, "feet")
  45094. },
  45095. {
  45096. name: "Pretty Big",
  45097. height: math.unit(100, "feet")
  45098. },
  45099. {
  45100. name: "Big",
  45101. height: math.unit(500, "feet")
  45102. },
  45103. {
  45104. name: "Skyscraper Toys",
  45105. height: math.unit(2500, "feet")
  45106. },
  45107. {
  45108. name: "Plane Catcher",
  45109. height: math.unit(8, "miles")
  45110. },
  45111. {
  45112. name: "Planet Toys",
  45113. height: math.unit(15, "earths")
  45114. },
  45115. {
  45116. name: "Stardust",
  45117. height: math.unit(0.25, "galaxies")
  45118. },
  45119. {
  45120. name: "Snacks",
  45121. height: math.unit(70, "universes")
  45122. },
  45123. ]
  45124. ))
  45125. characterMakers.push(() => makeCharacter(
  45126. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45127. {
  45128. front: {
  45129. height: math.unit(1.6, "meters"),
  45130. weight: math.unit(60, "kg"),
  45131. name: "Front",
  45132. image: {
  45133. source: "./media/characters/bounty/front.svg",
  45134. extra: 1426/1308,
  45135. bottom: 15/1441
  45136. }
  45137. },
  45138. back: {
  45139. height: math.unit(1.6, "meters"),
  45140. weight: math.unit(60, "kg"),
  45141. name: "Back",
  45142. image: {
  45143. source: "./media/characters/bounty/back.svg",
  45144. extra: 1417/1307,
  45145. bottom: 8/1425
  45146. }
  45147. },
  45148. },
  45149. [
  45150. {
  45151. name: "Normal",
  45152. height: math.unit(1.6, "meters"),
  45153. default: true
  45154. },
  45155. {
  45156. name: "Macro",
  45157. height: math.unit(300, "meters")
  45158. },
  45159. ]
  45160. ))
  45161. characterMakers.push(() => makeCharacter(
  45162. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45163. {
  45164. front: {
  45165. height: math.unit(2 + 8/12, "feet"),
  45166. weight: math.unit(15, "lb"),
  45167. name: "Front",
  45168. image: {
  45169. source: "./media/characters/mochi/front.svg",
  45170. extra: 1022/852,
  45171. bottom: 435/1457
  45172. }
  45173. },
  45174. back: {
  45175. height: math.unit(2 + 8/12, "feet"),
  45176. weight: math.unit(15, "lb"),
  45177. name: "Back",
  45178. image: {
  45179. source: "./media/characters/mochi/back.svg",
  45180. extra: 1335/1119,
  45181. bottom: 39/1374
  45182. }
  45183. },
  45184. bird: {
  45185. height: math.unit(2 + 8/12, "feet"),
  45186. weight: math.unit(15, "lb"),
  45187. name: "Bird",
  45188. image: {
  45189. source: "./media/characters/mochi/bird.svg",
  45190. extra: 1251/1113,
  45191. bottom: 178/1429
  45192. }
  45193. },
  45194. kaiju: {
  45195. height: math.unit(154, "feet"),
  45196. weight: math.unit(1e7, "lb"),
  45197. name: "Kaiju",
  45198. image: {
  45199. source: "./media/characters/mochi/kaiju.svg",
  45200. extra: 460/324,
  45201. bottom: 40/500
  45202. }
  45203. },
  45204. head: {
  45205. height: math.unit(1.21, "feet"),
  45206. name: "Head",
  45207. image: {
  45208. source: "./media/characters/mochi/head.svg"
  45209. }
  45210. },
  45211. alternateTail: {
  45212. height: math.unit(2 + 8/12, "feet"),
  45213. weight: math.unit(45, "lb"),
  45214. name: "Alternate Tail",
  45215. image: {
  45216. source: "./media/characters/mochi/alternate-tail.svg",
  45217. extra: 139/76,
  45218. bottom: 45/184
  45219. }
  45220. },
  45221. },
  45222. [
  45223. {
  45224. name: "Micro",
  45225. height: math.unit(2, "inches")
  45226. },
  45227. {
  45228. name: "Normal",
  45229. height: math.unit(2 + 8/12, "feet"),
  45230. default: true
  45231. },
  45232. {
  45233. name: "Macro",
  45234. height: math.unit(106, "feet")
  45235. },
  45236. ]
  45237. ))
  45238. characterMakers.push(() => makeCharacter(
  45239. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45240. {
  45241. front: {
  45242. height: math.unit(5.67, "feet"),
  45243. weight: math.unit(135, "lb"),
  45244. name: "Front",
  45245. image: {
  45246. source: "./media/characters/sarel/front.svg",
  45247. extra: 865/788,
  45248. bottom: 97/962
  45249. }
  45250. },
  45251. back: {
  45252. height: math.unit(5.67, "feet"),
  45253. weight: math.unit(135, "lb"),
  45254. name: "Back",
  45255. image: {
  45256. source: "./media/characters/sarel/back.svg",
  45257. extra: 857/777,
  45258. bottom: 32/889
  45259. }
  45260. },
  45261. chozoan: {
  45262. height: math.unit(5.67, "feet"),
  45263. weight: math.unit(135, "lb"),
  45264. name: "Chozoan",
  45265. image: {
  45266. source: "./media/characters/sarel/chozoan.svg",
  45267. extra: 865/788,
  45268. bottom: 97/962
  45269. }
  45270. },
  45271. current: {
  45272. height: math.unit(5.67, "feet"),
  45273. weight: math.unit(135, "lb"),
  45274. name: "Current",
  45275. image: {
  45276. source: "./media/characters/sarel/current.svg",
  45277. extra: 865/788,
  45278. bottom: 97/962
  45279. }
  45280. },
  45281. head: {
  45282. height: math.unit(1.77, "feet"),
  45283. name: "Head",
  45284. image: {
  45285. source: "./media/characters/sarel/head.svg"
  45286. }
  45287. },
  45288. claws: {
  45289. height: math.unit(1.8, "feet"),
  45290. name: "Claws",
  45291. image: {
  45292. source: "./media/characters/sarel/claws.svg"
  45293. }
  45294. },
  45295. clawsAlt: {
  45296. height: math.unit(1.8, "feet"),
  45297. name: "Claws-alt",
  45298. image: {
  45299. source: "./media/characters/sarel/claws-alt.svg"
  45300. }
  45301. },
  45302. },
  45303. [
  45304. {
  45305. name: "Normal",
  45306. height: math.unit(5.67, "feet"),
  45307. default: true
  45308. },
  45309. ]
  45310. ))
  45311. characterMakers.push(() => makeCharacter(
  45312. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45313. {
  45314. front: {
  45315. height: math.unit(5500, "feet"),
  45316. name: "Front",
  45317. image: {
  45318. source: "./media/characters/alyonia/front.svg",
  45319. extra: 1200/1135,
  45320. bottom: 29/1229
  45321. }
  45322. },
  45323. back: {
  45324. height: math.unit(5500, "feet"),
  45325. name: "Back",
  45326. image: {
  45327. source: "./media/characters/alyonia/back.svg",
  45328. extra: 1205/1138,
  45329. bottom: 10/1215
  45330. }
  45331. },
  45332. },
  45333. [
  45334. {
  45335. name: "Small",
  45336. height: math.unit(10, "feet")
  45337. },
  45338. {
  45339. name: "Macro",
  45340. height: math.unit(500, "feet")
  45341. },
  45342. {
  45343. name: "Mega Macro",
  45344. height: math.unit(5500, "feet"),
  45345. default: true
  45346. },
  45347. {
  45348. name: "Mega Macro+",
  45349. height: math.unit(500000, "feet")
  45350. },
  45351. {
  45352. name: "Giga Macro",
  45353. height: math.unit(3000, "miles")
  45354. },
  45355. {
  45356. name: "Tera Macro",
  45357. height: math.unit(2.8e6, "miles")
  45358. },
  45359. {
  45360. name: "Galactic",
  45361. height: math.unit(120000, "lightyears")
  45362. },
  45363. ]
  45364. ))
  45365. characterMakers.push(() => makeCharacter(
  45366. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45367. {
  45368. werewolf: {
  45369. height: math.unit(8, "feet"),
  45370. weight: math.unit(425, "lb"),
  45371. name: "Werewolf",
  45372. image: {
  45373. source: "./media/characters/autumn/werewolf.svg",
  45374. extra: 2154/2031,
  45375. bottom: 160/2314
  45376. }
  45377. },
  45378. human: {
  45379. height: math.unit(5 + 8/12, "feet"),
  45380. weight: math.unit(150, "lb"),
  45381. name: "Human",
  45382. image: {
  45383. source: "./media/characters/autumn/human.svg",
  45384. extra: 1200/1149,
  45385. bottom: 30/1230
  45386. }
  45387. },
  45388. },
  45389. [
  45390. {
  45391. name: "Normal",
  45392. height: math.unit(8, "feet"),
  45393. default: true
  45394. },
  45395. ]
  45396. ))
  45397. characterMakers.push(() => makeCharacter(
  45398. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45399. {
  45400. front: {
  45401. height: math.unit(8 + 5/12, "feet"),
  45402. weight: math.unit(825, "lb"),
  45403. name: "Front",
  45404. image: {
  45405. source: "./media/characters/cobalt-charizard/front.svg",
  45406. extra: 1268/1155,
  45407. bottom: 122/1390
  45408. }
  45409. },
  45410. side: {
  45411. height: math.unit(8 + 5/12, "feet"),
  45412. weight: math.unit(825, "lb"),
  45413. name: "Side",
  45414. image: {
  45415. source: "./media/characters/cobalt-charizard/side.svg",
  45416. extra: 1348/1257,
  45417. bottom: 58/1406
  45418. }
  45419. },
  45420. gMax: {
  45421. height: math.unit(134 + 11/12, "feet"),
  45422. name: "G-Max",
  45423. image: {
  45424. source: "./media/characters/cobalt-charizard/g-max.svg",
  45425. extra: 1835/1541,
  45426. bottom: 151/1986
  45427. }
  45428. },
  45429. },
  45430. [
  45431. {
  45432. name: "Normal",
  45433. height: math.unit(8 + 5/12, "feet"),
  45434. default: true
  45435. },
  45436. ]
  45437. ))
  45438. characterMakers.push(() => makeCharacter(
  45439. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45440. {
  45441. front: {
  45442. height: math.unit(6 + 3/12, "feet"),
  45443. weight: math.unit(210, "lb"),
  45444. name: "Front",
  45445. image: {
  45446. source: "./media/characters/stella/front.svg",
  45447. extra: 3549/3335,
  45448. bottom: 51/3600
  45449. }
  45450. },
  45451. },
  45452. [
  45453. {
  45454. name: "Normal",
  45455. height: math.unit(6 + 3/12, "feet"),
  45456. default: true
  45457. },
  45458. ]
  45459. ))
  45460. characterMakers.push(() => makeCharacter(
  45461. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45462. {
  45463. front: {
  45464. height: math.unit(5, "feet"),
  45465. weight: math.unit(90, "lb"),
  45466. name: "Front",
  45467. image: {
  45468. source: "./media/characters/riley-bishop/front.svg",
  45469. extra: 1450/1428,
  45470. bottom: 152/1602
  45471. }
  45472. },
  45473. },
  45474. [
  45475. {
  45476. name: "Normal",
  45477. height: math.unit(5, "feet"),
  45478. default: true
  45479. },
  45480. ]
  45481. ))
  45482. characterMakers.push(() => makeCharacter(
  45483. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45484. {
  45485. side: {
  45486. height: math.unit(8 + 2/12, "feet"),
  45487. weight: math.unit(500, "kg"),
  45488. name: "Side",
  45489. image: {
  45490. source: "./media/characters/theo-arcanine/side.svg",
  45491. extra: 1342/1074,
  45492. bottom: 111/1453
  45493. }
  45494. },
  45495. },
  45496. [
  45497. {
  45498. name: "Normal",
  45499. height: math.unit(8 + 2/12, "feet"),
  45500. default: true
  45501. },
  45502. ]
  45503. ))
  45504. characterMakers.push(() => makeCharacter(
  45505. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45506. {
  45507. front: {
  45508. height: math.unit(4, "feet"),
  45509. name: "Front",
  45510. image: {
  45511. source: "./media/characters/kali/front.svg",
  45512. extra: 1074/867,
  45513. bottom: 34/1108
  45514. }
  45515. },
  45516. back: {
  45517. height: math.unit(4, "feet"),
  45518. name: "Back",
  45519. image: {
  45520. source: "./media/characters/kali/back.svg",
  45521. extra: 1068/863,
  45522. bottom: 26/1094
  45523. }
  45524. },
  45525. frontAlt: {
  45526. height: math.unit(4, "feet"),
  45527. name: "Front (Alt)",
  45528. image: {
  45529. source: "./media/characters/kali/front-alt.svg",
  45530. extra: 1921/1357,
  45531. bottom: 70/1991
  45532. }
  45533. },
  45534. },
  45535. [
  45536. {
  45537. name: "Normal",
  45538. height: math.unit(4, "feet"),
  45539. default: true
  45540. },
  45541. {
  45542. name: "Big'vali",
  45543. height: math.unit(11, "feet")
  45544. },
  45545. {
  45546. name: "Macro",
  45547. height: math.unit(32, "meters")
  45548. },
  45549. {
  45550. name: "Macro+",
  45551. height: math.unit(150, "meters")
  45552. },
  45553. {
  45554. name: "Megamacro",
  45555. height: math.unit(7500, "meters")
  45556. },
  45557. {
  45558. name: "Megamacro+",
  45559. height: math.unit(80, "kilometers")
  45560. },
  45561. ]
  45562. ))
  45563. characterMakers.push(() => makeCharacter(
  45564. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45565. {
  45566. side: {
  45567. height: math.unit(5 + 11/12, "feet"),
  45568. weight: math.unit(236, "lb"),
  45569. name: "Side",
  45570. image: {
  45571. source: "./media/characters/gapp/side.svg",
  45572. extra: 775/340,
  45573. bottom: 58/833
  45574. }
  45575. },
  45576. mouth: {
  45577. height: math.unit(2.98, "feet"),
  45578. name: "Mouth",
  45579. image: {
  45580. source: "./media/characters/gapp/mouth.svg"
  45581. }
  45582. },
  45583. },
  45584. [
  45585. {
  45586. name: "Normal",
  45587. height: math.unit(5 + 1/12, "feet"),
  45588. default: true
  45589. },
  45590. ]
  45591. ))
  45592. characterMakers.push(() => makeCharacter(
  45593. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45594. {
  45595. front: {
  45596. height: math.unit(6, "feet"),
  45597. name: "Front",
  45598. image: {
  45599. source: "./media/characters/persephone/front.svg",
  45600. extra: 1895/1717,
  45601. bottom: 96/1991
  45602. }
  45603. },
  45604. back: {
  45605. height: math.unit(6, "feet"),
  45606. name: "Back",
  45607. image: {
  45608. source: "./media/characters/persephone/back.svg",
  45609. extra: 1868/1679,
  45610. bottom: 26/1894
  45611. }
  45612. },
  45613. casual: {
  45614. height: math.unit(6, "feet"),
  45615. name: "Casual",
  45616. image: {
  45617. source: "./media/characters/persephone/casual.svg",
  45618. extra: 1713/1541,
  45619. bottom: 76/1789
  45620. }
  45621. },
  45622. gaming: {
  45623. height: math.unit(3.55, "feet"),
  45624. name: "Gaming",
  45625. image: {
  45626. source: "./media/characters/persephone/gaming.svg",
  45627. extra: 1242/1038,
  45628. bottom: 66/1308
  45629. }
  45630. },
  45631. head: {
  45632. height: math.unit(2.15, "feet"),
  45633. name: "😐",
  45634. image: {
  45635. source: "./media/characters/persephone/head.svg"
  45636. }
  45637. },
  45638. talking: {
  45639. height: math.unit(2.5, "feet"),
  45640. name: "💬",
  45641. image: {
  45642. source: "./media/characters/persephone/talking.svg"
  45643. }
  45644. },
  45645. hmm: {
  45646. height: math.unit(2.28, "feet"),
  45647. name: "🤨",
  45648. image: {
  45649. source: "./media/characters/persephone/hmm.svg"
  45650. }
  45651. },
  45652. },
  45653. [
  45654. {
  45655. name: "Human Size",
  45656. height: math.unit(6, "feet")
  45657. },
  45658. {
  45659. name: "Big Steppy",
  45660. height: math.unit(600, "meters"),
  45661. default: true
  45662. },
  45663. {
  45664. name: "Galaxy Brain",
  45665. height: math.unit(1, "zettameter")
  45666. },
  45667. ]
  45668. ))
  45669. characterMakers.push(() => makeCharacter(
  45670. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45671. {
  45672. front: {
  45673. height: math.unit(1.85, "meters"),
  45674. name: "Front",
  45675. image: {
  45676. source: "./media/characters/riley-foxthing/front.svg",
  45677. extra: 1495/1354,
  45678. bottom: 122/1617
  45679. }
  45680. },
  45681. frontAlt: {
  45682. height: math.unit(1.85, "meters"),
  45683. name: "Front (Alt)",
  45684. image: {
  45685. source: "./media/characters/riley-foxthing/front-alt.svg",
  45686. extra: 1572/1389,
  45687. bottom: 116/1688
  45688. }
  45689. },
  45690. },
  45691. [
  45692. {
  45693. name: "Normal Sized",
  45694. height: math.unit(1.85, "meters"),
  45695. default: true
  45696. },
  45697. {
  45698. name: "Quite Sizable",
  45699. height: math.unit(5, "meters")
  45700. },
  45701. {
  45702. name: "Rather Large",
  45703. height: math.unit(20, "meters")
  45704. },
  45705. {
  45706. name: "Macro",
  45707. height: math.unit(450, "meters")
  45708. },
  45709. {
  45710. name: "Giga",
  45711. height: math.unit(5, "km")
  45712. },
  45713. ]
  45714. ))
  45715. characterMakers.push(() => makeCharacter(
  45716. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45717. {
  45718. front: {
  45719. height: math.unit(6, "feet"),
  45720. weight: math.unit(200, "lb"),
  45721. name: "Front",
  45722. image: {
  45723. source: "./media/characters/blizzard/front.svg",
  45724. extra: 1136/990,
  45725. bottom: 136/1272
  45726. }
  45727. },
  45728. back: {
  45729. height: math.unit(6, "feet"),
  45730. weight: math.unit(200, "lb"),
  45731. name: "Back",
  45732. image: {
  45733. source: "./media/characters/blizzard/back.svg",
  45734. extra: 1175/1034,
  45735. bottom: 97/1272
  45736. }
  45737. },
  45738. sitting: {
  45739. height: math.unit(3.725, "feet"),
  45740. weight: math.unit(200, "lb"),
  45741. name: "Sitting",
  45742. image: {
  45743. source: "./media/characters/blizzard/sitting.svg",
  45744. extra: 581/485,
  45745. bottom: 90/671
  45746. }
  45747. },
  45748. frontWizard: {
  45749. height: math.unit(7.9, "feet"),
  45750. weight: math.unit(200, "lb"),
  45751. name: "Front (Wizard)",
  45752. image: {
  45753. source: "./media/characters/blizzard/front-wizard.svg"
  45754. }
  45755. },
  45756. backWizard: {
  45757. height: math.unit(7.9, "feet"),
  45758. weight: math.unit(200, "lb"),
  45759. name: "Back (Wizard)",
  45760. image: {
  45761. source: "./media/characters/blizzard/back-wizard.svg"
  45762. }
  45763. },
  45764. frontNsfw: {
  45765. height: math.unit(6, "feet"),
  45766. weight: math.unit(200, "lb"),
  45767. name: "Front (NSFW)",
  45768. image: {
  45769. source: "./media/characters/blizzard/front-nsfw.svg",
  45770. extra: 1136/990,
  45771. bottom: 136/1272
  45772. }
  45773. },
  45774. backNsfw: {
  45775. height: math.unit(6, "feet"),
  45776. weight: math.unit(200, "lb"),
  45777. name: "Back (NSFW)",
  45778. image: {
  45779. source: "./media/characters/blizzard/back-nsfw.svg",
  45780. extra: 1175/1034,
  45781. bottom: 97/1272
  45782. }
  45783. },
  45784. sittingNsfw: {
  45785. height: math.unit(3.725, "feet"),
  45786. weight: math.unit(200, "lb"),
  45787. name: "Sitting (NSFW)",
  45788. image: {
  45789. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45790. extra: 581/485,
  45791. bottom: 90/671
  45792. }
  45793. },
  45794. wizardFrontNsfw: {
  45795. height: math.unit(7.9, "feet"),
  45796. weight: math.unit(200, "lb"),
  45797. name: "Wizard (Front, NSFW)",
  45798. image: {
  45799. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45800. }
  45801. },
  45802. },
  45803. [
  45804. {
  45805. name: "Normal",
  45806. height: math.unit(6, "feet"),
  45807. default: true
  45808. },
  45809. ]
  45810. ))
  45811. characterMakers.push(() => makeCharacter(
  45812. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45813. {
  45814. front: {
  45815. height: math.unit(5 + 2/12, "feet"),
  45816. name: "Front",
  45817. image: {
  45818. source: "./media/characters/lumi/front.svg",
  45819. extra: 1328/1268,
  45820. bottom: 103/1431
  45821. }
  45822. },
  45823. back: {
  45824. height: math.unit(5 + 2/12, "feet"),
  45825. name: "Back",
  45826. image: {
  45827. source: "./media/characters/lumi/back.svg",
  45828. extra: 1381/1327,
  45829. bottom: 43/1424
  45830. }
  45831. },
  45832. },
  45833. [
  45834. {
  45835. name: "Normal",
  45836. height: math.unit(5 + 2/12, "feet"),
  45837. default: true
  45838. },
  45839. ]
  45840. ))
  45841. characterMakers.push(() => makeCharacter(
  45842. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45843. {
  45844. front: {
  45845. height: math.unit(5 + 9/12, "feet"),
  45846. name: "Front",
  45847. image: {
  45848. source: "./media/characters/aliya-cotton/front.svg",
  45849. extra: 577/564,
  45850. bottom: 29/606
  45851. }
  45852. },
  45853. },
  45854. [
  45855. {
  45856. name: "Normal",
  45857. height: math.unit(5 + 9/12, "feet"),
  45858. default: true
  45859. },
  45860. ]
  45861. ))
  45862. characterMakers.push(() => makeCharacter(
  45863. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45864. {
  45865. front: {
  45866. height: math.unit(2.7, "meters"),
  45867. weight: math.unit(25000, "lb"),
  45868. name: "Front",
  45869. image: {
  45870. source: "./media/characters/noah-luxray/front.svg",
  45871. extra: 1644/825,
  45872. bottom: 339/1983
  45873. }
  45874. },
  45875. side: {
  45876. height: math.unit(2.97, "meters"),
  45877. weight: math.unit(25000, "lb"),
  45878. name: "Side",
  45879. image: {
  45880. source: "./media/characters/noah-luxray/side.svg",
  45881. extra: 1319/650,
  45882. bottom: 163/1482
  45883. }
  45884. },
  45885. dick: {
  45886. height: math.unit(7.4, "feet"),
  45887. weight: math.unit(2500, "lb"),
  45888. name: "Dick",
  45889. image: {
  45890. source: "./media/characters/noah-luxray/dick.svg"
  45891. }
  45892. },
  45893. dickAlt: {
  45894. height: math.unit(10.83, "feet"),
  45895. weight: math.unit(2500, "lb"),
  45896. name: "Dick-alt",
  45897. image: {
  45898. source: "./media/characters/noah-luxray/dick-alt.svg"
  45899. }
  45900. },
  45901. },
  45902. [
  45903. {
  45904. name: "BIG",
  45905. height: math.unit(2.7, "meters"),
  45906. default: true
  45907. },
  45908. ]
  45909. ))
  45910. characterMakers.push(() => makeCharacter(
  45911. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45912. {
  45913. standing: {
  45914. height: math.unit(183, "cm"),
  45915. weight: math.unit(68, "kg"),
  45916. name: "Standing",
  45917. image: {
  45918. source: "./media/characters/arion/standing.svg",
  45919. extra: 1869/1807,
  45920. bottom: 93/1962
  45921. }
  45922. },
  45923. reclining: {
  45924. height: math.unit(70.5, "cm"),
  45925. weight: math.unit(68, "lb"),
  45926. name: "Reclining",
  45927. image: {
  45928. source: "./media/characters/arion/reclining.svg",
  45929. extra: 937/870,
  45930. bottom: 63/1000
  45931. }
  45932. },
  45933. },
  45934. [
  45935. {
  45936. name: "Colossus Size, Low",
  45937. height: math.unit(33, "meters"),
  45938. default: true
  45939. },
  45940. {
  45941. name: "Colossus Size, Mid",
  45942. height: math.unit(52, "meters")
  45943. },
  45944. {
  45945. name: "Colossus Size, High",
  45946. height: math.unit(60, "meters")
  45947. },
  45948. {
  45949. name: "Titan Size, Low",
  45950. height: math.unit(91, "meters"),
  45951. },
  45952. {
  45953. name: "Titan Size, Mid",
  45954. height: math.unit(122, "meters")
  45955. },
  45956. {
  45957. name: "Titan Size, High",
  45958. height: math.unit(162, "meters")
  45959. },
  45960. ]
  45961. ))
  45962. characterMakers.push(() => makeCharacter(
  45963. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45964. {
  45965. front: {
  45966. height: math.unit(53, "meters"),
  45967. name: "Front",
  45968. image: {
  45969. source: "./media/characters/stellar-marbey/front.svg",
  45970. extra: 1913/1805,
  45971. bottom: 92/2005
  45972. }
  45973. },
  45974. back: {
  45975. height: math.unit(53, "meters"),
  45976. name: "Back",
  45977. image: {
  45978. source: "./media/characters/stellar-marbey/back.svg",
  45979. extra: 1960/1851,
  45980. bottom: 28/1988
  45981. }
  45982. },
  45983. mouth: {
  45984. height: math.unit(3.5, "meters"),
  45985. name: "Mouth",
  45986. image: {
  45987. source: "./media/characters/stellar-marbey/mouth.svg"
  45988. }
  45989. },
  45990. },
  45991. [
  45992. {
  45993. name: "Macro",
  45994. height: math.unit(53, "meters"),
  45995. default: true
  45996. },
  45997. ]
  45998. ))
  45999. characterMakers.push(() => makeCharacter(
  46000. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46001. {
  46002. front: {
  46003. height: math.unit(8 + 1/12, "feet"),
  46004. weight: math.unit(233, "lb"),
  46005. name: "Front",
  46006. image: {
  46007. source: "./media/characters/matsu/front.svg",
  46008. extra: 832/772,
  46009. bottom: 40/872
  46010. }
  46011. },
  46012. back: {
  46013. height: math.unit(8 + 1/12, "feet"),
  46014. weight: math.unit(233, "lb"),
  46015. name: "Back",
  46016. image: {
  46017. source: "./media/characters/matsu/back.svg",
  46018. extra: 839/780,
  46019. bottom: 47/886
  46020. }
  46021. },
  46022. },
  46023. [
  46024. {
  46025. name: "Normal",
  46026. height: math.unit(8 + 1/12, "feet"),
  46027. default: true
  46028. },
  46029. ]
  46030. ))
  46031. characterMakers.push(() => makeCharacter(
  46032. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46033. {
  46034. front: {
  46035. height: math.unit(4, "feet"),
  46036. weight: math.unit(148, "lb"),
  46037. name: "Front",
  46038. image: {
  46039. source: "./media/characters/thiz/front.svg",
  46040. extra: 1913/1748,
  46041. bottom: 62/1975
  46042. }
  46043. },
  46044. },
  46045. [
  46046. {
  46047. name: "Normal",
  46048. height: math.unit(4, "feet"),
  46049. default: true
  46050. },
  46051. ]
  46052. ))
  46053. characterMakers.push(() => makeCharacter(
  46054. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46055. {
  46056. front: {
  46057. height: math.unit(7 + 6/12, "feet"),
  46058. weight: math.unit(267, "lb"),
  46059. name: "Front",
  46060. image: {
  46061. source: "./media/characters/marcel/front.svg",
  46062. extra: 1221/1096,
  46063. bottom: 76/1297
  46064. }
  46065. },
  46066. },
  46067. [
  46068. {
  46069. name: "Normal",
  46070. height: math.unit(7 + 6/12, "feet"),
  46071. default: true
  46072. },
  46073. ]
  46074. ))
  46075. characterMakers.push(() => makeCharacter(
  46076. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46077. {
  46078. side: {
  46079. height: math.unit(42, "meters"),
  46080. name: "Side",
  46081. image: {
  46082. source: "./media/characters/flake/side.svg",
  46083. extra: 1525/1306,
  46084. bottom: 209/1734
  46085. }
  46086. },
  46087. },
  46088. [
  46089. {
  46090. name: "Normal",
  46091. height: math.unit(42, "meters"),
  46092. default: true
  46093. },
  46094. ]
  46095. ))
  46096. characterMakers.push(() => makeCharacter(
  46097. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46098. {
  46099. dressed: {
  46100. height: math.unit(6 + 4/12, "feet"),
  46101. weight: math.unit(520, "lb"),
  46102. name: "Dressed",
  46103. image: {
  46104. source: "./media/characters/someonne/dressed.svg",
  46105. extra: 1020/1010,
  46106. bottom: 178/1198
  46107. }
  46108. },
  46109. undressed: {
  46110. height: math.unit(6 + 4/12, "feet"),
  46111. weight: math.unit(520, "lb"),
  46112. name: "Undressed",
  46113. image: {
  46114. source: "./media/characters/someonne/undressed.svg",
  46115. extra: 1019/1014,
  46116. bottom: 169/1188
  46117. }
  46118. },
  46119. },
  46120. [
  46121. {
  46122. name: "Normal",
  46123. height: math.unit(6 + 4/12, "feet"),
  46124. default: true
  46125. },
  46126. ]
  46127. ))
  46128. characterMakers.push(() => makeCharacter(
  46129. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46130. {
  46131. front: {
  46132. height: math.unit(3, "feet"),
  46133. weight: math.unit(30, "lb"),
  46134. name: "Front",
  46135. image: {
  46136. source: "./media/characters/till/front.svg",
  46137. extra: 892/823,
  46138. bottom: 55/947
  46139. }
  46140. },
  46141. },
  46142. [
  46143. {
  46144. name: "Normal",
  46145. height: math.unit(3, "feet"),
  46146. default: true
  46147. },
  46148. ]
  46149. ))
  46150. characterMakers.push(() => makeCharacter(
  46151. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46152. {
  46153. front: {
  46154. height: math.unit(9 + 8/12, "feet"),
  46155. weight: math.unit(800, "lb"),
  46156. name: "Front",
  46157. image: {
  46158. source: "./media/characters/sydney-heki/front.svg",
  46159. extra: 1360/1300,
  46160. bottom: 22/1382
  46161. }
  46162. },
  46163. back: {
  46164. height: math.unit(9 + 8/12, "feet"),
  46165. weight: math.unit(800, "lb"),
  46166. name: "Back",
  46167. image: {
  46168. source: "./media/characters/sydney-heki/back.svg",
  46169. extra: 1356/1293,
  46170. bottom: 12/1368
  46171. }
  46172. },
  46173. frontDressed: {
  46174. height: math.unit(9 + 8/12, "feet"),
  46175. weight: math.unit(800, "lb"),
  46176. name: "Front-dressed",
  46177. image: {
  46178. source: "./media/characters/sydney-heki/front-dressed.svg",
  46179. extra: 1360/1300,
  46180. bottom: 22/1382
  46181. }
  46182. },
  46183. },
  46184. [
  46185. {
  46186. name: "Normal",
  46187. height: math.unit(9 + 8/12, "feet"),
  46188. default: true
  46189. },
  46190. {
  46191. name: "Macro",
  46192. height: math.unit(500, "feet")
  46193. },
  46194. {
  46195. name: "Megamacro",
  46196. height: math.unit(3.6, "miles")
  46197. },
  46198. ]
  46199. ))
  46200. characterMakers.push(() => makeCharacter(
  46201. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46202. {
  46203. front: {
  46204. height: math.unit(200, "cm"),
  46205. weight: math.unit(250, "lb"),
  46206. name: "Front",
  46207. image: {
  46208. source: "./media/characters/fowler-karlsson/front.svg",
  46209. extra: 897/845,
  46210. bottom: 123/1020
  46211. }
  46212. },
  46213. back: {
  46214. height: math.unit(200, "cm"),
  46215. weight: math.unit(250, "lb"),
  46216. name: "Back",
  46217. image: {
  46218. source: "./media/characters/fowler-karlsson/back.svg",
  46219. extra: 999/944,
  46220. bottom: 26/1025
  46221. }
  46222. },
  46223. dick: {
  46224. height: math.unit(1.92, "feet"),
  46225. weight: math.unit(150, "lb"),
  46226. name: "Dick",
  46227. image: {
  46228. source: "./media/characters/fowler-karlsson/dick.svg"
  46229. }
  46230. },
  46231. },
  46232. [
  46233. {
  46234. name: "Normal",
  46235. height: math.unit(200, "cm"),
  46236. default: true
  46237. },
  46238. {
  46239. name: "Smaller Macro",
  46240. height: math.unit(90, "m")
  46241. },
  46242. {
  46243. name: "Macro",
  46244. height: math.unit(150, "m")
  46245. },
  46246. {
  46247. name: "Bigger Macro",
  46248. height: math.unit(300, "m")
  46249. },
  46250. ]
  46251. ))
  46252. characterMakers.push(() => makeCharacter(
  46253. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46254. {
  46255. side: {
  46256. height: math.unit(8 + 2/12, "feet"),
  46257. weight: math.unit(1, "tonne"),
  46258. name: "Side",
  46259. image: {
  46260. source: "./media/characters/rylide/side.svg",
  46261. extra: 1318/1034,
  46262. bottom: 106/1424
  46263. }
  46264. },
  46265. sitting: {
  46266. height: math.unit(303, "cm"),
  46267. weight: math.unit(1, "tonne"),
  46268. name: "Sitting",
  46269. image: {
  46270. source: "./media/characters/rylide/sitting.svg",
  46271. extra: 1303/1103,
  46272. bottom: 36/1339
  46273. }
  46274. },
  46275. },
  46276. [
  46277. {
  46278. name: "Normal",
  46279. height: math.unit(8 + 2/12, "feet"),
  46280. default: true
  46281. },
  46282. ]
  46283. ))
  46284. characterMakers.push(() => makeCharacter(
  46285. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46286. {
  46287. front: {
  46288. height: math.unit(5 + 10/12, "feet"),
  46289. weight: math.unit(160, "lb"),
  46290. name: "Front",
  46291. image: {
  46292. source: "./media/characters/pudask/front.svg",
  46293. extra: 1616/1590,
  46294. bottom: 161/1777
  46295. }
  46296. },
  46297. },
  46298. [
  46299. {
  46300. name: "Ferret Height",
  46301. height: math.unit(2 + 5/12, "feet")
  46302. },
  46303. {
  46304. name: "Canon Height",
  46305. height: math.unit(5 + 10/12, "feet"),
  46306. default: true
  46307. },
  46308. ]
  46309. ))
  46310. characterMakers.push(() => makeCharacter(
  46311. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46312. {
  46313. front: {
  46314. height: math.unit(3 + 6/12, "feet"),
  46315. weight: math.unit(60, "lb"),
  46316. name: "Front",
  46317. image: {
  46318. source: "./media/characters/ramita/front.svg",
  46319. extra: 1402/1232,
  46320. bottom: 62/1464
  46321. }
  46322. },
  46323. dressed: {
  46324. height: math.unit(3 + 6/12, "feet"),
  46325. weight: math.unit(60, "lb"),
  46326. name: "Dressed",
  46327. image: {
  46328. source: "./media/characters/ramita/dressed.svg",
  46329. extra: 1534/1249,
  46330. bottom: 50/1584
  46331. }
  46332. },
  46333. },
  46334. [
  46335. {
  46336. name: "Normal",
  46337. height: math.unit(3 + 6/12, "feet"),
  46338. default: true
  46339. },
  46340. ]
  46341. ))
  46342. characterMakers.push(() => makeCharacter(
  46343. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46344. {
  46345. front: {
  46346. height: math.unit(8, "feet"),
  46347. name: "Front",
  46348. image: {
  46349. source: "./media/characters/ark/front.svg",
  46350. extra: 772/693,
  46351. bottom: 45/817
  46352. }
  46353. },
  46354. },
  46355. [
  46356. {
  46357. name: "Normal",
  46358. height: math.unit(8, "feet"),
  46359. default: true
  46360. },
  46361. ]
  46362. ))
  46363. characterMakers.push(() => makeCharacter(
  46364. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46365. {
  46366. front: {
  46367. height: math.unit(6, "feet"),
  46368. weight: math.unit(250, "lb"),
  46369. volume: math.unit(5/8, "gallons"),
  46370. name: "Front",
  46371. image: {
  46372. source: "./media/characters/ludwig-horn/front.svg",
  46373. extra: 1782/1635,
  46374. bottom: 96/1878
  46375. }
  46376. },
  46377. back: {
  46378. height: math.unit(6, "feet"),
  46379. weight: math.unit(250, "lb"),
  46380. volume: math.unit(5/8, "gallons"),
  46381. name: "Back",
  46382. image: {
  46383. source: "./media/characters/ludwig-horn/back.svg",
  46384. extra: 1874/1729,
  46385. bottom: 27/1901
  46386. }
  46387. },
  46388. dick: {
  46389. height: math.unit(1.05, "feet"),
  46390. weight: math.unit(15, "lb"),
  46391. volume: math.unit(5/8, "gallons"),
  46392. name: "Dick",
  46393. image: {
  46394. source: "./media/characters/ludwig-horn/dick.svg"
  46395. }
  46396. },
  46397. },
  46398. [
  46399. {
  46400. name: "Small",
  46401. height: math.unit(6, "feet")
  46402. },
  46403. {
  46404. name: "Typical",
  46405. height: math.unit(12, "feet"),
  46406. default: true
  46407. },
  46408. {
  46409. name: "Building",
  46410. height: math.unit(80, "feet")
  46411. },
  46412. {
  46413. name: "Town",
  46414. height: math.unit(800, "feet")
  46415. },
  46416. {
  46417. name: "Kingdom",
  46418. height: math.unit(80000, "feet")
  46419. },
  46420. {
  46421. name: "Planet",
  46422. height: math.unit(8000000, "feet")
  46423. },
  46424. {
  46425. name: "Universe",
  46426. height: math.unit(8000000000, "feet")
  46427. },
  46428. {
  46429. name: "Transcended",
  46430. height: math.unit(8e27, "feet")
  46431. },
  46432. ]
  46433. ))
  46434. characterMakers.push(() => makeCharacter(
  46435. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46436. {
  46437. front: {
  46438. height: math.unit(5, "feet"),
  46439. weight: math.unit(50, "kg"),
  46440. name: "Front",
  46441. image: {
  46442. source: "./media/characters/biot-avery/front.svg",
  46443. extra: 1295/1232,
  46444. bottom: 86/1381
  46445. }
  46446. },
  46447. },
  46448. [
  46449. {
  46450. name: "Normal",
  46451. height: math.unit(5, "feet"),
  46452. default: true
  46453. },
  46454. ]
  46455. ))
  46456. characterMakers.push(() => makeCharacter(
  46457. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46458. {
  46459. front: {
  46460. height: math.unit(6, "feet"),
  46461. name: "Front",
  46462. image: {
  46463. source: "./media/characters/kitsune-kiro/front.svg",
  46464. extra: 1270/1158,
  46465. bottom: 42/1312
  46466. }
  46467. },
  46468. frontAlt: {
  46469. height: math.unit(6, "feet"),
  46470. name: "Front-alt",
  46471. image: {
  46472. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46473. extra: 1130/1081,
  46474. bottom: 36/1166
  46475. }
  46476. },
  46477. },
  46478. [
  46479. {
  46480. name: "Smol",
  46481. height: math.unit(3, "feet")
  46482. },
  46483. {
  46484. name: "Normal",
  46485. height: math.unit(6, "feet"),
  46486. default: true
  46487. },
  46488. ]
  46489. ))
  46490. characterMakers.push(() => makeCharacter(
  46491. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46492. {
  46493. front: {
  46494. height: math.unit(6, "feet"),
  46495. weight: math.unit(125, "lb"),
  46496. name: "Front",
  46497. image: {
  46498. source: "./media/characters/jack-thatcher/front.svg",
  46499. extra: 1474/1370,
  46500. bottom: 26/1500
  46501. }
  46502. },
  46503. back: {
  46504. height: math.unit(6, "feet"),
  46505. weight: math.unit(125, "lb"),
  46506. name: "Back",
  46507. image: {
  46508. source: "./media/characters/jack-thatcher/back.svg",
  46509. extra: 1489/1384,
  46510. bottom: 18/1507
  46511. }
  46512. },
  46513. },
  46514. [
  46515. {
  46516. name: "Normal",
  46517. height: math.unit(6, "feet"),
  46518. default: true
  46519. },
  46520. {
  46521. name: "Macro",
  46522. height: math.unit(75, "feet")
  46523. },
  46524. {
  46525. name: "Macro-er",
  46526. height: math.unit(250, "feet")
  46527. },
  46528. ]
  46529. ))
  46530. characterMakers.push(() => makeCharacter(
  46531. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46532. {
  46533. front: {
  46534. height: math.unit(7, "feet"),
  46535. weight: math.unit(110, "kg"),
  46536. name: "Front",
  46537. image: {
  46538. source: "./media/characters/max-hyper/front.svg",
  46539. extra: 1969/1881,
  46540. bottom: 49/2018
  46541. }
  46542. },
  46543. },
  46544. [
  46545. {
  46546. name: "Normal",
  46547. height: math.unit(7, "feet"),
  46548. default: true
  46549. },
  46550. ]
  46551. ))
  46552. characterMakers.push(() => makeCharacter(
  46553. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46554. {
  46555. front: {
  46556. height: math.unit(5 + 5/12, "feet"),
  46557. weight: math.unit(160, "lb"),
  46558. name: "Front",
  46559. image: {
  46560. source: "./media/characters/spook/front.svg",
  46561. extra: 794/791,
  46562. bottom: 54/848
  46563. }
  46564. },
  46565. back: {
  46566. height: math.unit(5 + 5/12, "feet"),
  46567. weight: math.unit(160, "lb"),
  46568. name: "Back",
  46569. image: {
  46570. source: "./media/characters/spook/back.svg",
  46571. extra: 812/798,
  46572. bottom: 32/844
  46573. }
  46574. },
  46575. },
  46576. [
  46577. {
  46578. name: "Normal",
  46579. height: math.unit(5 + 5/12, "feet"),
  46580. default: true
  46581. },
  46582. ]
  46583. ))
  46584. characterMakers.push(() => makeCharacter(
  46585. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46586. {
  46587. front: {
  46588. height: math.unit(18, "feet"),
  46589. name: "Front",
  46590. image: {
  46591. source: "./media/characters/xeaduulix/front.svg",
  46592. extra: 1380/1166,
  46593. bottom: 110/1490
  46594. }
  46595. },
  46596. back: {
  46597. height: math.unit(18, "feet"),
  46598. name: "Back",
  46599. image: {
  46600. source: "./media/characters/xeaduulix/back.svg",
  46601. extra: 1592/1170,
  46602. bottom: 128/1720
  46603. }
  46604. },
  46605. frontNsfw: {
  46606. height: math.unit(18, "feet"),
  46607. name: "Front (NSFW)",
  46608. image: {
  46609. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46610. extra: 1380/1166,
  46611. bottom: 110/1490
  46612. }
  46613. },
  46614. backNsfw: {
  46615. height: math.unit(18, "feet"),
  46616. name: "Back (NSFW)",
  46617. image: {
  46618. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46619. extra: 1592/1170,
  46620. bottom: 128/1720
  46621. }
  46622. },
  46623. },
  46624. [
  46625. {
  46626. name: "Normal",
  46627. height: math.unit(18, "feet"),
  46628. default: true
  46629. },
  46630. ]
  46631. ))
  46632. characterMakers.push(() => makeCharacter(
  46633. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46634. {
  46635. spreadWings: {
  46636. height: math.unit(20, "feet"),
  46637. name: "Spread Wings",
  46638. image: {
  46639. source: "./media/characters/fledge/spread-wings.svg",
  46640. extra: 693/635,
  46641. bottom: 26/719
  46642. }
  46643. },
  46644. front: {
  46645. height: math.unit(20, "feet"),
  46646. name: "Front",
  46647. image: {
  46648. source: "./media/characters/fledge/front.svg",
  46649. extra: 684/637,
  46650. bottom: 18/702
  46651. }
  46652. },
  46653. frontAlt: {
  46654. height: math.unit(20, "feet"),
  46655. name: "Front (Alt)",
  46656. image: {
  46657. source: "./media/characters/fledge/front-alt.svg",
  46658. extra: 708/664,
  46659. bottom: 13/721
  46660. }
  46661. },
  46662. back: {
  46663. height: math.unit(20, "feet"),
  46664. name: "Back",
  46665. image: {
  46666. source: "./media/characters/fledge/back.svg",
  46667. extra: 718/634,
  46668. bottom: 22/740
  46669. }
  46670. },
  46671. head: {
  46672. height: math.unit(5.55, "feet"),
  46673. name: "Head",
  46674. image: {
  46675. source: "./media/characters/fledge/head.svg"
  46676. }
  46677. },
  46678. headAlt: {
  46679. height: math.unit(5.1, "feet"),
  46680. name: "Head (Alt)",
  46681. image: {
  46682. source: "./media/characters/fledge/head-alt.svg"
  46683. }
  46684. },
  46685. },
  46686. [
  46687. {
  46688. name: "Small",
  46689. height: math.unit(6 + 2/12, "feet")
  46690. },
  46691. {
  46692. name: "Big",
  46693. height: math.unit(20, "feet"),
  46694. default: true
  46695. },
  46696. {
  46697. name: "Giant",
  46698. height: math.unit(100, "feet")
  46699. },
  46700. {
  46701. name: "Macro",
  46702. height: math.unit(200, "feet")
  46703. },
  46704. ]
  46705. ))
  46706. characterMakers.push(() => makeCharacter(
  46707. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46708. {
  46709. front: {
  46710. height: math.unit(1, "meter"),
  46711. name: "Front",
  46712. image: {
  46713. source: "./media/characters/atlas-morenai/front.svg",
  46714. extra: 1275/1043,
  46715. bottom: 19/1294
  46716. }
  46717. },
  46718. back: {
  46719. height: math.unit(1, "meter"),
  46720. name: "Back",
  46721. image: {
  46722. source: "./media/characters/atlas-morenai/back.svg",
  46723. extra: 1141/1001,
  46724. bottom: 25/1166
  46725. }
  46726. },
  46727. },
  46728. [
  46729. {
  46730. name: "Normal",
  46731. height: math.unit(1, "meter"),
  46732. default: true
  46733. },
  46734. {
  46735. name: "Magic-Infused",
  46736. height: math.unit(5, "meters")
  46737. },
  46738. ]
  46739. ))
  46740. characterMakers.push(() => makeCharacter(
  46741. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46742. {
  46743. front: {
  46744. height: math.unit(5, "meters"),
  46745. name: "Front",
  46746. image: {
  46747. source: "./media/characters/cintia/front.svg",
  46748. extra: 1312/1228,
  46749. bottom: 38/1350
  46750. }
  46751. },
  46752. back: {
  46753. height: math.unit(5, "meters"),
  46754. name: "Back",
  46755. image: {
  46756. source: "./media/characters/cintia/back.svg",
  46757. extra: 1260/1166,
  46758. bottom: 98/1358
  46759. }
  46760. },
  46761. frontDick: {
  46762. height: math.unit(5, "meters"),
  46763. name: "Front (Dick)",
  46764. image: {
  46765. source: "./media/characters/cintia/front-dick.svg",
  46766. extra: 1312/1228,
  46767. bottom: 38/1350
  46768. }
  46769. },
  46770. backDick: {
  46771. height: math.unit(5, "meters"),
  46772. name: "Back (Dick)",
  46773. image: {
  46774. source: "./media/characters/cintia/back-dick.svg",
  46775. extra: 1260/1166,
  46776. bottom: 98/1358
  46777. }
  46778. },
  46779. bust: {
  46780. height: math.unit(1.97, "meters"),
  46781. name: "Bust",
  46782. image: {
  46783. source: "./media/characters/cintia/bust.svg",
  46784. extra: 617/565,
  46785. bottom: 0/617
  46786. }
  46787. },
  46788. },
  46789. [
  46790. {
  46791. name: "Normal",
  46792. height: math.unit(5, "meters"),
  46793. default: true
  46794. },
  46795. ]
  46796. ))
  46797. characterMakers.push(() => makeCharacter(
  46798. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46799. {
  46800. side: {
  46801. height: math.unit(100, "feet"),
  46802. name: "Side",
  46803. image: {
  46804. source: "./media/characters/denora/side.svg",
  46805. extra: 875/803,
  46806. bottom: 9/884
  46807. }
  46808. },
  46809. },
  46810. [
  46811. {
  46812. name: "Standard",
  46813. height: math.unit(100, "feet"),
  46814. default: true
  46815. },
  46816. {
  46817. name: "Grand",
  46818. height: math.unit(1000, "feet")
  46819. },
  46820. {
  46821. name: "Conquering",
  46822. height: math.unit(10000, "feet")
  46823. },
  46824. ]
  46825. ))
  46826. characterMakers.push(() => makeCharacter(
  46827. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46828. {
  46829. dressed: {
  46830. height: math.unit(8 + 5/12, "feet"),
  46831. weight: math.unit(700, "lb"),
  46832. name: "Dressed",
  46833. image: {
  46834. source: "./media/characters/kiva/dressed.svg",
  46835. extra: 1102/1055,
  46836. bottom: 60/1162
  46837. }
  46838. },
  46839. nude: {
  46840. height: math.unit(8 + 5/12, "feet"),
  46841. weight: math.unit(700, "lb"),
  46842. name: "Nude",
  46843. image: {
  46844. source: "./media/characters/kiva/nude.svg",
  46845. extra: 1102/1055,
  46846. bottom: 60/1162
  46847. }
  46848. },
  46849. },
  46850. [
  46851. {
  46852. name: "Base Height",
  46853. height: math.unit(8 + 5/12, "feet"),
  46854. default: true
  46855. },
  46856. {
  46857. name: "Macro",
  46858. height: math.unit(100, "feet")
  46859. },
  46860. {
  46861. name: "Max",
  46862. height: math.unit(3280, "feet")
  46863. },
  46864. ]
  46865. ))
  46866. characterMakers.push(() => makeCharacter(
  46867. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46868. {
  46869. front: {
  46870. height: math.unit(6 + 8/12, "feet"),
  46871. weight: math.unit(250, "lb"),
  46872. name: "Front",
  46873. image: {
  46874. source: "./media/characters/ztragon/front.svg",
  46875. extra: 1825/1684,
  46876. bottom: 98/1923
  46877. }
  46878. },
  46879. },
  46880. [
  46881. {
  46882. name: "Normal",
  46883. height: math.unit(6 + 8/12, "feet"),
  46884. default: true
  46885. },
  46886. {
  46887. name: "Macro",
  46888. height: math.unit(80, "feet")
  46889. },
  46890. ]
  46891. ))
  46892. characterMakers.push(() => makeCharacter(
  46893. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46894. {
  46895. front: {
  46896. height: math.unit(10.4, "feet"),
  46897. weight: math.unit(2, "tons"),
  46898. name: "Front",
  46899. image: {
  46900. source: "./media/characters/yesenia/front.svg",
  46901. extra: 1479/1474,
  46902. bottom: 233/1712
  46903. }
  46904. },
  46905. },
  46906. [
  46907. {
  46908. name: "Normal",
  46909. height: math.unit(10.4, "feet"),
  46910. default: true
  46911. },
  46912. ]
  46913. ))
  46914. characterMakers.push(() => makeCharacter(
  46915. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46916. {
  46917. normal: {
  46918. height: math.unit(6 + 1/12, "feet"),
  46919. weight: math.unit(180, "lb"),
  46920. name: "Normal",
  46921. image: {
  46922. source: "./media/characters/leanne-lycheborne/normal.svg",
  46923. extra: 1748/1660,
  46924. bottom: 98/1846
  46925. }
  46926. },
  46927. were: {
  46928. height: math.unit(12, "feet"),
  46929. weight: math.unit(1600, "lb"),
  46930. name: "Were",
  46931. image: {
  46932. source: "./media/characters/leanne-lycheborne/were.svg",
  46933. extra: 1485/1432,
  46934. bottom: 66/1551
  46935. }
  46936. },
  46937. },
  46938. [
  46939. {
  46940. name: "Normal",
  46941. height: math.unit(6 + 1/12, "feet"),
  46942. default: true
  46943. },
  46944. ]
  46945. ))
  46946. characterMakers.push(() => makeCharacter(
  46947. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46948. {
  46949. side: {
  46950. height: math.unit(13, "feet"),
  46951. name: "Side",
  46952. image: {
  46953. source: "./media/characters/kira-tyler/side.svg",
  46954. extra: 693/393,
  46955. bottom: 58/751
  46956. }
  46957. },
  46958. },
  46959. [
  46960. {
  46961. name: "Normal",
  46962. height: math.unit(13, "feet"),
  46963. default: true
  46964. },
  46965. ]
  46966. ))
  46967. characterMakers.push(() => makeCharacter(
  46968. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46969. {
  46970. front: {
  46971. height: math.unit(10.3, "feet"),
  46972. weight: math.unit(150, "lb"),
  46973. name: "Front",
  46974. image: {
  46975. source: "./media/characters/blaze/front.svg",
  46976. extra: 1378/1286,
  46977. bottom: 172/1550
  46978. }
  46979. },
  46980. },
  46981. [
  46982. {
  46983. name: "Normal",
  46984. height: math.unit(10.3, "feet"),
  46985. default: true
  46986. },
  46987. ]
  46988. ))
  46989. characterMakers.push(() => makeCharacter(
  46990. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46991. {
  46992. side: {
  46993. height: math.unit(2, "meters"),
  46994. weight: math.unit(400, "kg"),
  46995. name: "Side",
  46996. image: {
  46997. source: "./media/characters/anu/side.svg",
  46998. extra: 506/394,
  46999. bottom: 18/524
  47000. }
  47001. },
  47002. },
  47003. [
  47004. {
  47005. name: "Humanoid",
  47006. height: math.unit(2, "meters")
  47007. },
  47008. {
  47009. name: "Normal",
  47010. height: math.unit(5, "meters"),
  47011. default: true
  47012. },
  47013. ]
  47014. ))
  47015. characterMakers.push(() => makeCharacter(
  47016. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47017. {
  47018. front: {
  47019. height: math.unit(5 + 5/12, "feet"),
  47020. weight: math.unit(170, "lb"),
  47021. name: "Front",
  47022. image: {
  47023. source: "./media/characters/synx-the-lynx/front.svg",
  47024. extra: 1893/1745,
  47025. bottom: 17/1910
  47026. }
  47027. },
  47028. side: {
  47029. height: math.unit(5 + 5/12, "feet"),
  47030. weight: math.unit(170, "lb"),
  47031. name: "Side",
  47032. image: {
  47033. source: "./media/characters/synx-the-lynx/side.svg",
  47034. extra: 1884/1740,
  47035. bottom: 39/1923
  47036. }
  47037. },
  47038. back: {
  47039. height: math.unit(5 + 5/12, "feet"),
  47040. weight: math.unit(170, "lb"),
  47041. name: "Back",
  47042. image: {
  47043. source: "./media/characters/synx-the-lynx/back.svg",
  47044. extra: 1903/1755,
  47045. bottom: 14/1917
  47046. }
  47047. },
  47048. },
  47049. [
  47050. {
  47051. name: "Normal",
  47052. height: math.unit(5 + 5/12, "feet"),
  47053. default: true
  47054. },
  47055. ]
  47056. ))
  47057. characterMakers.push(() => makeCharacter(
  47058. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47059. {
  47060. back: {
  47061. height: math.unit(15, "feet"),
  47062. name: "Back",
  47063. image: {
  47064. source: "./media/characters/nadezda-fex/back.svg",
  47065. extra: 1695/1481,
  47066. bottom: 25/1720
  47067. }
  47068. },
  47069. },
  47070. [
  47071. {
  47072. name: "Normal",
  47073. height: math.unit(15, "feet"),
  47074. default: true
  47075. },
  47076. {
  47077. name: "Macro",
  47078. height: math.unit(2.5, "miles")
  47079. },
  47080. {
  47081. name: "Goddess",
  47082. height: math.unit(2, "multiverses")
  47083. },
  47084. ]
  47085. ))
  47086. characterMakers.push(() => makeCharacter(
  47087. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47088. {
  47089. front: {
  47090. height: math.unit(216, "cm"),
  47091. name: "Front",
  47092. image: {
  47093. source: "./media/characters/lev/front.svg",
  47094. extra: 1728/1670,
  47095. bottom: 82/1810
  47096. }
  47097. },
  47098. back: {
  47099. height: math.unit(216, "cm"),
  47100. name: "Back",
  47101. image: {
  47102. source: "./media/characters/lev/back.svg",
  47103. extra: 1738/1675,
  47104. bottom: 24/1762
  47105. }
  47106. },
  47107. dressed: {
  47108. height: math.unit(216, "cm"),
  47109. name: "Dressed",
  47110. image: {
  47111. source: "./media/characters/lev/dressed.svg",
  47112. extra: 1397/1351,
  47113. bottom: 73/1470
  47114. }
  47115. },
  47116. head: {
  47117. height: math.unit(0.51, "meter"),
  47118. name: "Head",
  47119. image: {
  47120. source: "./media/characters/lev/head.svg"
  47121. }
  47122. },
  47123. },
  47124. [
  47125. {
  47126. name: "Normal",
  47127. height: math.unit(216, "cm"),
  47128. default: true
  47129. },
  47130. {
  47131. name: "Relatively Macro",
  47132. height: math.unit(80, "meters")
  47133. },
  47134. {
  47135. name: "Megamacro",
  47136. height: math.unit(21600, "meters")
  47137. },
  47138. {
  47139. name: "Megamacro+",
  47140. height: math.unit(64800, "meters")
  47141. },
  47142. ]
  47143. ))
  47144. characterMakers.push(() => makeCharacter(
  47145. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47146. {
  47147. front: {
  47148. height: math.unit(2, "meters"),
  47149. weight: math.unit(80, "kg"),
  47150. name: "Front",
  47151. image: {
  47152. source: "./media/characters/moka/front.svg",
  47153. extra: 1337/1255,
  47154. bottom: 58/1395
  47155. }
  47156. },
  47157. },
  47158. [
  47159. {
  47160. name: "Micro",
  47161. height: math.unit(15, "cm")
  47162. },
  47163. {
  47164. name: "Normal",
  47165. height: math.unit(2, "meters"),
  47166. default: true
  47167. },
  47168. {
  47169. name: "Macro",
  47170. height: math.unit(20, "meters"),
  47171. },
  47172. ]
  47173. ))
  47174. characterMakers.push(() => makeCharacter(
  47175. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47176. {
  47177. front: {
  47178. height: math.unit(9, "feet"),
  47179. weight: math.unit(240, "lb"),
  47180. name: "Front",
  47181. image: {
  47182. source: "./media/characters/kuzco/front.svg",
  47183. extra: 1593/1487,
  47184. bottom: 32/1625
  47185. }
  47186. },
  47187. side: {
  47188. height: math.unit(9, "feet"),
  47189. weight: math.unit(240, "lb"),
  47190. name: "Side",
  47191. image: {
  47192. source: "./media/characters/kuzco/side.svg",
  47193. extra: 1575/1485,
  47194. bottom: 30/1605
  47195. }
  47196. },
  47197. back: {
  47198. height: math.unit(9, "feet"),
  47199. weight: math.unit(240, "lb"),
  47200. name: "Back",
  47201. image: {
  47202. source: "./media/characters/kuzco/back.svg",
  47203. extra: 1603/1514,
  47204. bottom: 14/1617
  47205. }
  47206. },
  47207. },
  47208. [
  47209. {
  47210. name: "Normal",
  47211. height: math.unit(9, "feet"),
  47212. default: true
  47213. },
  47214. ]
  47215. ))
  47216. characterMakers.push(() => makeCharacter(
  47217. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47218. {
  47219. side: {
  47220. height: math.unit(2, "meters"),
  47221. weight: math.unit(300, "kg"),
  47222. name: "Side",
  47223. image: {
  47224. source: "./media/characters/ceruleus/side.svg",
  47225. extra: 1068/974,
  47226. bottom: 126/1194
  47227. }
  47228. },
  47229. maw: {
  47230. height: math.unit(0.8125, "meter"),
  47231. name: "Maw",
  47232. image: {
  47233. source: "./media/characters/ceruleus/maw.svg"
  47234. }
  47235. },
  47236. },
  47237. [
  47238. {
  47239. name: "Normal",
  47240. height: math.unit(16, "meters"),
  47241. default: true
  47242. },
  47243. ]
  47244. ))
  47245. characterMakers.push(() => makeCharacter(
  47246. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47247. {
  47248. front: {
  47249. height: math.unit(9, "feet"),
  47250. weight: math.unit(500, "kg"),
  47251. name: "Front",
  47252. image: {
  47253. source: "./media/characters/acouya/front.svg",
  47254. extra: 1660/1473,
  47255. bottom: 28/1688
  47256. }
  47257. },
  47258. },
  47259. [
  47260. {
  47261. name: "Normal",
  47262. height: math.unit(9, "feet"),
  47263. default: true
  47264. },
  47265. ]
  47266. ))
  47267. characterMakers.push(() => makeCharacter(
  47268. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47269. {
  47270. front: {
  47271. height: math.unit(5 + 6/12, "feet"),
  47272. weight: math.unit(195, "lb"),
  47273. name: "Front",
  47274. image: {
  47275. source: "./media/characters/vant/front.svg",
  47276. extra: 1396/1320,
  47277. bottom: 20/1416
  47278. }
  47279. },
  47280. back: {
  47281. height: math.unit(5 + 6/12, "feet"),
  47282. weight: math.unit(195, "lb"),
  47283. name: "Back",
  47284. image: {
  47285. source: "./media/characters/vant/back.svg",
  47286. extra: 1396/1320,
  47287. bottom: 20/1416
  47288. }
  47289. },
  47290. maw: {
  47291. height: math.unit(0.75, "feet"),
  47292. name: "Maw",
  47293. image: {
  47294. source: "./media/characters/vant/maw.svg"
  47295. }
  47296. },
  47297. paw: {
  47298. height: math.unit(1.07, "feet"),
  47299. name: "Paw",
  47300. image: {
  47301. source: "./media/characters/vant/paw.svg"
  47302. }
  47303. },
  47304. },
  47305. [
  47306. {
  47307. name: "Micro",
  47308. height: math.unit(0.25, "inches")
  47309. },
  47310. {
  47311. name: "Normal",
  47312. height: math.unit(5 + 6/12, "feet"),
  47313. default: true
  47314. },
  47315. {
  47316. name: "Macro",
  47317. height: math.unit(75, "feet")
  47318. },
  47319. ]
  47320. ))
  47321. characterMakers.push(() => makeCharacter(
  47322. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47323. {
  47324. front: {
  47325. height: math.unit(30, "meters"),
  47326. weight: math.unit(363, "tons"),
  47327. name: "Front",
  47328. image: {
  47329. source: "./media/characters/ahra/front.svg",
  47330. extra: 1914/1814,
  47331. bottom: 46/1960
  47332. }
  47333. },
  47334. },
  47335. [
  47336. {
  47337. name: "Macro",
  47338. height: math.unit(30, "meters"),
  47339. default: true
  47340. },
  47341. ]
  47342. ))
  47343. characterMakers.push(() => makeCharacter(
  47344. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47345. {
  47346. undressed: {
  47347. height: math.unit(2, "m"),
  47348. weight: math.unit(250, "kg"),
  47349. name: "Undressed",
  47350. image: {
  47351. source: "./media/characters/coriander/undressed.svg",
  47352. extra: 1757/1606,
  47353. bottom: 107/1864
  47354. }
  47355. },
  47356. dressed: {
  47357. height: math.unit(2, "m"),
  47358. weight: math.unit(250, "kg"),
  47359. name: "Dressed",
  47360. image: {
  47361. source: "./media/characters/coriander/dressed.svg",
  47362. extra: 1757/1606,
  47363. bottom: 107/1864
  47364. }
  47365. },
  47366. },
  47367. [
  47368. {
  47369. name: "Normal",
  47370. height: math.unit(4, "meters"),
  47371. default: true
  47372. },
  47373. {
  47374. name: "XL",
  47375. height: math.unit(6, "meters")
  47376. },
  47377. {
  47378. name: "XXL",
  47379. height: math.unit(8, "meters")
  47380. },
  47381. ]
  47382. ))
  47383. characterMakers.push(() => makeCharacter(
  47384. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47385. {
  47386. front: {
  47387. height: math.unit(6, "feet"),
  47388. name: "Front",
  47389. image: {
  47390. source: "./media/characters/syrinx/front.svg",
  47391. extra: 1557/1259,
  47392. bottom: 171/1728
  47393. }
  47394. },
  47395. },
  47396. [
  47397. {
  47398. name: "Normal",
  47399. height: math.unit(6 + 3/12, "feet"),
  47400. default: true
  47401. },
  47402. ]
  47403. ))
  47404. characterMakers.push(() => makeCharacter(
  47405. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47406. {
  47407. front: {
  47408. height: math.unit(11 + 6/12, "feet"),
  47409. weight: math.unit(1.5, "tons"),
  47410. name: "Front",
  47411. image: {
  47412. source: "./media/characters/bor/front.svg",
  47413. extra: 1189/1109,
  47414. bottom: 170/1359
  47415. }
  47416. },
  47417. },
  47418. [
  47419. {
  47420. name: "Normal",
  47421. height: math.unit(11 + 6/12, "feet"),
  47422. default: true
  47423. },
  47424. {
  47425. name: "Macro",
  47426. height: math.unit(32 + 9/12, "feet")
  47427. },
  47428. ]
  47429. ))
  47430. characterMakers.push(() => makeCharacter(
  47431. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47432. {
  47433. anthro: {
  47434. height: math.unit(9, "feet"),
  47435. weight: math.unit(2076, "lb"),
  47436. name: "Anthro",
  47437. image: {
  47438. source: "./media/characters/abacus/anthro.svg",
  47439. extra: 1540/1494,
  47440. bottom: 233/1773
  47441. }
  47442. },
  47443. pigeon: {
  47444. height: math.unit(1, "feet"),
  47445. name: "Pigeon",
  47446. image: {
  47447. source: "./media/characters/abacus/pigeon.svg",
  47448. extra: 528/525,
  47449. bottom: 46/574
  47450. }
  47451. },
  47452. },
  47453. [
  47454. {
  47455. name: "Normal",
  47456. height: math.unit(9, "feet"),
  47457. default: true
  47458. },
  47459. ]
  47460. ))
  47461. characterMakers.push(() => makeCharacter(
  47462. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47463. {
  47464. side: {
  47465. height: math.unit(6, "feet"),
  47466. name: "Side",
  47467. image: {
  47468. source: "./media/characters/delkhan/side.svg",
  47469. extra: 1884/1786,
  47470. bottom: 308/2192
  47471. }
  47472. },
  47473. head: {
  47474. height: math.unit(3.38, "feet"),
  47475. name: "Head",
  47476. image: {
  47477. source: "./media/characters/delkhan/head.svg"
  47478. }
  47479. },
  47480. },
  47481. [
  47482. {
  47483. name: "Normal",
  47484. height: math.unit(72, "feet"),
  47485. default: true
  47486. },
  47487. {
  47488. name: "Giant",
  47489. height: math.unit(172, "feet")
  47490. },
  47491. ]
  47492. ))
  47493. characterMakers.push(() => makeCharacter(
  47494. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47495. {
  47496. standing: {
  47497. height: math.unit(6, "feet"),
  47498. name: "Standing",
  47499. image: {
  47500. source: "./media/characters/euchidat/standing.svg",
  47501. extra: 1612/1553,
  47502. bottom: 116/1728
  47503. }
  47504. },
  47505. leaning: {
  47506. height: math.unit(6, "feet"),
  47507. name: "Leaning",
  47508. image: {
  47509. source: "./media/characters/euchidat/leaning.svg",
  47510. extra: 1719/1674,
  47511. bottom: 27/1746
  47512. }
  47513. },
  47514. },
  47515. [
  47516. {
  47517. name: "Normal",
  47518. height: math.unit(175, "feet"),
  47519. default: true
  47520. },
  47521. {
  47522. name: "Megamacro",
  47523. height: math.unit(190, "miles")
  47524. },
  47525. {
  47526. name: "Gigamacro",
  47527. height: math.unit(190000, "miles")
  47528. },
  47529. ]
  47530. ))
  47531. characterMakers.push(() => makeCharacter(
  47532. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47533. {
  47534. front: {
  47535. height: math.unit(6, "feet"),
  47536. weight: math.unit(150, "lb"),
  47537. name: "Front",
  47538. image: {
  47539. source: "./media/characters/rebecca-stack/front.svg",
  47540. extra: 1256/1201,
  47541. bottom: 18/1274
  47542. }
  47543. },
  47544. },
  47545. [
  47546. {
  47547. name: "Normal",
  47548. height: math.unit(5 + 8/12, "feet"),
  47549. default: true
  47550. },
  47551. {
  47552. name: "Demolitionist",
  47553. height: math.unit(200, "feet")
  47554. },
  47555. {
  47556. name: "Out of Control",
  47557. height: math.unit(2, "miles")
  47558. },
  47559. {
  47560. name: "Giga",
  47561. height: math.unit(7200, "miles")
  47562. },
  47563. ]
  47564. ))
  47565. characterMakers.push(() => makeCharacter(
  47566. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47567. {
  47568. front: {
  47569. height: math.unit(6, "feet"),
  47570. weight: math.unit(150, "lb"),
  47571. name: "Front",
  47572. image: {
  47573. source: "./media/characters/jenny-cartwright/front.svg",
  47574. extra: 1384/1376,
  47575. bottom: 58/1442
  47576. }
  47577. },
  47578. },
  47579. [
  47580. {
  47581. name: "Normal",
  47582. height: math.unit(6 + 7/12, "feet"),
  47583. default: true
  47584. },
  47585. {
  47586. name: "Librarian",
  47587. height: math.unit(55, "feet")
  47588. },
  47589. {
  47590. name: "Sightseer",
  47591. height: math.unit(50, "miles")
  47592. },
  47593. {
  47594. name: "Giga",
  47595. height: math.unit(30000, "miles")
  47596. },
  47597. ]
  47598. ))
  47599. characterMakers.push(() => makeCharacter(
  47600. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47601. {
  47602. nude: {
  47603. height: math.unit(8, "feet"),
  47604. weight: math.unit(225, "lb"),
  47605. name: "Nude",
  47606. image: {
  47607. source: "./media/characters/marvy/nude.svg",
  47608. extra: 1900/1683,
  47609. bottom: 89/1989
  47610. }
  47611. },
  47612. dressed: {
  47613. height: math.unit(8, "feet"),
  47614. weight: math.unit(225, "lb"),
  47615. name: "Dressed",
  47616. image: {
  47617. source: "./media/characters/marvy/dressed.svg",
  47618. extra: 1900/1683,
  47619. bottom: 89/1989
  47620. }
  47621. },
  47622. head: {
  47623. height: math.unit(2.85, "feet"),
  47624. name: "Head",
  47625. image: {
  47626. source: "./media/characters/marvy/head.svg"
  47627. }
  47628. },
  47629. },
  47630. [
  47631. {
  47632. name: "Normal",
  47633. height: math.unit(8, "feet"),
  47634. default: true
  47635. },
  47636. ]
  47637. ))
  47638. characterMakers.push(() => makeCharacter(
  47639. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47640. {
  47641. front: {
  47642. height: math.unit(8, "feet"),
  47643. weight: math.unit(250, "lb"),
  47644. name: "Front",
  47645. image: {
  47646. source: "./media/characters/leah/front.svg",
  47647. extra: 1257/1149,
  47648. bottom: 109/1366
  47649. }
  47650. },
  47651. },
  47652. [
  47653. {
  47654. name: "Normal",
  47655. height: math.unit(8, "feet"),
  47656. default: true
  47657. },
  47658. {
  47659. name: "Minimacro",
  47660. height: math.unit(40, "feet")
  47661. },
  47662. {
  47663. name: "Macro",
  47664. height: math.unit(124, "feet")
  47665. },
  47666. {
  47667. name: "Megamacro",
  47668. height: math.unit(850, "feet")
  47669. },
  47670. ]
  47671. ))
  47672. characterMakers.push(() => makeCharacter(
  47673. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47674. {
  47675. side: {
  47676. height: math.unit(13 + 6/12, "feet"),
  47677. weight: math.unit(3200, "lb"),
  47678. name: "Side",
  47679. image: {
  47680. source: "./media/characters/alvir/side.svg",
  47681. extra: 896/589,
  47682. bottom: 26/922
  47683. }
  47684. },
  47685. },
  47686. [
  47687. {
  47688. name: "Normal",
  47689. height: math.unit(13 + 6/12, "feet"),
  47690. default: true
  47691. },
  47692. ]
  47693. ))
  47694. characterMakers.push(() => makeCharacter(
  47695. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47696. {
  47697. front: {
  47698. height: math.unit(5 + 4/12, "feet"),
  47699. weight: math.unit(236, "lb"),
  47700. name: "Front",
  47701. image: {
  47702. source: "./media/characters/zaina-khalil/front.svg",
  47703. extra: 1533/1485,
  47704. bottom: 94/1627
  47705. }
  47706. },
  47707. side: {
  47708. height: math.unit(5 + 4/12, "feet"),
  47709. weight: math.unit(236, "lb"),
  47710. name: "Side",
  47711. image: {
  47712. source: "./media/characters/zaina-khalil/side.svg",
  47713. extra: 1537/1498,
  47714. bottom: 66/1603
  47715. }
  47716. },
  47717. back: {
  47718. height: math.unit(5 + 4/12, "feet"),
  47719. weight: math.unit(236, "lb"),
  47720. name: "Back",
  47721. image: {
  47722. source: "./media/characters/zaina-khalil/back.svg",
  47723. extra: 1546/1494,
  47724. bottom: 89/1635
  47725. }
  47726. },
  47727. },
  47728. [
  47729. {
  47730. name: "Normal",
  47731. height: math.unit(5 + 4/12, "feet"),
  47732. default: true
  47733. },
  47734. ]
  47735. ))
  47736. characterMakers.push(() => makeCharacter(
  47737. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47738. {
  47739. side: {
  47740. height: math.unit(12, "feet"),
  47741. weight: math.unit(4000, "lb"),
  47742. name: "Side",
  47743. image: {
  47744. source: "./media/characters/terry/side.svg",
  47745. extra: 1518/1439,
  47746. bottom: 149/1667
  47747. }
  47748. },
  47749. },
  47750. [
  47751. {
  47752. name: "Normal",
  47753. height: math.unit(12, "feet"),
  47754. default: true
  47755. },
  47756. ]
  47757. ))
  47758. characterMakers.push(() => makeCharacter(
  47759. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47760. {
  47761. front: {
  47762. height: math.unit(12, "feet"),
  47763. weight: math.unit(1500, "lb"),
  47764. name: "Front",
  47765. image: {
  47766. source: "./media/characters/kahea/front.svg",
  47767. extra: 1722/1617,
  47768. bottom: 179/1901
  47769. }
  47770. },
  47771. },
  47772. [
  47773. {
  47774. name: "Normal",
  47775. height: math.unit(12, "feet"),
  47776. default: true
  47777. },
  47778. ]
  47779. ))
  47780. characterMakers.push(() => makeCharacter(
  47781. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47782. {
  47783. demonFront: {
  47784. height: math.unit(36, "feet"),
  47785. name: "Front",
  47786. image: {
  47787. source: "./media/characters/alex-xuria/demon-front.svg",
  47788. extra: 1705/1673,
  47789. bottom: 198/1903
  47790. },
  47791. form: "demon",
  47792. default: true
  47793. },
  47794. demonBack: {
  47795. height: math.unit(36, "feet"),
  47796. name: "Back",
  47797. image: {
  47798. source: "./media/characters/alex-xuria/demon-back.svg",
  47799. extra: 1725/1693,
  47800. bottom: 70/1795
  47801. },
  47802. form: "demon"
  47803. },
  47804. demonHead: {
  47805. height: math.unit(2.14, "meters"),
  47806. name: "Head",
  47807. image: {
  47808. source: "./media/characters/alex-xuria/demon-head.svg"
  47809. },
  47810. form: "demon"
  47811. },
  47812. demonHand: {
  47813. height: math.unit(1.61, "meters"),
  47814. name: "Hand",
  47815. image: {
  47816. source: "./media/characters/alex-xuria/demon-hand.svg"
  47817. },
  47818. form: "demon"
  47819. },
  47820. demonPaw: {
  47821. height: math.unit(1.35, "meters"),
  47822. name: "Paw",
  47823. image: {
  47824. source: "./media/characters/alex-xuria/demon-paw.svg"
  47825. },
  47826. form: "demon"
  47827. },
  47828. demonFoot: {
  47829. height: math.unit(2.2, "meters"),
  47830. name: "Foot",
  47831. image: {
  47832. source: "./media/characters/alex-xuria/demon-foot.svg"
  47833. },
  47834. form: "demon"
  47835. },
  47836. demonCock: {
  47837. height: math.unit(1.74, "meters"),
  47838. name: "Cock",
  47839. image: {
  47840. source: "./media/characters/alex-xuria/demon-cock.svg"
  47841. },
  47842. form: "demon"
  47843. },
  47844. demonTailClosed: {
  47845. height: math.unit(1.47, "meters"),
  47846. name: "Tail (Closed)",
  47847. image: {
  47848. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47849. },
  47850. form: "demon"
  47851. },
  47852. demonTailOpen: {
  47853. height: math.unit(2.85, "meters"),
  47854. name: "Tail (Open)",
  47855. image: {
  47856. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47857. },
  47858. form: "demon"
  47859. },
  47860. incubusFront: {
  47861. height: math.unit(12, "feet"),
  47862. name: "Front",
  47863. image: {
  47864. source: "./media/characters/alex-xuria/incubus-front.svg",
  47865. extra: 1754/1677,
  47866. bottom: 125/1879
  47867. },
  47868. form: "incubus",
  47869. default: true
  47870. },
  47871. incubusBack: {
  47872. height: math.unit(12, "feet"),
  47873. name: "Back",
  47874. image: {
  47875. source: "./media/characters/alex-xuria/incubus-back.svg",
  47876. extra: 1702/1647,
  47877. bottom: 30/1732
  47878. },
  47879. form: "incubus"
  47880. },
  47881. incubusHead: {
  47882. height: math.unit(3.45, "feet"),
  47883. name: "Head",
  47884. image: {
  47885. source: "./media/characters/alex-xuria/incubus-head.svg"
  47886. },
  47887. form: "incubus"
  47888. },
  47889. rabbitFront: {
  47890. height: math.unit(6, "feet"),
  47891. name: "Front",
  47892. image: {
  47893. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47894. extra: 1369/1349,
  47895. bottom: 45/1414
  47896. },
  47897. form: "rabbit",
  47898. default: true
  47899. },
  47900. rabbitSide: {
  47901. height: math.unit(6, "feet"),
  47902. name: "Side",
  47903. image: {
  47904. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47905. extra: 1370/1356,
  47906. bottom: 37/1407
  47907. },
  47908. form: "rabbit"
  47909. },
  47910. rabbitBack: {
  47911. height: math.unit(6, "feet"),
  47912. name: "Back",
  47913. image: {
  47914. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47915. extra: 1375/1358,
  47916. bottom: 43/1418
  47917. },
  47918. form: "rabbit"
  47919. },
  47920. },
  47921. [
  47922. {
  47923. name: "Normal",
  47924. height: math.unit(6, "feet"),
  47925. default: true,
  47926. form: "rabbit"
  47927. },
  47928. {
  47929. name: "Incubus",
  47930. height: math.unit(12, "feet"),
  47931. default: true,
  47932. form: "incubus"
  47933. },
  47934. {
  47935. name: "Demon",
  47936. height: math.unit(36, "feet"),
  47937. default: true,
  47938. form: "demon"
  47939. }
  47940. ],
  47941. {
  47942. "demon": {
  47943. name: "Demon",
  47944. default: true
  47945. },
  47946. "incubus": {
  47947. name: "Incubus",
  47948. },
  47949. "rabbit": {
  47950. name: "Rabbit"
  47951. }
  47952. }
  47953. ))
  47954. characterMakers.push(() => makeCharacter(
  47955. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47956. {
  47957. front: {
  47958. height: math.unit(7 + 5/12, "feet"),
  47959. weight: math.unit(510, "lb"),
  47960. name: "Front",
  47961. image: {
  47962. source: "./media/characters/syrup/front.svg",
  47963. extra: 932/916,
  47964. bottom: 26/958
  47965. }
  47966. },
  47967. },
  47968. [
  47969. {
  47970. name: "Normal",
  47971. height: math.unit(7 + 5/12, "feet"),
  47972. default: true
  47973. },
  47974. {
  47975. name: "Big",
  47976. height: math.unit(50, "feet")
  47977. },
  47978. {
  47979. name: "Macro",
  47980. height: math.unit(300, "feet")
  47981. },
  47982. {
  47983. name: "Megamacro",
  47984. height: math.unit(1, "mile")
  47985. },
  47986. ]
  47987. ))
  47988. characterMakers.push(() => makeCharacter(
  47989. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47990. {
  47991. front: {
  47992. height: math.unit(6 + 9/12, "feet"),
  47993. name: "Front",
  47994. image: {
  47995. source: "./media/characters/zeimne/front.svg",
  47996. extra: 1969/1806,
  47997. bottom: 53/2022
  47998. }
  47999. },
  48000. },
  48001. [
  48002. {
  48003. name: "Normal",
  48004. height: math.unit(6 + 9/12, "feet"),
  48005. default: true
  48006. },
  48007. {
  48008. name: "Giant",
  48009. height: math.unit(550, "feet")
  48010. },
  48011. {
  48012. name: "Mega",
  48013. height: math.unit(3, "miles")
  48014. },
  48015. {
  48016. name: "Giga",
  48017. height: math.unit(250, "miles")
  48018. },
  48019. {
  48020. name: "Tera",
  48021. height: math.unit(1, "AU")
  48022. },
  48023. ]
  48024. ))
  48025. characterMakers.push(() => makeCharacter(
  48026. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48027. {
  48028. front: {
  48029. height: math.unit(5 + 2/12, "feet"),
  48030. name: "Front",
  48031. image: {
  48032. source: "./media/characters/grar/front.svg",
  48033. extra: 1331/1119,
  48034. bottom: 60/1391
  48035. }
  48036. },
  48037. back: {
  48038. height: math.unit(5 + 2/12, "feet"),
  48039. name: "Back",
  48040. image: {
  48041. source: "./media/characters/grar/back.svg",
  48042. extra: 1385/1169,
  48043. bottom: 23/1408
  48044. }
  48045. },
  48046. },
  48047. [
  48048. {
  48049. name: "Normal",
  48050. height: math.unit(5 + 2/12, "feet"),
  48051. default: true
  48052. },
  48053. ]
  48054. ))
  48055. characterMakers.push(() => makeCharacter(
  48056. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48057. {
  48058. front: {
  48059. height: math.unit(13 + 7/12, "feet"),
  48060. weight: math.unit(2200, "lb"),
  48061. name: "Front",
  48062. image: {
  48063. source: "./media/characters/endraya/front.svg",
  48064. extra: 1289/1215,
  48065. bottom: 50/1339
  48066. }
  48067. },
  48068. nude: {
  48069. height: math.unit(13 + 7/12, "feet"),
  48070. weight: math.unit(2200, "lb"),
  48071. name: "Nude",
  48072. image: {
  48073. source: "./media/characters/endraya/nude.svg",
  48074. extra: 1247/1171,
  48075. bottom: 40/1287
  48076. }
  48077. },
  48078. head: {
  48079. height: math.unit(2.6, "feet"),
  48080. name: "Head",
  48081. image: {
  48082. source: "./media/characters/endraya/head.svg"
  48083. }
  48084. },
  48085. slit: {
  48086. height: math.unit(3.4, "feet"),
  48087. name: "Slit",
  48088. image: {
  48089. source: "./media/characters/endraya/slit.svg"
  48090. }
  48091. },
  48092. },
  48093. [
  48094. {
  48095. name: "Normal",
  48096. height: math.unit(13 + 7/12, "feet"),
  48097. default: true
  48098. },
  48099. {
  48100. name: "Macro",
  48101. height: math.unit(200, "feet")
  48102. },
  48103. ]
  48104. ))
  48105. characterMakers.push(() => makeCharacter(
  48106. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48107. {
  48108. front: {
  48109. height: math.unit(1.81, "meters"),
  48110. weight: math.unit(69, "kg"),
  48111. name: "Front",
  48112. image: {
  48113. source: "./media/characters/rodryana/front.svg",
  48114. extra: 2002/1921,
  48115. bottom: 53/2055
  48116. }
  48117. },
  48118. back: {
  48119. height: math.unit(1.81, "meters"),
  48120. weight: math.unit(69, "kg"),
  48121. name: "Back",
  48122. image: {
  48123. source: "./media/characters/rodryana/back.svg",
  48124. extra: 1993/1926,
  48125. bottom: 48/2041
  48126. }
  48127. },
  48128. maw: {
  48129. height: math.unit(0.19769417475, "meters"),
  48130. name: "Maw",
  48131. image: {
  48132. source: "./media/characters/rodryana/maw.svg"
  48133. }
  48134. },
  48135. slit: {
  48136. height: math.unit(0.31631067961, "meters"),
  48137. name: "Slit",
  48138. image: {
  48139. source: "./media/characters/rodryana/slit.svg"
  48140. }
  48141. },
  48142. },
  48143. [
  48144. {
  48145. name: "Normal",
  48146. height: math.unit(1.81, "meters")
  48147. },
  48148. {
  48149. name: "Mini Macro",
  48150. height: math.unit(181, "meters")
  48151. },
  48152. {
  48153. name: "Macro",
  48154. height: math.unit(452, "meters"),
  48155. default: true
  48156. },
  48157. {
  48158. name: "Mega Macro",
  48159. height: math.unit(1.375, "km")
  48160. },
  48161. {
  48162. name: "Giga Macro",
  48163. height: math.unit(13.575, "km")
  48164. },
  48165. ]
  48166. ))
  48167. characterMakers.push(() => makeCharacter(
  48168. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48169. {
  48170. front: {
  48171. height: math.unit(6, "feet"),
  48172. weight: math.unit(1000, "lb"),
  48173. name: "Front",
  48174. image: {
  48175. source: "./media/characters/asaya/front.svg",
  48176. extra: 1460/1200,
  48177. bottom: 71/1531
  48178. }
  48179. },
  48180. },
  48181. [
  48182. {
  48183. name: "Normal",
  48184. height: math.unit(8, "km"),
  48185. default: true
  48186. },
  48187. ]
  48188. ))
  48189. characterMakers.push(() => makeCharacter(
  48190. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48191. {
  48192. front: {
  48193. height: math.unit(3.5, "meters"),
  48194. name: "Front",
  48195. image: {
  48196. source: "./media/characters/sarzu-and-israz/front.svg",
  48197. extra: 1570/1558,
  48198. bottom: 150/1720
  48199. },
  48200. },
  48201. back: {
  48202. height: math.unit(3.5, "meters"),
  48203. name: "Back",
  48204. image: {
  48205. source: "./media/characters/sarzu-and-israz/back.svg",
  48206. extra: 1523/1509,
  48207. bottom: 132/1655
  48208. },
  48209. },
  48210. frontFemale: {
  48211. height: math.unit(3.5, "meters"),
  48212. name: "Front (Female)",
  48213. image: {
  48214. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48215. extra: 1570/1558,
  48216. bottom: 150/1720
  48217. },
  48218. },
  48219. frontHerm: {
  48220. height: math.unit(3.5, "meters"),
  48221. name: "Front (Herm)",
  48222. image: {
  48223. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48224. extra: 1570/1558,
  48225. bottom: 150/1720
  48226. },
  48227. },
  48228. },
  48229. [
  48230. {
  48231. name: "Normal",
  48232. height: math.unit(3.5, "meters"),
  48233. default: true,
  48234. },
  48235. {
  48236. name: "Macro",
  48237. height: math.unit(65.5, "meters"),
  48238. },
  48239. ],
  48240. ))
  48241. characterMakers.push(() => makeCharacter(
  48242. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48243. {
  48244. front: {
  48245. height: math.unit(6, "feet"),
  48246. weight: math.unit(250, "lb"),
  48247. name: "Front",
  48248. image: {
  48249. source: "./media/characters/zenimma/front.svg",
  48250. extra: 1346/1320,
  48251. bottom: 58/1404
  48252. }
  48253. },
  48254. back: {
  48255. height: math.unit(6, "feet"),
  48256. weight: math.unit(250, "lb"),
  48257. name: "Back",
  48258. image: {
  48259. source: "./media/characters/zenimma/back.svg",
  48260. extra: 1324/1308,
  48261. bottom: 44/1368
  48262. }
  48263. },
  48264. dick: {
  48265. height: math.unit(1.44, "feet"),
  48266. name: "Dick",
  48267. image: {
  48268. source: "./media/characters/zenimma/dick.svg"
  48269. }
  48270. },
  48271. },
  48272. [
  48273. {
  48274. name: "Canon Height",
  48275. height: math.unit(66, "miles"),
  48276. default: true
  48277. },
  48278. ]
  48279. ))
  48280. characterMakers.push(() => makeCharacter(
  48281. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48282. {
  48283. nude: {
  48284. height: math.unit(6, "feet"),
  48285. weight: math.unit(150, "lb"),
  48286. name: "Nude",
  48287. image: {
  48288. source: "./media/characters/shavon/nude.svg",
  48289. extra: 1242/1096,
  48290. bottom: 98/1340
  48291. }
  48292. },
  48293. dressed: {
  48294. height: math.unit(6, "feet"),
  48295. weight: math.unit(150, "lb"),
  48296. name: "Dressed",
  48297. image: {
  48298. source: "./media/characters/shavon/dressed.svg",
  48299. extra: 1242/1096,
  48300. bottom: 98/1340
  48301. }
  48302. },
  48303. },
  48304. [
  48305. {
  48306. name: "Macro",
  48307. height: math.unit(255, "feet"),
  48308. default: true
  48309. },
  48310. ]
  48311. ))
  48312. characterMakers.push(() => makeCharacter(
  48313. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48314. {
  48315. front: {
  48316. height: math.unit(6, "feet"),
  48317. name: "Front",
  48318. image: {
  48319. source: "./media/characters/steph/front.svg",
  48320. extra: 1430/1330,
  48321. bottom: 54/1484
  48322. }
  48323. },
  48324. },
  48325. [
  48326. {
  48327. name: "Normal",
  48328. height: math.unit(6, "feet"),
  48329. default: true
  48330. },
  48331. ]
  48332. ))
  48333. characterMakers.push(() => makeCharacter(
  48334. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48335. {
  48336. front: {
  48337. height: math.unit(9, "feet"),
  48338. weight: math.unit(400, "lb"),
  48339. name: "Front",
  48340. image: {
  48341. source: "./media/characters/kil'aman/front.svg",
  48342. extra: 1210/1159,
  48343. bottom: 109/1319
  48344. }
  48345. },
  48346. head: {
  48347. height: math.unit(2.14, "feet"),
  48348. name: "Head",
  48349. image: {
  48350. source: "./media/characters/kil'aman/head.svg"
  48351. }
  48352. },
  48353. maw: {
  48354. height: math.unit(1.21, "feet"),
  48355. name: "Maw",
  48356. image: {
  48357. source: "./media/characters/kil'aman/maw.svg"
  48358. }
  48359. },
  48360. foot: {
  48361. height: math.unit(1.7, "feet"),
  48362. name: "Foot",
  48363. image: {
  48364. source: "./media/characters/kil'aman/foot.svg"
  48365. }
  48366. },
  48367. dick: {
  48368. height: math.unit(2.1, "feet"),
  48369. name: "Dick",
  48370. image: {
  48371. source: "./media/characters/kil'aman/dick.svg"
  48372. }
  48373. },
  48374. },
  48375. [
  48376. {
  48377. name: "Normal",
  48378. height: math.unit(9, "feet")
  48379. },
  48380. {
  48381. name: "Canon Height",
  48382. height: math.unit(10, "miles"),
  48383. default: true
  48384. },
  48385. {
  48386. name: "Maximum",
  48387. height: math.unit(6e9, "miles")
  48388. },
  48389. ]
  48390. ))
  48391. characterMakers.push(() => makeCharacter(
  48392. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48393. {
  48394. front: {
  48395. height: math.unit(90, "feet"),
  48396. weight: math.unit(675000, "lb"),
  48397. name: "Front",
  48398. image: {
  48399. source: "./media/characters/qadan/front.svg",
  48400. extra: 1012/1004,
  48401. bottom: 78/1090
  48402. }
  48403. },
  48404. back: {
  48405. height: math.unit(90, "feet"),
  48406. weight: math.unit(675000, "lb"),
  48407. name: "Back",
  48408. image: {
  48409. source: "./media/characters/qadan/back.svg",
  48410. extra: 1042/1031,
  48411. bottom: 55/1097
  48412. }
  48413. },
  48414. armored: {
  48415. height: math.unit(90, "feet"),
  48416. weight: math.unit(675000, "lb"),
  48417. name: "Armored",
  48418. image: {
  48419. source: "./media/characters/qadan/armored.svg",
  48420. extra: 1047/1037,
  48421. bottom: 48/1095
  48422. }
  48423. },
  48424. },
  48425. [
  48426. {
  48427. name: "Normal",
  48428. height: math.unit(90, "feet"),
  48429. default: true
  48430. },
  48431. ]
  48432. ))
  48433. characterMakers.push(() => makeCharacter(
  48434. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48435. {
  48436. front: {
  48437. height: math.unit(6, "feet"),
  48438. weight: math.unit(225, "lb"),
  48439. name: "Front",
  48440. image: {
  48441. source: "./media/characters/brooke/front.svg",
  48442. extra: 1050/1010,
  48443. bottom: 66/1116
  48444. }
  48445. },
  48446. back: {
  48447. height: math.unit(6, "feet"),
  48448. weight: math.unit(225, "lb"),
  48449. name: "Back",
  48450. image: {
  48451. source: "./media/characters/brooke/back.svg",
  48452. extra: 1053/1013,
  48453. bottom: 41/1094
  48454. }
  48455. },
  48456. dressed: {
  48457. height: math.unit(6, "feet"),
  48458. weight: math.unit(225, "lb"),
  48459. name: "Dressed",
  48460. image: {
  48461. source: "./media/characters/brooke/dressed.svg",
  48462. extra: 1050/1010,
  48463. bottom: 66/1116
  48464. }
  48465. },
  48466. },
  48467. [
  48468. {
  48469. name: "Canon Height",
  48470. height: math.unit(500, "miles"),
  48471. default: true
  48472. },
  48473. ]
  48474. ))
  48475. characterMakers.push(() => makeCharacter(
  48476. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48477. {
  48478. front: {
  48479. height: math.unit(6 + 2/12, "feet"),
  48480. weight: math.unit(210, "lb"),
  48481. name: "Front",
  48482. image: {
  48483. source: "./media/characters/wubs/front.svg",
  48484. extra: 1345/1325,
  48485. bottom: 70/1415
  48486. }
  48487. },
  48488. back: {
  48489. height: math.unit(6 + 2/12, "feet"),
  48490. weight: math.unit(210, "lb"),
  48491. name: "Back",
  48492. image: {
  48493. source: "./media/characters/wubs/back.svg",
  48494. extra: 1296/1275,
  48495. bottom: 58/1354
  48496. }
  48497. },
  48498. },
  48499. [
  48500. {
  48501. name: "Normal",
  48502. height: math.unit(6 + 2/12, "feet"),
  48503. default: true
  48504. },
  48505. {
  48506. name: "Macro",
  48507. height: math.unit(1000, "feet")
  48508. },
  48509. {
  48510. name: "Megamacro",
  48511. height: math.unit(1, "mile")
  48512. },
  48513. ]
  48514. ))
  48515. characterMakers.push(() => makeCharacter(
  48516. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48517. {
  48518. front: {
  48519. height: math.unit(4, "feet"),
  48520. weight: math.unit(120, "lb"),
  48521. name: "Front",
  48522. image: {
  48523. source: "./media/characters/blue/front.svg",
  48524. extra: 1636/1525,
  48525. bottom: 43/1679
  48526. }
  48527. },
  48528. back: {
  48529. height: math.unit(4, "feet"),
  48530. weight: math.unit(120, "lb"),
  48531. name: "Back",
  48532. image: {
  48533. source: "./media/characters/blue/back.svg",
  48534. extra: 1660/1560,
  48535. bottom: 57/1717
  48536. }
  48537. },
  48538. paws: {
  48539. height: math.unit(0.826, "feet"),
  48540. name: "Paws",
  48541. image: {
  48542. source: "./media/characters/blue/paws.svg"
  48543. }
  48544. },
  48545. },
  48546. [
  48547. {
  48548. name: "Micro",
  48549. height: math.unit(3, "inches")
  48550. },
  48551. {
  48552. name: "Normal",
  48553. height: math.unit(4, "feet"),
  48554. default: true
  48555. },
  48556. {
  48557. name: "Femenine Form",
  48558. height: math.unit(14, "feet")
  48559. },
  48560. {
  48561. name: "Werebat Form",
  48562. height: math.unit(18, "feet")
  48563. },
  48564. ]
  48565. ))
  48566. characterMakers.push(() => makeCharacter(
  48567. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48568. {
  48569. female: {
  48570. height: math.unit(7 + 4/12, "feet"),
  48571. weight: math.unit(243, "lb"),
  48572. name: "Female",
  48573. image: {
  48574. source: "./media/characters/kaya/female.svg",
  48575. extra: 975/898,
  48576. bottom: 34/1009
  48577. }
  48578. },
  48579. herm: {
  48580. height: math.unit(7 + 4/12, "feet"),
  48581. weight: math.unit(243, "lb"),
  48582. name: "Herm",
  48583. image: {
  48584. source: "./media/characters/kaya/herm.svg",
  48585. extra: 975/898,
  48586. bottom: 34/1009
  48587. }
  48588. },
  48589. },
  48590. [
  48591. {
  48592. name: "Normal",
  48593. height: math.unit(7 + 4/12, "feet"),
  48594. default: true
  48595. },
  48596. ]
  48597. ))
  48598. characterMakers.push(() => makeCharacter(
  48599. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48600. {
  48601. female: {
  48602. height: math.unit(9 + 4/12, "feet"),
  48603. weight: math.unit(398, "lb"),
  48604. name: "Female",
  48605. image: {
  48606. source: "./media/characters/kassandra/female.svg",
  48607. extra: 908/839,
  48608. bottom: 61/969
  48609. }
  48610. },
  48611. intersex: {
  48612. height: math.unit(9 + 4/12, "feet"),
  48613. weight: math.unit(398, "lb"),
  48614. name: "Intersex",
  48615. image: {
  48616. source: "./media/characters/kassandra/intersex.svg",
  48617. extra: 908/839,
  48618. bottom: 61/969
  48619. }
  48620. },
  48621. },
  48622. [
  48623. {
  48624. name: "Normal",
  48625. height: math.unit(9 + 4/12, "feet"),
  48626. default: true
  48627. },
  48628. ]
  48629. ))
  48630. characterMakers.push(() => makeCharacter(
  48631. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48632. {
  48633. front: {
  48634. height: math.unit(3, "meters"),
  48635. name: "Front",
  48636. image: {
  48637. source: "./media/characters/amy/front.svg",
  48638. extra: 1380/1343,
  48639. bottom: 70/1450
  48640. }
  48641. },
  48642. back: {
  48643. height: math.unit(3, "meters"),
  48644. name: "Back",
  48645. image: {
  48646. source: "./media/characters/amy/back.svg",
  48647. extra: 1380/1347,
  48648. bottom: 66/1446
  48649. }
  48650. },
  48651. },
  48652. [
  48653. {
  48654. name: "Normal",
  48655. height: math.unit(3, "meters"),
  48656. default: true
  48657. },
  48658. ]
  48659. ))
  48660. characterMakers.push(() => makeCharacter(
  48661. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48662. {
  48663. side: {
  48664. height: math.unit(47, "cm"),
  48665. weight: math.unit(10.8, "kg"),
  48666. name: "Side",
  48667. image: {
  48668. source: "./media/characters/alphaschakal/side.svg",
  48669. extra: 1058/568,
  48670. bottom: 62/1120
  48671. }
  48672. },
  48673. back: {
  48674. height: math.unit(78, "cm"),
  48675. weight: math.unit(10.8, "kg"),
  48676. name: "Back",
  48677. image: {
  48678. source: "./media/characters/alphaschakal/back.svg",
  48679. extra: 1102/942,
  48680. bottom: 185/1287
  48681. }
  48682. },
  48683. head: {
  48684. height: math.unit(28, "cm"),
  48685. name: "Head",
  48686. image: {
  48687. source: "./media/characters/alphaschakal/head.svg",
  48688. extra: 696/508,
  48689. bottom: 0/696
  48690. }
  48691. },
  48692. paw: {
  48693. height: math.unit(16, "cm"),
  48694. name: "Paw",
  48695. image: {
  48696. source: "./media/characters/alphaschakal/paw.svg"
  48697. }
  48698. },
  48699. },
  48700. [
  48701. {
  48702. name: "Normal",
  48703. height: math.unit(47, "cm"),
  48704. default: true
  48705. },
  48706. {
  48707. name: "Macro",
  48708. height: math.unit(340, "cm")
  48709. },
  48710. ]
  48711. ))
  48712. characterMakers.push(() => makeCharacter(
  48713. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48714. {
  48715. front: {
  48716. height: math.unit(36, "earths"),
  48717. name: "Front",
  48718. image: {
  48719. source: "./media/characters/ecobyss/front.svg",
  48720. extra: 1282/1215,
  48721. bottom: 11/1293
  48722. }
  48723. },
  48724. back: {
  48725. height: math.unit(36, "earths"),
  48726. name: "Back",
  48727. image: {
  48728. source: "./media/characters/ecobyss/back.svg",
  48729. extra: 1291/1222,
  48730. bottom: 8/1299
  48731. }
  48732. },
  48733. },
  48734. [
  48735. {
  48736. name: "Normal",
  48737. height: math.unit(36, "earths"),
  48738. default: true
  48739. },
  48740. ]
  48741. ))
  48742. characterMakers.push(() => makeCharacter(
  48743. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48744. {
  48745. front: {
  48746. height: math.unit(12, "feet"),
  48747. name: "Front",
  48748. image: {
  48749. source: "./media/characters/vasuk/front.svg",
  48750. extra: 1326/1207,
  48751. bottom: 64/1390
  48752. }
  48753. },
  48754. },
  48755. [
  48756. {
  48757. name: "Normal",
  48758. height: math.unit(12, "feet"),
  48759. default: true
  48760. },
  48761. ]
  48762. ))
  48763. characterMakers.push(() => makeCharacter(
  48764. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48765. {
  48766. side: {
  48767. height: math.unit(100, "feet"),
  48768. name: "Side",
  48769. image: {
  48770. source: "./media/characters/linneaus/side.svg",
  48771. extra: 987/807,
  48772. bottom: 47/1034
  48773. }
  48774. },
  48775. },
  48776. [
  48777. {
  48778. name: "Macro",
  48779. height: math.unit(100, "feet"),
  48780. default: true
  48781. },
  48782. ]
  48783. ))
  48784. characterMakers.push(() => makeCharacter(
  48785. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48786. {
  48787. front: {
  48788. height: math.unit(8, "feet"),
  48789. weight: math.unit(1200, "lb"),
  48790. name: "Front",
  48791. image: {
  48792. source: "./media/characters/nyterious-daligdig/front.svg",
  48793. extra: 1284/1094,
  48794. bottom: 84/1368
  48795. }
  48796. },
  48797. back: {
  48798. height: math.unit(8, "feet"),
  48799. weight: math.unit(1200, "lb"),
  48800. name: "Back",
  48801. image: {
  48802. source: "./media/characters/nyterious-daligdig/back.svg",
  48803. extra: 1301/1121,
  48804. bottom: 129/1430
  48805. }
  48806. },
  48807. mouth: {
  48808. height: math.unit(1.464, "feet"),
  48809. name: "Mouth",
  48810. image: {
  48811. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48812. }
  48813. },
  48814. },
  48815. [
  48816. {
  48817. name: "Small",
  48818. height: math.unit(8, "feet"),
  48819. default: true
  48820. },
  48821. {
  48822. name: "Normal",
  48823. height: math.unit(15, "feet")
  48824. },
  48825. {
  48826. name: "Macro",
  48827. height: math.unit(90, "feet")
  48828. },
  48829. ]
  48830. ))
  48831. characterMakers.push(() => makeCharacter(
  48832. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48833. {
  48834. front: {
  48835. height: math.unit(7 + 4/12, "feet"),
  48836. weight: math.unit(252, "lb"),
  48837. name: "Front",
  48838. image: {
  48839. source: "./media/characters/bandel/front.svg",
  48840. extra: 1946/1775,
  48841. bottom: 26/1972
  48842. }
  48843. },
  48844. back: {
  48845. height: math.unit(7 + 4/12, "feet"),
  48846. weight: math.unit(252, "lb"),
  48847. name: "Back",
  48848. image: {
  48849. source: "./media/characters/bandel/back.svg",
  48850. extra: 1940/1770,
  48851. bottom: 25/1965
  48852. }
  48853. },
  48854. maw: {
  48855. height: math.unit(2.15, "feet"),
  48856. name: "Maw",
  48857. image: {
  48858. source: "./media/characters/bandel/maw.svg"
  48859. }
  48860. },
  48861. stomach: {
  48862. height: math.unit(1.95, "feet"),
  48863. name: "Stomach",
  48864. image: {
  48865. source: "./media/characters/bandel/stomach.svg"
  48866. }
  48867. },
  48868. },
  48869. [
  48870. {
  48871. name: "Normal",
  48872. height: math.unit(7 + 4/12, "feet"),
  48873. default: true
  48874. },
  48875. ]
  48876. ))
  48877. characterMakers.push(() => makeCharacter(
  48878. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48879. {
  48880. front: {
  48881. height: math.unit(10 + 5/12, "feet"),
  48882. weight: math.unit(773.5, "kg"),
  48883. name: "Front",
  48884. image: {
  48885. source: "./media/characters/zed/front.svg",
  48886. extra: 987/941,
  48887. bottom: 52/1039
  48888. }
  48889. },
  48890. },
  48891. [
  48892. {
  48893. name: "Short",
  48894. height: math.unit(5 + 4/12, "feet")
  48895. },
  48896. {
  48897. name: "Average",
  48898. height: math.unit(10 + 5/12, "feet"),
  48899. default: true
  48900. },
  48901. {
  48902. name: "Mini-Macro",
  48903. height: math.unit(24 + 9/12, "feet")
  48904. },
  48905. {
  48906. name: "Macro",
  48907. height: math.unit(249, "feet")
  48908. },
  48909. {
  48910. name: "Mega-Macro",
  48911. height: math.unit(12490, "feet")
  48912. },
  48913. {
  48914. name: "Giga-Macro",
  48915. height: math.unit(24.9, "miles")
  48916. },
  48917. {
  48918. name: "Tera-Macro",
  48919. height: math.unit(24900, "miles")
  48920. },
  48921. {
  48922. name: "Cosmic Scale",
  48923. height: math.unit(38.9, "lightyears")
  48924. },
  48925. {
  48926. name: "Universal Scale",
  48927. height: math.unit(138e12, "lightyears")
  48928. },
  48929. ]
  48930. ))
  48931. characterMakers.push(() => makeCharacter(
  48932. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48933. {
  48934. front: {
  48935. height: math.unit(1561, "inches"),
  48936. name: "Front",
  48937. image: {
  48938. source: "./media/characters/ivan/front.svg",
  48939. extra: 1126/1071,
  48940. bottom: 26/1152
  48941. }
  48942. },
  48943. back: {
  48944. height: math.unit(1561, "inches"),
  48945. name: "Back",
  48946. image: {
  48947. source: "./media/characters/ivan/back.svg",
  48948. extra: 1134/1079,
  48949. bottom: 30/1164
  48950. }
  48951. },
  48952. },
  48953. [
  48954. {
  48955. name: "Normal",
  48956. height: math.unit(1561, "inches"),
  48957. default: true
  48958. },
  48959. ]
  48960. ))
  48961. characterMakers.push(() => makeCharacter(
  48962. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48963. {
  48964. front: {
  48965. height: math.unit(5 + 7/12, "feet"),
  48966. weight: math.unit(150, "lb"),
  48967. name: "Front",
  48968. image: {
  48969. source: "./media/characters/robin-arctic-hare/front.svg",
  48970. extra: 1148/974,
  48971. bottom: 20/1168
  48972. }
  48973. },
  48974. },
  48975. [
  48976. {
  48977. name: "Normal",
  48978. height: math.unit(5 + 7/12, "feet"),
  48979. default: true
  48980. },
  48981. ]
  48982. ))
  48983. characterMakers.push(() => makeCharacter(
  48984. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48985. {
  48986. side: {
  48987. height: math.unit(5, "feet"),
  48988. name: "Side",
  48989. image: {
  48990. source: "./media/characters/birch/side.svg",
  48991. extra: 985/796,
  48992. bottom: 111/1096
  48993. }
  48994. },
  48995. },
  48996. [
  48997. {
  48998. name: "Normal",
  48999. height: math.unit(5, "feet"),
  49000. default: true
  49001. },
  49002. ]
  49003. ))
  49004. characterMakers.push(() => makeCharacter(
  49005. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49006. {
  49007. front: {
  49008. height: math.unit(4, "feet"),
  49009. name: "Front",
  49010. image: {
  49011. source: "./media/characters/rasp/front.svg",
  49012. extra: 561/478,
  49013. bottom: 74/635
  49014. }
  49015. },
  49016. },
  49017. [
  49018. {
  49019. name: "Normal",
  49020. height: math.unit(4, "feet"),
  49021. default: true
  49022. },
  49023. ]
  49024. ))
  49025. characterMakers.push(() => makeCharacter(
  49026. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49027. {
  49028. front: {
  49029. height: math.unit(4 + 6/12, "feet"),
  49030. name: "Front",
  49031. image: {
  49032. source: "./media/characters/agatha/front.svg",
  49033. extra: 947/933,
  49034. bottom: 42/989
  49035. }
  49036. },
  49037. back: {
  49038. height: math.unit(4 + 6/12, "feet"),
  49039. name: "Back",
  49040. image: {
  49041. source: "./media/characters/agatha/back.svg",
  49042. extra: 935/922,
  49043. bottom: 48/983
  49044. }
  49045. },
  49046. },
  49047. [
  49048. {
  49049. name: "Normal",
  49050. height: math.unit(4 + 6 /12, "feet"),
  49051. default: true
  49052. },
  49053. {
  49054. name: "Max Size",
  49055. height: math.unit(500, "feet")
  49056. },
  49057. ]
  49058. ))
  49059. characterMakers.push(() => makeCharacter(
  49060. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49061. {
  49062. side: {
  49063. height: math.unit(30, "feet"),
  49064. name: "Side",
  49065. image: {
  49066. source: "./media/characters/roggy/side.svg",
  49067. extra: 909/643,
  49068. bottom: 63/972
  49069. }
  49070. },
  49071. lounging: {
  49072. height: math.unit(20, "feet"),
  49073. name: "Lounging",
  49074. image: {
  49075. source: "./media/characters/roggy/lounging.svg",
  49076. extra: 643/479,
  49077. bottom: 145/788
  49078. }
  49079. },
  49080. handpaw: {
  49081. height: math.unit(13.1, "feet"),
  49082. name: "Handpaw",
  49083. image: {
  49084. source: "./media/characters/roggy/handpaw.svg"
  49085. }
  49086. },
  49087. footpaw: {
  49088. height: math.unit(15.8, "feet"),
  49089. name: "Footpaw",
  49090. image: {
  49091. source: "./media/characters/roggy/footpaw.svg"
  49092. }
  49093. },
  49094. },
  49095. [
  49096. {
  49097. name: "Menacing",
  49098. height: math.unit(30, "feet"),
  49099. default: true
  49100. },
  49101. ]
  49102. ))
  49103. characterMakers.push(() => makeCharacter(
  49104. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49105. {
  49106. front: {
  49107. height: math.unit(5 + 7/12, "feet"),
  49108. weight: math.unit(135, "lb"),
  49109. name: "Front",
  49110. image: {
  49111. source: "./media/characters/naomi/front.svg",
  49112. extra: 1209/1154,
  49113. bottom: 129/1338
  49114. }
  49115. },
  49116. back: {
  49117. height: math.unit(5 + 7/12, "feet"),
  49118. weight: math.unit(135, "lb"),
  49119. name: "Back",
  49120. image: {
  49121. source: "./media/characters/naomi/back.svg",
  49122. extra: 1252/1190,
  49123. bottom: 23/1275
  49124. }
  49125. },
  49126. },
  49127. [
  49128. {
  49129. name: "Normal",
  49130. height: math.unit(5 + 7 /12, "feet"),
  49131. default: true
  49132. },
  49133. ]
  49134. ))
  49135. characterMakers.push(() => makeCharacter(
  49136. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49137. {
  49138. side: {
  49139. height: math.unit(35, "meters"),
  49140. name: "Side",
  49141. image: {
  49142. source: "./media/characters/kimpi/side.svg",
  49143. extra: 419/382,
  49144. bottom: 63/482
  49145. }
  49146. },
  49147. hand: {
  49148. height: math.unit(8.96, "meters"),
  49149. name: "Hand",
  49150. image: {
  49151. source: "./media/characters/kimpi/hand.svg"
  49152. }
  49153. },
  49154. },
  49155. [
  49156. {
  49157. name: "Normal",
  49158. height: math.unit(35, "meters"),
  49159. default: true
  49160. },
  49161. ]
  49162. ))
  49163. characterMakers.push(() => makeCharacter(
  49164. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49165. {
  49166. front: {
  49167. height: math.unit(4 + 4/12, "feet"),
  49168. name: "Front",
  49169. image: {
  49170. source: "./media/characters/pepper-purrloin/front.svg",
  49171. extra: 1141/1024,
  49172. bottom: 21/1162
  49173. }
  49174. },
  49175. },
  49176. [
  49177. {
  49178. name: "Normal",
  49179. height: math.unit(4 + 4/12, "feet"),
  49180. default: true
  49181. },
  49182. ]
  49183. ))
  49184. characterMakers.push(() => makeCharacter(
  49185. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49186. {
  49187. front: {
  49188. height: math.unit(6 + 2/12, "feet"),
  49189. name: "Front",
  49190. image: {
  49191. source: "./media/characters/raphael/front.svg",
  49192. extra: 1101/962,
  49193. bottom: 59/1160
  49194. }
  49195. },
  49196. },
  49197. [
  49198. {
  49199. name: "Normal",
  49200. height: math.unit(6 + 2/12, "feet"),
  49201. default: true
  49202. },
  49203. ]
  49204. ))
  49205. characterMakers.push(() => makeCharacter(
  49206. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49207. {
  49208. front: {
  49209. height: math.unit(6, "feet"),
  49210. weight: math.unit(150, "lb"),
  49211. name: "Front",
  49212. image: {
  49213. source: "./media/characters/victor-williams/front.svg",
  49214. extra: 1894/1825,
  49215. bottom: 67/1961
  49216. }
  49217. },
  49218. },
  49219. [
  49220. {
  49221. name: "Normal",
  49222. height: math.unit(6, "feet"),
  49223. default: true
  49224. },
  49225. ]
  49226. ))
  49227. characterMakers.push(() => makeCharacter(
  49228. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49229. {
  49230. front: {
  49231. height: math.unit(5 + 8/12, "feet"),
  49232. weight: math.unit(150, "lb"),
  49233. name: "Front",
  49234. image: {
  49235. source: "./media/characters/rachel/front.svg",
  49236. extra: 1902/1787,
  49237. bottom: 46/1948
  49238. }
  49239. },
  49240. },
  49241. [
  49242. {
  49243. name: "Base Height",
  49244. height: math.unit(5 + 8/12, "feet"),
  49245. default: true
  49246. },
  49247. {
  49248. name: "Macro",
  49249. height: math.unit(200, "feet")
  49250. },
  49251. {
  49252. name: "Mega Macro",
  49253. height: math.unit(1, "mile")
  49254. },
  49255. {
  49256. name: "Giga Macro",
  49257. height: math.unit(1500, "miles")
  49258. },
  49259. {
  49260. name: "Tera Macro",
  49261. height: math.unit(8000, "miles")
  49262. },
  49263. {
  49264. name: "Tera Macro+",
  49265. height: math.unit(2e5, "miles")
  49266. },
  49267. ]
  49268. ))
  49269. characterMakers.push(() => makeCharacter(
  49270. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49271. {
  49272. front: {
  49273. height: math.unit(6.5, "feet"),
  49274. name: "Front",
  49275. image: {
  49276. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49277. extra: 860/819,
  49278. bottom: 307/1167
  49279. }
  49280. },
  49281. back: {
  49282. height: math.unit(6.5, "feet"),
  49283. name: "Back",
  49284. image: {
  49285. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49286. extra: 880/837,
  49287. bottom: 395/1275
  49288. }
  49289. },
  49290. sleeping: {
  49291. height: math.unit(2.79, "feet"),
  49292. name: "Sleeping",
  49293. image: {
  49294. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49295. extra: 465/383,
  49296. bottom: 263/728
  49297. }
  49298. },
  49299. maw: {
  49300. height: math.unit(2.52, "feet"),
  49301. name: "Maw",
  49302. image: {
  49303. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49304. }
  49305. },
  49306. },
  49307. [
  49308. {
  49309. name: "Normal",
  49310. height: math.unit(6.5, "feet"),
  49311. default: true
  49312. },
  49313. ]
  49314. ))
  49315. characterMakers.push(() => makeCharacter(
  49316. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49317. {
  49318. front: {
  49319. height: math.unit(5, "feet"),
  49320. name: "Front",
  49321. image: {
  49322. source: "./media/characters/nova-nerium/front.svg",
  49323. extra: 1548/1392,
  49324. bottom: 374/1922
  49325. }
  49326. },
  49327. back: {
  49328. height: math.unit(5, "feet"),
  49329. name: "Back",
  49330. image: {
  49331. source: "./media/characters/nova-nerium/back.svg",
  49332. extra: 1658/1468,
  49333. bottom: 257/1915
  49334. }
  49335. },
  49336. },
  49337. [
  49338. {
  49339. name: "Normal",
  49340. height: math.unit(5, "feet"),
  49341. default: true
  49342. },
  49343. ]
  49344. ))
  49345. characterMakers.push(() => makeCharacter(
  49346. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49347. {
  49348. front: {
  49349. height: math.unit(5 + 4/12, "feet"),
  49350. name: "Front",
  49351. image: {
  49352. source: "./media/characters/ashe-pyriph/front.svg",
  49353. extra: 1935/1747,
  49354. bottom: 60/1995
  49355. }
  49356. },
  49357. },
  49358. [
  49359. {
  49360. name: "Normal",
  49361. height: math.unit(5 + 4/12, "feet"),
  49362. default: true
  49363. },
  49364. ]
  49365. ))
  49366. characterMakers.push(() => makeCharacter(
  49367. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49368. {
  49369. front: {
  49370. height: math.unit(8.7, "feet"),
  49371. name: "Front",
  49372. image: {
  49373. source: "./media/characters/flicker-wisp/front.svg",
  49374. extra: 1835/1613,
  49375. bottom: 449/2284
  49376. }
  49377. },
  49378. side: {
  49379. height: math.unit(8.7, "feet"),
  49380. name: "Side",
  49381. image: {
  49382. source: "./media/characters/flicker-wisp/side.svg",
  49383. extra: 1841/1642,
  49384. bottom: 336/2177
  49385. },
  49386. default: true
  49387. },
  49388. maw: {
  49389. height: math.unit(3.35, "feet"),
  49390. name: "Maw",
  49391. image: {
  49392. source: "./media/characters/flicker-wisp/maw.svg",
  49393. extra: 2338/1506,
  49394. bottom: 0/2338
  49395. }
  49396. },
  49397. ovipositor: {
  49398. height: math.unit(4.95, "feet"),
  49399. name: "Ovipositor",
  49400. image: {
  49401. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49402. }
  49403. },
  49404. egg: {
  49405. height: math.unit(0.385, "feet"),
  49406. weight: math.unit(2, "lb"),
  49407. name: "Egg",
  49408. image: {
  49409. source: "./media/characters/flicker-wisp/egg.svg"
  49410. }
  49411. },
  49412. },
  49413. [
  49414. {
  49415. name: "Normal",
  49416. height: math.unit(8.7, "feet"),
  49417. default: true
  49418. },
  49419. ]
  49420. ))
  49421. characterMakers.push(() => makeCharacter(
  49422. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49423. {
  49424. side: {
  49425. height: math.unit(11, "feet"),
  49426. name: "Side",
  49427. image: {
  49428. source: "./media/characters/faefnul/side.svg",
  49429. extra: 1100/1007,
  49430. bottom: 0/1100
  49431. }
  49432. },
  49433. },
  49434. [
  49435. {
  49436. name: "Normal",
  49437. height: math.unit(11, "feet"),
  49438. default: true
  49439. },
  49440. ]
  49441. ))
  49442. characterMakers.push(() => makeCharacter(
  49443. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49444. {
  49445. front: {
  49446. height: math.unit(6 + 2/12, "feet"),
  49447. name: "Front",
  49448. image: {
  49449. source: "./media/characters/shady/front.svg",
  49450. extra: 502/461,
  49451. bottom: 9/511
  49452. }
  49453. },
  49454. kneeling: {
  49455. height: math.unit(4.6, "feet"),
  49456. name: "Kneeling",
  49457. image: {
  49458. source: "./media/characters/shady/kneeling.svg",
  49459. extra: 1328/1219,
  49460. bottom: 117/1445
  49461. }
  49462. },
  49463. maw: {
  49464. height: math.unit(2, "feet"),
  49465. name: "Maw",
  49466. image: {
  49467. source: "./media/characters/shady/maw.svg"
  49468. }
  49469. },
  49470. },
  49471. [
  49472. {
  49473. name: "Nano",
  49474. height: math.unit(1, "mm")
  49475. },
  49476. {
  49477. name: "Micro",
  49478. height: math.unit(12, "mm")
  49479. },
  49480. {
  49481. name: "Tiny",
  49482. height: math.unit(3, "inches")
  49483. },
  49484. {
  49485. name: "Normal",
  49486. height: math.unit(6 + 2/12, "feet"),
  49487. default: true
  49488. },
  49489. {
  49490. name: "Big",
  49491. height: math.unit(15, "feet")
  49492. },
  49493. {
  49494. name: "Macro",
  49495. height: math.unit(150, "feet")
  49496. },
  49497. {
  49498. name: "Titanic",
  49499. height: math.unit(500, "feet")
  49500. },
  49501. ]
  49502. ))
  49503. characterMakers.push(() => makeCharacter(
  49504. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49505. {
  49506. front: {
  49507. height: math.unit(12, "feet"),
  49508. name: "Front",
  49509. image: {
  49510. source: "./media/characters/fenrir/front.svg",
  49511. extra: 968/875,
  49512. bottom: 22/990
  49513. }
  49514. },
  49515. },
  49516. [
  49517. {
  49518. name: "Big",
  49519. height: math.unit(12, "feet"),
  49520. default: true
  49521. },
  49522. ]
  49523. ))
  49524. characterMakers.push(() => makeCharacter(
  49525. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49526. {
  49527. front: {
  49528. height: math.unit(5 + 4/12, "feet"),
  49529. name: "Front",
  49530. image: {
  49531. source: "./media/characters/makar/front.svg",
  49532. extra: 1181/1112,
  49533. bottom: 78/1259
  49534. }
  49535. },
  49536. },
  49537. [
  49538. {
  49539. name: "Normal",
  49540. height: math.unit(5 + 4/12, "feet"),
  49541. default: true
  49542. },
  49543. ]
  49544. ))
  49545. characterMakers.push(() => makeCharacter(
  49546. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49547. {
  49548. front: {
  49549. height: math.unit(5 + 7/12, "feet"),
  49550. name: "Front",
  49551. image: {
  49552. source: "./media/characters/callow/front.svg",
  49553. extra: 1482/1304,
  49554. bottom: 23/1505
  49555. }
  49556. },
  49557. back: {
  49558. height: math.unit(5 + 7/12, "feet"),
  49559. name: "Back",
  49560. image: {
  49561. source: "./media/characters/callow/back.svg",
  49562. extra: 1484/1296,
  49563. bottom: 25/1509
  49564. }
  49565. },
  49566. },
  49567. [
  49568. {
  49569. name: "Micro",
  49570. height: math.unit(3, "inches"),
  49571. default: true
  49572. },
  49573. {
  49574. name: "Normal",
  49575. height: math.unit(5 + 7/12, "feet")
  49576. },
  49577. ]
  49578. ))
  49579. characterMakers.push(() => makeCharacter(
  49580. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49581. {
  49582. front: {
  49583. height: math.unit(6 + 2/12, "feet"),
  49584. name: "Front",
  49585. image: {
  49586. source: "./media/characters/natel/front.svg",
  49587. extra: 1833/1692,
  49588. bottom: 166/1999
  49589. }
  49590. },
  49591. },
  49592. [
  49593. {
  49594. name: "Normal",
  49595. height: math.unit(6 + 2/12, "feet"),
  49596. default: true
  49597. },
  49598. ]
  49599. ))
  49600. characterMakers.push(() => makeCharacter(
  49601. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49602. {
  49603. front: {
  49604. height: math.unit(1.75, "meters"),
  49605. name: "Front",
  49606. image: {
  49607. source: "./media/characters/misu/front.svg",
  49608. extra: 1690/1558,
  49609. bottom: 234/1924
  49610. }
  49611. },
  49612. back: {
  49613. height: math.unit(1.75, "meters"),
  49614. name: "Back",
  49615. image: {
  49616. source: "./media/characters/misu/back.svg",
  49617. extra: 1762/1618,
  49618. bottom: 146/1908
  49619. }
  49620. },
  49621. frontNude: {
  49622. height: math.unit(1.75, "meters"),
  49623. name: "Front (Nude)",
  49624. image: {
  49625. source: "./media/characters/misu/front-nude.svg",
  49626. extra: 1690/1558,
  49627. bottom: 234/1924
  49628. }
  49629. },
  49630. backNude: {
  49631. height: math.unit(1.75, "meters"),
  49632. name: "Back (Nude)",
  49633. image: {
  49634. source: "./media/characters/misu/back-nude.svg",
  49635. extra: 1762/1618,
  49636. bottom: 146/1908
  49637. }
  49638. },
  49639. frontErect: {
  49640. height: math.unit(1.75, "meters"),
  49641. name: "Front (Erect)",
  49642. image: {
  49643. source: "./media/characters/misu/front-erect.svg",
  49644. extra: 1690/1558,
  49645. bottom: 234/1924
  49646. }
  49647. },
  49648. maw: {
  49649. height: math.unit(0.47, "meters"),
  49650. name: "Maw",
  49651. image: {
  49652. source: "./media/characters/misu/maw.svg"
  49653. }
  49654. },
  49655. head: {
  49656. height: math.unit(0.35, "meters"),
  49657. name: "Head",
  49658. image: {
  49659. source: "./media/characters/misu/head.svg"
  49660. }
  49661. },
  49662. rear: {
  49663. height: math.unit(0.47, "meters"),
  49664. name: "Rear",
  49665. image: {
  49666. source: "./media/characters/misu/rear.svg"
  49667. }
  49668. },
  49669. },
  49670. [
  49671. {
  49672. name: "Normal",
  49673. height: math.unit(1.75, "meters")
  49674. },
  49675. {
  49676. name: "Not good for the people",
  49677. height: math.unit(42, "meters")
  49678. },
  49679. {
  49680. name: "Not good for the neighborhood",
  49681. height: math.unit(135, "meters")
  49682. },
  49683. {
  49684. name: "Bit bigger problem",
  49685. height: math.unit(380, "meters"),
  49686. default: true
  49687. },
  49688. {
  49689. name: "Not good for the city",
  49690. height: math.unit(1.5, "km")
  49691. },
  49692. {
  49693. name: "Not good for the county",
  49694. height: math.unit(5.5, "km")
  49695. },
  49696. {
  49697. name: "Not good for the state",
  49698. height: math.unit(25, "km")
  49699. },
  49700. {
  49701. name: "Not good for the country",
  49702. height: math.unit(125, "km")
  49703. },
  49704. {
  49705. name: "Not good for the continent",
  49706. height: math.unit(2100, "km")
  49707. },
  49708. {
  49709. name: "Not good for the planet",
  49710. height: math.unit(35000, "km")
  49711. },
  49712. {
  49713. name: "Just no",
  49714. height: math.unit(8.5e18, "km")
  49715. },
  49716. ]
  49717. ))
  49718. characterMakers.push(() => makeCharacter(
  49719. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49720. {
  49721. front: {
  49722. height: math.unit(6.5, "feet"),
  49723. name: "Front",
  49724. image: {
  49725. source: "./media/characters/poppy/front.svg",
  49726. extra: 1878/1812,
  49727. bottom: 43/1921
  49728. }
  49729. },
  49730. feet: {
  49731. height: math.unit(1.06, "feet"),
  49732. name: "Feet",
  49733. image: {
  49734. source: "./media/characters/poppy/feet.svg",
  49735. extra: 1083/1083,
  49736. bottom: 87/1170
  49737. }
  49738. },
  49739. },
  49740. [
  49741. {
  49742. name: "Human",
  49743. height: math.unit(6.5, "feet")
  49744. },
  49745. {
  49746. name: "Default",
  49747. height: math.unit(300, "feet"),
  49748. default: true
  49749. },
  49750. {
  49751. name: "Huge",
  49752. height: math.unit(850, "feet")
  49753. },
  49754. {
  49755. name: "Mega",
  49756. height: math.unit(8000, "feet")
  49757. },
  49758. {
  49759. name: "Giga",
  49760. height: math.unit(300, "miles")
  49761. },
  49762. ]
  49763. ))
  49764. characterMakers.push(() => makeCharacter(
  49765. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49766. {
  49767. bipedal: {
  49768. height: math.unit(7, "feet"),
  49769. name: "Bipedal",
  49770. image: {
  49771. source: "./media/characters/zener/bipedal.svg",
  49772. extra: 874/805,
  49773. bottom: 109/983
  49774. }
  49775. },
  49776. quadrupedal: {
  49777. height: math.unit(4.64, "feet"),
  49778. name: "Quadrupedal",
  49779. image: {
  49780. source: "./media/characters/zener/quadrupedal.svg",
  49781. extra: 638/507,
  49782. bottom: 190/828
  49783. }
  49784. },
  49785. cock: {
  49786. height: math.unit(18, "inches"),
  49787. name: "Cock",
  49788. image: {
  49789. source: "./media/characters/zener/cock.svg"
  49790. }
  49791. },
  49792. },
  49793. [
  49794. {
  49795. name: "Normal",
  49796. height: math.unit(7, "feet"),
  49797. default: true
  49798. },
  49799. ]
  49800. ))
  49801. characterMakers.push(() => makeCharacter(
  49802. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49803. {
  49804. nude: {
  49805. height: math.unit(5 + 6/12, "feet"),
  49806. name: "Nude",
  49807. image: {
  49808. source: "./media/characters/charlie-dog/nude.svg",
  49809. extra: 768/734,
  49810. bottom: 26/794
  49811. }
  49812. },
  49813. dressed: {
  49814. height: math.unit(5 + 6/12, "feet"),
  49815. name: "Dressed",
  49816. image: {
  49817. source: "./media/characters/charlie-dog/dressed.svg",
  49818. extra: 768/734,
  49819. bottom: 26/794
  49820. }
  49821. },
  49822. },
  49823. [
  49824. {
  49825. name: "Normal",
  49826. height: math.unit(5 + 6/12, "feet"),
  49827. default: true
  49828. },
  49829. ]
  49830. ))
  49831. characterMakers.push(() => makeCharacter(
  49832. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49833. {
  49834. front: {
  49835. height: math.unit(6 + 4/12, "feet"),
  49836. name: "Front",
  49837. image: {
  49838. source: "./media/characters/ir'istrasz/front.svg",
  49839. extra: 1014/977,
  49840. bottom: 65/1079
  49841. }
  49842. },
  49843. back: {
  49844. height: math.unit(6 + 4/12, "feet"),
  49845. name: "Back",
  49846. image: {
  49847. source: "./media/characters/ir'istrasz/back.svg",
  49848. extra: 1024/992,
  49849. bottom: 34/1058
  49850. }
  49851. },
  49852. },
  49853. [
  49854. {
  49855. name: "Normal",
  49856. height: math.unit(6 + 4/12, "feet"),
  49857. default: true
  49858. },
  49859. ]
  49860. ))
  49861. characterMakers.push(() => makeCharacter(
  49862. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49863. {
  49864. front: {
  49865. height: math.unit(5 + 8/12, "feet"),
  49866. name: "Front",
  49867. image: {
  49868. source: "./media/characters/dee-ditto/front.svg",
  49869. extra: 1874/1785,
  49870. bottom: 68/1942
  49871. }
  49872. },
  49873. back: {
  49874. height: math.unit(5 + 8/12, "feet"),
  49875. name: "Back",
  49876. image: {
  49877. source: "./media/characters/dee-ditto/back.svg",
  49878. extra: 1870/1783,
  49879. bottom: 77/1947
  49880. }
  49881. },
  49882. },
  49883. [
  49884. {
  49885. name: "Normal",
  49886. height: math.unit(5 + 8/12, "feet"),
  49887. default: true
  49888. },
  49889. ]
  49890. ))
  49891. characterMakers.push(() => makeCharacter(
  49892. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49893. {
  49894. front: {
  49895. height: math.unit(7 + 6/12, "feet"),
  49896. name: "Front",
  49897. image: {
  49898. source: "./media/characters/fey/front.svg",
  49899. extra: 995/979,
  49900. bottom: 30/1025
  49901. }
  49902. },
  49903. back: {
  49904. height: math.unit(7 + 6/12, "feet"),
  49905. name: "Back",
  49906. image: {
  49907. source: "./media/characters/fey/back.svg",
  49908. extra: 1079/1008,
  49909. bottom: 5/1084
  49910. }
  49911. },
  49912. dressed: {
  49913. height: math.unit(7 + 6/12, "feet"),
  49914. name: "Dressed",
  49915. image: {
  49916. source: "./media/characters/fey/dressed.svg",
  49917. extra: 995/979,
  49918. bottom: 30/1025
  49919. }
  49920. },
  49921. },
  49922. [
  49923. {
  49924. name: "Normal",
  49925. height: math.unit(7 + 6/12, "feet"),
  49926. default: true
  49927. },
  49928. ]
  49929. ))
  49930. characterMakers.push(() => makeCharacter(
  49931. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49932. {
  49933. standing: {
  49934. height: math.unit(17, "feet"),
  49935. name: "Standing",
  49936. image: {
  49937. source: "./media/characters/aster/standing.svg",
  49938. extra: 1798/1598,
  49939. bottom: 117/1915
  49940. }
  49941. },
  49942. },
  49943. [
  49944. {
  49945. name: "Normal",
  49946. height: math.unit(17, "feet"),
  49947. default: true
  49948. },
  49949. {
  49950. name: "Homewrecker",
  49951. height: math.unit(95, "feet")
  49952. },
  49953. {
  49954. name: "Planet Devourer",
  49955. height: math.unit(1008000, "miles")
  49956. },
  49957. ]
  49958. ))
  49959. characterMakers.push(() => makeCharacter(
  49960. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49961. {
  49962. front: {
  49963. height: math.unit(6 + 5/12, "feet"),
  49964. weight: math.unit(265, "lb"),
  49965. name: "Front",
  49966. image: {
  49967. source: "./media/characters/devon-childs/front.svg",
  49968. extra: 1795/1721,
  49969. bottom: 41/1836
  49970. }
  49971. },
  49972. side: {
  49973. height: math.unit(6 + 5/12, "feet"),
  49974. weight: math.unit(265, "lb"),
  49975. name: "Side",
  49976. image: {
  49977. source: "./media/characters/devon-childs/side.svg",
  49978. extra: 1812/1738,
  49979. bottom: 30/1842
  49980. }
  49981. },
  49982. back: {
  49983. height: math.unit(6 + 5/12, "feet"),
  49984. weight: math.unit(265, "lb"),
  49985. name: "Back",
  49986. image: {
  49987. source: "./media/characters/devon-childs/back.svg",
  49988. extra: 1808/1735,
  49989. bottom: 23/1831
  49990. }
  49991. },
  49992. hand: {
  49993. height: math.unit(1.464, "feet"),
  49994. name: "Hand",
  49995. image: {
  49996. source: "./media/characters/devon-childs/hand.svg"
  49997. }
  49998. },
  49999. foot: {
  50000. height: math.unit(1.6, "feet"),
  50001. name: "Foot",
  50002. image: {
  50003. source: "./media/characters/devon-childs/foot.svg"
  50004. }
  50005. },
  50006. },
  50007. [
  50008. {
  50009. name: "Micro",
  50010. height: math.unit(7, "cm")
  50011. },
  50012. {
  50013. name: "Normal",
  50014. height: math.unit(6 + 5/12, "feet"),
  50015. default: true
  50016. },
  50017. {
  50018. name: "Macro",
  50019. height: math.unit(154, "feet")
  50020. },
  50021. ]
  50022. ))
  50023. characterMakers.push(() => makeCharacter(
  50024. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50025. {
  50026. front: {
  50027. height: math.unit(6, "feet"),
  50028. weight: math.unit(180, "lb"),
  50029. name: "Front",
  50030. image: {
  50031. source: "./media/characters/lydemox-vir/front.svg",
  50032. extra: 1632/1435,
  50033. bottom: 58/1690
  50034. }
  50035. },
  50036. frontSFW: {
  50037. height: math.unit(6, "feet"),
  50038. weight: math.unit(180, "lb"),
  50039. name: "Front (SFW)",
  50040. image: {
  50041. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50042. extra: 1632/1435,
  50043. bottom: 58/1690
  50044. }
  50045. },
  50046. back: {
  50047. height: math.unit(6, "feet"),
  50048. weight: math.unit(180, "lb"),
  50049. name: "Back",
  50050. image: {
  50051. source: "./media/characters/lydemox-vir/back.svg",
  50052. extra: 1593/1408,
  50053. bottom: 31/1624
  50054. }
  50055. },
  50056. paw: {
  50057. height: math.unit(1.85, "feet"),
  50058. name: "Paw",
  50059. image: {
  50060. source: "./media/characters/lydemox-vir/paw.svg"
  50061. }
  50062. },
  50063. dick: {
  50064. height: math.unit(1.8, "feet"),
  50065. name: "Dick",
  50066. image: {
  50067. source: "./media/characters/lydemox-vir/dick.svg"
  50068. }
  50069. },
  50070. },
  50071. [
  50072. {
  50073. name: "Macro",
  50074. height: math.unit(100, "feet"),
  50075. default: true
  50076. },
  50077. {
  50078. name: "Teramacro",
  50079. height: math.unit(1, "earth")
  50080. },
  50081. {
  50082. name: "Planetary",
  50083. height: math.unit(20, "earths")
  50084. },
  50085. ]
  50086. ))
  50087. characterMakers.push(() => makeCharacter(
  50088. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50089. {
  50090. front: {
  50091. height: math.unit(15 + 8/12, "feet"),
  50092. weight: math.unit(1237, "kg"),
  50093. name: "Front",
  50094. image: {
  50095. source: "./media/characters/mia/front.svg",
  50096. extra: 1573/1446,
  50097. bottom: 58/1631
  50098. }
  50099. },
  50100. },
  50101. [
  50102. {
  50103. name: "Small",
  50104. height: math.unit(9 + 5/12, "feet")
  50105. },
  50106. {
  50107. name: "Normal",
  50108. height: math.unit(15 + 8/12, "feet"),
  50109. default: true
  50110. },
  50111. ]
  50112. ))
  50113. characterMakers.push(() => makeCharacter(
  50114. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50115. {
  50116. front: {
  50117. height: math.unit(10 + 6/12, "feet"),
  50118. weight: math.unit(1.3, "tons"),
  50119. name: "Front",
  50120. image: {
  50121. source: "./media/characters/mr-graves/front.svg",
  50122. extra: 1779/1695,
  50123. bottom: 198/1977
  50124. }
  50125. },
  50126. },
  50127. [
  50128. {
  50129. name: "Normal",
  50130. height: math.unit(10 + 6 /12, "feet"),
  50131. default: true
  50132. },
  50133. ]
  50134. ))
  50135. characterMakers.push(() => makeCharacter(
  50136. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50137. {
  50138. dressedFront: {
  50139. height: math.unit(5 + 8/12, "feet"),
  50140. weight: math.unit(125, "lb"),
  50141. name: "Dressed (Front)",
  50142. image: {
  50143. source: "./media/characters/jess/dressed-front.svg",
  50144. extra: 1176/1152,
  50145. bottom: 42/1218
  50146. }
  50147. },
  50148. dressedSide: {
  50149. height: math.unit(5 + 8/12, "feet"),
  50150. weight: math.unit(125, "lb"),
  50151. name: "Dressed (Side)",
  50152. image: {
  50153. source: "./media/characters/jess/dressed-side.svg",
  50154. extra: 1204/1190,
  50155. bottom: 6/1210
  50156. }
  50157. },
  50158. nudeFront: {
  50159. height: math.unit(5 + 8/12, "feet"),
  50160. weight: math.unit(125, "lb"),
  50161. name: "Nude (Front)",
  50162. image: {
  50163. source: "./media/characters/jess/nude-front.svg",
  50164. extra: 1176/1152,
  50165. bottom: 42/1218
  50166. }
  50167. },
  50168. nudeSide: {
  50169. height: math.unit(5 + 8/12, "feet"),
  50170. weight: math.unit(125, "lb"),
  50171. name: "Nude (Side)",
  50172. image: {
  50173. source: "./media/characters/jess/nude-side.svg",
  50174. extra: 1204/1190,
  50175. bottom: 6/1210
  50176. }
  50177. },
  50178. organsFront: {
  50179. height: math.unit(2.83799342105, "feet"),
  50180. name: "Organs (Front)",
  50181. image: {
  50182. source: "./media/characters/jess/organs-front.svg"
  50183. }
  50184. },
  50185. organsSide: {
  50186. height: math.unit(2.64225290474, "feet"),
  50187. name: "Organs (Side)",
  50188. image: {
  50189. source: "./media/characters/jess/organs-side.svg"
  50190. }
  50191. },
  50192. digestiveTractFront: {
  50193. height: math.unit(2.8106580871, "feet"),
  50194. name: "Digestive Tract (Front)",
  50195. image: {
  50196. source: "./media/characters/jess/digestive-tract-front.svg"
  50197. }
  50198. },
  50199. digestiveTractSide: {
  50200. height: math.unit(2.54365045014, "feet"),
  50201. name: "Digestive Tract (Side)",
  50202. image: {
  50203. source: "./media/characters/jess/digestive-tract-side.svg"
  50204. }
  50205. },
  50206. respiratorySystemFront: {
  50207. height: math.unit(1.11196233456, "feet"),
  50208. name: "Respiratory System (Front)",
  50209. image: {
  50210. source: "./media/characters/jess/respiratory-system-front.svg"
  50211. }
  50212. },
  50213. respiratorySystemSide: {
  50214. height: math.unit(0.89327966297, "feet"),
  50215. name: "Respiratory System (Side)",
  50216. image: {
  50217. source: "./media/characters/jess/respiratory-system-side.svg"
  50218. }
  50219. },
  50220. urinaryTractFront: {
  50221. height: math.unit(1.16126356186, "feet"),
  50222. name: "Urinary Tract (Front)",
  50223. image: {
  50224. source: "./media/characters/jess/urinary-tract-front.svg"
  50225. }
  50226. },
  50227. urinaryTractSide: {
  50228. height: math.unit(1.20910039627, "feet"),
  50229. name: "Urinary Tract (Side)",
  50230. image: {
  50231. source: "./media/characters/jess/urinary-tract-side.svg"
  50232. }
  50233. },
  50234. reproductiveOrgansFront: {
  50235. height: math.unit(0.48422591566, "feet"),
  50236. name: "Reproductive Organs (Front)",
  50237. image: {
  50238. source: "./media/characters/jess/reproductive-organs-front.svg"
  50239. }
  50240. },
  50241. reproductiveOrgansSide: {
  50242. height: math.unit(0.61553314481, "feet"),
  50243. name: "Reproductive Organs (Side)",
  50244. image: {
  50245. source: "./media/characters/jess/reproductive-organs-side.svg"
  50246. }
  50247. },
  50248. breastsFront: {
  50249. height: math.unit(0.47690395121, "feet"),
  50250. name: "Breasts (Front)",
  50251. image: {
  50252. source: "./media/characters/jess/breasts-front.svg"
  50253. }
  50254. },
  50255. breastsSide: {
  50256. height: math.unit(0.30556998307, "feet"),
  50257. name: "Breasts (Side)",
  50258. image: {
  50259. source: "./media/characters/jess/breasts-side.svg"
  50260. }
  50261. },
  50262. heartFront: {
  50263. height: math.unit(0.53011022622, "feet"),
  50264. name: "Heart (Front)",
  50265. image: {
  50266. source: "./media/characters/jess/heart-front.svg"
  50267. }
  50268. },
  50269. heartSide: {
  50270. height: math.unit(0.51790695213, "feet"),
  50271. name: "Heart (Side)",
  50272. image: {
  50273. source: "./media/characters/jess/heart-side.svg"
  50274. }
  50275. },
  50276. earsAndNoseFront: {
  50277. height: math.unit(0.29385483995, "feet"),
  50278. name: "Ears and Nose (Front)",
  50279. image: {
  50280. source: "./media/characters/jess/ears-and-nose-front.svg"
  50281. }
  50282. },
  50283. earsAndNoseSide: {
  50284. height: math.unit(0.18109658741, "feet"),
  50285. name: "Ears and Nose (Side)",
  50286. image: {
  50287. source: "./media/characters/jess/ears-and-nose-side.svg"
  50288. }
  50289. },
  50290. },
  50291. [
  50292. {
  50293. name: "Normal",
  50294. height: math.unit(5 + 8/12, "feet"),
  50295. default: true
  50296. },
  50297. ]
  50298. ))
  50299. characterMakers.push(() => makeCharacter(
  50300. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50301. {
  50302. front: {
  50303. height: math.unit(6, "feet"),
  50304. weight: math.unit(6.64467e-7, "grams"),
  50305. name: "Front",
  50306. image: {
  50307. source: "./media/characters/wimpering/front.svg",
  50308. extra: 597/587,
  50309. bottom: 34/631
  50310. }
  50311. },
  50312. },
  50313. [
  50314. {
  50315. name: "Micro",
  50316. height: math.unit(0.4, "mm"),
  50317. default: true
  50318. },
  50319. ]
  50320. ))
  50321. characterMakers.push(() => makeCharacter(
  50322. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50323. {
  50324. front: {
  50325. height: math.unit(5 + 2/12, "feet"),
  50326. weight: math.unit(110, "lb"),
  50327. name: "Front",
  50328. image: {
  50329. source: "./media/characters/keltre/front.svg",
  50330. extra: 1099/1057,
  50331. bottom: 22/1121
  50332. }
  50333. },
  50334. back: {
  50335. height: math.unit(5 + 2/12, "feet"),
  50336. weight: math.unit(110, "lb"),
  50337. name: "Back",
  50338. image: {
  50339. source: "./media/characters/keltre/back.svg",
  50340. extra: 1095/1053,
  50341. bottom: 17/1112
  50342. }
  50343. },
  50344. dressed: {
  50345. height: math.unit(5 + 2/12, "feet"),
  50346. weight: math.unit(110, "lb"),
  50347. name: "Dressed",
  50348. image: {
  50349. source: "./media/characters/keltre/dressed.svg",
  50350. extra: 1099/1057,
  50351. bottom: 22/1121
  50352. }
  50353. },
  50354. winter: {
  50355. height: math.unit(5 + 2/12, "feet"),
  50356. weight: math.unit(110, "lb"),
  50357. name: "Winter",
  50358. image: {
  50359. source: "./media/characters/keltre/winter.svg",
  50360. extra: 1099/1057,
  50361. bottom: 22/1121
  50362. }
  50363. },
  50364. head: {
  50365. height: math.unit(1.61 * 0.86, "feet"),
  50366. name: "Head",
  50367. image: {
  50368. source: "./media/characters/keltre/head.svg",
  50369. extra: 534/421,
  50370. bottom: 0/534
  50371. }
  50372. },
  50373. hand: {
  50374. height: math.unit(1.3 * 0.86, "feet"),
  50375. name: "Hand",
  50376. image: {
  50377. source: "./media/characters/keltre/hand.svg"
  50378. }
  50379. },
  50380. foot: {
  50381. height: math.unit(1.8 * 0.86, "feet"),
  50382. name: "Foot",
  50383. image: {
  50384. source: "./media/characters/keltre/foot.svg"
  50385. }
  50386. },
  50387. },
  50388. [
  50389. {
  50390. name: "Fine",
  50391. height: math.unit(1, "inch")
  50392. },
  50393. {
  50394. name: "Dimnutive",
  50395. height: math.unit(4, "inches")
  50396. },
  50397. {
  50398. name: "Tiny",
  50399. height: math.unit(1, "foot")
  50400. },
  50401. {
  50402. name: "Small",
  50403. height: math.unit(3, "feet")
  50404. },
  50405. {
  50406. name: "Normal",
  50407. height: math.unit(5 + 2/12, "feet"),
  50408. default: true
  50409. },
  50410. ]
  50411. ))
  50412. characterMakers.push(() => makeCharacter(
  50413. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50414. {
  50415. front: {
  50416. height: math.unit(6 + 2/12, "feet"),
  50417. name: "Front",
  50418. image: {
  50419. source: "./media/characters/nox/front.svg",
  50420. extra: 1917/1830,
  50421. bottom: 74/1991
  50422. }
  50423. },
  50424. back: {
  50425. height: math.unit(6 + 2/12, "feet"),
  50426. name: "Back",
  50427. image: {
  50428. source: "./media/characters/nox/back.svg",
  50429. extra: 1896/1815,
  50430. bottom: 21/1917
  50431. }
  50432. },
  50433. head: {
  50434. height: math.unit(1.1, "feet"),
  50435. name: "Head",
  50436. image: {
  50437. source: "./media/characters/nox/head.svg",
  50438. extra: 874/704,
  50439. bottom: 0/874
  50440. }
  50441. },
  50442. tattoo: {
  50443. height: math.unit(0.729, "feet"),
  50444. name: "Tattoo",
  50445. image: {
  50446. source: "./media/characters/nox/tattoo.svg"
  50447. }
  50448. },
  50449. },
  50450. [
  50451. {
  50452. name: "Normal",
  50453. height: math.unit(6 + 2/12, "feet")
  50454. },
  50455. {
  50456. name: "Gigamacro",
  50457. height: math.unit(2, "earths"),
  50458. default: true
  50459. },
  50460. {
  50461. name: "Cosmic",
  50462. height: math.unit(867, "yottameters")
  50463. },
  50464. ]
  50465. ))
  50466. characterMakers.push(() => makeCharacter(
  50467. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50468. {
  50469. front: {
  50470. height: math.unit(6, "feet"),
  50471. weight: math.unit(150, "lb"),
  50472. name: "Front",
  50473. image: {
  50474. source: "./media/characters/caspian/front.svg",
  50475. extra: 1443/1359,
  50476. bottom: 0/1443
  50477. }
  50478. },
  50479. back: {
  50480. height: math.unit(6, "feet"),
  50481. weight: math.unit(150, "lb"),
  50482. name: "Back",
  50483. image: {
  50484. source: "./media/characters/caspian/back.svg",
  50485. extra: 1379/1309,
  50486. bottom: 0/1379
  50487. }
  50488. },
  50489. head: {
  50490. height: math.unit(0.9, "feet"),
  50491. name: "Head",
  50492. image: {
  50493. source: "./media/characters/caspian/head.svg",
  50494. extra: 692/492,
  50495. bottom: 0/692
  50496. }
  50497. },
  50498. headAlt: {
  50499. height: math.unit(0.95, "feet"),
  50500. name: "Head (Alt)",
  50501. image: {
  50502. source: "./media/characters/caspian/head-alt.svg",
  50503. extra: 668/508,
  50504. bottom: 0/668
  50505. }
  50506. },
  50507. hand: {
  50508. height: math.unit(0.8, "feet"),
  50509. name: "Hand",
  50510. image: {
  50511. source: "./media/characters/caspian/hand.svg"
  50512. }
  50513. },
  50514. paw: {
  50515. height: math.unit(0.95, "feet"),
  50516. name: "Paw",
  50517. image: {
  50518. source: "./media/characters/caspian/paw.svg"
  50519. }
  50520. },
  50521. },
  50522. [
  50523. {
  50524. name: "Normal",
  50525. height: math.unit(162, "feet"),
  50526. default: true
  50527. },
  50528. ]
  50529. ))
  50530. characterMakers.push(() => makeCharacter(
  50531. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50532. {
  50533. front: {
  50534. height: math.unit(6, "feet"),
  50535. name: "Front",
  50536. image: {
  50537. source: "./media/characters/myra-aisling/front.svg",
  50538. extra: 1268/1166,
  50539. bottom: 73/1341
  50540. }
  50541. },
  50542. back: {
  50543. height: math.unit(6, "feet"),
  50544. name: "Back",
  50545. image: {
  50546. source: "./media/characters/myra-aisling/back.svg",
  50547. extra: 1249/1149,
  50548. bottom: 79/1328
  50549. }
  50550. },
  50551. dressed: {
  50552. height: math.unit(6, "feet"),
  50553. name: "Dressed",
  50554. image: {
  50555. source: "./media/characters/myra-aisling/dressed.svg",
  50556. extra: 1290/1189,
  50557. bottom: 47/1337
  50558. }
  50559. },
  50560. hand: {
  50561. height: math.unit(1.1, "feet"),
  50562. name: "Hand",
  50563. image: {
  50564. source: "./media/characters/myra-aisling/hand.svg"
  50565. }
  50566. },
  50567. paw: {
  50568. height: math.unit(1.23, "feet"),
  50569. name: "Paw",
  50570. image: {
  50571. source: "./media/characters/myra-aisling/paw.svg"
  50572. }
  50573. },
  50574. },
  50575. [
  50576. {
  50577. name: "Normal",
  50578. height: math.unit(160, "feet"),
  50579. default: true
  50580. },
  50581. ]
  50582. ))
  50583. characterMakers.push(() => makeCharacter(
  50584. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50585. {
  50586. front: {
  50587. height: math.unit(6, "feet"),
  50588. name: "Front",
  50589. image: {
  50590. source: "./media/characters/tenley-sidero/front.svg",
  50591. extra: 1365/1276,
  50592. bottom: 47/1412
  50593. }
  50594. },
  50595. back: {
  50596. height: math.unit(6, "feet"),
  50597. name: "Back",
  50598. image: {
  50599. source: "./media/characters/tenley-sidero/back.svg",
  50600. extra: 1383/1283,
  50601. bottom: 35/1418
  50602. }
  50603. },
  50604. dressed: {
  50605. height: math.unit(6, "feet"),
  50606. name: "Dressed",
  50607. image: {
  50608. source: "./media/characters/tenley-sidero/dressed.svg",
  50609. extra: 1364/1275,
  50610. bottom: 42/1406
  50611. }
  50612. },
  50613. head: {
  50614. height: math.unit(1.47, "feet"),
  50615. name: "Head",
  50616. image: {
  50617. source: "./media/characters/tenley-sidero/head.svg",
  50618. extra: 610/490,
  50619. bottom: 0/610
  50620. }
  50621. },
  50622. },
  50623. [
  50624. {
  50625. name: "Normal",
  50626. height: math.unit(154, "feet"),
  50627. default: true
  50628. },
  50629. ]
  50630. ))
  50631. characterMakers.push(() => makeCharacter(
  50632. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50633. {
  50634. front: {
  50635. height: math.unit(5, "inches"),
  50636. name: "Front",
  50637. image: {
  50638. source: "./media/characters/mallory/front.svg",
  50639. extra: 1919/1678,
  50640. bottom: 29/1948
  50641. }
  50642. },
  50643. hand: {
  50644. height: math.unit(0.73, "inches"),
  50645. name: "Hand",
  50646. image: {
  50647. source: "./media/characters/mallory/hand.svg"
  50648. }
  50649. },
  50650. paw: {
  50651. height: math.unit(0.68, "inches"),
  50652. name: "Paw",
  50653. image: {
  50654. source: "./media/characters/mallory/paw.svg"
  50655. }
  50656. },
  50657. },
  50658. [
  50659. {
  50660. name: "Small",
  50661. height: math.unit(5, "inches"),
  50662. default: true
  50663. },
  50664. ]
  50665. ))
  50666. characterMakers.push(() => makeCharacter(
  50667. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50668. {
  50669. naked: {
  50670. height: math.unit(6, "feet"),
  50671. name: "Naked",
  50672. image: {
  50673. source: "./media/characters/mab/naked.svg",
  50674. extra: 1855/1757,
  50675. bottom: 208/2063
  50676. }
  50677. },
  50678. outside: {
  50679. height: math.unit(6, "feet"),
  50680. name: "Outside",
  50681. image: {
  50682. source: "./media/characters/mab/outside.svg",
  50683. extra: 1855/1757,
  50684. bottom: 208/2063
  50685. }
  50686. },
  50687. party: {
  50688. height: math.unit(6, "feet"),
  50689. name: "Party",
  50690. image: {
  50691. source: "./media/characters/mab/party.svg",
  50692. extra: 1855/1757,
  50693. bottom: 208/2063
  50694. }
  50695. },
  50696. },
  50697. [
  50698. {
  50699. name: "Normal",
  50700. height: math.unit(165, "feet"),
  50701. default: true
  50702. },
  50703. ]
  50704. ))
  50705. characterMakers.push(() => makeCharacter(
  50706. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50707. {
  50708. feral: {
  50709. height: math.unit(12, "feet"),
  50710. weight: math.unit(20000, "lb"),
  50711. name: "Side",
  50712. image: {
  50713. source: "./media/characters/winter/feral.svg",
  50714. extra: 1286/943,
  50715. bottom: 112/1398
  50716. },
  50717. form: "feral",
  50718. default: true
  50719. },
  50720. feralNsfw: {
  50721. height: math.unit(12, "feet"),
  50722. weight: math.unit(20000, "lb"),
  50723. name: "Side (NSFW)",
  50724. image: {
  50725. source: "./media/characters/winter/feral-nsfw.svg",
  50726. extra: 1286/943,
  50727. bottom: 112/1398
  50728. },
  50729. form: "feral"
  50730. },
  50731. dick: {
  50732. height: math.unit(3.79, "feet"),
  50733. name: "Dick",
  50734. image: {
  50735. source: "./media/characters/winter/dick.svg"
  50736. },
  50737. form: "feral"
  50738. },
  50739. anthro: {
  50740. height: math.unit(12, "feet"),
  50741. weight: math.unit(10, "tons"),
  50742. name: "Anthro",
  50743. image: {
  50744. source: "./media/characters/winter/anthro.svg",
  50745. extra: 1701/1553,
  50746. bottom: 64/1765
  50747. },
  50748. form: "anthro",
  50749. default: true
  50750. },
  50751. },
  50752. [
  50753. {
  50754. name: "Big",
  50755. height: math.unit(12, "feet"),
  50756. default: true,
  50757. form: "feral"
  50758. },
  50759. {
  50760. name: "Big",
  50761. height: math.unit(12, "feet"),
  50762. default: true,
  50763. form: "anthro"
  50764. },
  50765. ],
  50766. {
  50767. "feral": {
  50768. name: "Feral",
  50769. default: true
  50770. },
  50771. "anthro": {
  50772. name: "Anthro"
  50773. }
  50774. }
  50775. ))
  50776. characterMakers.push(() => makeCharacter(
  50777. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50778. {
  50779. front: {
  50780. height: math.unit(4.1, "inches"),
  50781. name: "Front",
  50782. image: {
  50783. source: "./media/characters/alto/front.svg",
  50784. extra: 736/627,
  50785. bottom: 90/826
  50786. }
  50787. },
  50788. },
  50789. [
  50790. {
  50791. name: "Normal",
  50792. height: math.unit(4.1, "inches"),
  50793. default: true
  50794. },
  50795. ]
  50796. ))
  50797. characterMakers.push(() => makeCharacter(
  50798. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50799. {
  50800. sitting: {
  50801. height: math.unit(3, "feet"),
  50802. name: "Sitting",
  50803. image: {
  50804. source: "./media/characters/ratstrid-v/sitting.svg",
  50805. extra: 355/310,
  50806. bottom: 136/491
  50807. }
  50808. },
  50809. },
  50810. [
  50811. {
  50812. name: "Normal",
  50813. height: math.unit(3, "feet"),
  50814. default: true
  50815. },
  50816. ]
  50817. ))
  50818. characterMakers.push(() => makeCharacter(
  50819. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50820. {
  50821. back: {
  50822. height: math.unit(6, "feet"),
  50823. weight: math.unit(450, "lb"),
  50824. name: "Back",
  50825. image: {
  50826. source: "./media/characters/siz/back.svg",
  50827. extra: 1449/1274,
  50828. bottom: 13/1462
  50829. }
  50830. },
  50831. },
  50832. [
  50833. {
  50834. name: "Smallest",
  50835. height: math.unit(18 + 3/12, "feet")
  50836. },
  50837. {
  50838. name: "Modest",
  50839. height: math.unit(56 + 8/12, "feet"),
  50840. default: true
  50841. },
  50842. {
  50843. name: "Largest",
  50844. height: math.unit(3590, "feet")
  50845. },
  50846. ]
  50847. ))
  50848. characterMakers.push(() => makeCharacter(
  50849. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50850. {
  50851. front: {
  50852. height: math.unit(5 + 9/12, "feet"),
  50853. weight: math.unit(150, "lb"),
  50854. name: "Front",
  50855. image: {
  50856. source: "./media/characters/ven/front.svg",
  50857. extra: 1372/1320,
  50858. bottom: 73/1445
  50859. }
  50860. },
  50861. side: {
  50862. height: math.unit(5 + 9/12, "feet"),
  50863. weight: math.unit(1150, "lb"),
  50864. name: "Side",
  50865. image: {
  50866. source: "./media/characters/ven/side.svg",
  50867. extra: 1119/1070,
  50868. bottom: 42/1161
  50869. },
  50870. default: true
  50871. },
  50872. },
  50873. [
  50874. {
  50875. name: "Normal",
  50876. height: math.unit(5 + 9/12, "feet"),
  50877. default: true
  50878. },
  50879. ]
  50880. ))
  50881. characterMakers.push(() => makeCharacter(
  50882. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50883. {
  50884. front: {
  50885. height: math.unit(12, "feet"),
  50886. weight: math.unit(1000, "kg"),
  50887. name: "Front",
  50888. image: {
  50889. source: "./media/characters/maple/front.svg",
  50890. extra: 1193/1081,
  50891. bottom: 22/1215
  50892. }
  50893. },
  50894. },
  50895. [
  50896. {
  50897. name: "Compressed",
  50898. height: math.unit(7, "feet")
  50899. },
  50900. {
  50901. name: "Normal",
  50902. height: math.unit(12, "feet"),
  50903. default: true
  50904. },
  50905. ]
  50906. ))
  50907. characterMakers.push(() => makeCharacter(
  50908. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50909. {
  50910. front: {
  50911. height: math.unit(9, "feet"),
  50912. weight: math.unit(1500, "lb"),
  50913. name: "Front",
  50914. image: {
  50915. source: "./media/characters/nora/front.svg",
  50916. extra: 1348/1286,
  50917. bottom: 218/1566
  50918. }
  50919. },
  50920. erect: {
  50921. height: math.unit(9, "feet"),
  50922. weight: math.unit(11500, "lb"),
  50923. name: "Erect",
  50924. image: {
  50925. source: "./media/characters/nora/erect.svg",
  50926. extra: 1488/1433,
  50927. bottom: 133/1621
  50928. }
  50929. },
  50930. },
  50931. [
  50932. {
  50933. name: "Normal",
  50934. height: math.unit(9, "feet"),
  50935. default: true
  50936. },
  50937. ]
  50938. ))
  50939. characterMakers.push(() => makeCharacter(
  50940. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50941. {
  50942. front: {
  50943. height: math.unit(25, "feet"),
  50944. weight: math.unit(27500, "lb"),
  50945. name: "Front",
  50946. image: {
  50947. source: "./media/characters/north-caudin/front.svg",
  50948. extra: 1184/1082,
  50949. bottom: 23/1207
  50950. }
  50951. },
  50952. },
  50953. [
  50954. {
  50955. name: "Compressed",
  50956. height: math.unit(10, "feet")
  50957. },
  50958. {
  50959. name: "Normal",
  50960. height: math.unit(25, "feet"),
  50961. default: true
  50962. },
  50963. ]
  50964. ))
  50965. characterMakers.push(() => makeCharacter(
  50966. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50967. {
  50968. front: {
  50969. height: math.unit(9, "feet"),
  50970. weight: math.unit(1250, "lb"),
  50971. name: "Front",
  50972. image: {
  50973. source: "./media/characters/merrian/front.svg",
  50974. extra: 2393/2304,
  50975. bottom: 40/2433
  50976. }
  50977. },
  50978. },
  50979. [
  50980. {
  50981. name: "Normal",
  50982. height: math.unit(9, "feet"),
  50983. default: true
  50984. },
  50985. ]
  50986. ))
  50987. characterMakers.push(() => makeCharacter(
  50988. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50989. {
  50990. front: {
  50991. height: math.unit(9, "feet"),
  50992. weight: math.unit(1000, "lb"),
  50993. name: "Front",
  50994. image: {
  50995. source: "./media/characters/hazel/front.svg",
  50996. extra: 2351/2298,
  50997. bottom: 38/2389
  50998. }
  50999. },
  51000. },
  51001. [
  51002. {
  51003. name: "Normal",
  51004. height: math.unit(9, "feet"),
  51005. default: true
  51006. },
  51007. ]
  51008. ))
  51009. characterMakers.push(() => makeCharacter(
  51010. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51011. {
  51012. front: {
  51013. height: math.unit(13, "feet"),
  51014. weight: math.unit(3200, "lb"),
  51015. name: "Front",
  51016. image: {
  51017. source: "./media/characters/emma/front.svg",
  51018. extra: 2263/2029,
  51019. bottom: 68/2331
  51020. }
  51021. },
  51022. },
  51023. [
  51024. {
  51025. name: "Normal",
  51026. height: math.unit(13, "feet"),
  51027. default: true
  51028. },
  51029. ]
  51030. ))
  51031. characterMakers.push(() => makeCharacter(
  51032. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51033. {
  51034. front: {
  51035. height: math.unit(11 + 9/12, "feet"),
  51036. weight: math.unit(2500, "lb"),
  51037. name: "Front",
  51038. image: {
  51039. source: "./media/characters/ilumina/front.svg",
  51040. extra: 2248/2209,
  51041. bottom: 164/2412
  51042. }
  51043. },
  51044. },
  51045. [
  51046. {
  51047. name: "Normal",
  51048. height: math.unit(11 + 9/12, "feet"),
  51049. default: true
  51050. },
  51051. ]
  51052. ))
  51053. characterMakers.push(() => makeCharacter(
  51054. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51055. {
  51056. front: {
  51057. height: math.unit(8 + 10/12, "feet"),
  51058. weight: math.unit(1350, "lb"),
  51059. name: "Front",
  51060. image: {
  51061. source: "./media/characters/moonshine/front.svg",
  51062. extra: 2395/2288,
  51063. bottom: 40/2435
  51064. }
  51065. },
  51066. },
  51067. [
  51068. {
  51069. name: "Normal",
  51070. height: math.unit(8 + 10/12, "feet"),
  51071. default: true
  51072. },
  51073. ]
  51074. ))
  51075. characterMakers.push(() => makeCharacter(
  51076. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51077. {
  51078. front: {
  51079. height: math.unit(14, "feet"),
  51080. weight: math.unit(3400, "lb"),
  51081. name: "Front",
  51082. image: {
  51083. source: "./media/characters/aletia/front.svg",
  51084. extra: 1185/1052,
  51085. bottom: 21/1206
  51086. }
  51087. },
  51088. },
  51089. [
  51090. {
  51091. name: "Compressed",
  51092. height: math.unit(8, "feet")
  51093. },
  51094. {
  51095. name: "Normal",
  51096. height: math.unit(14, "feet"),
  51097. default: true
  51098. },
  51099. ]
  51100. ))
  51101. characterMakers.push(() => makeCharacter(
  51102. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51103. {
  51104. front: {
  51105. height: math.unit(17, "feet"),
  51106. weight: math.unit(6500, "lb"),
  51107. name: "Front",
  51108. image: {
  51109. source: "./media/characters/deidra/front.svg",
  51110. extra: 1201/1081,
  51111. bottom: 16/1217
  51112. }
  51113. },
  51114. },
  51115. [
  51116. {
  51117. name: "Compressed",
  51118. height: math.unit(9 + 6/12, "feet")
  51119. },
  51120. {
  51121. name: "Normal",
  51122. height: math.unit(17, "feet"),
  51123. default: true
  51124. },
  51125. ]
  51126. ))
  51127. characterMakers.push(() => makeCharacter(
  51128. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51129. {
  51130. front: {
  51131. height: math.unit(7 + 4/12, "feet"),
  51132. weight: math.unit(280, "lb"),
  51133. name: "Front",
  51134. image: {
  51135. source: "./media/characters/freki-yrmori/front.svg",
  51136. extra: 1286/1182,
  51137. bottom: 29/1315
  51138. }
  51139. },
  51140. maw: {
  51141. height: math.unit(0.9, "feet"),
  51142. name: "Maw",
  51143. image: {
  51144. source: "./media/characters/freki-yrmori/maw.svg"
  51145. }
  51146. },
  51147. },
  51148. [
  51149. {
  51150. name: "Normal",
  51151. height: math.unit(7 + 4/12, "feet"),
  51152. default: true
  51153. },
  51154. {
  51155. name: "Macro",
  51156. height: math.unit(38.5, "meters")
  51157. },
  51158. ]
  51159. ))
  51160. characterMakers.push(() => makeCharacter(
  51161. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51162. {
  51163. side: {
  51164. height: math.unit(47.2, "meters"),
  51165. weight: math.unit(10000, "tons"),
  51166. name: "Side",
  51167. image: {
  51168. source: "./media/characters/aetherios/side.svg",
  51169. extra: 2363/642,
  51170. bottom: 221/2584
  51171. }
  51172. },
  51173. top: {
  51174. height: math.unit(240, "meters"),
  51175. weight: math.unit(10000, "tons"),
  51176. name: "Top",
  51177. image: {
  51178. source: "./media/characters/aetherios/top.svg"
  51179. }
  51180. },
  51181. bottom: {
  51182. height: math.unit(240, "meters"),
  51183. weight: math.unit(10000, "tons"),
  51184. name: "Bottom",
  51185. image: {
  51186. source: "./media/characters/aetherios/bottom.svg"
  51187. }
  51188. },
  51189. head: {
  51190. height: math.unit(38.6, "meters"),
  51191. name: "Head",
  51192. image: {
  51193. source: "./media/characters/aetherios/head.svg",
  51194. extra: 1335/1112,
  51195. bottom: 0/1335
  51196. }
  51197. },
  51198. front: {
  51199. height: math.unit(29, "meters"),
  51200. name: "Front",
  51201. image: {
  51202. source: "./media/characters/aetherios/front.svg",
  51203. extra: 1266/953,
  51204. bottom: 158/1424
  51205. }
  51206. },
  51207. maw: {
  51208. height: math.unit(16.37, "meters"),
  51209. name: "Maw",
  51210. image: {
  51211. source: "./media/characters/aetherios/maw.svg",
  51212. extra: 748/637,
  51213. bottom: 0/748
  51214. },
  51215. extraAttributes: {
  51216. preyCapacity: {
  51217. name: "Capacity",
  51218. power: 3,
  51219. type: "volume",
  51220. base: math.unit(1000, "people")
  51221. },
  51222. tongueSize: {
  51223. name: "Tongue Size",
  51224. power: 2,
  51225. type: "area",
  51226. base: math.unit(21, "m^2")
  51227. }
  51228. }
  51229. },
  51230. forepaw: {
  51231. height: math.unit(18, "meters"),
  51232. name: "Forepaw",
  51233. image: {
  51234. source: "./media/characters/aetherios/forepaw.svg"
  51235. }
  51236. },
  51237. hindpaw: {
  51238. height: math.unit(23, "meters"),
  51239. name: "Hindpaw",
  51240. image: {
  51241. source: "./media/characters/aetherios/hindpaw.svg"
  51242. }
  51243. },
  51244. genitals: {
  51245. height: math.unit(42, "meters"),
  51246. name: "Genitals",
  51247. image: {
  51248. source: "./media/characters/aetherios/genitals.svg"
  51249. }
  51250. },
  51251. },
  51252. [
  51253. {
  51254. name: "Normal",
  51255. height: math.unit(47.2, "meters"),
  51256. default: true
  51257. },
  51258. {
  51259. name: "Macro",
  51260. height: math.unit(160, "meters")
  51261. },
  51262. {
  51263. name: "Mega",
  51264. height: math.unit(1.87, "km")
  51265. },
  51266. {
  51267. name: "Giga",
  51268. height: math.unit(40000, "km")
  51269. },
  51270. {
  51271. name: "Stellar",
  51272. height: math.unit(158000000, "km")
  51273. },
  51274. {
  51275. name: "Cosmic",
  51276. height: math.unit(9.46e12, "km")
  51277. },
  51278. ]
  51279. ))
  51280. characterMakers.push(() => makeCharacter(
  51281. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51282. {
  51283. front: {
  51284. height: math.unit(5 + 4/12, "feet"),
  51285. weight: math.unit(80, "lb"),
  51286. name: "Front",
  51287. image: {
  51288. source: "./media/characters/mizu-gieeg/front.svg",
  51289. extra: 850/709,
  51290. bottom: 52/902
  51291. }
  51292. },
  51293. back: {
  51294. height: math.unit(5 + 4/12, "feet"),
  51295. weight: math.unit(80, "lb"),
  51296. name: "Back",
  51297. image: {
  51298. source: "./media/characters/mizu-gieeg/back.svg",
  51299. extra: 882/745,
  51300. bottom: 25/907
  51301. }
  51302. },
  51303. },
  51304. [
  51305. {
  51306. name: "Normal",
  51307. height: math.unit(5 + 4/12, "feet"),
  51308. default: true
  51309. },
  51310. ]
  51311. ))
  51312. characterMakers.push(() => makeCharacter(
  51313. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51314. {
  51315. front: {
  51316. height: math.unit(6, "feet"),
  51317. name: "Front",
  51318. image: {
  51319. source: "./media/characters/roselle-st-papier/front.svg",
  51320. extra: 1430/1280,
  51321. bottom: 37/1467
  51322. }
  51323. },
  51324. back: {
  51325. height: math.unit(6, "feet"),
  51326. name: "Back",
  51327. image: {
  51328. source: "./media/characters/roselle-st-papier/back.svg",
  51329. extra: 1491/1296,
  51330. bottom: 23/1514
  51331. }
  51332. },
  51333. ear: {
  51334. height: math.unit(1.26, "feet"),
  51335. name: "Ear",
  51336. image: {
  51337. source: "./media/characters/roselle-st-papier/ear.svg"
  51338. }
  51339. },
  51340. },
  51341. [
  51342. {
  51343. name: "Normal",
  51344. height: math.unit(150, "feet"),
  51345. default: true
  51346. },
  51347. ]
  51348. ))
  51349. characterMakers.push(() => makeCharacter(
  51350. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51351. {
  51352. front: {
  51353. height: math.unit(1, "inches"),
  51354. name: "Front",
  51355. image: {
  51356. source: "./media/characters/valargent/front.svg",
  51357. extra: 1825/1694,
  51358. bottom: 62/1887
  51359. }
  51360. },
  51361. back: {
  51362. height: math.unit(1, "inches"),
  51363. name: "Back",
  51364. image: {
  51365. source: "./media/characters/valargent/back.svg",
  51366. extra: 1775/1682,
  51367. bottom: 88/1863
  51368. }
  51369. },
  51370. },
  51371. [
  51372. {
  51373. name: "Micro",
  51374. height: math.unit(1, "inch"),
  51375. default: true
  51376. },
  51377. ]
  51378. ))
  51379. characterMakers.push(() => makeCharacter(
  51380. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51381. {
  51382. front: {
  51383. height: math.unit(3.4, "meters"),
  51384. name: "Front",
  51385. image: {
  51386. source: "./media/characters/zarina/front.svg",
  51387. extra: 1733/1425,
  51388. bottom: 93/1826
  51389. }
  51390. },
  51391. squatting: {
  51392. height: math.unit(2.14, "meters"),
  51393. name: "Squatting",
  51394. image: {
  51395. source: "./media/characters/zarina/squatting.svg",
  51396. extra: 1073/788,
  51397. bottom: 63/1136
  51398. }
  51399. },
  51400. back: {
  51401. height: math.unit(2.14, "meters"),
  51402. name: "Back",
  51403. image: {
  51404. source: "./media/characters/zarina/back.svg",
  51405. extra: 1128/885,
  51406. bottom: 0/1128
  51407. }
  51408. },
  51409. },
  51410. [
  51411. {
  51412. name: "Normal",
  51413. height: math.unit(3.4, "meters"),
  51414. default: true
  51415. },
  51416. {
  51417. name: "Big",
  51418. height: math.unit(5, "meters")
  51419. },
  51420. {
  51421. name: "Macro",
  51422. height: math.unit(110, "meters")
  51423. },
  51424. ]
  51425. ))
  51426. characterMakers.push(() => makeCharacter(
  51427. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51428. {
  51429. front: {
  51430. height: math.unit(7, "feet"),
  51431. name: "Front",
  51432. image: {
  51433. source: "./media/characters/ventus-astro-fox/front.svg",
  51434. extra: 1792/1623,
  51435. bottom: 28/1820
  51436. }
  51437. },
  51438. back: {
  51439. height: math.unit(7, "feet"),
  51440. name: "Back",
  51441. image: {
  51442. source: "./media/characters/ventus-astro-fox/back.svg",
  51443. extra: 1789/1620,
  51444. bottom: 31/1820
  51445. }
  51446. },
  51447. outfit: {
  51448. height: math.unit(7, "feet"),
  51449. name: "Outfit",
  51450. image: {
  51451. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51452. extra: 1054/925,
  51453. bottom: 15/1069
  51454. }
  51455. },
  51456. head: {
  51457. height: math.unit(1.12, "feet"),
  51458. name: "Head",
  51459. image: {
  51460. source: "./media/characters/ventus-astro-fox/head.svg",
  51461. extra: 866/504,
  51462. bottom: 0/866
  51463. }
  51464. },
  51465. hand: {
  51466. height: math.unit(1, "feet"),
  51467. name: "Hand",
  51468. image: {
  51469. source: "./media/characters/ventus-astro-fox/hand.svg"
  51470. }
  51471. },
  51472. paw: {
  51473. height: math.unit(1.5, "feet"),
  51474. name: "Paw",
  51475. image: {
  51476. source: "./media/characters/ventus-astro-fox/paw.svg"
  51477. }
  51478. },
  51479. },
  51480. [
  51481. {
  51482. name: "Normal",
  51483. height: math.unit(7, "feet"),
  51484. default: true
  51485. },
  51486. {
  51487. name: "Macro",
  51488. height: math.unit(200, "feet")
  51489. },
  51490. {
  51491. name: "Cosmic",
  51492. height: math.unit(3, "universes")
  51493. },
  51494. ]
  51495. ))
  51496. characterMakers.push(() => makeCharacter(
  51497. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51498. {
  51499. front: {
  51500. height: math.unit(3, "meters"),
  51501. weight: math.unit(7000, "lb"),
  51502. name: "Front",
  51503. image: {
  51504. source: "./media/characters/core-t/front.svg",
  51505. extra: 5729/4941,
  51506. bottom: 1129/6858
  51507. }
  51508. },
  51509. },
  51510. [
  51511. {
  51512. name: "Big",
  51513. height: math.unit(3, "meters"),
  51514. default: true
  51515. },
  51516. ]
  51517. ))
  51518. characterMakers.push(() => makeCharacter(
  51519. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51520. {
  51521. normal: {
  51522. height: math.unit(6 + 6/12, "feet"),
  51523. weight: math.unit(275, "lb"),
  51524. name: "Front",
  51525. image: {
  51526. source: "./media/characters/cadbunny/normal.svg",
  51527. extra: 1129/947,
  51528. bottom: 93/1222
  51529. },
  51530. default: true,
  51531. form: "normal"
  51532. },
  51533. gigantamax: {
  51534. height: math.unit(26, "feet"),
  51535. weight: math.unit(16000, "lb"),
  51536. name: "Front",
  51537. image: {
  51538. source: "./media/characters/cadbunny/gigantamax.svg",
  51539. extra: 1133/944,
  51540. bottom: 90/1223
  51541. },
  51542. default: true,
  51543. form: "gigantamax"
  51544. },
  51545. },
  51546. [
  51547. {
  51548. name: "Normal",
  51549. height: math.unit(6 + 6/12, "feet"),
  51550. default: true,
  51551. form: "normal"
  51552. },
  51553. {
  51554. name: "Small",
  51555. height: math.unit(26, "feet"),
  51556. default: true,
  51557. form: "gigantamax"
  51558. },
  51559. {
  51560. name: "Large",
  51561. height: math.unit(78, "feet"),
  51562. form: "gigantamax"
  51563. },
  51564. ],
  51565. {
  51566. "normal": {
  51567. name: "Normal",
  51568. default: true
  51569. },
  51570. "gigantamax": {
  51571. name: "Gigantamax"
  51572. }
  51573. }
  51574. ))
  51575. characterMakers.push(() => makeCharacter(
  51576. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51577. {
  51578. anthroFront: {
  51579. height: math.unit(8, "feet"),
  51580. weight: math.unit(300, "lb"),
  51581. name: "Front",
  51582. image: {
  51583. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51584. extra: 1272/1176,
  51585. bottom: 53/1325
  51586. },
  51587. form: "anthro",
  51588. default: true
  51589. },
  51590. feralSide: {
  51591. height: math.unit(4, "feet"),
  51592. weight: math.unit(250, "lb"),
  51593. name: "Side",
  51594. image: {
  51595. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51596. extra: 731/621,
  51597. bottom: 0/731
  51598. },
  51599. form: "feral",
  51600. default: true
  51601. },
  51602. },
  51603. [
  51604. {
  51605. name: "Regular",
  51606. height: math.unit(8, "feet"),
  51607. form: "anthro"
  51608. },
  51609. {
  51610. name: "Macro",
  51611. height: math.unit(250, "feet"),
  51612. form: "anthro",
  51613. default: true
  51614. },
  51615. {
  51616. name: "Regular",
  51617. height: math.unit(4, "feet"),
  51618. form: "feral"
  51619. },
  51620. {
  51621. name: "Macro",
  51622. height: math.unit(125, "feet"),
  51623. form: "feral",
  51624. default: true
  51625. },
  51626. ],
  51627. {
  51628. "anthro": {
  51629. name: "Anthro",
  51630. default: true
  51631. },
  51632. "feral": {
  51633. name: "Feral",
  51634. },
  51635. }
  51636. ))
  51637. characterMakers.push(() => makeCharacter(
  51638. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51639. {
  51640. front: {
  51641. height: math.unit(11 + 10/12, "feet"),
  51642. weight: math.unit(1587, "kg"),
  51643. name: "Front",
  51644. image: {
  51645. source: "./media/characters/maple-javira-dragon/front.svg",
  51646. extra: 1136/744,
  51647. bottom: 73/1209
  51648. }
  51649. },
  51650. side: {
  51651. height: math.unit(11 + 10/12, "feet"),
  51652. weight: math.unit(1587, "kg"),
  51653. name: "Side",
  51654. image: {
  51655. source: "./media/characters/maple-javira-dragon/side.svg",
  51656. extra: 712/505,
  51657. bottom: 17/729
  51658. }
  51659. },
  51660. head: {
  51661. height: math.unit(8.05, "feet"),
  51662. name: "Head",
  51663. image: {
  51664. source: "./media/characters/maple-javira-dragon/head.svg",
  51665. extra: 1420/1344,
  51666. bottom: 0/1420
  51667. }
  51668. },
  51669. },
  51670. [
  51671. {
  51672. name: "Normal",
  51673. height: math.unit(11 + 10/12, "feet"),
  51674. default: true
  51675. },
  51676. ]
  51677. ))
  51678. characterMakers.push(() => makeCharacter(
  51679. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51680. {
  51681. front: {
  51682. height: math.unit(117, "cm"),
  51683. weight: math.unit(50, "kg"),
  51684. name: "Front",
  51685. image: {
  51686. source: "./media/characters/sonia-wyverntail/front.svg",
  51687. extra: 708/592,
  51688. bottom: 25/733
  51689. }
  51690. },
  51691. },
  51692. [
  51693. {
  51694. name: "Normal",
  51695. height: math.unit(117, "cm"),
  51696. default: true
  51697. },
  51698. ]
  51699. ))
  51700. characterMakers.push(() => makeCharacter(
  51701. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51702. {
  51703. front: {
  51704. height: math.unit(6 + 5/12, "feet"),
  51705. name: "Front",
  51706. image: {
  51707. source: "./media/characters/micah/front.svg",
  51708. extra: 1758/1546,
  51709. bottom: 214/1972
  51710. }
  51711. },
  51712. },
  51713. [
  51714. {
  51715. name: "Normal",
  51716. height: math.unit(6 + 5/12, "feet"),
  51717. default: true
  51718. },
  51719. ]
  51720. ))
  51721. characterMakers.push(() => makeCharacter(
  51722. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51723. {
  51724. front: {
  51725. height: math.unit(1.75, "meters"),
  51726. weight: math.unit(100, "kg"),
  51727. name: "Front",
  51728. image: {
  51729. source: "./media/characters/zarya/front.svg",
  51730. extra: 741/735,
  51731. bottom: 44/785
  51732. },
  51733. extraAttributes: {
  51734. "tailLength": {
  51735. name: "Tail Length",
  51736. power: 1,
  51737. type: "length",
  51738. base: math.unit(180, "cm")
  51739. },
  51740. "pawLength": {
  51741. name: "Paw Length",
  51742. power: 1,
  51743. type: "length",
  51744. base: math.unit(31, "cm")
  51745. },
  51746. }
  51747. },
  51748. side: {
  51749. height: math.unit(1.75, "meters"),
  51750. weight: math.unit(100, "kg"),
  51751. name: "Side",
  51752. image: {
  51753. source: "./media/characters/zarya/side.svg",
  51754. extra: 776/770,
  51755. bottom: 17/793
  51756. },
  51757. extraAttributes: {
  51758. "tailLength": {
  51759. name: "Tail Length",
  51760. power: 1,
  51761. type: "length",
  51762. base: math.unit(180, "cm")
  51763. },
  51764. "pawLength": {
  51765. name: "Paw Length",
  51766. power: 1,
  51767. type: "length",
  51768. base: math.unit(31, "cm")
  51769. },
  51770. }
  51771. },
  51772. back: {
  51773. height: math.unit(1.75, "meters"),
  51774. weight: math.unit(100, "kg"),
  51775. name: "Back",
  51776. image: {
  51777. source: "./media/characters/zarya/back.svg",
  51778. extra: 741/735,
  51779. bottom: 44/785
  51780. },
  51781. extraAttributes: {
  51782. "tailLength": {
  51783. name: "Tail Length",
  51784. power: 1,
  51785. type: "length",
  51786. base: math.unit(180, "cm")
  51787. },
  51788. "pawLength": {
  51789. name: "Paw Length",
  51790. power: 1,
  51791. type: "length",
  51792. base: math.unit(31, "cm")
  51793. },
  51794. }
  51795. },
  51796. frontNoTail: {
  51797. height: math.unit(1.75, "meters"),
  51798. weight: math.unit(100, "kg"),
  51799. name: "Front (No Tail)",
  51800. image: {
  51801. source: "./media/characters/zarya/front-no-tail.svg",
  51802. extra: 741/735,
  51803. bottom: 44/785
  51804. },
  51805. extraAttributes: {
  51806. "tailLength": {
  51807. name: "Tail Length",
  51808. power: 1,
  51809. type: "length",
  51810. base: math.unit(180, "cm")
  51811. },
  51812. "pawLength": {
  51813. name: "Paw Length",
  51814. power: 1,
  51815. type: "length",
  51816. base: math.unit(31, "cm")
  51817. },
  51818. }
  51819. },
  51820. dressed: {
  51821. height: math.unit(1.75, "meters"),
  51822. weight: math.unit(100, "kg"),
  51823. name: "Dressed",
  51824. image: {
  51825. source: "./media/characters/zarya/dressed.svg",
  51826. extra: 683/672,
  51827. bottom: 79/762
  51828. },
  51829. extraAttributes: {
  51830. "tailLength": {
  51831. name: "Tail Length",
  51832. power: 1,
  51833. type: "length",
  51834. base: math.unit(180, "cm")
  51835. },
  51836. "pawLength": {
  51837. name: "Paw Length",
  51838. power: 1,
  51839. type: "length",
  51840. base: math.unit(31, "cm")
  51841. },
  51842. }
  51843. },
  51844. },
  51845. [
  51846. {
  51847. name: "Micro",
  51848. height: math.unit(5, "cm")
  51849. },
  51850. {
  51851. name: "Normal",
  51852. height: math.unit(1.75, "meters"),
  51853. default: true
  51854. },
  51855. {
  51856. name: "Macro",
  51857. height: math.unit(122, "meters")
  51858. },
  51859. ]
  51860. ))
  51861. characterMakers.push(() => makeCharacter(
  51862. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51863. {
  51864. front: {
  51865. height: math.unit(7.5, "feet"),
  51866. name: "Front",
  51867. image: {
  51868. source: "./media/characters/sven-hatisson/front.svg",
  51869. extra: 917/857,
  51870. bottom: 42/959
  51871. }
  51872. },
  51873. back: {
  51874. height: math.unit(7.5, "feet"),
  51875. name: "Back",
  51876. image: {
  51877. source: "./media/characters/sven-hatisson/back.svg",
  51878. extra: 903/856,
  51879. bottom: 15/918
  51880. }
  51881. },
  51882. },
  51883. [
  51884. {
  51885. name: "Base Height",
  51886. height: math.unit(7.5, "feet")
  51887. },
  51888. {
  51889. name: "Usual Height",
  51890. height: math.unit(13.5, "feet"),
  51891. default: true
  51892. },
  51893. {
  51894. name: "Smaller Macro",
  51895. height: math.unit(85, "feet")
  51896. },
  51897. {
  51898. name: "Moderate Macro",
  51899. height: math.unit(320, "feet")
  51900. },
  51901. {
  51902. name: "Large Macro",
  51903. height: math.unit(1000, "feet")
  51904. },
  51905. {
  51906. name: "Largest Size",
  51907. height: math.unit(2, "miles")
  51908. },
  51909. ]
  51910. ))
  51911. characterMakers.push(() => makeCharacter(
  51912. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51913. {
  51914. side: {
  51915. height: math.unit(1.8, "meters"),
  51916. weight: math.unit(275, "kg"),
  51917. name: "Side",
  51918. image: {
  51919. source: "./media/characters/terra/side.svg",
  51920. extra: 1273/1147,
  51921. bottom: 0/1273
  51922. }
  51923. },
  51924. },
  51925. [
  51926. {
  51927. name: "Normal",
  51928. height: math.unit(16.2, "meters"),
  51929. default: true
  51930. },
  51931. ]
  51932. ))
  51933. characterMakers.push(() => makeCharacter(
  51934. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51935. {
  51936. borzoiFront: {
  51937. height: math.unit(6 + 9/12, "feet"),
  51938. name: "Front",
  51939. image: {
  51940. source: "./media/characters/rae/borzoi-front.svg",
  51941. extra: 1161/1098,
  51942. bottom: 31/1192
  51943. },
  51944. form: "borzoi",
  51945. default: true
  51946. },
  51947. werewolfFront: {
  51948. height: math.unit(8 + 7/12, "feet"),
  51949. name: "Front",
  51950. image: {
  51951. source: "./media/characters/rae/werewolf-front.svg",
  51952. extra: 1411/1334,
  51953. bottom: 127/1538
  51954. },
  51955. form: "werewolf",
  51956. default: true
  51957. },
  51958. },
  51959. [
  51960. {
  51961. name: "Normal",
  51962. height: math.unit(6 + 9/12, "feet"),
  51963. default: true,
  51964. form: "borzoi"
  51965. },
  51966. {
  51967. name: "Normal",
  51968. height: math.unit(8 + 7/12, "feet"),
  51969. default: true,
  51970. form: "werewolf"
  51971. },
  51972. ],
  51973. {
  51974. "borzoi": {
  51975. name: "Borzoi",
  51976. default: true
  51977. },
  51978. "werewolf": {
  51979. name: "Werewolf",
  51980. },
  51981. }
  51982. ))
  51983. characterMakers.push(() => makeCharacter(
  51984. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51985. {
  51986. front: {
  51987. height: math.unit(8 + 7/12, "feet"),
  51988. weight: math.unit(482, "lb"),
  51989. name: "Front",
  51990. image: {
  51991. source: "./media/characters/kit/front.svg",
  51992. extra: 1247/1103,
  51993. bottom: 41/1288
  51994. }
  51995. },
  51996. back: {
  51997. height: math.unit(8 + 7/12, "feet"),
  51998. weight: math.unit(482, "lb"),
  51999. name: "Back",
  52000. image: {
  52001. source: "./media/characters/kit/back.svg",
  52002. extra: 1252/1123,
  52003. bottom: 21/1273
  52004. }
  52005. },
  52006. paw: {
  52007. height: math.unit(1.46, "feet"),
  52008. name: "Paw",
  52009. image: {
  52010. source: "./media/characters/kit/paw.svg"
  52011. }
  52012. },
  52013. },
  52014. [
  52015. {
  52016. name: "Normal",
  52017. height: math.unit(2.61, "meters"),
  52018. default: true
  52019. },
  52020. {
  52021. name: "\"Tall\"",
  52022. height: math.unit(8.21, "meters")
  52023. },
  52024. {
  52025. name: "Tall",
  52026. height: math.unit(19.6, "meters")
  52027. },
  52028. {
  52029. name: "Very Tall",
  52030. height: math.unit(57.91, "meters")
  52031. },
  52032. {
  52033. name: "Semi-Macro",
  52034. height: math.unit(138.64, "meters")
  52035. },
  52036. {
  52037. name: "Macro",
  52038. height: math.unit(831.99, "meters")
  52039. },
  52040. {
  52041. name: "EX-Macro",
  52042. height: math.unit(96451121, "meters")
  52043. },
  52044. {
  52045. name: "S1-Omnipotent",
  52046. height: math.unit(4.42074e+9, "meters")
  52047. },
  52048. {
  52049. name: "S2-Omnipotent",
  52050. height: math.unit(9.42074e+17, "meters")
  52051. },
  52052. {
  52053. name: "Omnipotent",
  52054. height: math.unit(4.23112e+24, "meters")
  52055. },
  52056. {
  52057. name: "Hypergod",
  52058. height: math.unit(5.05176e+27, "meters")
  52059. },
  52060. {
  52061. name: "Hypergod-EX",
  52062. height: math.unit(9.45532e+49, "meters")
  52063. },
  52064. {
  52065. name: "Hypergod-SP",
  52066. height: math.unit(9.45532e+195, "meters")
  52067. },
  52068. ]
  52069. ))
  52070. characterMakers.push(() => makeCharacter(
  52071. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52072. {
  52073. side: {
  52074. height: math.unit(0.6, "meters"),
  52075. weight: math.unit(24, "kg"),
  52076. name: "Side",
  52077. image: {
  52078. source: "./media/characters/celeste/side.svg",
  52079. extra: 810/517,
  52080. bottom: 53/863
  52081. }
  52082. },
  52083. },
  52084. [
  52085. {
  52086. name: "Velociraptor",
  52087. height: math.unit(0.6, "meters"),
  52088. default: true
  52089. },
  52090. {
  52091. name: "Utahraptor",
  52092. height: math.unit(1.8, "meters")
  52093. },
  52094. {
  52095. name: "Gallimimus",
  52096. height: math.unit(4.0, "meters")
  52097. },
  52098. {
  52099. name: "Large",
  52100. height: math.unit(20, "meters")
  52101. },
  52102. {
  52103. name: "Planetary",
  52104. height: math.unit(50, "megameters")
  52105. },
  52106. {
  52107. name: "Stellar",
  52108. height: math.unit(1.5, "gigameters")
  52109. },
  52110. {
  52111. name: "Galactic",
  52112. height: math.unit(100, "exameters")
  52113. },
  52114. ]
  52115. ))
  52116. characterMakers.push(() => makeCharacter(
  52117. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52118. {
  52119. front: {
  52120. height: math.unit(6, "feet"),
  52121. weight: math.unit(210, "lb"),
  52122. name: "Front",
  52123. image: {
  52124. source: "./media/characters/glacia/front.svg",
  52125. extra: 958/901,
  52126. bottom: 45/1003
  52127. }
  52128. },
  52129. },
  52130. [
  52131. {
  52132. name: "Macro",
  52133. height: math.unit(1000, "meters"),
  52134. default: true
  52135. },
  52136. ]
  52137. ))
  52138. characterMakers.push(() => makeCharacter(
  52139. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52140. {
  52141. front: {
  52142. height: math.unit(4, "meters"),
  52143. name: "Front",
  52144. image: {
  52145. source: "./media/characters/giri/front.svg",
  52146. extra: 966/894,
  52147. bottom: 21/987
  52148. }
  52149. },
  52150. },
  52151. [
  52152. {
  52153. name: "Normal",
  52154. height: math.unit(4, "meters"),
  52155. default: true
  52156. },
  52157. ]
  52158. ))
  52159. characterMakers.push(() => makeCharacter(
  52160. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52161. {
  52162. back: {
  52163. height: math.unit(4, "feet"),
  52164. weight: math.unit(37, "lb"),
  52165. name: "Back",
  52166. image: {
  52167. source: "./media/characters/tin/back.svg",
  52168. extra: 845/780,
  52169. bottom: 28/873
  52170. }
  52171. },
  52172. },
  52173. [
  52174. {
  52175. name: "Normal",
  52176. height: math.unit(4, "feet"),
  52177. default: true
  52178. },
  52179. ]
  52180. ))
  52181. characterMakers.push(() => makeCharacter(
  52182. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52183. {
  52184. front: {
  52185. height: math.unit(25, "feet"),
  52186. name: "Front",
  52187. image: {
  52188. source: "./media/characters/cadenza-vivace/front.svg",
  52189. extra: 1842/1578,
  52190. bottom: 30/1872
  52191. }
  52192. },
  52193. },
  52194. [
  52195. {
  52196. name: "Macro",
  52197. height: math.unit(25, "feet"),
  52198. default: true
  52199. },
  52200. ]
  52201. ))
  52202. characterMakers.push(() => makeCharacter(
  52203. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52204. {
  52205. front: {
  52206. height: math.unit(10, "feet"),
  52207. weight: math.unit(625, "kg"),
  52208. name: "Front",
  52209. image: {
  52210. source: "./media/characters/zain/front.svg",
  52211. extra: 1682/1498,
  52212. bottom: 223/1905
  52213. }
  52214. },
  52215. back: {
  52216. height: math.unit(10, "feet"),
  52217. weight: math.unit(625, "kg"),
  52218. name: "Back",
  52219. image: {
  52220. source: "./media/characters/zain/back.svg",
  52221. extra: 1814/1657,
  52222. bottom: 152/1966
  52223. }
  52224. },
  52225. head: {
  52226. height: math.unit(10, "feet"),
  52227. weight: math.unit(625, "kg"),
  52228. name: "Head",
  52229. image: {
  52230. source: "./media/characters/zain/head.svg",
  52231. extra: 1059/762,
  52232. bottom: 0/1059
  52233. }
  52234. },
  52235. },
  52236. [
  52237. {
  52238. name: "Normal",
  52239. height: math.unit(10, "feet"),
  52240. default: true
  52241. },
  52242. ]
  52243. ))
  52244. characterMakers.push(() => makeCharacter(
  52245. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52246. {
  52247. front: {
  52248. height: math.unit(6 + 5/12, "feet"),
  52249. weight: math.unit(750, "lb"),
  52250. name: "Front",
  52251. image: {
  52252. source: "./media/characters/ruchex/front.svg",
  52253. extra: 877/820,
  52254. bottom: 17/894
  52255. },
  52256. extraAttributes: {
  52257. "width": {
  52258. name: "Width",
  52259. power: 1,
  52260. type: "length",
  52261. base: math.unit(4.757, "feet")
  52262. },
  52263. }
  52264. },
  52265. },
  52266. [
  52267. {
  52268. name: "Normal",
  52269. height: math.unit(6 + 5/12, "feet"),
  52270. default: true
  52271. },
  52272. ]
  52273. ))
  52274. characterMakers.push(() => makeCharacter(
  52275. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52276. {
  52277. dressedFront: {
  52278. height: math.unit(191, "cm"),
  52279. weight: math.unit(80, "kg"),
  52280. name: "Front",
  52281. image: {
  52282. source: "./media/characters/buster/dressed-front.svg",
  52283. extra: 1022/973,
  52284. bottom: 69/1091
  52285. }
  52286. },
  52287. dressedBack: {
  52288. height: math.unit(191, "cm"),
  52289. weight: math.unit(80, "kg"),
  52290. name: "Back",
  52291. image: {
  52292. source: "./media/characters/buster/dressed-back.svg",
  52293. extra: 1018/970,
  52294. bottom: 55/1073
  52295. }
  52296. },
  52297. nudeFront: {
  52298. height: math.unit(191, "cm"),
  52299. weight: math.unit(80, "kg"),
  52300. name: "Front (Nude)",
  52301. image: {
  52302. source: "./media/characters/buster/nude-front.svg",
  52303. extra: 1022/973,
  52304. bottom: 69/1091
  52305. }
  52306. },
  52307. nudeBack: {
  52308. height: math.unit(191, "cm"),
  52309. weight: math.unit(80, "kg"),
  52310. name: "Back (Nude)",
  52311. image: {
  52312. source: "./media/characters/buster/nude-back.svg",
  52313. extra: 1018/970,
  52314. bottom: 55/1073
  52315. }
  52316. },
  52317. dick: {
  52318. height: math.unit(2.59, "feet"),
  52319. name: "Dick",
  52320. image: {
  52321. source: "./media/characters/buster/dick.svg"
  52322. }
  52323. },
  52324. ass: {
  52325. height: math.unit(1.2, "feet"),
  52326. name: "Ass",
  52327. image: {
  52328. source: "./media/characters/buster/ass.svg"
  52329. }
  52330. },
  52331. },
  52332. [
  52333. {
  52334. name: "Normal",
  52335. height: math.unit(191, "cm"),
  52336. default: true
  52337. },
  52338. ]
  52339. ))
  52340. characterMakers.push(() => makeCharacter(
  52341. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52342. {
  52343. side: {
  52344. height: math.unit(8.1, "feet"),
  52345. weight: math.unit(3500, "lb"),
  52346. name: "Side",
  52347. image: {
  52348. source: "./media/characters/sonya/side.svg",
  52349. extra: 1730/1317,
  52350. bottom: 86/1816
  52351. }
  52352. },
  52353. },
  52354. [
  52355. {
  52356. name: "Normal",
  52357. height: math.unit(8.1, "feet"),
  52358. default: true
  52359. },
  52360. ]
  52361. ))
  52362. characterMakers.push(() => makeCharacter(
  52363. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52364. {
  52365. front: {
  52366. height: math.unit(6, "feet"),
  52367. weight: math.unit(150, "lb"),
  52368. name: "Front",
  52369. image: {
  52370. source: "./media/characters/cadence-andrysiak/front.svg",
  52371. extra: 1164/1121,
  52372. bottom: 60/1224
  52373. }
  52374. },
  52375. back: {
  52376. height: math.unit(6, "feet"),
  52377. weight: math.unit(150, "lb"),
  52378. name: "Back",
  52379. image: {
  52380. source: "./media/characters/cadence-andrysiak/back.svg",
  52381. extra: 1200/1165,
  52382. bottom: 9/1209
  52383. }
  52384. },
  52385. dressed: {
  52386. height: math.unit(6, "feet"),
  52387. weight: math.unit(150, "lb"),
  52388. name: "Dressed",
  52389. image: {
  52390. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52391. extra: 1164/1121,
  52392. bottom: 60/1224
  52393. }
  52394. },
  52395. },
  52396. [
  52397. {
  52398. name: "Micro",
  52399. height: math.unit(1, "mm")
  52400. },
  52401. {
  52402. name: "Normal",
  52403. height: math.unit(6, "feet"),
  52404. default: true
  52405. },
  52406. ]
  52407. ))
  52408. characterMakers.push(() => makeCharacter(
  52409. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52410. {
  52411. front: {
  52412. height: math.unit(60, "inches"),
  52413. weight: math.unit(16, "lb"),
  52414. preyCapacity: math.unit(80, "liters"),
  52415. name: "Front",
  52416. image: {
  52417. source: "./media/characters/penny-lynx/front.svg",
  52418. extra: 1959/1769,
  52419. bottom: 49/2008
  52420. }
  52421. },
  52422. },
  52423. [
  52424. {
  52425. name: "Nokia",
  52426. height: math.unit(2, "inches")
  52427. },
  52428. {
  52429. name: "Desktop",
  52430. height: math.unit(24, "inches")
  52431. },
  52432. {
  52433. name: "TV",
  52434. height: math.unit(60, "inches")
  52435. },
  52436. {
  52437. name: "Jumbotron",
  52438. height: math.unit(12, "feet")
  52439. },
  52440. {
  52441. name: "Billboard",
  52442. height: math.unit(48, "feet"),
  52443. default: true
  52444. },
  52445. {
  52446. name: "IMAX",
  52447. height: math.unit(96, "feet")
  52448. },
  52449. {
  52450. name: "SINGULARITY",
  52451. height: math.unit(864938, "miles")
  52452. },
  52453. ]
  52454. ))
  52455. characterMakers.push(() => makeCharacter(
  52456. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52457. {
  52458. front: {
  52459. height: math.unit(5 + 4/12, "feet"),
  52460. weight: math.unit(230, "lb"),
  52461. name: "Front",
  52462. image: {
  52463. source: "./media/characters/sukebe/front.svg",
  52464. extra: 2130/2038,
  52465. bottom: 90/2220
  52466. }
  52467. },
  52468. back: {
  52469. height: math.unit(3.48, "feet"),
  52470. weight: math.unit(230, "lb"),
  52471. name: "Back",
  52472. image: {
  52473. source: "./media/characters/sukebe/back.svg",
  52474. extra: 1670/1604,
  52475. bottom: 0/1670
  52476. }
  52477. },
  52478. },
  52479. [
  52480. {
  52481. name: "Normal",
  52482. height: math.unit(5 + 4/12, "feet"),
  52483. default: true
  52484. },
  52485. ]
  52486. ))
  52487. characterMakers.push(() => makeCharacter(
  52488. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52489. {
  52490. front: {
  52491. height: math.unit(6, "feet"),
  52492. name: "Front",
  52493. image: {
  52494. source: "./media/characters/nylla/front.svg",
  52495. extra: 1868/1699,
  52496. bottom: 97/1965
  52497. }
  52498. },
  52499. back: {
  52500. height: math.unit(6, "feet"),
  52501. name: "Back",
  52502. image: {
  52503. source: "./media/characters/nylla/back.svg",
  52504. extra: 1889/1712,
  52505. bottom: 93/1982
  52506. }
  52507. },
  52508. frontNsfw: {
  52509. height: math.unit(6, "feet"),
  52510. name: "Front (NSFW)",
  52511. image: {
  52512. source: "./media/characters/nylla/front-nsfw.svg",
  52513. extra: 1868/1699,
  52514. bottom: 97/1965
  52515. },
  52516. extraAttributes: {
  52517. "dickLength": {
  52518. name: "Dick Length",
  52519. power: 1,
  52520. type: "length",
  52521. base: math.unit(1.4, "feet")
  52522. },
  52523. "cumVolume": {
  52524. name: "Cum Volume",
  52525. power: 3,
  52526. type: "volume",
  52527. base: math.unit(100, "mL")
  52528. },
  52529. }
  52530. },
  52531. backNsfw: {
  52532. height: math.unit(6, "feet"),
  52533. name: "Back (NSFW)",
  52534. image: {
  52535. source: "./media/characters/nylla/back-nsfw.svg",
  52536. extra: 1889/1712,
  52537. bottom: 93/1982
  52538. }
  52539. },
  52540. maw: {
  52541. height: math.unit(2.10, "feet"),
  52542. name: "Maw",
  52543. image: {
  52544. source: "./media/characters/nylla/maw.svg"
  52545. }
  52546. },
  52547. paws: {
  52548. height: math.unit(2.06, "feet"),
  52549. name: "Paws",
  52550. image: {
  52551. source: "./media/characters/nylla/paws.svg"
  52552. }
  52553. },
  52554. muzzle: {
  52555. height: math.unit(0.61, "feet"),
  52556. name: "Muzzle",
  52557. image: {
  52558. source: "./media/characters/nylla/muzzle.svg"
  52559. }
  52560. },
  52561. sheath: {
  52562. height: math.unit(1.305, "feet"),
  52563. name: "Sheath",
  52564. image: {
  52565. source: "./media/characters/nylla/sheath.svg"
  52566. }
  52567. },
  52568. },
  52569. [
  52570. {
  52571. name: "Micro",
  52572. height: math.unit(7.5, "inches")
  52573. },
  52574. {
  52575. name: "Normal",
  52576. height: math.unit(7, "feet"),
  52577. default: true
  52578. },
  52579. {
  52580. name: "Macro",
  52581. height: math.unit(60, "feet")
  52582. },
  52583. {
  52584. name: "Mega",
  52585. height: math.unit(200, "feet")
  52586. },
  52587. ]
  52588. ))
  52589. characterMakers.push(() => makeCharacter(
  52590. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52591. {
  52592. front: {
  52593. height: math.unit(10, "feet"),
  52594. weight: math.unit(2300, "lb"),
  52595. name: "Front",
  52596. image: {
  52597. source: "./media/characters/hunt3r/front.svg",
  52598. extra: 1909/1742,
  52599. bottom: 46/1955
  52600. }
  52601. },
  52602. },
  52603. [
  52604. {
  52605. name: "Normal",
  52606. height: math.unit(10, "feet"),
  52607. default: true
  52608. },
  52609. ]
  52610. ))
  52611. characterMakers.push(() => makeCharacter(
  52612. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52613. {
  52614. dressed: {
  52615. height: math.unit(11, "feet"),
  52616. weight: math.unit(18500, "lb"),
  52617. preyCapacity: math.unit(9, "people"),
  52618. name: "Dressed",
  52619. image: {
  52620. source: "./media/characters/cylphis/dressed.svg",
  52621. extra: 1028/1003,
  52622. bottom: 75/1103
  52623. },
  52624. },
  52625. undressed: {
  52626. height: math.unit(11, "feet"),
  52627. weight: math.unit(18500, "lb"),
  52628. preyCapacity: math.unit(9, "people"),
  52629. name: "Undressed",
  52630. image: {
  52631. source: "./media/characters/cylphis/undressed.svg",
  52632. extra: 1028/1003,
  52633. bottom: 75/1103
  52634. }
  52635. },
  52636. full: {
  52637. height: math.unit(11, "feet"),
  52638. weight: math.unit(18500 + 150*9, "lb"),
  52639. preyCapacity: math.unit(9, "people"),
  52640. name: "Full",
  52641. image: {
  52642. source: "./media/characters/cylphis/full.svg",
  52643. extra: 1028/1003,
  52644. bottom: 75/1103
  52645. }
  52646. },
  52647. },
  52648. [
  52649. {
  52650. name: "Small",
  52651. height: math.unit(8, "feet")
  52652. },
  52653. {
  52654. name: "Normal",
  52655. height: math.unit(11, "feet"),
  52656. default: true
  52657. },
  52658. ]
  52659. ))
  52660. characterMakers.push(() => makeCharacter(
  52661. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52662. {
  52663. front: {
  52664. height: math.unit(2 + 7/12, "feet"),
  52665. name: "Front",
  52666. image: {
  52667. source: "./media/characters/orishan/front.svg",
  52668. extra: 1058/1023,
  52669. bottom: 23/1081
  52670. }
  52671. },
  52672. back: {
  52673. height: math.unit(2 + 7/12, "feet"),
  52674. name: "Back",
  52675. image: {
  52676. source: "./media/characters/orishan/back.svg",
  52677. extra: 1058/1023,
  52678. bottom: 23/1081
  52679. }
  52680. },
  52681. },
  52682. [
  52683. {
  52684. name: "Micro",
  52685. height: math.unit(2, "cm")
  52686. },
  52687. {
  52688. name: "Normal",
  52689. height: math.unit(2 + 7/12, "feet"),
  52690. default: true
  52691. },
  52692. ]
  52693. ))
  52694. characterMakers.push(() => makeCharacter(
  52695. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52696. {
  52697. front: {
  52698. height: math.unit(3, "meters"),
  52699. weight: math.unit(508, "kg"),
  52700. name: "Front",
  52701. image: {
  52702. source: "./media/characters/seranis/front.svg",
  52703. extra: 1478/1454,
  52704. bottom: 41/1519
  52705. }
  52706. },
  52707. },
  52708. [
  52709. {
  52710. name: "Normal",
  52711. height: math.unit(3, "meters"),
  52712. default: true
  52713. },
  52714. {
  52715. name: "Macro",
  52716. height: math.unit(108, "meters")
  52717. },
  52718. {
  52719. name: "Megamacro",
  52720. height: math.unit(1250, "meters")
  52721. },
  52722. ]
  52723. ))
  52724. characterMakers.push(() => makeCharacter(
  52725. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52726. {
  52727. undressed: {
  52728. height: math.unit(5 + 3/12, "feet"),
  52729. name: "Undressed",
  52730. image: {
  52731. source: "./media/characters/ankou/undressed.svg",
  52732. extra: 1301/1213,
  52733. bottom: 87/1388
  52734. }
  52735. },
  52736. dressed: {
  52737. height: math.unit(5 + 3/12, "feet"),
  52738. name: "Dressed",
  52739. image: {
  52740. source: "./media/characters/ankou/dressed.svg",
  52741. extra: 1301/1213,
  52742. bottom: 87/1388
  52743. }
  52744. },
  52745. head: {
  52746. height: math.unit(1.61, "feet"),
  52747. name: "Head",
  52748. image: {
  52749. source: "./media/characters/ankou/head.svg"
  52750. }
  52751. },
  52752. },
  52753. [
  52754. {
  52755. name: "Normal",
  52756. height: math.unit(5 + 3/12, "feet"),
  52757. default: true
  52758. },
  52759. ]
  52760. ))
  52761. characterMakers.push(() => makeCharacter(
  52762. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52763. {
  52764. side: {
  52765. height: math.unit(6 + 3/12, "feet"),
  52766. weight: math.unit(200, "kg"),
  52767. name: "Side",
  52768. image: {
  52769. source: "./media/characters/juniper-skunktaur/side.svg",
  52770. extra: 1574/1229,
  52771. bottom: 38/1612
  52772. }
  52773. },
  52774. front: {
  52775. height: math.unit(6 + 3/12, "feet"),
  52776. weight: math.unit(200, "kg"),
  52777. name: "Front",
  52778. image: {
  52779. source: "./media/characters/juniper-skunktaur/front.svg",
  52780. extra: 1337/1278,
  52781. bottom: 22/1359
  52782. }
  52783. },
  52784. back: {
  52785. height: math.unit(6 + 3/12, "feet"),
  52786. weight: math.unit(200, "kg"),
  52787. name: "Back",
  52788. image: {
  52789. source: "./media/characters/juniper-skunktaur/back.svg",
  52790. extra: 1618/1273,
  52791. bottom: 13/1631
  52792. }
  52793. },
  52794. top: {
  52795. height: math.unit(2.62, "feet"),
  52796. weight: math.unit(200, "kg"),
  52797. name: "Top",
  52798. image: {
  52799. source: "./media/characters/juniper-skunktaur/top.svg"
  52800. }
  52801. },
  52802. },
  52803. [
  52804. {
  52805. name: "Normal",
  52806. height: math.unit(6 + 3/12, "feet"),
  52807. default: true
  52808. },
  52809. ]
  52810. ))
  52811. characterMakers.push(() => makeCharacter(
  52812. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52813. {
  52814. front: {
  52815. height: math.unit(20.5, "feet"),
  52816. name: "Front",
  52817. image: {
  52818. source: "./media/characters/rei/front.svg",
  52819. extra: 1349/1195,
  52820. bottom: 31/1380
  52821. }
  52822. },
  52823. back: {
  52824. height: math.unit(20.5, "feet"),
  52825. name: "Back",
  52826. image: {
  52827. source: "./media/characters/rei/back.svg",
  52828. extra: 1358/1204,
  52829. bottom: 22/1380
  52830. }
  52831. },
  52832. pawsDigi: {
  52833. height: math.unit(3.45, "feet"),
  52834. name: "Paws (Digi)",
  52835. image: {
  52836. source: "./media/characters/rei/paws-digi.svg"
  52837. }
  52838. },
  52839. pawsPlanti: {
  52840. height: math.unit(3.45, "feet"),
  52841. name: "Paws (Planti)",
  52842. image: {
  52843. source: "./media/characters/rei/paws-planti.svg"
  52844. }
  52845. },
  52846. },
  52847. [
  52848. {
  52849. name: "Normal",
  52850. height: math.unit(20.5, "feet"),
  52851. default: true
  52852. },
  52853. ]
  52854. ))
  52855. characterMakers.push(() => makeCharacter(
  52856. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52857. {
  52858. front: {
  52859. height: math.unit(5 + 11/12, "feet"),
  52860. name: "Front",
  52861. image: {
  52862. source: "./media/characters/carina/front.svg",
  52863. extra: 1720/1449,
  52864. bottom: 14/1734
  52865. }
  52866. },
  52867. back: {
  52868. height: math.unit(5 + 11/12, "feet"),
  52869. name: "Back",
  52870. image: {
  52871. source: "./media/characters/carina/back.svg",
  52872. extra: 1493/1445,
  52873. bottom: 17/1510
  52874. }
  52875. },
  52876. paw: {
  52877. height: math.unit(0.92, "feet"),
  52878. name: "Paw",
  52879. image: {
  52880. source: "./media/characters/carina/paw.svg"
  52881. }
  52882. },
  52883. },
  52884. [
  52885. {
  52886. name: "Normal",
  52887. height: math.unit(5 + 11/12, "feet"),
  52888. default: true
  52889. },
  52890. ]
  52891. ))
  52892. characterMakers.push(() => makeCharacter(
  52893. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  52894. {
  52895. normal_front: {
  52896. height: math.unit(4.88, "meters"),
  52897. name: "Front",
  52898. image: {
  52899. source: "./media/characters/maya/normal-front.svg",
  52900. extra: 1222/1145,
  52901. bottom: 57/1279
  52902. },
  52903. form: "normal",
  52904. default: true
  52905. },
  52906. monstrous_front: {
  52907. height: math.unit(10, "meters"),
  52908. name: "Front",
  52909. image: {
  52910. source: "./media/characters/maya/monstrous-front.svg",
  52911. extra: 1523/1109,
  52912. bottom: 113/1636
  52913. },
  52914. form: "monstrous",
  52915. extraAttributes: {
  52916. "swallowSize": {
  52917. name: "Tailmaw Bite Size",
  52918. power: 3,
  52919. type: "volume",
  52920. base: math.unit(43000, "liters")
  52921. },
  52922. }
  52923. },
  52924. taur_front: {
  52925. height: math.unit(10, "meters"),
  52926. name: "Front",
  52927. image: {
  52928. source: "./media/characters/maya/taur-front.svg",
  52929. extra: 743/506,
  52930. bottom: 101/844
  52931. },
  52932. form: "taur",
  52933. },
  52934. },
  52935. [
  52936. {
  52937. name: "Normal",
  52938. height: math.unit(4.88, "meters"),
  52939. default: true,
  52940. form: "normal"
  52941. },
  52942. {
  52943. name: "Macro",
  52944. height: math.unit(38.1, "meters"),
  52945. form: "normal"
  52946. },
  52947. {
  52948. name: "Macro+",
  52949. height: math.unit(152.4, "meters"),
  52950. form: "normal"
  52951. },
  52952. {
  52953. name: "Macro++",
  52954. height: math.unit(16.09, "km"),
  52955. form: "normal"
  52956. },
  52957. {
  52958. name: "Mega-macro",
  52959. height: math.unit(700, "megameters"),
  52960. form: "normal"
  52961. },
  52962. {
  52963. name: "Satiated",
  52964. height: math.unit(10, "meters"),
  52965. default: true,
  52966. form: "monstrous"
  52967. },
  52968. {
  52969. name: "Hungry",
  52970. height: math.unit(75, "meters"),
  52971. form: "monstrous"
  52972. },
  52973. {
  52974. name: "Ravenous",
  52975. height: math.unit(500, "meters"),
  52976. form: "monstrous"
  52977. },
  52978. {
  52979. name: "\"Normal\"",
  52980. height: math.unit(10, "meters"),
  52981. form: "taur"
  52982. },
  52983. {
  52984. name: "Macro",
  52985. height: math.unit(50, "meters"),
  52986. form: "taur"
  52987. },
  52988. ],
  52989. {
  52990. "normal": {
  52991. name: "Normal",
  52992. default: true
  52993. },
  52994. "monstrous": {
  52995. name: "Monstrous",
  52996. },
  52997. "taur": {
  52998. name: "Taur",
  52999. },
  53000. }
  53001. ))
  53002. characterMakers.push(() => makeCharacter(
  53003. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53004. {
  53005. front: {
  53006. height: math.unit(6 + 2/12, "feet"),
  53007. weight: math.unit(500, "lb"),
  53008. preyCapacity: math.unit(4, "people"),
  53009. name: "Front",
  53010. image: {
  53011. source: "./media/characters/yepir/front.svg"
  53012. }
  53013. },
  53014. side: {
  53015. height: math.unit(6 + 2/12, "feet"),
  53016. weight: math.unit(500, "lb"),
  53017. preyCapacity: math.unit(4, "people"),
  53018. name: "Side",
  53019. image: {
  53020. source: "./media/characters/yepir/side.svg"
  53021. }
  53022. },
  53023. paw: {
  53024. height: math.unit(1.05, "feet"),
  53025. name: "Paw",
  53026. image: {
  53027. source: "./media/characters/yepir/paw.svg"
  53028. }
  53029. },
  53030. },
  53031. [
  53032. {
  53033. name: "Normal",
  53034. height: math.unit(6 + 2/12, "feet"),
  53035. default: true
  53036. },
  53037. ]
  53038. ))
  53039. characterMakers.push(() => makeCharacter(
  53040. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53041. {
  53042. front: {
  53043. height: math.unit(5 + 4/12, "feet"),
  53044. name: "Front",
  53045. image: {
  53046. source: "./media/characters/russec/front.svg",
  53047. extra: 1926/1626,
  53048. bottom: 72/1998
  53049. }
  53050. },
  53051. back: {
  53052. height: math.unit(5 + 4/12, "feet"),
  53053. name: "Back",
  53054. image: {
  53055. source: "./media/characters/russec/back.svg",
  53056. extra: 1910/1591,
  53057. bottom: 48/1958
  53058. }
  53059. },
  53060. },
  53061. [
  53062. {
  53063. name: "Small",
  53064. height: math.unit(5 + 4/12, "feet")
  53065. },
  53066. {
  53067. name: "Normal",
  53068. height: math.unit(72, "feet"),
  53069. default: true
  53070. },
  53071. ]
  53072. ))
  53073. characterMakers.push(() => makeCharacter(
  53074. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53075. {
  53076. side: {
  53077. height: math.unit(12, "feet"),
  53078. name: "Side",
  53079. image: {
  53080. source: "./media/characters/cianus/side.svg",
  53081. extra: 808/526,
  53082. bottom: 61/869
  53083. }
  53084. },
  53085. },
  53086. [
  53087. {
  53088. name: "Normal",
  53089. height: math.unit(12, "feet"),
  53090. default: true
  53091. },
  53092. ]
  53093. ))
  53094. characterMakers.push(() => makeCharacter(
  53095. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53096. {
  53097. front: {
  53098. height: math.unit(9 + 6/12, "feet"),
  53099. weight: math.unit(300, "lb"),
  53100. name: "Front",
  53101. image: {
  53102. source: "./media/characters/ahab/front.svg",
  53103. extra: 1897/1868,
  53104. bottom: 121/2018
  53105. }
  53106. },
  53107. frontNsfw: {
  53108. height: math.unit(9 + 6/12, "feet"),
  53109. weight: math.unit(300, "lb"),
  53110. name: "Front-nsfw",
  53111. image: {
  53112. source: "./media/characters/ahab/front-nsfw.svg",
  53113. extra: 1897/1868,
  53114. bottom: 121/2018
  53115. }
  53116. },
  53117. },
  53118. [
  53119. {
  53120. name: "Normal",
  53121. height: math.unit(9 + 6/12, "feet")
  53122. },
  53123. {
  53124. name: "Macro",
  53125. height: math.unit(657, "feet"),
  53126. default: true
  53127. },
  53128. ]
  53129. ))
  53130. characterMakers.push(() => makeCharacter(
  53131. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53132. {
  53133. front: {
  53134. height: math.unit(2.69, "meters"),
  53135. weight: math.unit(132, "kg"),
  53136. name: "Front",
  53137. image: {
  53138. source: "./media/characters/aarkus/front.svg",
  53139. extra: 1400/1231,
  53140. bottom: 34/1434
  53141. }
  53142. },
  53143. back: {
  53144. height: math.unit(2.69, "meters"),
  53145. weight: math.unit(132, "kg"),
  53146. name: "Back",
  53147. image: {
  53148. source: "./media/characters/aarkus/back.svg",
  53149. extra: 1381/1218,
  53150. bottom: 30/1411
  53151. }
  53152. },
  53153. frontNsfw: {
  53154. height: math.unit(2.69, "meters"),
  53155. weight: math.unit(132, "kg"),
  53156. name: "Front (NSFW)",
  53157. image: {
  53158. source: "./media/characters/aarkus/front-nsfw.svg",
  53159. extra: 1400/1231,
  53160. bottom: 34/1434
  53161. }
  53162. },
  53163. foot: {
  53164. height: math.unit(1.45, "feet"),
  53165. name: "Foot",
  53166. image: {
  53167. source: "./media/characters/aarkus/foot.svg"
  53168. }
  53169. },
  53170. head: {
  53171. height: math.unit(2.85, "feet"),
  53172. name: "Head",
  53173. image: {
  53174. source: "./media/characters/aarkus/head.svg"
  53175. }
  53176. },
  53177. headAlt: {
  53178. height: math.unit(3.07, "feet"),
  53179. name: "Head (Alt)",
  53180. image: {
  53181. source: "./media/characters/aarkus/head-alt.svg"
  53182. }
  53183. },
  53184. mouth: {
  53185. height: math.unit(1.25, "feet"),
  53186. name: "Mouth",
  53187. image: {
  53188. source: "./media/characters/aarkus/mouth.svg"
  53189. }
  53190. },
  53191. dick: {
  53192. height: math.unit(1.77, "feet"),
  53193. name: "Dick",
  53194. image: {
  53195. source: "./media/characters/aarkus/dick.svg"
  53196. }
  53197. },
  53198. },
  53199. [
  53200. {
  53201. name: "Normal",
  53202. height: math.unit(2.69, "meters"),
  53203. default: true
  53204. },
  53205. {
  53206. name: "Macro",
  53207. height: math.unit(269, "meters")
  53208. },
  53209. {
  53210. name: "Macro+",
  53211. height: math.unit(672.5, "meters")
  53212. },
  53213. {
  53214. name: "Megamacro",
  53215. height: math.unit(2.017, "km")
  53216. },
  53217. ]
  53218. ))
  53219. characterMakers.push(() => makeCharacter(
  53220. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53221. {
  53222. front: {
  53223. height: math.unit(23.47, "cm"),
  53224. weight: math.unit(600, "grams"),
  53225. name: "Front",
  53226. image: {
  53227. source: "./media/characters/diode/front.svg",
  53228. extra: 1778/1396,
  53229. bottom: 95/1873
  53230. }
  53231. },
  53232. side: {
  53233. height: math.unit(23.47, "cm"),
  53234. weight: math.unit(600, "grams"),
  53235. name: "Side",
  53236. image: {
  53237. source: "./media/characters/diode/side.svg",
  53238. extra: 1831/1404,
  53239. bottom: 86/1917
  53240. }
  53241. },
  53242. wings: {
  53243. height: math.unit(0.683, "feet"),
  53244. name: "Wings",
  53245. image: {
  53246. source: "./media/characters/diode/wings.svg"
  53247. }
  53248. },
  53249. },
  53250. [
  53251. {
  53252. name: "Normal",
  53253. height: math.unit(23.47, "cm"),
  53254. default: true
  53255. },
  53256. ]
  53257. ))
  53258. characterMakers.push(() => makeCharacter(
  53259. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53260. {
  53261. front: {
  53262. height: math.unit(6 + 3/12, "feet"),
  53263. weight: math.unit(250, "lb"),
  53264. name: "Front",
  53265. image: {
  53266. source: "./media/characters/reika/front.svg",
  53267. extra: 1120/1078,
  53268. bottom: 86/1206
  53269. }
  53270. },
  53271. },
  53272. [
  53273. {
  53274. name: "Normal",
  53275. height: math.unit(6 + 3/12, "feet"),
  53276. default: true
  53277. },
  53278. ]
  53279. ))
  53280. characterMakers.push(() => makeCharacter(
  53281. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53282. {
  53283. front: {
  53284. height: math.unit(16 + 8/12, "feet"),
  53285. weight: math.unit(9000, "lb"),
  53286. name: "Front",
  53287. image: {
  53288. source: "./media/characters/lokuto-takama/front.svg",
  53289. extra: 1774/1632,
  53290. bottom: 147/1921
  53291. },
  53292. extraAttributes: {
  53293. "bustWidth": {
  53294. name: "Bust Width",
  53295. power: 1,
  53296. type: "length",
  53297. base: math.unit(2.4, "meters")
  53298. },
  53299. "breastWeight": {
  53300. name: "Breast Weight",
  53301. power: 3,
  53302. type: "mass",
  53303. base: math.unit(1000, "kg")
  53304. },
  53305. }
  53306. },
  53307. },
  53308. [
  53309. {
  53310. name: "Normal",
  53311. height: math.unit(16 + 8/12, "feet"),
  53312. default: true
  53313. },
  53314. ]
  53315. ))
  53316. characterMakers.push(() => makeCharacter(
  53317. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53318. {
  53319. front: {
  53320. height: math.unit(10, "cm"),
  53321. weight: math.unit(850, "grams"),
  53322. name: "Front",
  53323. image: {
  53324. source: "./media/characters/owak-bone/front.svg",
  53325. extra: 1965/1801,
  53326. bottom: 31/1996
  53327. }
  53328. },
  53329. },
  53330. [
  53331. {
  53332. name: "Normal",
  53333. height: math.unit(10, "cm"),
  53334. default: true
  53335. },
  53336. ]
  53337. ))
  53338. characterMakers.push(() => makeCharacter(
  53339. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53340. {
  53341. front: {
  53342. height: math.unit(2 + 6/12, "feet"),
  53343. weight: math.unit(9, "lb"),
  53344. name: "Front",
  53345. image: {
  53346. source: "./media/characters/muffin/front.svg",
  53347. extra: 1220/1195,
  53348. bottom: 84/1304
  53349. }
  53350. },
  53351. },
  53352. [
  53353. {
  53354. name: "Normal",
  53355. height: math.unit(2 + 6/12, "feet"),
  53356. default: true
  53357. },
  53358. ]
  53359. ))
  53360. characterMakers.push(() => makeCharacter(
  53361. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53362. {
  53363. front: {
  53364. height: math.unit(7, "feet"),
  53365. name: "Front",
  53366. image: {
  53367. source: "./media/characters/chimera/front.svg",
  53368. extra: 1752/1614,
  53369. bottom: 68/1820
  53370. }
  53371. },
  53372. },
  53373. [
  53374. {
  53375. name: "Normal",
  53376. height: math.unit(7, "feet")
  53377. },
  53378. {
  53379. name: "Gigamacro",
  53380. height: math.unit(2.9, "gigameters"),
  53381. default: true
  53382. },
  53383. {
  53384. name: "Universal",
  53385. height: math.unit(1.56e26, "yottameters")
  53386. },
  53387. ]
  53388. ))
  53389. characterMakers.push(() => makeCharacter(
  53390. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53391. {
  53392. front: {
  53393. height: math.unit(3, "feet"),
  53394. weight: math.unit(20, "lb"),
  53395. name: "Front",
  53396. image: {
  53397. source: "./media/characters/kit-fennec-fox/front.svg",
  53398. extra: 1027/932,
  53399. bottom: 16/1043
  53400. }
  53401. },
  53402. back: {
  53403. height: math.unit(3, "feet"),
  53404. weight: math.unit(20, "lb"),
  53405. name: "Back",
  53406. image: {
  53407. source: "./media/characters/kit-fennec-fox/back.svg",
  53408. extra: 1027/932,
  53409. bottom: 16/1043
  53410. }
  53411. },
  53412. },
  53413. [
  53414. {
  53415. name: "Normal",
  53416. height: math.unit(3, "feet"),
  53417. default: true
  53418. },
  53419. ]
  53420. ))
  53421. characterMakers.push(() => makeCharacter(
  53422. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53423. {
  53424. front: {
  53425. height: math.unit(167, "cm"),
  53426. name: "Front",
  53427. image: {
  53428. source: "./media/characters/blue-otter/front.svg",
  53429. extra: 1951/1920,
  53430. bottom: 31/1982
  53431. }
  53432. },
  53433. },
  53434. [
  53435. {
  53436. name: "Otter-Sized",
  53437. height: math.unit(100, "cm")
  53438. },
  53439. {
  53440. name: "Normal",
  53441. height: math.unit(167, "cm"),
  53442. default: true
  53443. },
  53444. ]
  53445. ))
  53446. characterMakers.push(() => makeCharacter(
  53447. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53448. {
  53449. front: {
  53450. height: math.unit(4 + 4/12, "feet"),
  53451. name: "Front",
  53452. image: {
  53453. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53454. extra: 1072/1067,
  53455. bottom: 117/1189
  53456. }
  53457. },
  53458. back: {
  53459. height: math.unit(4 + 4/12, "feet"),
  53460. name: "Back",
  53461. image: {
  53462. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53463. extra: 1135/1129,
  53464. bottom: 57/1192
  53465. }
  53466. },
  53467. head: {
  53468. height: math.unit(1.77, "feet"),
  53469. name: "Head",
  53470. image: {
  53471. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53472. }
  53473. },
  53474. },
  53475. [
  53476. {
  53477. name: "Normal",
  53478. height: math.unit(4 + 4/12, "feet"),
  53479. default: true
  53480. },
  53481. ]
  53482. ))
  53483. characterMakers.push(() => makeCharacter(
  53484. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53485. {
  53486. front: {
  53487. height: math.unit(2, "inches"),
  53488. name: "Front",
  53489. image: {
  53490. source: "./media/characters/carley-hartford/front.svg",
  53491. extra: 1035/988,
  53492. bottom: 23/1058
  53493. }
  53494. },
  53495. back: {
  53496. height: math.unit(2, "inches"),
  53497. name: "Back",
  53498. image: {
  53499. source: "./media/characters/carley-hartford/back.svg",
  53500. extra: 1035/988,
  53501. bottom: 23/1058
  53502. }
  53503. },
  53504. dressed: {
  53505. height: math.unit(2, "inches"),
  53506. name: "Dressed",
  53507. image: {
  53508. source: "./media/characters/carley-hartford/dressed.svg",
  53509. extra: 651/620,
  53510. bottom: 0/651
  53511. }
  53512. },
  53513. },
  53514. [
  53515. {
  53516. name: "Micro",
  53517. height: math.unit(2, "inches"),
  53518. default: true
  53519. },
  53520. {
  53521. name: "Macro",
  53522. height: math.unit(6 + 3/12, "feet")
  53523. },
  53524. ]
  53525. ))
  53526. characterMakers.push(() => makeCharacter(
  53527. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53528. {
  53529. front: {
  53530. height: math.unit(2 + 3/12, "feet"),
  53531. weight: math.unit(15 + 7/16, "lb"),
  53532. name: "Front",
  53533. image: {
  53534. source: "./media/characters/duke/front.svg",
  53535. extra: 910/815,
  53536. bottom: 30/940
  53537. }
  53538. },
  53539. },
  53540. [
  53541. {
  53542. name: "Normal",
  53543. height: math.unit(2 + 3/12, "feet"),
  53544. default: true
  53545. },
  53546. ]
  53547. ))
  53548. characterMakers.push(() => makeCharacter(
  53549. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53550. {
  53551. front: {
  53552. height: math.unit(5 + 4/12, "feet"),
  53553. weight: math.unit(156, "lb"),
  53554. name: "Front",
  53555. image: {
  53556. source: "./media/characters/dein/front.svg",
  53557. extra: 855/815,
  53558. bottom: 48/903
  53559. }
  53560. },
  53561. side: {
  53562. height: math.unit(5 + 4/12, "feet"),
  53563. weight: math.unit(156, "lb"),
  53564. name: "side",
  53565. image: {
  53566. source: "./media/characters/dein/side.svg",
  53567. extra: 846/803,
  53568. bottom: 25/871
  53569. }
  53570. },
  53571. maw: {
  53572. height: math.unit(1.45, "feet"),
  53573. name: "Maw",
  53574. image: {
  53575. source: "./media/characters/dein/maw.svg"
  53576. }
  53577. },
  53578. },
  53579. [
  53580. {
  53581. name: "Ferret Sized",
  53582. height: math.unit(2 + 5/12, "feet")
  53583. },
  53584. {
  53585. name: "Normal",
  53586. height: math.unit(5 + 4/12, "feet"),
  53587. default: true
  53588. },
  53589. ]
  53590. ))
  53591. characterMakers.push(() => makeCharacter(
  53592. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53593. {
  53594. front: {
  53595. height: math.unit(84 + 8/12, "feet"),
  53596. weight: math.unit(942180, "lb"),
  53597. name: "Front",
  53598. image: {
  53599. source: "./media/characters/daurine-arima/front.svg",
  53600. extra: 1989/1782,
  53601. bottom: 37/2026
  53602. }
  53603. },
  53604. side: {
  53605. height: math.unit(84 + 8/12, "feet"),
  53606. weight: math.unit(942180, "lb"),
  53607. name: "Side",
  53608. image: {
  53609. source: "./media/characters/daurine-arima/side.svg",
  53610. extra: 1997/1790,
  53611. bottom: 21/2018
  53612. }
  53613. },
  53614. back: {
  53615. height: math.unit(84 + 8/12, "feet"),
  53616. weight: math.unit(942180, "lb"),
  53617. name: "Back",
  53618. image: {
  53619. source: "./media/characters/daurine-arima/back.svg",
  53620. extra: 1992/1800,
  53621. bottom: 12/2004
  53622. }
  53623. },
  53624. head: {
  53625. height: math.unit(15.5, "feet"),
  53626. name: "Head",
  53627. image: {
  53628. source: "./media/characters/daurine-arima/head.svg"
  53629. }
  53630. },
  53631. headAlt: {
  53632. height: math.unit(19.19, "feet"),
  53633. name: "Head (Alt)",
  53634. image: {
  53635. source: "./media/characters/daurine-arima/head-alt.svg"
  53636. }
  53637. },
  53638. },
  53639. [
  53640. {
  53641. name: "Minimum height",
  53642. height: math.unit(8 + 10/12, "feet")
  53643. },
  53644. {
  53645. name: "Comfort height",
  53646. height: math.unit(19 + 6 /12, "feet")
  53647. },
  53648. {
  53649. name: "\"Normal\" height",
  53650. height: math.unit(28 + 10/12, "feet")
  53651. },
  53652. {
  53653. name: "Base height",
  53654. height: math.unit(84 + 8/12, "feet"),
  53655. default: true
  53656. },
  53657. {
  53658. name: "Mini-macro",
  53659. height: math.unit(2360, "feet")
  53660. },
  53661. {
  53662. name: "Macro",
  53663. height: math.unit(10, "miles")
  53664. },
  53665. {
  53666. name: "Goddess",
  53667. height: math.unit(9.99e40, "yottameters")
  53668. },
  53669. ]
  53670. ))
  53671. characterMakers.push(() => makeCharacter(
  53672. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53673. {
  53674. front: {
  53675. height: math.unit(2.3, "meters"),
  53676. name: "Front",
  53677. image: {
  53678. source: "./media/characters/cilenomon/front.svg",
  53679. extra: 1963/1778,
  53680. bottom: 54/2017
  53681. }
  53682. },
  53683. },
  53684. [
  53685. {
  53686. name: "Normal",
  53687. height: math.unit(2.3, "meters"),
  53688. default: true
  53689. },
  53690. {
  53691. name: "Big",
  53692. height: math.unit(5, "meters")
  53693. },
  53694. {
  53695. name: "Macro",
  53696. height: math.unit(30, "meters")
  53697. },
  53698. {
  53699. name: "True",
  53700. height: math.unit(1, "universe")
  53701. },
  53702. ]
  53703. ))
  53704. characterMakers.push(() => makeCharacter(
  53705. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53706. {
  53707. front: {
  53708. height: math.unit(5, "feet"),
  53709. name: "Front",
  53710. image: {
  53711. source: "./media/characters/sen-mink/front.svg",
  53712. extra: 1727/1675,
  53713. bottom: 35/1762
  53714. }
  53715. },
  53716. },
  53717. [
  53718. {
  53719. name: "Normal",
  53720. height: math.unit(5, "feet"),
  53721. default: true
  53722. },
  53723. ]
  53724. ))
  53725. characterMakers.push(() => makeCharacter(
  53726. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53727. {
  53728. front: {
  53729. height: math.unit(5.42999, "feet"),
  53730. weight: math.unit(100, "lb"),
  53731. name: "Front",
  53732. image: {
  53733. source: "./media/characters/ophois/front.svg",
  53734. extra: 1429/1286,
  53735. bottom: 60/1489
  53736. }
  53737. },
  53738. },
  53739. [
  53740. {
  53741. name: "Normal",
  53742. height: math.unit(5.42999, "feet"),
  53743. default: true
  53744. },
  53745. ]
  53746. ))
  53747. characterMakers.push(() => makeCharacter(
  53748. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53749. {
  53750. front: {
  53751. height: math.unit(2, "meters"),
  53752. name: "Front",
  53753. image: {
  53754. source: "./media/characters/riley/front.svg",
  53755. extra: 1779/1754,
  53756. bottom: 139/1918
  53757. }
  53758. },
  53759. },
  53760. [
  53761. {
  53762. name: "Normal",
  53763. height: math.unit(2, "meters"),
  53764. default: true
  53765. },
  53766. ]
  53767. ))
  53768. characterMakers.push(() => makeCharacter(
  53769. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53770. {
  53771. front: {
  53772. height: math.unit(6 + 2/12, "feet"),
  53773. weight: math.unit(195, "lb"),
  53774. preyCapacity: math.unit(6, "people"),
  53775. name: "Front",
  53776. image: {
  53777. source: "./media/characters/shuken-flash/front.svg",
  53778. extra: 1905/1739,
  53779. bottom: 65/1970
  53780. }
  53781. },
  53782. back: {
  53783. height: math.unit(6 + 2/12, "feet"),
  53784. weight: math.unit(195, "lb"),
  53785. preyCapacity: math.unit(6, "people"),
  53786. name: "Back",
  53787. image: {
  53788. source: "./media/characters/shuken-flash/back.svg",
  53789. extra: 1912/1751,
  53790. bottom: 13/1925
  53791. }
  53792. },
  53793. },
  53794. [
  53795. {
  53796. name: "Normal",
  53797. height: math.unit(6 + 2/12, "feet"),
  53798. default: true
  53799. },
  53800. ]
  53801. ))
  53802. characterMakers.push(() => makeCharacter(
  53803. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53804. {
  53805. front: {
  53806. height: math.unit(5 + 9/12, "feet"),
  53807. weight: math.unit(150, "lb"),
  53808. name: "Front",
  53809. image: {
  53810. source: "./media/characters/plat/front.svg",
  53811. extra: 1816/1703,
  53812. bottom: 43/1859
  53813. }
  53814. },
  53815. side: {
  53816. height: math.unit(5 + 9/12, "feet"),
  53817. weight: math.unit(300, "lb"),
  53818. name: "Side",
  53819. image: {
  53820. source: "./media/characters/plat/side.svg",
  53821. extra: 1824/1699,
  53822. bottom: 18/1842
  53823. }
  53824. },
  53825. },
  53826. [
  53827. {
  53828. name: "Normal",
  53829. height: math.unit(5 + 9/12, "feet"),
  53830. default: true
  53831. },
  53832. ]
  53833. ))
  53834. characterMakers.push(() => makeCharacter(
  53835. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53836. {
  53837. front: {
  53838. height: math.unit(9, "feet"),
  53839. weight: math.unit(1800, "lb"),
  53840. name: "Front",
  53841. image: {
  53842. source: "./media/characters/elaine/front.svg",
  53843. extra: 1833/1354,
  53844. bottom: 25/1858
  53845. }
  53846. },
  53847. back: {
  53848. height: math.unit(8.8, "feet"),
  53849. weight: math.unit(1800, "lb"),
  53850. name: "Back",
  53851. image: {
  53852. source: "./media/characters/elaine/back.svg",
  53853. extra: 1641/1233,
  53854. bottom: 53/1694
  53855. }
  53856. },
  53857. },
  53858. [
  53859. {
  53860. name: "Normal",
  53861. height: math.unit(9, "feet"),
  53862. default: true
  53863. },
  53864. ]
  53865. ))
  53866. characterMakers.push(() => makeCharacter(
  53867. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53868. {
  53869. front: {
  53870. height: math.unit(17 + 9/12, "feet"),
  53871. weight: math.unit(8000, "lb"),
  53872. name: "Front",
  53873. image: {
  53874. source: "./media/characters/vera-raven/front.svg",
  53875. extra: 1457/1412,
  53876. bottom: 121/1578
  53877. }
  53878. },
  53879. side: {
  53880. height: math.unit(17 + 9/12, "feet"),
  53881. weight: math.unit(8000, "lb"),
  53882. name: "Side",
  53883. image: {
  53884. source: "./media/characters/vera-raven/side.svg",
  53885. extra: 1510/1464,
  53886. bottom: 54/1564
  53887. }
  53888. },
  53889. },
  53890. [
  53891. {
  53892. name: "Normal",
  53893. height: math.unit(17 + 9/12, "feet"),
  53894. default: true
  53895. },
  53896. ]
  53897. ))
  53898. characterMakers.push(() => makeCharacter(
  53899. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53900. {
  53901. dressed: {
  53902. height: math.unit(6 + 9/12, "feet"),
  53903. name: "Dressed",
  53904. image: {
  53905. source: "./media/characters/nakisha/dressed.svg",
  53906. extra: 1909/1757,
  53907. bottom: 48/1957
  53908. }
  53909. },
  53910. nude: {
  53911. height: math.unit(6 + 9/12, "feet"),
  53912. name: "Nude",
  53913. image: {
  53914. source: "./media/characters/nakisha/nude.svg",
  53915. extra: 1917/1765,
  53916. bottom: 34/1951
  53917. }
  53918. },
  53919. },
  53920. [
  53921. {
  53922. name: "Normal",
  53923. height: math.unit(6 + 9/12, "feet"),
  53924. default: true
  53925. },
  53926. ]
  53927. ))
  53928. characterMakers.push(() => makeCharacter(
  53929. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53930. {
  53931. front: {
  53932. height: math.unit(87, "meters"),
  53933. name: "Front",
  53934. image: {
  53935. source: "./media/characters/serafin/front.svg",
  53936. extra: 1919/1776,
  53937. bottom: 65/1984
  53938. }
  53939. },
  53940. },
  53941. [
  53942. {
  53943. name: "Normal",
  53944. height: math.unit(87, "meters"),
  53945. default: true
  53946. },
  53947. ]
  53948. ))
  53949. characterMakers.push(() => makeCharacter(
  53950. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53951. {
  53952. front: {
  53953. height: math.unit(6, "feet"),
  53954. weight: math.unit(200, "lb"),
  53955. name: "Front",
  53956. image: {
  53957. source: "./media/characters/poptart/front.svg",
  53958. extra: 615/583,
  53959. bottom: 23/638
  53960. }
  53961. },
  53962. back: {
  53963. height: math.unit(6, "feet"),
  53964. weight: math.unit(200, "lb"),
  53965. name: "Back",
  53966. image: {
  53967. source: "./media/characters/poptart/back.svg",
  53968. extra: 617/584,
  53969. bottom: 22/639
  53970. }
  53971. },
  53972. frontNsfw: {
  53973. height: math.unit(6, "feet"),
  53974. weight: math.unit(200, "lb"),
  53975. name: "Front (NSFW)",
  53976. image: {
  53977. source: "./media/characters/poptart/front-nsfw.svg",
  53978. extra: 615/583,
  53979. bottom: 23/638
  53980. }
  53981. },
  53982. backNsfw: {
  53983. height: math.unit(6, "feet"),
  53984. weight: math.unit(200, "lb"),
  53985. name: "Back (NSFW)",
  53986. image: {
  53987. source: "./media/characters/poptart/back-nsfw.svg",
  53988. extra: 617/584,
  53989. bottom: 22/639
  53990. }
  53991. },
  53992. hand: {
  53993. height: math.unit(1.14, "feet"),
  53994. name: "Hand",
  53995. image: {
  53996. source: "./media/characters/poptart/hand.svg"
  53997. }
  53998. },
  53999. foot: {
  54000. height: math.unit(1.5, "feet"),
  54001. name: "Foot",
  54002. image: {
  54003. source: "./media/characters/poptart/foot.svg"
  54004. }
  54005. },
  54006. },
  54007. [
  54008. {
  54009. name: "Normal",
  54010. height: math.unit(6, "feet"),
  54011. default: true
  54012. },
  54013. {
  54014. name: "Grande",
  54015. height: math.unit(350, "feet")
  54016. },
  54017. {
  54018. name: "Massif",
  54019. height: math.unit(967, "feet")
  54020. },
  54021. ]
  54022. ))
  54023. characterMakers.push(() => makeCharacter(
  54024. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54025. {
  54026. hyenaSide: {
  54027. height: math.unit(120, "cm"),
  54028. weight: math.unit(120, "lb"),
  54029. name: "Side",
  54030. image: {
  54031. source: "./media/characters/trance/hyena-side.svg",
  54032. extra: 998/904,
  54033. bottom: 76/1074
  54034. }
  54035. },
  54036. },
  54037. [
  54038. {
  54039. name: "Normal",
  54040. height: math.unit(120, "cm"),
  54041. default: true
  54042. },
  54043. {
  54044. name: "Dire",
  54045. height: math.unit(230, "cm")
  54046. },
  54047. {
  54048. name: "Macro",
  54049. height: math.unit(37, "feet")
  54050. },
  54051. ]
  54052. ))
  54053. characterMakers.push(() => makeCharacter(
  54054. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54055. {
  54056. front: {
  54057. height: math.unit(6 + 3/12, "feet"),
  54058. name: "Front",
  54059. image: {
  54060. source: "./media/characters/michael-berretta/front.svg",
  54061. extra: 515/494,
  54062. bottom: 20/535
  54063. }
  54064. },
  54065. back: {
  54066. height: math.unit(6 + 3/12, "feet"),
  54067. name: "Back",
  54068. image: {
  54069. source: "./media/characters/michael-berretta/back.svg",
  54070. extra: 520/497,
  54071. bottom: 21/541
  54072. }
  54073. },
  54074. frontNsfw: {
  54075. height: math.unit(6 + 3/12, "feet"),
  54076. name: "Front (NSFW)",
  54077. image: {
  54078. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54079. extra: 515/494,
  54080. bottom: 20/535
  54081. }
  54082. },
  54083. dick: {
  54084. height: math.unit(1, "feet"),
  54085. name: "Dick",
  54086. image: {
  54087. source: "./media/characters/michael-berretta/dick.svg"
  54088. }
  54089. },
  54090. },
  54091. [
  54092. {
  54093. name: "Normal",
  54094. height: math.unit(6 + 3/12, "feet"),
  54095. default: true
  54096. },
  54097. {
  54098. name: "Big",
  54099. height: math.unit(12, "feet")
  54100. },
  54101. {
  54102. name: "Macro",
  54103. height: math.unit(187.5, "feet")
  54104. },
  54105. ]
  54106. ))
  54107. characterMakers.push(() => makeCharacter(
  54108. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54109. {
  54110. front: {
  54111. height: math.unit(9 + 9/12, "feet"),
  54112. weight: math.unit(1244, "lb"),
  54113. name: "Front",
  54114. image: {
  54115. source: "./media/characters/stella-edgecomb/front.svg",
  54116. extra: 1835/1706,
  54117. bottom: 49/1884
  54118. }
  54119. },
  54120. pen: {
  54121. height: math.unit(0.95, "feet"),
  54122. name: "Pen",
  54123. image: {
  54124. source: "./media/characters/stella-edgecomb/pen.svg"
  54125. }
  54126. },
  54127. },
  54128. [
  54129. {
  54130. name: "Cozy Bear",
  54131. height: math.unit(0.5, "inches")
  54132. },
  54133. {
  54134. name: "Normal",
  54135. height: math.unit(9 + 9/12, "feet"),
  54136. default: true
  54137. },
  54138. {
  54139. name: "Giga Bear",
  54140. height: math.unit(1, "mile")
  54141. },
  54142. {
  54143. name: "Great Bear",
  54144. height: math.unit(53, "miles")
  54145. },
  54146. {
  54147. name: "Goddess Bear",
  54148. height: math.unit(40000, "miles")
  54149. },
  54150. {
  54151. name: "Sun Bear",
  54152. height: math.unit(900000, "miles")
  54153. },
  54154. ]
  54155. ))
  54156. characterMakers.push(() => makeCharacter(
  54157. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54158. {
  54159. anthroFront: {
  54160. height: math.unit(556, "cm"),
  54161. weight: math.unit(2650, "kg"),
  54162. preyCapacity: math.unit(3, "people"),
  54163. name: "Front",
  54164. image: {
  54165. source: "./media/characters/ash´iika/front.svg",
  54166. extra: 710/673,
  54167. bottom: 15/725
  54168. },
  54169. form: "anthro",
  54170. default: true
  54171. },
  54172. anthroSide: {
  54173. height: math.unit(556, "cm"),
  54174. weight: math.unit(2650, "kg"),
  54175. preyCapacity: math.unit(3, "people"),
  54176. name: "Side",
  54177. image: {
  54178. source: "./media/characters/ash´iika/side.svg",
  54179. extra: 696/676,
  54180. bottom: 13/709
  54181. },
  54182. form: "anthro"
  54183. },
  54184. anthroDressed: {
  54185. height: math.unit(556, "cm"),
  54186. weight: math.unit(2650, "kg"),
  54187. preyCapacity: math.unit(3, "people"),
  54188. name: "Dressed",
  54189. image: {
  54190. source: "./media/characters/ash´iika/dressed.svg",
  54191. extra: 710/673,
  54192. bottom: 15/725
  54193. },
  54194. form: "anthro"
  54195. },
  54196. anthroHead: {
  54197. height: math.unit(3.5, "feet"),
  54198. name: "Head",
  54199. image: {
  54200. source: "./media/characters/ash´iika/head.svg",
  54201. extra: 348/291,
  54202. bottom: 45/393
  54203. },
  54204. form: "anthro"
  54205. },
  54206. feralSide: {
  54207. height: math.unit(870, "cm"),
  54208. weight: math.unit(17500, "kg"),
  54209. preyCapacity: math.unit(15, "people"),
  54210. name: "Side",
  54211. image: {
  54212. source: "./media/characters/ash´iika/feral.svg",
  54213. extra: 595/199,
  54214. bottom: 7/602
  54215. },
  54216. form: "feral",
  54217. default: true,
  54218. },
  54219. },
  54220. [
  54221. {
  54222. name: "Normal",
  54223. height: math.unit(556, "cm"),
  54224. default: true,
  54225. form: "anthro"
  54226. },
  54227. {
  54228. name: "Macro",
  54229. height: math.unit(88, "meters"),
  54230. form: "anthro"
  54231. },
  54232. {
  54233. name: "Normal",
  54234. height: math.unit(870, "cm"),
  54235. default: true,
  54236. form: "feral"
  54237. },
  54238. {
  54239. name: "Large",
  54240. height: math.unit(25, "meters"),
  54241. form: "feral"
  54242. },
  54243. ],
  54244. {
  54245. "anthro": {
  54246. name: "Anthro",
  54247. default: true
  54248. },
  54249. "feral": {
  54250. name: "Feral",
  54251. },
  54252. }
  54253. ))
  54254. characterMakers.push(() => makeCharacter(
  54255. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54256. {
  54257. front: {
  54258. height: math.unit(10, "feet"),
  54259. weight: math.unit(800, "lb"),
  54260. name: "Front",
  54261. image: {
  54262. source: "./media/characters/yen/front.svg",
  54263. extra: 443/411,
  54264. bottom: 6/449
  54265. }
  54266. },
  54267. sleeping: {
  54268. height: math.unit(10, "feet"),
  54269. weight: math.unit(800, "lb"),
  54270. name: "Sleeping",
  54271. image: {
  54272. source: "./media/characters/yen/sleeping.svg",
  54273. extra: 470/422,
  54274. bottom: 0/470
  54275. }
  54276. },
  54277. head: {
  54278. height: math.unit(2.2, "feet"),
  54279. name: "Head",
  54280. image: {
  54281. source: "./media/characters/yen/head.svg"
  54282. }
  54283. },
  54284. headAlt: {
  54285. height: math.unit(2.1, "feet"),
  54286. name: "Head (Alt)",
  54287. image: {
  54288. source: "./media/characters/yen/head-alt.svg"
  54289. }
  54290. },
  54291. },
  54292. [
  54293. {
  54294. name: "Normal",
  54295. height: math.unit(10, "feet"),
  54296. default: true
  54297. },
  54298. ]
  54299. ))
  54300. characterMakers.push(() => makeCharacter(
  54301. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54302. {
  54303. front: {
  54304. height: math.unit(12, "feet"),
  54305. name: "Front",
  54306. image: {
  54307. source: "./media/characters/citra/front.svg",
  54308. extra: 1950/1710,
  54309. bottom: 47/1997
  54310. }
  54311. },
  54312. },
  54313. [
  54314. {
  54315. name: "Normal",
  54316. height: math.unit(12, "feet"),
  54317. default: true
  54318. },
  54319. ]
  54320. ))
  54321. characterMakers.push(() => makeCharacter(
  54322. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54323. {
  54324. side: {
  54325. height: math.unit(7 + 10/12, "feet"),
  54326. name: "Side",
  54327. image: {
  54328. source: "./media/characters/sholstim/side.svg",
  54329. extra: 786/682,
  54330. bottom: 40/826
  54331. }
  54332. },
  54333. },
  54334. [
  54335. {
  54336. name: "Normal",
  54337. height: math.unit(7 + 10/12, "feet"),
  54338. default: true
  54339. },
  54340. ]
  54341. ))
  54342. characterMakers.push(() => makeCharacter(
  54343. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54344. {
  54345. front: {
  54346. height: math.unit(3.10, "meters"),
  54347. name: "Front",
  54348. image: {
  54349. source: "./media/characters/aggyn/front.svg",
  54350. extra: 1188/963,
  54351. bottom: 24/1212
  54352. }
  54353. },
  54354. },
  54355. [
  54356. {
  54357. name: "Normal",
  54358. height: math.unit(3.10, "meters"),
  54359. default: true
  54360. },
  54361. ]
  54362. ))
  54363. characterMakers.push(() => makeCharacter(
  54364. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54365. {
  54366. front: {
  54367. height: math.unit(7 + 5/12, "feet"),
  54368. weight: math.unit(687, "lb"),
  54369. name: "Front",
  54370. image: {
  54371. source: "./media/characters/alsandair-hergenroether/front.svg",
  54372. extra: 1251/1186,
  54373. bottom: 75/1326
  54374. }
  54375. },
  54376. back: {
  54377. height: math.unit(7 + 5/12, "feet"),
  54378. weight: math.unit(687, "lb"),
  54379. name: "Back",
  54380. image: {
  54381. source: "./media/characters/alsandair-hergenroether/back.svg",
  54382. extra: 1290/1229,
  54383. bottom: 17/1307
  54384. }
  54385. },
  54386. },
  54387. [
  54388. {
  54389. name: "Max Compression",
  54390. height: math.unit(7 + 5/12, "feet"),
  54391. default: true
  54392. },
  54393. {
  54394. name: "\"Normal\"",
  54395. height: math.unit(2, "universes")
  54396. },
  54397. ]
  54398. ))
  54399. characterMakers.push(() => makeCharacter(
  54400. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54401. {
  54402. front: {
  54403. height: math.unit(4 + 1/12, "feet"),
  54404. weight: math.unit(92, "lb"),
  54405. name: "Front",
  54406. image: {
  54407. source: "./media/characters/ie/front.svg",
  54408. extra: 1585/1352,
  54409. bottom: 91/1676
  54410. }
  54411. },
  54412. },
  54413. [
  54414. {
  54415. name: "Normal",
  54416. height: math.unit(4 + 1/12, "feet"),
  54417. default: true
  54418. },
  54419. ]
  54420. ))
  54421. characterMakers.push(() => makeCharacter(
  54422. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54423. {
  54424. anthro: {
  54425. height: math.unit(6, "feet"),
  54426. weight: math.unit(150, "lb"),
  54427. name: "Front",
  54428. image: {
  54429. source: "./media/characters/willow/anthro.svg",
  54430. extra: 1073/986,
  54431. bottom: 34/1107
  54432. },
  54433. form: "anthro",
  54434. default: true
  54435. },
  54436. taur: {
  54437. height: math.unit(6, "feet"),
  54438. weight: math.unit(150, "lb"),
  54439. name: "Side",
  54440. image: {
  54441. source: "./media/characters/willow/taur.svg",
  54442. extra: 647/512,
  54443. bottom: 136/783
  54444. },
  54445. form: "taur",
  54446. default: true
  54447. },
  54448. },
  54449. [
  54450. {
  54451. name: "Humanoid",
  54452. height: math.unit(2.7, "meters"),
  54453. form: "anthro"
  54454. },
  54455. {
  54456. name: "Normal",
  54457. height: math.unit(9, "meters"),
  54458. form: "anthro",
  54459. default: true
  54460. },
  54461. {
  54462. name: "Humanoid",
  54463. height: math.unit(2.1, "meters"),
  54464. form: "taur"
  54465. },
  54466. {
  54467. name: "Normal",
  54468. height: math.unit(7, "meters"),
  54469. form: "taur",
  54470. default: true
  54471. },
  54472. ],
  54473. {
  54474. "anthro": {
  54475. name: "Anthro",
  54476. default: true
  54477. },
  54478. "taur": {
  54479. name: "Taur",
  54480. },
  54481. }
  54482. ))
  54483. characterMakers.push(() => makeCharacter(
  54484. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54485. {
  54486. front: {
  54487. height: math.unit(2 + 5/12, "feet"),
  54488. name: "Front",
  54489. image: {
  54490. source: "./media/characters/kyan/front.svg",
  54491. extra: 460/334,
  54492. bottom: 23/483
  54493. },
  54494. extraAttributes: {
  54495. "toeLength": {
  54496. name: "Toe Length",
  54497. power: 1,
  54498. type: "length",
  54499. base: math.unit(7, "cm")
  54500. },
  54501. "toeclawLength": {
  54502. name: "Toeclaw Length",
  54503. power: 1,
  54504. type: "length",
  54505. base: math.unit(4.7, "cm")
  54506. },
  54507. "earHeight": {
  54508. name: "Ear Height",
  54509. power: 1,
  54510. type: "length",
  54511. base: math.unit(14.1, "cm")
  54512. },
  54513. }
  54514. },
  54515. paws: {
  54516. height: math.unit(0.45, "feet"),
  54517. name: "Paws",
  54518. image: {
  54519. source: "./media/characters/kyan/paws.svg",
  54520. extra: 581/581,
  54521. bottom: 114/695
  54522. }
  54523. },
  54524. },
  54525. [
  54526. {
  54527. name: "Normal",
  54528. height: math.unit(2 + 5/12, "feet"),
  54529. default: true
  54530. },
  54531. ]
  54532. ))
  54533. characterMakers.push(() => makeCharacter(
  54534. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54535. {
  54536. front: {
  54537. height: math.unit(2 + 2/3, "feet"),
  54538. name: "Front",
  54539. image: {
  54540. source: "./media/characters/xazzon/front.svg",
  54541. extra: 1109/984,
  54542. bottom: 42/1151
  54543. }
  54544. },
  54545. back: {
  54546. height: math.unit(2 + 2/3, "feet"),
  54547. name: "Back",
  54548. image: {
  54549. source: "./media/characters/xazzon/back.svg",
  54550. extra: 1095/971,
  54551. bottom: 23/1118
  54552. }
  54553. },
  54554. },
  54555. [
  54556. {
  54557. name: "Normal",
  54558. height: math.unit(2 + 2/3, "feet"),
  54559. default: true
  54560. },
  54561. ]
  54562. ))
  54563. characterMakers.push(() => makeCharacter(
  54564. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54565. {
  54566. dressed: {
  54567. height: math.unit(5 + 7/12, "feet"),
  54568. weight: math.unit(173, "lb"),
  54569. name: "Dressed",
  54570. image: {
  54571. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54572. extra: 3262/2862,
  54573. bottom: 188/3450
  54574. }
  54575. },
  54576. undressed: {
  54577. height: math.unit(5 + 7/12, "feet"),
  54578. weight: math.unit(173, "lb"),
  54579. name: "Undressed",
  54580. image: {
  54581. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54582. extra: 3262/2862,
  54583. bottom: 188/3450
  54584. }
  54585. },
  54586. },
  54587. [
  54588. {
  54589. name: "The void",
  54590. height: math.unit(7.29193e-34, "angstroms")
  54591. },
  54592. {
  54593. name: "Uh-Oh.",
  54594. height: math.unit(5.734e-7, "angstroms")
  54595. },
  54596. {
  54597. name: "Pico",
  54598. height: math.unit(0.876, "angstroms")
  54599. },
  54600. {
  54601. name: "Nano",
  54602. height: math.unit(0.000134200, "mm")
  54603. },
  54604. {
  54605. name: "Micro",
  54606. height: math.unit(0.0673020, "mm")
  54607. },
  54608. {
  54609. name: "Tiny",
  54610. height: math.unit(2.4, "mm")
  54611. },
  54612. {
  54613. name: "Actual Normal",
  54614. height: math.unit(3, "inches"),
  54615. default: true
  54616. },
  54617. {
  54618. name: "Normal",
  54619. height: math.unit(5 + 8/12, "feet")
  54620. },
  54621. {
  54622. name: "Giant",
  54623. height: math.unit(12, "feet")
  54624. },
  54625. {
  54626. name: "City Ruler",
  54627. height: math.unit(270, "meters")
  54628. },
  54629. {
  54630. name: "Giga",
  54631. height: math.unit(1117.6, "km")
  54632. },
  54633. {
  54634. name: "All-Powerful Queen",
  54635. height: math.unit(70.8, "gigameters")
  54636. },
  54637. {
  54638. name: "'Goddess'",
  54639. height: math.unit(600, "yottameters")
  54640. },
  54641. {
  54642. name: "Biggest!",
  54643. height: math.unit(4.23e5, "yottameters")
  54644. },
  54645. ]
  54646. ))
  54647. characterMakers.push(() => makeCharacter(
  54648. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54649. {
  54650. front: {
  54651. height: math.unit(8, "feet"),
  54652. weight: math.unit(300, "lb"),
  54653. name: "Front",
  54654. image: {
  54655. source: "./media/characters/khyla-shadowsong/front.svg",
  54656. extra: 861/798,
  54657. bottom: 32/893
  54658. }
  54659. },
  54660. side: {
  54661. height: math.unit(8, "feet"),
  54662. weight: math.unit(300, "lb"),
  54663. name: "Side",
  54664. image: {
  54665. source: "./media/characters/khyla-shadowsong/side.svg",
  54666. extra: 790/750,
  54667. bottom: 87/877
  54668. }
  54669. },
  54670. back: {
  54671. height: math.unit(8, "feet"),
  54672. weight: math.unit(300, "lb"),
  54673. name: "Back",
  54674. image: {
  54675. source: "./media/characters/khyla-shadowsong/back.svg",
  54676. extra: 855/808,
  54677. bottom: 14/869
  54678. }
  54679. },
  54680. head: {
  54681. height: math.unit(2.7, "feet"),
  54682. name: "Head",
  54683. image: {
  54684. source: "./media/characters/khyla-shadowsong/head.svg"
  54685. }
  54686. },
  54687. },
  54688. [
  54689. {
  54690. name: "Micro",
  54691. height: math.unit(6, "inches")
  54692. },
  54693. {
  54694. name: "Normal",
  54695. height: math.unit(8, "feet"),
  54696. default: true
  54697. },
  54698. ]
  54699. ))
  54700. characterMakers.push(() => makeCharacter(
  54701. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54702. {
  54703. hyperFront: {
  54704. height: math.unit(9 + 4/12, "feet"),
  54705. weight: math.unit(2000, "lb"),
  54706. name: "Front",
  54707. image: {
  54708. source: "./media/characters/tiden/hyper-front.svg",
  54709. extra: 400/382,
  54710. bottom: 6/406
  54711. },
  54712. form: "hyper",
  54713. },
  54714. regularFront: {
  54715. height: math.unit(7 + 10/12, "feet"),
  54716. weight: math.unit(470, "lb"),
  54717. name: "Front",
  54718. image: {
  54719. source: "./media/characters/tiden/regular-front.svg",
  54720. extra: 468/442,
  54721. bottom: 6/474
  54722. },
  54723. form: "regular",
  54724. },
  54725. },
  54726. [
  54727. {
  54728. name: "Normal",
  54729. height: math.unit(9 + 4/12, "feet"),
  54730. default: true,
  54731. form: "hyper"
  54732. },
  54733. {
  54734. name: "Normal",
  54735. height: math.unit(7 + 10/12, "feet"),
  54736. default: true,
  54737. form: "regular"
  54738. },
  54739. ],
  54740. {
  54741. "hyper": {
  54742. name: "Hyper",
  54743. default: true
  54744. },
  54745. "regular": {
  54746. name: "Regular",
  54747. },
  54748. }
  54749. ))
  54750. characterMakers.push(() => makeCharacter(
  54751. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54752. {
  54753. side: {
  54754. height: math.unit(6, "feet"),
  54755. weight: math.unit(150, "lb"),
  54756. name: "Side",
  54757. image: {
  54758. source: "./media/characters/jason-crowe/side.svg",
  54759. extra: 1771/766,
  54760. bottom: 219/1990
  54761. }
  54762. },
  54763. },
  54764. [
  54765. {
  54766. name: "Pocket Gryphon",
  54767. height: math.unit(6, "cm")
  54768. },
  54769. {
  54770. name: "Raven",
  54771. height: math.unit(60, "cm")
  54772. },
  54773. {
  54774. name: "Normal",
  54775. height: math.unit(1, "meter"),
  54776. default: true
  54777. },
  54778. ]
  54779. ))
  54780. characterMakers.push(() => makeCharacter(
  54781. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54782. {
  54783. front: {
  54784. height: math.unit(9 + 6/12, "feet"),
  54785. weight: math.unit(1100, "lb"),
  54786. name: "Front",
  54787. image: {
  54788. source: "./media/characters/django/front.svg",
  54789. extra: 1231/1136,
  54790. bottom: 34/1265
  54791. }
  54792. },
  54793. side: {
  54794. height: math.unit(9 + 6/12, "feet"),
  54795. weight: math.unit(1100, "lb"),
  54796. name: "Side",
  54797. image: {
  54798. source: "./media/characters/django/side.svg",
  54799. extra: 1267/1174,
  54800. bottom: 9/1276
  54801. }
  54802. },
  54803. },
  54804. [
  54805. {
  54806. name: "Normal",
  54807. height: math.unit(9 + 6/12, "feet"),
  54808. default: true
  54809. },
  54810. {
  54811. name: "Macro 1",
  54812. height: math.unit(50, "feet")
  54813. },
  54814. {
  54815. name: "Macro 2",
  54816. height: math.unit(500, "feet")
  54817. },
  54818. {
  54819. name: "Mega Macro",
  54820. height: math.unit(5300, "feet")
  54821. },
  54822. ]
  54823. ))
  54824. characterMakers.push(() => makeCharacter(
  54825. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54826. {
  54827. frontSfw: {
  54828. height: math.unit(120, "cm"),
  54829. weight: math.unit(15, "kg"),
  54830. name: "Front (SFW)",
  54831. image: {
  54832. source: "./media/characters/eri/front-sfw.svg",
  54833. extra: 1014/939,
  54834. bottom: 37/1051
  54835. },
  54836. form: "moth",
  54837. },
  54838. frontNsfw: {
  54839. height: math.unit(120, "cm"),
  54840. weight: math.unit(15, "kg"),
  54841. name: "Front (NSFW)",
  54842. image: {
  54843. source: "./media/characters/eri/front-nsfw.svg",
  54844. extra: 1014/939,
  54845. bottom: 37/1051
  54846. },
  54847. form: "moth",
  54848. default: true
  54849. },
  54850. egg: {
  54851. height: math.unit(10, "cm"),
  54852. name: "Egg",
  54853. image: {
  54854. source: "./media/characters/eri/egg.svg"
  54855. },
  54856. form: "egg",
  54857. default: true
  54858. },
  54859. },
  54860. [
  54861. {
  54862. name: "Normal",
  54863. height: math.unit(120, "cm"),
  54864. default: true,
  54865. form: "moth"
  54866. },
  54867. {
  54868. name: "Normal",
  54869. height: math.unit(10, "cm"),
  54870. default: true,
  54871. form: "egg"
  54872. },
  54873. ],
  54874. {
  54875. "moth": {
  54876. name: "Moth",
  54877. default: true
  54878. },
  54879. "egg": {
  54880. name: "Egg",
  54881. },
  54882. }
  54883. ))
  54884. characterMakers.push(() => makeCharacter(
  54885. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54886. {
  54887. front: {
  54888. height: math.unit(200, "feet"),
  54889. name: "Front",
  54890. image: {
  54891. source: "./media/characters/bishop-dowser/front.svg",
  54892. extra: 933/868,
  54893. bottom: 106/1039
  54894. }
  54895. },
  54896. },
  54897. [
  54898. {
  54899. name: "Giant",
  54900. height: math.unit(200, "feet"),
  54901. default: true
  54902. },
  54903. ]
  54904. ))
  54905. characterMakers.push(() => makeCharacter(
  54906. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54907. {
  54908. front: {
  54909. height: math.unit(2, "meters"),
  54910. preyCapacity: math.unit(3, "people"),
  54911. name: "Front",
  54912. image: {
  54913. source: "./media/characters/fryra/front.svg",
  54914. extra: 1025/948,
  54915. bottom: 30/1055
  54916. },
  54917. extraAttributes: {
  54918. "breastVolume": {
  54919. name: "Breast Volume",
  54920. power: 3,
  54921. type: "volume",
  54922. base: math.unit(8, "liters")
  54923. },
  54924. }
  54925. },
  54926. back: {
  54927. height: math.unit(2, "meters"),
  54928. preyCapacity: math.unit(3, "people"),
  54929. name: "Back",
  54930. image: {
  54931. source: "./media/characters/fryra/back.svg",
  54932. extra: 993/938,
  54933. bottom: 38/1031
  54934. },
  54935. extraAttributes: {
  54936. "breastVolume": {
  54937. name: "Breast Volume",
  54938. power: 3,
  54939. type: "volume",
  54940. base: math.unit(8, "liters")
  54941. },
  54942. }
  54943. },
  54944. head: {
  54945. height: math.unit(1.33, "feet"),
  54946. name: "Head",
  54947. image: {
  54948. source: "./media/characters/fryra/head.svg"
  54949. }
  54950. },
  54951. maw: {
  54952. height: math.unit(0.56, "feet"),
  54953. name: "Maw",
  54954. image: {
  54955. source: "./media/characters/fryra/maw.svg"
  54956. }
  54957. },
  54958. },
  54959. [
  54960. {
  54961. name: "Micro",
  54962. height: math.unit(5, "cm")
  54963. },
  54964. {
  54965. name: "Normal",
  54966. height: math.unit(2, "meters"),
  54967. default: true
  54968. },
  54969. {
  54970. name: "Small Macro",
  54971. height: math.unit(8, "meters")
  54972. },
  54973. {
  54974. name: "Macro",
  54975. height: math.unit(50, "meters")
  54976. },
  54977. {
  54978. name: "Megamacro",
  54979. height: math.unit(1, "km")
  54980. },
  54981. {
  54982. name: "Planetary",
  54983. height: math.unit(300000, "km")
  54984. },
  54985. {
  54986. name: "Universal",
  54987. height: math.unit(250, "lightyears")
  54988. },
  54989. {
  54990. name: "Fabric of Reality",
  54991. height: math.unit(1000, "multiverses")
  54992. },
  54993. ]
  54994. ))
  54995. characterMakers.push(() => makeCharacter(
  54996. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54997. {
  54998. frontDressed: {
  54999. height: math.unit(6 + 2/12, "feet"),
  55000. name: "Front (Dressed)",
  55001. image: {
  55002. source: "./media/characters/fiera/front-dressed.svg",
  55003. extra: 1883/1793,
  55004. bottom: 70/1953
  55005. }
  55006. },
  55007. backDressed: {
  55008. height: math.unit(6 + 2/12, "feet"),
  55009. name: "Back (Dressed)",
  55010. image: {
  55011. source: "./media/characters/fiera/back-dressed.svg",
  55012. extra: 1847/1780,
  55013. bottom: 70/1917
  55014. }
  55015. },
  55016. frontNude: {
  55017. height: math.unit(6 + 2/12, "feet"),
  55018. name: "Front (Nude)",
  55019. image: {
  55020. source: "./media/characters/fiera/front-nude.svg",
  55021. extra: 1875/1785,
  55022. bottom: 66/1941
  55023. }
  55024. },
  55025. backNude: {
  55026. height: math.unit(6 + 2/12, "feet"),
  55027. name: "Back (Nude)",
  55028. image: {
  55029. source: "./media/characters/fiera/back-nude.svg",
  55030. extra: 1855/1788,
  55031. bottom: 44/1899
  55032. }
  55033. },
  55034. maw: {
  55035. height: math.unit(1.3, "feet"),
  55036. name: "Maw",
  55037. image: {
  55038. source: "./media/characters/fiera/maw.svg"
  55039. }
  55040. },
  55041. paw: {
  55042. height: math.unit(1, "feet"),
  55043. name: "Paw",
  55044. image: {
  55045. source: "./media/characters/fiera/paw.svg"
  55046. }
  55047. },
  55048. shoe: {
  55049. height: math.unit(1.05, "feet"),
  55050. name: "Shoe",
  55051. image: {
  55052. source: "./media/characters/fiera/shoe.svg"
  55053. }
  55054. },
  55055. },
  55056. [
  55057. {
  55058. name: "Normal",
  55059. height: math.unit(6 + 2/12, "feet"),
  55060. default: true
  55061. },
  55062. {
  55063. name: "Size Difference",
  55064. height: math.unit(13, "feet")
  55065. },
  55066. {
  55067. name: "Macro",
  55068. height: math.unit(60, "feet")
  55069. },
  55070. {
  55071. name: "Mega Macro",
  55072. height: math.unit(200, "feet")
  55073. },
  55074. ]
  55075. ))
  55076. characterMakers.push(() => makeCharacter(
  55077. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55078. {
  55079. back: {
  55080. height: math.unit(6, "feet"),
  55081. name: "Back",
  55082. image: {
  55083. source: "./media/characters/flare/back.svg",
  55084. extra: 1883/1765,
  55085. bottom: 32/1915
  55086. }
  55087. },
  55088. },
  55089. [
  55090. {
  55091. name: "Normal",
  55092. height: math.unit(6 + 2/12, "feet"),
  55093. default: true
  55094. },
  55095. {
  55096. name: "Size Difference",
  55097. height: math.unit(13, "feet")
  55098. },
  55099. {
  55100. name: "Macro",
  55101. height: math.unit(60, "feet")
  55102. },
  55103. {
  55104. name: "Macro 2",
  55105. height: math.unit(100, "feet")
  55106. },
  55107. {
  55108. name: "Mega Macro",
  55109. height: math.unit(200, "feet")
  55110. },
  55111. ]
  55112. ))
  55113. characterMakers.push(() => makeCharacter(
  55114. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55115. {
  55116. front: {
  55117. height: math.unit(2.2, "m"),
  55118. weight: math.unit(300, "kg"),
  55119. name: "Front",
  55120. image: {
  55121. source: "./media/characters/hanna/front.svg",
  55122. extra: 1696/1502,
  55123. bottom: 206/1902
  55124. }
  55125. },
  55126. },
  55127. [
  55128. {
  55129. name: "Humanoid",
  55130. height: math.unit(2.2, "meters")
  55131. },
  55132. {
  55133. name: "Normal",
  55134. height: math.unit(4.8, "meters"),
  55135. default: true
  55136. },
  55137. ]
  55138. ))
  55139. characterMakers.push(() => makeCharacter(
  55140. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55141. {
  55142. front: {
  55143. height: math.unit(2.8, "meters"),
  55144. name: "Front",
  55145. image: {
  55146. source: "./media/characters/argo/front.svg",
  55147. extra: 731/518,
  55148. bottom: 84/815
  55149. }
  55150. },
  55151. },
  55152. [
  55153. {
  55154. name: "Normal",
  55155. height: math.unit(3, "meters"),
  55156. default: true
  55157. },
  55158. ]
  55159. ))
  55160. characterMakers.push(() => makeCharacter(
  55161. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55162. {
  55163. side: {
  55164. height: math.unit(3.8, "meters"),
  55165. name: "Side",
  55166. image: {
  55167. source: "./media/characters/sybil/side.svg",
  55168. extra: 382/361,
  55169. bottom: 25/407
  55170. }
  55171. },
  55172. },
  55173. [
  55174. {
  55175. name: "Normal",
  55176. height: math.unit(3.8, "meters"),
  55177. default: true
  55178. },
  55179. ]
  55180. ))
  55181. characterMakers.push(() => makeCharacter(
  55182. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55183. {
  55184. side: {
  55185. height: math.unit(6, "meters"),
  55186. name: "Side",
  55187. image: {
  55188. source: "./media/characters/plum/side.svg",
  55189. extra: 858/755,
  55190. bottom: 45/903
  55191. },
  55192. form: "taur",
  55193. default: true
  55194. },
  55195. back: {
  55196. height: math.unit(6.3, "meters"),
  55197. name: "Back",
  55198. image: {
  55199. source: "./media/characters/plum/back.svg",
  55200. extra: 887/813,
  55201. bottom: 32/919
  55202. },
  55203. form: "taur",
  55204. },
  55205. feral: {
  55206. height: math.unit(5.5, "meter"),
  55207. name: "Front",
  55208. image: {
  55209. source: "./media/characters/plum/feral.svg",
  55210. extra: 568/403,
  55211. bottom: 51/619
  55212. },
  55213. form: "feral",
  55214. default: true
  55215. },
  55216. head: {
  55217. height: math.unit(1.46, "meter"),
  55218. name: "Head",
  55219. image: {
  55220. source: "./media/characters/plum/head.svg"
  55221. },
  55222. form: "taur"
  55223. },
  55224. tailTop: {
  55225. height: math.unit(5.6, "meter"),
  55226. name: "Tail (Top)",
  55227. image: {
  55228. source: "./media/characters/plum/tail-top.svg"
  55229. },
  55230. form: "taur",
  55231. },
  55232. tailBottom: {
  55233. height: math.unit(5.6, "meter"),
  55234. name: "Tail (Bottom)",
  55235. image: {
  55236. source: "./media/characters/plum/tail-bottom.svg"
  55237. },
  55238. form: "taur",
  55239. },
  55240. feralHead: {
  55241. height: math.unit(2.56549521, "meter"),
  55242. name: "Head",
  55243. image: {
  55244. source: "./media/characters/plum/head.svg"
  55245. },
  55246. form: "feral"
  55247. },
  55248. feralTailTop: {
  55249. height: math.unit(5.44728435, "meter"),
  55250. name: "Tail (Top)",
  55251. image: {
  55252. source: "./media/characters/plum/tail-top.svg"
  55253. },
  55254. form: "feral",
  55255. },
  55256. feralTailBottom: {
  55257. height: math.unit(5.44728435, "meter"),
  55258. name: "Tail (Bottom)",
  55259. image: {
  55260. source: "./media/characters/plum/tail-bottom.svg"
  55261. },
  55262. form: "feral",
  55263. },
  55264. },
  55265. [
  55266. {
  55267. name: "Normal",
  55268. height: math.unit(6, "meters"),
  55269. default: true,
  55270. form: "taur"
  55271. },
  55272. {
  55273. name: "Normal",
  55274. height: math.unit(5.5, "meters"),
  55275. default: true,
  55276. form: "feral"
  55277. },
  55278. ],
  55279. {
  55280. "taur": {
  55281. name: "Taur",
  55282. default: true
  55283. },
  55284. "feral": {
  55285. name: "Feral",
  55286. },
  55287. }
  55288. ))
  55289. characterMakers.push(() => makeCharacter(
  55290. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55291. {
  55292. front: {
  55293. height: math.unit(6, "feet"),
  55294. weight: math.unit(115, "lb"),
  55295. name: "Front",
  55296. image: {
  55297. source: "./media/characters/celeste-kitsune/front.svg",
  55298. extra: 393/366,
  55299. bottom: 7/400
  55300. }
  55301. },
  55302. side: {
  55303. height: math.unit(6, "feet"),
  55304. weight: math.unit(115, "lb"),
  55305. name: "Side",
  55306. image: {
  55307. source: "./media/characters/celeste-kitsune/side.svg",
  55308. extra: 818/765,
  55309. bottom: 40/858
  55310. }
  55311. },
  55312. },
  55313. [
  55314. {
  55315. name: "Megamacro",
  55316. height: math.unit(1500, "miles"),
  55317. default: true
  55318. },
  55319. ]
  55320. ))
  55321. characterMakers.push(() => makeCharacter(
  55322. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55323. {
  55324. front: {
  55325. height: math.unit(8, "meters"),
  55326. name: "Front",
  55327. image: {
  55328. source: "./media/characters/io/front.svg",
  55329. extra: 865/722,
  55330. bottom: 58/923
  55331. }
  55332. },
  55333. back: {
  55334. height: math.unit(8, "meters"),
  55335. name: "Back",
  55336. image: {
  55337. source: "./media/characters/io/back.svg",
  55338. extra: 920/776,
  55339. bottom: 42/962
  55340. }
  55341. },
  55342. head: {
  55343. height: math.unit(5.09, "meters"),
  55344. name: "Head",
  55345. image: {
  55346. source: "./media/characters/io/head.svg"
  55347. }
  55348. },
  55349. hand: {
  55350. height: math.unit(1.6, "meters"),
  55351. name: "Hand",
  55352. image: {
  55353. source: "./media/characters/io/hand.svg"
  55354. }
  55355. },
  55356. foot: {
  55357. height: math.unit(2.4, "meters"),
  55358. name: "Foot",
  55359. image: {
  55360. source: "./media/characters/io/foot.svg"
  55361. }
  55362. },
  55363. },
  55364. [
  55365. {
  55366. name: "Normal",
  55367. height: math.unit(8, "meters"),
  55368. default: true
  55369. },
  55370. ]
  55371. ))
  55372. characterMakers.push(() => makeCharacter(
  55373. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55374. {
  55375. side: {
  55376. height: math.unit(6 + 3/12, "feet"),
  55377. weight: math.unit(225, "lb"),
  55378. name: "Side",
  55379. image: {
  55380. source: "./media/characters/silas/side.svg",
  55381. extra: 703/653,
  55382. bottom: 23/726
  55383. },
  55384. extraAttributes: {
  55385. "pawLength": {
  55386. name: "Paw Length",
  55387. power: 1,
  55388. type: "length",
  55389. base: math.unit(12, "inches")
  55390. },
  55391. "pawWidth": {
  55392. name: "Paw Width",
  55393. power: 1,
  55394. type: "length",
  55395. base: math.unit(4.5, "inches")
  55396. },
  55397. "pawArea": {
  55398. name: "Paw Area",
  55399. power: 2,
  55400. type: "area",
  55401. base: math.unit(12 * 4.5, "inches^2")
  55402. },
  55403. }
  55404. },
  55405. },
  55406. [
  55407. {
  55408. name: "Normal",
  55409. height: math.unit(6 + 3/12, "feet"),
  55410. default: true
  55411. },
  55412. ]
  55413. ))
  55414. characterMakers.push(() => makeCharacter(
  55415. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55416. {
  55417. back: {
  55418. height: math.unit(1.6, "meters"),
  55419. weight: math.unit(150, "lb"),
  55420. name: "Back",
  55421. image: {
  55422. source: "./media/characters/zari/back.svg",
  55423. extra: 424/411,
  55424. bottom: 32/456
  55425. },
  55426. extraAttributes: {
  55427. "bladderCapacity": {
  55428. name: "Bladder Size",
  55429. power: 3,
  55430. type: "volume",
  55431. base: math.unit(500, "mL")
  55432. },
  55433. "bladderFlow": {
  55434. name: "Flow Rate",
  55435. power: 3,
  55436. type: "volume",
  55437. base: math.unit(25, "mL")
  55438. },
  55439. }
  55440. },
  55441. },
  55442. [
  55443. {
  55444. name: "Normal",
  55445. height: math.unit(1.6, "meters"),
  55446. default: true
  55447. },
  55448. ]
  55449. ))
  55450. characterMakers.push(() => makeCharacter(
  55451. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55452. {
  55453. front: {
  55454. height: math.unit(25, "feet"),
  55455. weight: math.unit(5, "tons"),
  55456. name: "Front",
  55457. image: {
  55458. source: "./media/characters/charlie-human/front.svg",
  55459. extra: 1870/1740,
  55460. bottom: 102/1972
  55461. },
  55462. extraAttributes: {
  55463. "dickLength": {
  55464. name: "Dick Length",
  55465. power: 1,
  55466. type: "length",
  55467. base: math.unit(9, "feet")
  55468. },
  55469. }
  55470. },
  55471. back: {
  55472. height: math.unit(25, "feet"),
  55473. weight: math.unit(5, "tons"),
  55474. name: "Back",
  55475. image: {
  55476. source: "./media/characters/charlie-human/back.svg",
  55477. extra: 1858/1733,
  55478. bottom: 105/1963
  55479. },
  55480. extraAttributes: {
  55481. "dickLength": {
  55482. name: "Dick Length",
  55483. power: 1,
  55484. type: "length",
  55485. base: math.unit(9, "feet")
  55486. },
  55487. }
  55488. },
  55489. },
  55490. [
  55491. {
  55492. name: "\"Normal\"",
  55493. height: math.unit(6 + 4/12, "feet")
  55494. },
  55495. {
  55496. name: "Big",
  55497. height: math.unit(25, "feet"),
  55498. default: true
  55499. },
  55500. ]
  55501. ))
  55502. characterMakers.push(() => makeCharacter(
  55503. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55504. {
  55505. front: {
  55506. height: math.unit(6 + 4/12, "feet"),
  55507. weight: math.unit(320, "lb"),
  55508. name: "Front",
  55509. image: {
  55510. source: "./media/characters/ookitsu/front.svg",
  55511. extra: 1160/976,
  55512. bottom: 38/1198
  55513. }
  55514. },
  55515. frontNsfw: {
  55516. height: math.unit(6 + 4/12, "feet"),
  55517. weight: math.unit(320, "lb"),
  55518. name: "Front (NSFW)",
  55519. image: {
  55520. source: "./media/characters/ookitsu/front-nsfw.svg",
  55521. extra: 1160/976,
  55522. bottom: 38/1198
  55523. }
  55524. },
  55525. back: {
  55526. height: math.unit(6 + 4/12, "feet"),
  55527. weight: math.unit(320, "lb"),
  55528. name: "Back",
  55529. image: {
  55530. source: "./media/characters/ookitsu/back.svg",
  55531. extra: 1030/975,
  55532. bottom: 70/1100
  55533. }
  55534. },
  55535. head: {
  55536. height: math.unit(1.79, "feet"),
  55537. name: "Head",
  55538. image: {
  55539. source: "./media/characters/ookitsu/head.svg"
  55540. }
  55541. },
  55542. hand: {
  55543. height: math.unit(0.92, "feet"),
  55544. name: "Hand",
  55545. image: {
  55546. source: "./media/characters/ookitsu/hand.svg"
  55547. }
  55548. },
  55549. tails: {
  55550. height: math.unit(3.3, "feet"),
  55551. name: "Tails",
  55552. image: {
  55553. source: "./media/characters/ookitsu/tails.svg"
  55554. }
  55555. },
  55556. dick: {
  55557. height: math.unit(1.10833, "feet"),
  55558. name: "Dick",
  55559. image: {
  55560. source: "./media/characters/ookitsu/dick.svg"
  55561. }
  55562. },
  55563. },
  55564. [
  55565. {
  55566. name: "Normal",
  55567. height: math.unit(6 + 4/12, "feet"),
  55568. default: true
  55569. },
  55570. {
  55571. name: "Macro",
  55572. height: math.unit(30, "feet")
  55573. },
  55574. ]
  55575. ))
  55576. characterMakers.push(() => makeCharacter(
  55577. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55578. {
  55579. anthroFront: {
  55580. height: math.unit(6, "feet"),
  55581. weight: math.unit(250, "lb"),
  55582. name: "Front",
  55583. image: {
  55584. source: "./media/characters/jhusky/anthro-front.svg",
  55585. extra: 474/439,
  55586. bottom: 7/481
  55587. },
  55588. form: "anthro",
  55589. default: true
  55590. },
  55591. taurSideSfw: {
  55592. height: math.unit(6 + 4/12, "feet"),
  55593. weight: math.unit(500, "lb"),
  55594. name: "Side (SFW)",
  55595. image: {
  55596. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55597. extra: 1741/1629,
  55598. bottom: 196/1937
  55599. },
  55600. form: "taur",
  55601. default: true
  55602. },
  55603. taurSideNsfw: {
  55604. height: math.unit(6 + 4/12, "feet"),
  55605. weight: math.unit(500, "lb"),
  55606. name: "Taur (NSFW)",
  55607. image: {
  55608. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55609. extra: 1741/1629,
  55610. bottom: 196/1937
  55611. },
  55612. form: "taur",
  55613. },
  55614. },
  55615. [
  55616. {
  55617. name: "Huge",
  55618. height: math.unit(500, "feet"),
  55619. form: "anthro"
  55620. },
  55621. {
  55622. name: "Macro",
  55623. height: math.unit(1000, "feet"),
  55624. default: true,
  55625. form: "anthro"
  55626. },
  55627. {
  55628. name: "Megamacro",
  55629. height: math.unit(10000, "feet"),
  55630. form: "anthro"
  55631. },
  55632. {
  55633. name: "Huge",
  55634. height: math.unit(528, "feet"),
  55635. form: "taur"
  55636. },
  55637. {
  55638. name: "Macro",
  55639. height: math.unit(1056, "feet"),
  55640. default: true,
  55641. form: "taur"
  55642. },
  55643. {
  55644. name: "Megamacro",
  55645. height: math.unit(10556, "feet"),
  55646. form: "taur"
  55647. },
  55648. ],
  55649. {
  55650. "anthro": {
  55651. name: "Anthro",
  55652. default: true
  55653. },
  55654. "taur": {
  55655. name: "Taur",
  55656. },
  55657. }
  55658. ))
  55659. characterMakers.push(() => makeCharacter(
  55660. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55661. {
  55662. front: {
  55663. height: math.unit(8, "feet"),
  55664. weight: math.unit(500, "lb"),
  55665. name: "Front",
  55666. image: {
  55667. source: "./media/characters/armail/front.svg",
  55668. extra: 1753/1669,
  55669. bottom: 155/1908
  55670. }
  55671. },
  55672. back: {
  55673. height: math.unit(8, "feet"),
  55674. weight: math.unit(500, "lb"),
  55675. name: "Back",
  55676. image: {
  55677. source: "./media/characters/armail/back.svg",
  55678. extra: 1872/1803,
  55679. bottom: 63/1935
  55680. }
  55681. },
  55682. },
  55683. [
  55684. {
  55685. name: "Micro",
  55686. height: math.unit(0.25, "feet")
  55687. },
  55688. {
  55689. name: "Normal",
  55690. height: math.unit(8, "feet"),
  55691. default: true
  55692. },
  55693. {
  55694. name: "Mini-macro",
  55695. height: math.unit(30, "feet")
  55696. },
  55697. {
  55698. name: "Macro",
  55699. height: math.unit(400, "feet")
  55700. },
  55701. {
  55702. name: "Mega-macro",
  55703. height: math.unit(6000, "feet")
  55704. },
  55705. ]
  55706. ))
  55707. characterMakers.push(() => makeCharacter(
  55708. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55709. {
  55710. front: {
  55711. height: math.unit(6 + 7/12, "feet"),
  55712. weight: math.unit(210, "lb"),
  55713. name: "Front",
  55714. image: {
  55715. source: "./media/characters/wilfred-t-buxton/front.svg",
  55716. extra: 1068/882,
  55717. bottom: 28/1096
  55718. }
  55719. },
  55720. },
  55721. [
  55722. {
  55723. name: "Normal",
  55724. height: math.unit(6 + 7/12, "feet"),
  55725. default: true
  55726. },
  55727. ]
  55728. ))
  55729. characterMakers.push(() => makeCharacter(
  55730. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55731. {
  55732. front: {
  55733. height: math.unit(5 + 2/12, "feet"),
  55734. weight: math.unit(120, "lb"),
  55735. name: "Front",
  55736. image: {
  55737. source: "./media/characters/leighton-marrow/front.svg",
  55738. extra: 441/409,
  55739. bottom: 37/478
  55740. }
  55741. },
  55742. },
  55743. [
  55744. {
  55745. name: "Normal",
  55746. height: math.unit(5 + 2/12, "feet"),
  55747. default: true
  55748. },
  55749. ]
  55750. ))
  55751. characterMakers.push(() => makeCharacter(
  55752. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55753. {
  55754. front: {
  55755. height: math.unit(4, "meters"),
  55756. weight: math.unit(1200, "kg"),
  55757. name: "Front",
  55758. image: {
  55759. source: "./media/characters/licos/front.svg",
  55760. extra: 1727/1604,
  55761. bottom: 101/1828
  55762. },
  55763. form: "anthro",
  55764. default: true
  55765. },
  55766. taur_side: {
  55767. height: math.unit(20, "meters"),
  55768. weight: math.unit(1100000, "kg"),
  55769. name: "Side",
  55770. image: {
  55771. source: "./media/characters/licos/taur.svg",
  55772. extra: 1158/1091,
  55773. bottom: 80/1238
  55774. },
  55775. form: "taur",
  55776. default: true
  55777. },
  55778. },
  55779. [
  55780. {
  55781. name: "Normal",
  55782. height: math.unit(4, "meters"),
  55783. default: true,
  55784. form: "anthro"
  55785. },
  55786. {
  55787. name: "Normal",
  55788. height: math.unit(20, "meters"),
  55789. default: true,
  55790. form: "taur"
  55791. },
  55792. ],
  55793. {
  55794. "anthro": {
  55795. name: "Anthro",
  55796. default: true
  55797. },
  55798. "taur": {
  55799. name: "Taur",
  55800. },
  55801. }
  55802. ))
  55803. characterMakers.push(() => makeCharacter(
  55804. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55805. {
  55806. front: {
  55807. height: math.unit(10 + 3/12, "feet"),
  55808. name: "Front",
  55809. image: {
  55810. source: "./media/characters/theo-monkey/front.svg",
  55811. extra: 1735/1658,
  55812. bottom: 73/1808
  55813. }
  55814. },
  55815. back: {
  55816. height: math.unit(10 + 3/12, "feet"),
  55817. name: "Back",
  55818. image: {
  55819. source: "./media/characters/theo-monkey/back.svg",
  55820. extra: 1742/1664,
  55821. bottom: 33/1775
  55822. }
  55823. },
  55824. head: {
  55825. height: math.unit(2.29, "feet"),
  55826. name: "Head",
  55827. image: {
  55828. source: "./media/characters/theo-monkey/head.svg"
  55829. }
  55830. },
  55831. handPalm: {
  55832. height: math.unit(1.73, "feet"),
  55833. name: "Hand (Palm)",
  55834. image: {
  55835. source: "./media/characters/theo-monkey/hand-palm.svg"
  55836. }
  55837. },
  55838. handBack: {
  55839. height: math.unit(1.63, "feet"),
  55840. name: "Hand (Back)",
  55841. image: {
  55842. source: "./media/characters/theo-monkey/hand-back.svg"
  55843. }
  55844. },
  55845. footSole: {
  55846. height: math.unit(2.15, "feet"),
  55847. name: "Foot (Sole)",
  55848. image: {
  55849. source: "./media/characters/theo-monkey/foot-sole.svg"
  55850. }
  55851. },
  55852. footSide: {
  55853. height: math.unit(1.6, "feet"),
  55854. name: "Foot (Side)",
  55855. image: {
  55856. source: "./media/characters/theo-monkey/foot-side.svg"
  55857. }
  55858. },
  55859. },
  55860. [
  55861. {
  55862. name: "Normal",
  55863. height: math.unit(10 + 3/12, "feet"),
  55864. default: true
  55865. },
  55866. ]
  55867. ))
  55868. characterMakers.push(() => makeCharacter(
  55869. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55870. {
  55871. front: {
  55872. height: math.unit(11, "feet"),
  55873. weight: math.unit(3000, "lb"),
  55874. preyCapacity: math.unit(10, "people"),
  55875. name: "Front",
  55876. image: {
  55877. source: "./media/characters/brook/front.svg",
  55878. extra: 909/835,
  55879. bottom: 108/1017
  55880. }
  55881. },
  55882. back: {
  55883. height: math.unit(11, "feet"),
  55884. weight: math.unit(3000, "lb"),
  55885. preyCapacity: math.unit(10, "people"),
  55886. name: "Back",
  55887. image: {
  55888. source: "./media/characters/brook/back.svg",
  55889. extra: 976/916,
  55890. bottom: 34/1010
  55891. }
  55892. },
  55893. backAlt: {
  55894. height: math.unit(11, "feet"),
  55895. weight: math.unit(3000, "lb"),
  55896. preyCapacity: math.unit(10, "people"),
  55897. name: "Back (Alt)",
  55898. image: {
  55899. source: "./media/characters/brook/back-alt.svg",
  55900. extra: 1283/1213,
  55901. bottom: 35/1318
  55902. }
  55903. },
  55904. bust: {
  55905. height: math.unit(9.0859030837, "feet"),
  55906. weight: math.unit(3000, "lb"),
  55907. preyCapacity: math.unit(10, "people"),
  55908. name: "Bust",
  55909. image: {
  55910. source: "./media/characters/brook/bust.svg",
  55911. extra: 2043/1923,
  55912. bottom: 0/2043
  55913. }
  55914. },
  55915. },
  55916. [
  55917. {
  55918. name: "Small",
  55919. height: math.unit(11, "feet"),
  55920. default: true
  55921. },
  55922. {
  55923. name: "Towering",
  55924. height: math.unit(5, "km")
  55925. },
  55926. {
  55927. name: "Enormous",
  55928. height: math.unit(25, "earths")
  55929. },
  55930. ]
  55931. ))
  55932. characterMakers.push(() => makeCharacter(
  55933. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55934. {
  55935. front: {
  55936. height: math.unit(4, "feet"),
  55937. weight: math.unit(150, "lb"),
  55938. name: "Front",
  55939. image: {
  55940. source: "./media/characters/squishi/front.svg",
  55941. extra: 1428/1271,
  55942. bottom: 30/1458
  55943. },
  55944. extraAttributes: {
  55945. "pawSize": {
  55946. name: "Paw Size",
  55947. power: 1,
  55948. type: "length",
  55949. base: math.unit(14, "ShoeSizeMensUS"),
  55950. defaultUnit: "ShoeSizeMensUS"
  55951. },
  55952. }
  55953. },
  55954. side: {
  55955. height: math.unit(4, "feet"),
  55956. weight: math.unit(150, "lb"),
  55957. name: "Side",
  55958. image: {
  55959. source: "./media/characters/squishi/side.svg",
  55960. extra: 1428/1271,
  55961. bottom: 30/1458
  55962. },
  55963. extraAttributes: {
  55964. "pawSize": {
  55965. name: "Paw Size",
  55966. power: 1,
  55967. type: "length",
  55968. base: math.unit(14, "ShoeSizeMensUS"),
  55969. defaultUnit: "ShoeSizeMensUS"
  55970. },
  55971. }
  55972. },
  55973. back: {
  55974. height: math.unit(4, "feet"),
  55975. weight: math.unit(150, "lb"),
  55976. name: "Back",
  55977. image: {
  55978. source: "./media/characters/squishi/back.svg",
  55979. extra: 1428/1271,
  55980. bottom: 30/1458
  55981. },
  55982. extraAttributes: {
  55983. "pawSize": {
  55984. name: "Paw Size",
  55985. power: 1,
  55986. type: "length",
  55987. base: math.unit(14, "ShoeSizeMensUS"),
  55988. defaultUnit: "ShoeSizeMensUS"
  55989. },
  55990. }
  55991. },
  55992. },
  55993. [
  55994. {
  55995. name: "Normal",
  55996. height: math.unit(4, "feet"),
  55997. default: true
  55998. },
  55999. ]
  56000. ))
  56001. characterMakers.push(() => makeCharacter(
  56002. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56003. {
  56004. front: {
  56005. height: math.unit(7 + 8/12, "feet"),
  56006. weight: math.unit(333, "lb"),
  56007. name: "Front",
  56008. image: {
  56009. source: "./media/characters/vincent-vasroc/front.svg",
  56010. extra: 1962/1860,
  56011. bottom: 41/2003
  56012. }
  56013. },
  56014. back: {
  56015. height: math.unit(7 + 8/12, "feet"),
  56016. weight: math.unit(333, "lb"),
  56017. name: "Back",
  56018. image: {
  56019. source: "./media/characters/vincent-vasroc/back.svg",
  56020. extra: 1952/1815,
  56021. bottom: 33/1985
  56022. }
  56023. },
  56024. paw: {
  56025. height: math.unit(1.24, "feet"),
  56026. name: "Paw",
  56027. image: {
  56028. source: "./media/characters/vincent-vasroc/paw.svg"
  56029. }
  56030. },
  56031. ear: {
  56032. height: math.unit(0.75, "feet"),
  56033. name: "Ear",
  56034. image: {
  56035. source: "./media/characters/vincent-vasroc/ear.svg"
  56036. }
  56037. },
  56038. },
  56039. [
  56040. {
  56041. name: "Nano",
  56042. height: math.unit(92, "micrometers")
  56043. },
  56044. {
  56045. name: "Normal",
  56046. height: math.unit(7 + 8/12, "feet"),
  56047. default: true
  56048. },
  56049. ]
  56050. ))
  56051. characterMakers.push(() => makeCharacter(
  56052. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56053. {
  56054. frontNsfw: {
  56055. height: math.unit(40, "feet"),
  56056. weight: math.unit(58, "tons"),
  56057. name: "Front (NSFW)",
  56058. image: {
  56059. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56060. extra: 1265/965,
  56061. bottom: 155/1420
  56062. }
  56063. },
  56064. frontSfw: {
  56065. height: math.unit(40, "feet"),
  56066. weight: math.unit(58, "tons"),
  56067. name: "Front (SFW)",
  56068. image: {
  56069. source: "./media/characters/ru-kahn/front-sfw.svg",
  56070. extra: 1265/965,
  56071. bottom: 80/1345
  56072. }
  56073. },
  56074. },
  56075. [
  56076. {
  56077. name: "Small",
  56078. height: math.unit(4, "feet")
  56079. },
  56080. {
  56081. name: "Normal",
  56082. height: math.unit(40, "feet"),
  56083. default: true
  56084. },
  56085. {
  56086. name: "Macro",
  56087. height: math.unit(400, "feet")
  56088. },
  56089. ]
  56090. ))
  56091. characterMakers.push(() => makeCharacter(
  56092. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56093. {
  56094. frontNude: {
  56095. height: math.unit(6 + 5/12, "feet"),
  56096. name: "Front (Nude)",
  56097. image: {
  56098. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56099. extra: 1369/1366,
  56100. bottom: 68/1437
  56101. }
  56102. },
  56103. frontDressed: {
  56104. height: math.unit(6 + 5/12, "feet"),
  56105. name: "Front (Dressed)",
  56106. image: {
  56107. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56108. extra: 1369/1366,
  56109. bottom: 68/1437
  56110. }
  56111. },
  56112. },
  56113. [
  56114. {
  56115. name: "Normal",
  56116. height: math.unit(6 + 5/12, "feet"),
  56117. default: true
  56118. },
  56119. {
  56120. name: "Maximum",
  56121. height: math.unit(1930, "feet")
  56122. },
  56123. ]
  56124. ))
  56125. characterMakers.push(() => makeCharacter(
  56126. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56127. {
  56128. front: {
  56129. height: math.unit(5 + 6/12, "feet"),
  56130. name: "Front",
  56131. image: {
  56132. source: "./media/characters/kaja/front.svg",
  56133. extra: 1874/1514,
  56134. bottom: 117/1991
  56135. }
  56136. },
  56137. },
  56138. [
  56139. {
  56140. name: "Normal",
  56141. height: math.unit(5 + 6/12, "feet"),
  56142. default: true
  56143. },
  56144. ]
  56145. ))
  56146. characterMakers.push(() => makeCharacter(
  56147. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56148. {
  56149. front: {
  56150. height: math.unit(5 + 9/12, "feet"),
  56151. weight: math.unit(200, "lb"),
  56152. name: "Front",
  56153. image: {
  56154. source: "./media/characters/mark-smith/front.svg",
  56155. extra: 1004/943,
  56156. bottom: 58/1062
  56157. }
  56158. },
  56159. back: {
  56160. height: math.unit(5 + 9/12, "feet"),
  56161. weight: math.unit(200, "lb"),
  56162. name: "Back",
  56163. image: {
  56164. source: "./media/characters/mark-smith/back.svg",
  56165. extra: 1023/953,
  56166. bottom: 24/1047
  56167. }
  56168. },
  56169. head: {
  56170. height: math.unit(1.82, "feet"),
  56171. name: "Head",
  56172. image: {
  56173. source: "./media/characters/mark-smith/head.svg"
  56174. }
  56175. },
  56176. hand: {
  56177. height: math.unit(1.4, "feet"),
  56178. name: "Hand",
  56179. image: {
  56180. source: "./media/characters/mark-smith/hand.svg"
  56181. }
  56182. },
  56183. paw: {
  56184. height: math.unit(1.69, "feet"),
  56185. name: "Paw",
  56186. image: {
  56187. source: "./media/characters/mark-smith/paw.svg"
  56188. }
  56189. },
  56190. },
  56191. [
  56192. {
  56193. name: "Micro",
  56194. height: math.unit(0.25, "inches")
  56195. },
  56196. {
  56197. name: "Normal",
  56198. height: math.unit(5 + 9/12, "feet"),
  56199. default: true
  56200. },
  56201. {
  56202. name: "Macro",
  56203. height: math.unit(500, "feet")
  56204. },
  56205. ]
  56206. ))
  56207. characterMakers.push(() => makeCharacter(
  56208. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56209. {
  56210. frontNude: {
  56211. height: math.unit(6, "feet"),
  56212. name: "Front (Nude)",
  56213. image: {
  56214. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56215. extra: 1384/1321,
  56216. bottom: 57/1441
  56217. }
  56218. },
  56219. frontDressed: {
  56220. height: math.unit(6, "feet"),
  56221. name: "Front (Dressed)",
  56222. image: {
  56223. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56224. extra: 1384/1321,
  56225. bottom: 57/1441
  56226. }
  56227. },
  56228. },
  56229. [
  56230. {
  56231. name: "Normal",
  56232. height: math.unit(6, "feet"),
  56233. default: true
  56234. },
  56235. {
  56236. name: "Maximum",
  56237. height: math.unit(1776, "feet")
  56238. },
  56239. ]
  56240. ))
  56241. characterMakers.push(() => makeCharacter(
  56242. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56243. {
  56244. front: {
  56245. height: math.unit(2 + 4/12, "feet"),
  56246. weight: math.unit(350, "lb"),
  56247. name: "Front",
  56248. image: {
  56249. source: "./media/characters/devos/front.svg",
  56250. extra: 958/852,
  56251. bottom: 143/1101
  56252. }
  56253. },
  56254. },
  56255. [
  56256. {
  56257. name: "Base",
  56258. height: math.unit(2 + 4/12, "feet"),
  56259. default: true
  56260. },
  56261. ]
  56262. ))
  56263. characterMakers.push(() => makeCharacter(
  56264. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56265. {
  56266. front: {
  56267. height: math.unit(9 + 2/12, "feet"),
  56268. name: "Front",
  56269. image: {
  56270. source: "./media/characters/hiveheart/front.svg",
  56271. extra: 394/364,
  56272. bottom: 65/459
  56273. }
  56274. },
  56275. back: {
  56276. height: math.unit(9 + 2/12, "feet"),
  56277. name: "Back",
  56278. image: {
  56279. source: "./media/characters/hiveheart/back.svg",
  56280. extra: 374/357,
  56281. bottom: 63/437
  56282. }
  56283. },
  56284. },
  56285. [
  56286. {
  56287. name: "Base",
  56288. height: math.unit(9 + 2/12, "feet"),
  56289. default: true
  56290. },
  56291. ]
  56292. ))
  56293. characterMakers.push(() => makeCharacter(
  56294. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56295. {
  56296. front: {
  56297. height: math.unit(2.5, "inches"),
  56298. weight: math.unit(0.6, "oz"),
  56299. name: "Front",
  56300. image: {
  56301. source: "./media/characters/bryn/front.svg",
  56302. extra: 1480/1205,
  56303. bottom: 27/1507
  56304. }
  56305. },
  56306. back: {
  56307. height: math.unit(2.5, "inches"),
  56308. weight: math.unit(0.6, "oz"),
  56309. name: "Back",
  56310. image: {
  56311. source: "./media/characters/bryn/back.svg",
  56312. extra: 1475/1201,
  56313. bottom: 39/1514
  56314. }
  56315. },
  56316. foot: {
  56317. height: math.unit(0.4, "inches"),
  56318. name: "Foot",
  56319. image: {
  56320. source: "./media/characters/bryn/foot.svg"
  56321. }
  56322. },
  56323. },
  56324. [
  56325. {
  56326. name: "Normal",
  56327. height: math.unit(2.5, "inches"),
  56328. default: true
  56329. },
  56330. ]
  56331. ))
  56332. characterMakers.push(() => makeCharacter(
  56333. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56334. {
  56335. side: {
  56336. height: math.unit(7, "feet"),
  56337. weight: math.unit(657, "kg"),
  56338. name: "Side",
  56339. image: {
  56340. source: "./media/characters/delta/side.svg",
  56341. extra: 781/212,
  56342. bottom: 7/788
  56343. },
  56344. extraAttributes: {
  56345. "wingspan": {
  56346. name: "Wingspan",
  56347. power: 1,
  56348. type: "length",
  56349. base: math.unit(48, "feet")
  56350. },
  56351. "length": {
  56352. name: "Length",
  56353. power: 1,
  56354. type: "length",
  56355. base: math.unit(21, "feet")
  56356. },
  56357. "pawSize": {
  56358. name: "Paw Size",
  56359. power: 2,
  56360. type: "area",
  56361. base: math.unit(1.5*1.4, "feet^2")
  56362. },
  56363. }
  56364. },
  56365. },
  56366. [
  56367. {
  56368. name: "Normal",
  56369. height: math.unit(6, "feet"),
  56370. default: true
  56371. },
  56372. ]
  56373. ))
  56374. characterMakers.push(() => makeCharacter(
  56375. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56376. {
  56377. front: {
  56378. height: math.unit(6, "feet"),
  56379. name: "Front",
  56380. image: {
  56381. source: "./media/characters/pyrow/front.svg",
  56382. extra: 513/486,
  56383. bottom: 14/527
  56384. }
  56385. },
  56386. frontWing: {
  56387. height: math.unit(6, "feet"),
  56388. name: "Front (Wing)",
  56389. image: {
  56390. source: "./media/characters/pyrow/front-wing.svg",
  56391. extra: 539/383,
  56392. bottom: 20/559
  56393. }
  56394. },
  56395. back: {
  56396. height: math.unit(6, "feet"),
  56397. name: "Back",
  56398. image: {
  56399. source: "./media/characters/pyrow/back.svg",
  56400. extra: 500/473,
  56401. bottom: 9/509
  56402. }
  56403. },
  56404. },
  56405. [
  56406. {
  56407. name: "Normal",
  56408. height: math.unit(6, "feet"),
  56409. default: true
  56410. },
  56411. ]
  56412. ))
  56413. characterMakers.push(() => makeCharacter(
  56414. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56415. {
  56416. front: {
  56417. height: math.unit(5, "meters"),
  56418. weight: math.unit(3, "tonnes"),
  56419. name: "Front",
  56420. image: {
  56421. source: "./media/characters/velikan/front.svg",
  56422. extra: 867/744,
  56423. bottom: 71/938
  56424. },
  56425. extraAttributes: {
  56426. "shoeSize": {
  56427. name: "Shoe Size",
  56428. power: 1,
  56429. type: "length",
  56430. base: math.unit(135, "ShoeSizeUK"),
  56431. defaultUnit: "ShoeSizeUK"
  56432. },
  56433. }
  56434. },
  56435. },
  56436. [
  56437. {
  56438. name: "Normal",
  56439. height: math.unit(5, "meters"),
  56440. default: true
  56441. },
  56442. {
  56443. name: "Macro",
  56444. height: math.unit(1, "km")
  56445. },
  56446. {
  56447. name: "Mega Macro",
  56448. height: math.unit(100, "km")
  56449. },
  56450. {
  56451. name: "Giga Macro",
  56452. height: math.unit(2, "megameters")
  56453. },
  56454. {
  56455. name: "Planetary",
  56456. height: math.unit(22, "megameters")
  56457. },
  56458. {
  56459. name: "Solar",
  56460. height: math.unit(8, "gigameters")
  56461. },
  56462. {
  56463. name: "Cosmic",
  56464. height: math.unit(10, "zettameters")
  56465. },
  56466. {
  56467. name: "Omni",
  56468. height: math.unit(9e260, "multiverses")
  56469. },
  56470. ]
  56471. ))
  56472. characterMakers.push(() => makeCharacter(
  56473. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56474. {
  56475. front: {
  56476. height: math.unit(4 + 3/12, "feet"),
  56477. weight: math.unit(90, "lb"),
  56478. name: "Front",
  56479. image: {
  56480. source: "./media/characters/sabiki/front.svg",
  56481. extra: 1662/1423,
  56482. bottom: 65/1727
  56483. }
  56484. },
  56485. },
  56486. [
  56487. {
  56488. name: "Normal",
  56489. height: math.unit(4 + 3/12, "feet"),
  56490. default: true
  56491. },
  56492. ]
  56493. ))
  56494. characterMakers.push(() => makeCharacter(
  56495. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56496. {
  56497. frontSfw: {
  56498. height: math.unit(2, "mm"),
  56499. name: "Front (SFW)",
  56500. image: {
  56501. source: "./media/characters/carmel/front-sfw.svg",
  56502. extra: 1131/1006,
  56503. bottom: 66/1197
  56504. }
  56505. },
  56506. frontNsfw: {
  56507. height: math.unit(2, "mm"),
  56508. name: "Front (NSFW)",
  56509. image: {
  56510. source: "./media/characters/carmel/front-nsfw.svg",
  56511. extra: 1131/1006,
  56512. bottom: 66/1197
  56513. }
  56514. },
  56515. foot: {
  56516. height: math.unit(0.3, "mm"),
  56517. name: "Foot",
  56518. image: {
  56519. source: "./media/characters/carmel/foot.svg"
  56520. }
  56521. },
  56522. tongue: {
  56523. height: math.unit(0.71, "mm"),
  56524. name: "Tongue",
  56525. image: {
  56526. source: "./media/characters/carmel/tongue.svg"
  56527. }
  56528. },
  56529. dick: {
  56530. height: math.unit(0.085, "mm"),
  56531. name: "Dick",
  56532. image: {
  56533. source: "./media/characters/carmel/dick.svg"
  56534. }
  56535. },
  56536. },
  56537. [
  56538. {
  56539. name: "Micro",
  56540. height: math.unit(2, "mm"),
  56541. default: true
  56542. },
  56543. {
  56544. name: "Normal",
  56545. height: math.unit(4 + 8/12, "feet")
  56546. },
  56547. {
  56548. name: "Mega Macro",
  56549. height: math.unit(250, "feet")
  56550. },
  56551. {
  56552. name: "BIGGER",
  56553. height: math.unit(1000, "feet")
  56554. },
  56555. {
  56556. name: "BIGGEST",
  56557. height: math.unit(2, "miles")
  56558. },
  56559. ]
  56560. ))
  56561. characterMakers.push(() => makeCharacter(
  56562. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56563. {
  56564. front: {
  56565. height: math.unit(6.5, "feet"),
  56566. weight: math.unit(198, "lb"),
  56567. name: "Front",
  56568. image: {
  56569. source: "./media/characters/tamani/anthro.svg",
  56570. extra: 930/890,
  56571. bottom: 34/964
  56572. },
  56573. form: "anthro",
  56574. default: true
  56575. },
  56576. side: {
  56577. height: math.unit(6, "feet"),
  56578. weight: math.unit(198*2, "lb"),
  56579. name: "Side",
  56580. image: {
  56581. source: "./media/characters/tamani/feral.svg",
  56582. extra: 559/519,
  56583. bottom: 43/602
  56584. },
  56585. form: "feral"
  56586. },
  56587. },
  56588. [
  56589. {
  56590. name: "Normal",
  56591. height: math.unit(6.5, "feet"),
  56592. default: true,
  56593. form: "anthro"
  56594. },
  56595. {
  56596. name: "Normal",
  56597. height: math.unit(6, "feet"),
  56598. default: true,
  56599. form: "feral"
  56600. },
  56601. ],
  56602. {
  56603. "anthro": {
  56604. name: "Anthro",
  56605. default: true
  56606. },
  56607. "feral": {
  56608. name: "Feral",
  56609. },
  56610. }
  56611. ))
  56612. characterMakers.push(() => makeCharacter(
  56613. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56614. {
  56615. front: {
  56616. height: math.unit(4 + 1/12, "feet"),
  56617. weight: math.unit(114, "lb"),
  56618. name: "Front",
  56619. image: {
  56620. source: "./media/characters/dex/front.svg",
  56621. extra: 787/680,
  56622. bottom: 18/805
  56623. }
  56624. },
  56625. side: {
  56626. height: math.unit(4 + 1/12, "feet"),
  56627. weight: math.unit(114, "lb"),
  56628. name: "Side",
  56629. image: {
  56630. source: "./media/characters/dex/side.svg",
  56631. extra: 785/680,
  56632. bottom: 12/797
  56633. }
  56634. },
  56635. back: {
  56636. height: math.unit(4 + 1/12, "feet"),
  56637. weight: math.unit(114, "lb"),
  56638. name: "Back",
  56639. image: {
  56640. source: "./media/characters/dex/back.svg",
  56641. extra: 785/681,
  56642. bottom: 17/802
  56643. }
  56644. },
  56645. loungewear: {
  56646. height: math.unit(4 + 1/12, "feet"),
  56647. weight: math.unit(114, "lb"),
  56648. name: "Loungewear",
  56649. image: {
  56650. source: "./media/characters/dex/loungewear.svg",
  56651. extra: 787/680,
  56652. bottom: 18/805
  56653. }
  56654. },
  56655. workout: {
  56656. height: math.unit(4 + 1/12, "feet"),
  56657. weight: math.unit(114, "lb"),
  56658. name: "Workout",
  56659. image: {
  56660. source: "./media/characters/dex/workout.svg",
  56661. extra: 787/680,
  56662. bottom: 18/805
  56663. }
  56664. },
  56665. schoolUniform: {
  56666. height: math.unit(4 + 1/12, "feet"),
  56667. weight: math.unit(114, "lb"),
  56668. name: "School-uniform",
  56669. image: {
  56670. source: "./media/characters/dex/school-uniform.svg",
  56671. extra: 787/680,
  56672. bottom: 18/805
  56673. }
  56674. },
  56675. maw: {
  56676. height: math.unit(0.55, "feet"),
  56677. name: "Maw",
  56678. image: {
  56679. source: "./media/characters/dex/maw.svg"
  56680. }
  56681. },
  56682. paw: {
  56683. height: math.unit(0.87, "feet"),
  56684. name: "Paw",
  56685. image: {
  56686. source: "./media/characters/dex/paw.svg"
  56687. }
  56688. },
  56689. bust: {
  56690. height: math.unit(1.67, "feet"),
  56691. name: "Bust",
  56692. image: {
  56693. source: "./media/characters/dex/bust.svg"
  56694. }
  56695. },
  56696. },
  56697. [
  56698. {
  56699. name: "Normal",
  56700. height: math.unit(4 + 1/12, "feet"),
  56701. default: true
  56702. },
  56703. ]
  56704. ))
  56705. characterMakers.push(() => makeCharacter(
  56706. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56707. {
  56708. front: {
  56709. height: math.unit(4 + 3/12, "feet"),
  56710. weight: math.unit(60, "lb"),
  56711. name: "Front",
  56712. image: {
  56713. source: "./media/characters/silke/front.svg",
  56714. extra: 1334/1122,
  56715. bottom: 21/1355
  56716. }
  56717. },
  56718. back: {
  56719. height: math.unit(4 + 3/12, "feet"),
  56720. weight: math.unit(60, "lb"),
  56721. name: "Back",
  56722. image: {
  56723. source: "./media/characters/silke/back.svg",
  56724. extra: 1328/1092,
  56725. bottom: 16/1344
  56726. }
  56727. },
  56728. dressed: {
  56729. height: math.unit(4 + 3/12, "feet"),
  56730. weight: math.unit(60, "lb"),
  56731. name: "Dressed",
  56732. image: {
  56733. source: "./media/characters/silke/dressed.svg",
  56734. extra: 1334/1122,
  56735. bottom: 43/1377
  56736. }
  56737. },
  56738. },
  56739. [
  56740. {
  56741. name: "Normal",
  56742. height: math.unit(4 + 3/12, "feet"),
  56743. default: true
  56744. },
  56745. ]
  56746. ))
  56747. characterMakers.push(() => makeCharacter(
  56748. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56749. {
  56750. front: {
  56751. height: math.unit(1.58, "meters"),
  56752. weight: math.unit(47, "kg"),
  56753. name: "Front",
  56754. image: {
  56755. source: "./media/characters/wireshark/front.svg",
  56756. extra: 883/838,
  56757. bottom: 66/949
  56758. }
  56759. },
  56760. },
  56761. [
  56762. {
  56763. name: "Normal",
  56764. height: math.unit(1.58, "meters"),
  56765. default: true
  56766. },
  56767. ]
  56768. ))
  56769. characterMakers.push(() => makeCharacter(
  56770. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56771. {
  56772. front: {
  56773. height: math.unit(6, "meters"),
  56774. weight: math.unit(15000, "kg"),
  56775. name: "Front",
  56776. image: {
  56777. source: "./media/characters/gallagher/front.svg",
  56778. extra: 532/493,
  56779. bottom: 0/532
  56780. }
  56781. },
  56782. },
  56783. [
  56784. {
  56785. name: "Normal",
  56786. height: math.unit(6, "meters"),
  56787. default: true
  56788. },
  56789. ]
  56790. ))
  56791. characterMakers.push(() => makeCharacter(
  56792. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56793. {
  56794. front: {
  56795. height: math.unit(2.4, "meters"),
  56796. weight: math.unit(270, "kg"),
  56797. name: "Front",
  56798. image: {
  56799. source: "./media/characters/alice/front.svg",
  56800. extra: 950/900,
  56801. bottom: 36/986
  56802. }
  56803. },
  56804. side: {
  56805. height: math.unit(2.4, "meters"),
  56806. weight: math.unit(270, "kg"),
  56807. name: "Side",
  56808. image: {
  56809. source: "./media/characters/alice/side.svg",
  56810. extra: 921/876,
  56811. bottom: 19/940
  56812. }
  56813. },
  56814. dressed: {
  56815. height: math.unit(2.4, "meters"),
  56816. weight: math.unit(270, "kg"),
  56817. name: "Dressed",
  56818. image: {
  56819. source: "./media/characters/alice/dressed.svg",
  56820. extra: 905/850,
  56821. bottom: 81/986
  56822. }
  56823. },
  56824. fishnet: {
  56825. height: math.unit(2.4, "meters"),
  56826. weight: math.unit(270, "kg"),
  56827. name: "Fishnet",
  56828. image: {
  56829. source: "./media/characters/alice/fishnet.svg",
  56830. extra: 905/850,
  56831. bottom: 81/986
  56832. }
  56833. },
  56834. },
  56835. [
  56836. {
  56837. name: "Normal",
  56838. height: math.unit(2.4, "meters"),
  56839. default: true
  56840. },
  56841. ]
  56842. ))
  56843. characterMakers.push(() => makeCharacter(
  56844. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56845. {
  56846. front: {
  56847. height: math.unit(175.25, "feet"),
  56848. name: "Front",
  56849. image: {
  56850. source: "./media/characters/fio/front.svg",
  56851. extra: 1883/1591,
  56852. bottom: 34/1917
  56853. }
  56854. },
  56855. },
  56856. [
  56857. {
  56858. name: "Normal",
  56859. height: math.unit(175.25, "cm"),
  56860. default: true
  56861. },
  56862. ]
  56863. ))
  56864. characterMakers.push(() => makeCharacter(
  56865. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56866. {
  56867. side: {
  56868. height: math.unit(6, "meters"),
  56869. weight: math.unit(3400, "kg"),
  56870. preyCapacity: math.unit(1700, "liters"),
  56871. name: "Side",
  56872. image: {
  56873. source: "./media/characters/hass/side.svg",
  56874. extra: 1058/997,
  56875. bottom: 177/1235
  56876. }
  56877. },
  56878. feeding: {
  56879. height: math.unit(6*0.63, "meters"),
  56880. weight: math.unit(3400, "kg"),
  56881. preyCapacity: math.unit(1700, "liters"),
  56882. name: "Feeding",
  56883. image: {
  56884. source: "./media/characters/hass/feeding.svg",
  56885. extra: 689/579,
  56886. bottom: 146/835
  56887. }
  56888. },
  56889. guts: {
  56890. height: math.unit(6, "meters"),
  56891. weight: math.unit(3400, "kg"),
  56892. name: "Guts",
  56893. image: {
  56894. source: "./media/characters/hass/guts.svg",
  56895. extra: 1223/1198,
  56896. bottom: 182/1405
  56897. }
  56898. },
  56899. dickFront: {
  56900. height: math.unit(1.4, "meters"),
  56901. name: "Dick (Front)",
  56902. image: {
  56903. source: "./media/characters/hass/dick-front.svg"
  56904. }
  56905. },
  56906. dickSide: {
  56907. height: math.unit(1.3, "meters"),
  56908. name: "Dick (Side)",
  56909. image: {
  56910. source: "./media/characters/hass/dick-side.svg"
  56911. }
  56912. },
  56913. dickBack: {
  56914. height: math.unit(1.4, "meters"),
  56915. name: "Dick (Back)",
  56916. image: {
  56917. source: "./media/characters/hass/dick-back.svg"
  56918. }
  56919. },
  56920. },
  56921. [
  56922. {
  56923. name: "Normal",
  56924. height: math.unit(6, "meters"),
  56925. default: true
  56926. },
  56927. ]
  56928. ))
  56929. characterMakers.push(() => makeCharacter(
  56930. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56931. {
  56932. front: {
  56933. height: math.unit(4, "feet"),
  56934. weight: math.unit(60, "lb"),
  56935. name: "Front",
  56936. image: {
  56937. source: "./media/characters/hickory-finnegan/front.svg",
  56938. extra: 444/411,
  56939. bottom: 10/454
  56940. }
  56941. },
  56942. side: {
  56943. height: math.unit(4, "feet"),
  56944. weight: math.unit(60, "lb"),
  56945. name: "Side",
  56946. image: {
  56947. source: "./media/characters/hickory-finnegan/side.svg",
  56948. extra: 444/411,
  56949. bottom: 10/454
  56950. }
  56951. },
  56952. back: {
  56953. height: math.unit(4, "feet"),
  56954. weight: math.unit(60, "lb"),
  56955. name: "Back",
  56956. image: {
  56957. source: "./media/characters/hickory-finnegan/back.svg",
  56958. extra: 444/411,
  56959. bottom: 10/454
  56960. }
  56961. },
  56962. },
  56963. [
  56964. {
  56965. name: "Normal",
  56966. height: math.unit(4, "feet"),
  56967. default: true
  56968. },
  56969. ]
  56970. ))
  56971. characterMakers.push(() => makeCharacter(
  56972. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56973. {
  56974. snivy_front: {
  56975. height: math.unit(2, "feet"),
  56976. weight: math.unit(17.9, "lb"),
  56977. name: "Front",
  56978. image: {
  56979. source: "./media/characters/robin-phox/snivy-front.svg",
  56980. extra: 569/504,
  56981. bottom: 33/602
  56982. },
  56983. form: "snivy",
  56984. default: true
  56985. },
  56986. snivy_frontNsfw: {
  56987. height: math.unit(2, "feet"),
  56988. weight: math.unit(17.9, "lb"),
  56989. name: "Front (NSFW)",
  56990. image: {
  56991. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56992. extra: 569/504,
  56993. bottom: 33/602
  56994. },
  56995. form: "snivy",
  56996. },
  56997. snivy_back: {
  56998. height: math.unit(2, "feet"),
  56999. weight: math.unit(17.9, "lb"),
  57000. name: "Back",
  57001. image: {
  57002. source: "./media/characters/robin-phox/snivy-back.svg",
  57003. extra: 577/508,
  57004. bottom: 21/598
  57005. },
  57006. form: "snivy",
  57007. },
  57008. snivy_foot: {
  57009. height: math.unit(0.68, "feet"),
  57010. name: "Foot",
  57011. image: {
  57012. source: "./media/characters/robin-phox/snivy-foot.svg"
  57013. },
  57014. form: "snivy",
  57015. },
  57016. snivy_sole: {
  57017. height: math.unit(0.68, "feet"),
  57018. name: "Sole",
  57019. image: {
  57020. source: "./media/characters/robin-phox/snivy-sole.svg"
  57021. },
  57022. form: "snivy",
  57023. },
  57024. yoshi_front: {
  57025. height: math.unit(6, "feet"),
  57026. weight: math.unit(150, "lb"),
  57027. name: "Front",
  57028. image: {
  57029. source: "./media/characters/robin-phox/yoshi-front.svg",
  57030. extra: 890/792,
  57031. bottom: 29/919
  57032. },
  57033. form: "yoshi",
  57034. default: true
  57035. },
  57036. yoshi_frontNsfw: {
  57037. height: math.unit(6, "feet"),
  57038. weight: math.unit(150, "lb"),
  57039. name: "Front (NSFW)",
  57040. image: {
  57041. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57042. extra: 890/792,
  57043. bottom: 29/919
  57044. },
  57045. form: "yoshi",
  57046. },
  57047. yoshi_back: {
  57048. height: math.unit(6, "feet"),
  57049. weight: math.unit(150, "lb"),
  57050. name: "Back",
  57051. image: {
  57052. source: "./media/characters/robin-phox/yoshi-back.svg",
  57053. extra: 890/792,
  57054. bottom: 29/919
  57055. },
  57056. form: "yoshi",
  57057. },
  57058. yoshi_foot: {
  57059. height: math.unit(1.5, "feet"),
  57060. name: "Foot",
  57061. image: {
  57062. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57063. },
  57064. form: "yoshi",
  57065. },
  57066. delphox_front: {
  57067. height: math.unit(4 + 11/12, "feet"),
  57068. weight: math.unit(86, "lb"),
  57069. name: "Front",
  57070. image: {
  57071. source: "./media/characters/robin-phox/delphox-front.svg",
  57072. extra: 1266/1069,
  57073. bottom: 32/1298
  57074. },
  57075. form: "delphox",
  57076. default: true
  57077. },
  57078. delphox_frontNsfw: {
  57079. height: math.unit(4 + 11/12, "feet"),
  57080. weight: math.unit(86, "lb"),
  57081. name: "Front (NSFW)",
  57082. image: {
  57083. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57084. extra: 1266/1069,
  57085. bottom: 32/1298
  57086. },
  57087. form: "delphox",
  57088. },
  57089. delphox_back: {
  57090. height: math.unit(4 + 11/12, "feet"),
  57091. weight: math.unit(86, "lb"),
  57092. name: "Back",
  57093. image: {
  57094. source: "./media/characters/robin-phox/delphox-back.svg",
  57095. extra: 1269/1083,
  57096. bottom: 15/1284
  57097. },
  57098. form: "delphox",
  57099. },
  57100. mienshao_front: {
  57101. height: math.unit(4 + 7/12, "feet"),
  57102. weight: math.unit(78.3, "lb"),
  57103. name: "Front",
  57104. image: {
  57105. source: "./media/characters/robin-phox/mienshao-front.svg",
  57106. extra: 1052/970,
  57107. bottom: 108/1160
  57108. },
  57109. form: "mienshao",
  57110. default: true
  57111. },
  57112. mienshao_frontNsfw: {
  57113. height: math.unit(4 + 7/12, "feet"),
  57114. weight: math.unit(78.3, "lb"),
  57115. name: "Front (NSFW)",
  57116. image: {
  57117. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57118. extra: 1052/970,
  57119. bottom: 108/1160
  57120. },
  57121. form: "mienshao",
  57122. },
  57123. mienshao_back: {
  57124. height: math.unit(4 + 7/12, "feet"),
  57125. weight: math.unit(78.3, "lb"),
  57126. name: "Back",
  57127. image: {
  57128. source: "./media/characters/robin-phox/mienshao-back.svg",
  57129. extra: 1102/982,
  57130. bottom: 32/1134
  57131. },
  57132. form: "mienshao",
  57133. },
  57134. inteleon_front: {
  57135. height: math.unit(6 + 3/12, "feet"),
  57136. weight: math.unit(99.6, "lb"),
  57137. name: "Front",
  57138. image: {
  57139. source: "./media/characters/robin-phox/inteleon-front.svg",
  57140. extra: 910/799,
  57141. bottom: 76/986
  57142. },
  57143. form: "inteleon",
  57144. default: true
  57145. },
  57146. inteleon_frontNsfw: {
  57147. height: math.unit(6 + 3/12, "feet"),
  57148. weight: math.unit(99.6, "lb"),
  57149. name: "Front (NSFW)",
  57150. image: {
  57151. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57152. extra: 910/799,
  57153. bottom: 76/986
  57154. },
  57155. form: "inteleon",
  57156. },
  57157. inteleon_back: {
  57158. height: math.unit(6 + 3/12, "feet"),
  57159. weight: math.unit(99.6, "lb"),
  57160. name: "Back",
  57161. image: {
  57162. source: "./media/characters/robin-phox/inteleon-back.svg",
  57163. extra: 907/796,
  57164. bottom: 25/932
  57165. },
  57166. form: "inteleon",
  57167. },
  57168. reshiram_front: {
  57169. height: math.unit(10 + 6/12, "feet"),
  57170. weight: math.unit(727.5, "lb"),
  57171. name: "Front",
  57172. image: {
  57173. source: "./media/characters/robin-phox/reshiram-front.svg",
  57174. extra: 1198/940,
  57175. bottom: 123/1321
  57176. },
  57177. form: "reshiram",
  57178. },
  57179. reshiram_frontNsfw: {
  57180. height: math.unit(10 + 6/12, "feet"),
  57181. weight: math.unit(727.5, "lb"),
  57182. name: "Front-nsfw",
  57183. image: {
  57184. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57185. extra: 1198/940,
  57186. bottom: 123/1321
  57187. },
  57188. form: "reshiram",
  57189. },
  57190. reshiram_back: {
  57191. height: math.unit(10 + 6/12, "feet"),
  57192. weight: math.unit(727.5, "lb"),
  57193. name: "Back",
  57194. image: {
  57195. source: "./media/characters/robin-phox/reshiram-back.svg",
  57196. extra: 1024/904,
  57197. bottom: 85/1109
  57198. },
  57199. form: "reshiram",
  57200. },
  57201. samurott_front: {
  57202. height: math.unit(8, "feet"),
  57203. weight: math.unit(208.6, "lb"),
  57204. name: "Front",
  57205. image: {
  57206. source: "./media/characters/robin-phox/samurott-front.svg",
  57207. extra: 1048/984,
  57208. bottom: 100/1148
  57209. },
  57210. form: "samurott",
  57211. },
  57212. samurott_frontNsfw: {
  57213. height: math.unit(8, "feet"),
  57214. weight: math.unit(208.6, "lb"),
  57215. name: "Front-nsfw",
  57216. image: {
  57217. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57218. extra: 1048/984,
  57219. bottom: 100/1148
  57220. },
  57221. form: "samurott",
  57222. },
  57223. samurott_back: {
  57224. height: math.unit(8, "feet"),
  57225. weight: math.unit(208.6, "lb"),
  57226. name: "Back",
  57227. image: {
  57228. source: "./media/characters/robin-phox/samurott-back.svg",
  57229. extra: 1110/1042,
  57230. bottom: 12/1122
  57231. },
  57232. form: "samurott",
  57233. },
  57234. samurott_feral: {
  57235. height: math.unit(4 + 11/12, "feet"),
  57236. weight: math.unit(208.6, "lb"),
  57237. name: "Feral",
  57238. image: {
  57239. source: "./media/characters/robin-phox/samurott-feral.svg",
  57240. extra: 766/681,
  57241. bottom: 108/874
  57242. },
  57243. form: "samurott",
  57244. },
  57245. },
  57246. [
  57247. {
  57248. name: "Normal",
  57249. height: math.unit(2, "feet"),
  57250. default: true,
  57251. form: "snivy"
  57252. },
  57253. {
  57254. name: "Normal",
  57255. height: math.unit(6, "feet"),
  57256. default: true,
  57257. form: "yoshi"
  57258. },
  57259. {
  57260. name: "Normal",
  57261. height: math.unit(4 + 11/12, "feet"),
  57262. default: true,
  57263. form: "delphox"
  57264. },
  57265. {
  57266. name: "Normal",
  57267. height: math.unit(4 + 7/12, "feet"),
  57268. default: true,
  57269. form: "mienshao"
  57270. },
  57271. {
  57272. name: "Normal",
  57273. height: math.unit(6 + 3/12, "feet"),
  57274. default: true,
  57275. form: "inteleon"
  57276. },
  57277. {
  57278. name: "Normal",
  57279. height: math.unit(10 + 6/12, "feet"),
  57280. default: true,
  57281. form: "reshiram"
  57282. },
  57283. {
  57284. name: "Normal",
  57285. height: math.unit(8, "feet"),
  57286. default: true,
  57287. form: "samurott"
  57288. },
  57289. {
  57290. name: "Macro",
  57291. height: math.unit(500, "feet"),
  57292. allForms: true
  57293. },
  57294. {
  57295. name: "Mega Macro",
  57296. height: math.unit(10, "earths"),
  57297. allForms: true
  57298. },
  57299. {
  57300. name: "Giga Macro",
  57301. height: math.unit(1, "galaxy"),
  57302. allForms: true
  57303. },
  57304. {
  57305. name: "Godly Macro",
  57306. height: math.unit(1e10, "multiverses"),
  57307. allForms: true
  57308. },
  57309. ],
  57310. {
  57311. "snivy": {
  57312. name: "Snivy",
  57313. default: true
  57314. },
  57315. "yoshi": {
  57316. name: "Yoshi",
  57317. },
  57318. "delphox": {
  57319. name: "Delphox",
  57320. },
  57321. "mienshao": {
  57322. name: "Mienshao",
  57323. },
  57324. "inteleon": {
  57325. name: "Inteleon",
  57326. },
  57327. "reshiram": {
  57328. name: "Reshiram",
  57329. },
  57330. "samurott": {
  57331. name: "Samurott",
  57332. },
  57333. }
  57334. ))
  57335. characterMakers.push(() => makeCharacter(
  57336. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57337. {
  57338. front: {
  57339. height: math.unit(4, "feet"),
  57340. name: "Front",
  57341. image: {
  57342. source: "./media/characters/ash-leung/front.svg",
  57343. extra: 1916/1792,
  57344. bottom: 50/1966
  57345. }
  57346. },
  57347. },
  57348. [
  57349. {
  57350. name: "Atomic",
  57351. height: math.unit(1, "angstrom")
  57352. },
  57353. {
  57354. name: "Microscopic",
  57355. height: math.unit(4000, "angstroms")
  57356. },
  57357. {
  57358. name: "Speck",
  57359. height: math.unit(1, "mm")
  57360. },
  57361. {
  57362. name: "Small",
  57363. height: math.unit(1, "inch")
  57364. },
  57365. {
  57366. name: "Normal",
  57367. height: math.unit(4, "feet"),
  57368. default: true
  57369. },
  57370. ]
  57371. ))
  57372. characterMakers.push(() => makeCharacter(
  57373. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57374. {
  57375. frontDressed: {
  57376. height: math.unit(2.08, "meters"),
  57377. weight: math.unit(175, "lb"),
  57378. name: "Front (Dressed)",
  57379. image: {
  57380. source: "./media/characters/carie/front-dressed.svg",
  57381. extra: 456/417,
  57382. bottom: 7/463
  57383. }
  57384. },
  57385. backDressed: {
  57386. height: math.unit(2.08, "meters"),
  57387. weight: math.unit(175, "lb"),
  57388. name: "Back (Dressed)",
  57389. image: {
  57390. source: "./media/characters/carie/back-dressed.svg",
  57391. extra: 455/414,
  57392. bottom: 11/466
  57393. }
  57394. },
  57395. front: {
  57396. height: math.unit(2, "meters"),
  57397. weight: math.unit(175, "lb"),
  57398. name: "Front",
  57399. image: {
  57400. source: "./media/characters/carie/front.svg",
  57401. extra: 438/399,
  57402. bottom: 12/450
  57403. }
  57404. },
  57405. back: {
  57406. height: math.unit(2, "meters"),
  57407. weight: math.unit(175, "lb"),
  57408. name: "Back",
  57409. image: {
  57410. source: "./media/characters/carie/back.svg",
  57411. extra: 438/397,
  57412. bottom: 7/445
  57413. }
  57414. },
  57415. },
  57416. [
  57417. {
  57418. name: "Normal",
  57419. height: math.unit(2.08, "meters"),
  57420. default: true
  57421. },
  57422. {
  57423. name: "Macro",
  57424. height: math.unit(2.08e3, "meters")
  57425. },
  57426. {
  57427. name: "Mega Macro",
  57428. height: math.unit(2.08e6, "meters")
  57429. },
  57430. {
  57431. name: "Giga Macro",
  57432. height: math.unit(2.08e9, "meters")
  57433. },
  57434. {
  57435. name: "Tera Macro",
  57436. height: math.unit(2.08e12, "meters")
  57437. },
  57438. {
  57439. name: "Peta Macro",
  57440. height: math.unit(2.08e15, "meters")
  57441. },
  57442. {
  57443. name: "Exa Macro",
  57444. height: math.unit(2.08e18, "meters")
  57445. },
  57446. {
  57447. name: "Zetta Macro",
  57448. height: math.unit(2.08e21, "meters")
  57449. },
  57450. {
  57451. name: "Yotta Macro",
  57452. height: math.unit(2.08e24, "meters")
  57453. },
  57454. ]
  57455. ))
  57456. characterMakers.push(() => makeCharacter(
  57457. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57458. {
  57459. front: {
  57460. height: math.unit(5 + 2/12, "feet"),
  57461. weight: math.unit(120, "lb"),
  57462. name: "Front",
  57463. image: {
  57464. source: "./media/characters/sai-bree/front.svg",
  57465. extra: 1843/1702,
  57466. bottom: 91/1934
  57467. }
  57468. },
  57469. back: {
  57470. height: math.unit(5 + 2/12, "feet"),
  57471. weight: math.unit(120, "lb"),
  57472. name: "Back",
  57473. image: {
  57474. source: "./media/characters/sai-bree/back.svg",
  57475. extra: 1809/1637,
  57476. bottom: 56/1865
  57477. }
  57478. },
  57479. },
  57480. [
  57481. {
  57482. name: "Normal",
  57483. height: math.unit(5 + 2/12, "feet"),
  57484. default: true
  57485. },
  57486. {
  57487. name: "Macro",
  57488. height: math.unit(500, "feet")
  57489. },
  57490. ]
  57491. ))
  57492. characterMakers.push(() => makeCharacter(
  57493. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57494. {
  57495. side: {
  57496. height: math.unit(0.77, "meters"),
  57497. weight: math.unit(120, "lb"),
  57498. name: "Side",
  57499. image: {
  57500. source: "./media/characters/davwyn/side.svg",
  57501. extra: 1557/1225,
  57502. bottom: 131/1688
  57503. }
  57504. },
  57505. front: {
  57506. height: math.unit(0.835410, "meters"),
  57507. weight: math.unit(120, "lb"),
  57508. name: "Front",
  57509. image: {
  57510. source: "./media/characters/davwyn/front.svg",
  57511. extra: 870/843,
  57512. bottom: 175/1045
  57513. }
  57514. },
  57515. },
  57516. [
  57517. {
  57518. name: "Minidrake",
  57519. height: math.unit(0.77/4, "meters")
  57520. },
  57521. {
  57522. name: "Normal",
  57523. height: math.unit(0.77, "meters"),
  57524. default: true
  57525. },
  57526. ]
  57527. ))
  57528. characterMakers.push(() => makeCharacter(
  57529. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57530. {
  57531. front: {
  57532. height: math.unit(10 + 3/12, "feet"),
  57533. weight: math.unit(2857, "lb"),
  57534. name: "Front",
  57535. image: {
  57536. source: "./media/characters/balans/front.svg",
  57537. extra: 427/402,
  57538. bottom: 26/453
  57539. }
  57540. },
  57541. side: {
  57542. height: math.unit(10 + 3/12, "feet"),
  57543. weight: math.unit(2857, "lb"),
  57544. name: "Side",
  57545. image: {
  57546. source: "./media/characters/balans/side.svg",
  57547. extra: 397/371,
  57548. bottom: 17/414
  57549. }
  57550. },
  57551. back: {
  57552. height: math.unit(10 + 3/12, "feet"),
  57553. weight: math.unit(2857, "lb"),
  57554. name: "Back",
  57555. image: {
  57556. source: "./media/characters/balans/back.svg",
  57557. extra: 408/381,
  57558. bottom: 14/422
  57559. }
  57560. },
  57561. hand: {
  57562. height: math.unit(1.15, "feet"),
  57563. name: "Hand",
  57564. image: {
  57565. source: "./media/characters/balans/hand.svg"
  57566. }
  57567. },
  57568. footRest: {
  57569. height: math.unit(3.1, "feet"),
  57570. name: "Foot (Rest)",
  57571. image: {
  57572. source: "./media/characters/balans/foot-rest.svg"
  57573. }
  57574. },
  57575. footActive: {
  57576. height: math.unit(3.5, "feet"),
  57577. name: "Foot (Active)",
  57578. image: {
  57579. source: "./media/characters/balans/foot-active.svg"
  57580. }
  57581. },
  57582. },
  57583. [
  57584. {
  57585. name: "Normal",
  57586. height: math.unit(10 + 3/12, "feet"),
  57587. default: true
  57588. },
  57589. ]
  57590. ))
  57591. characterMakers.push(() => makeCharacter(
  57592. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57593. {
  57594. side: {
  57595. height: math.unit(9, "meters"),
  57596. weight: math.unit(114, "tonnes"),
  57597. name: "Side",
  57598. image: {
  57599. source: "./media/characters/eldkveikir/side.svg",
  57600. extra: 1927/338,
  57601. bottom: 42/1969
  57602. }
  57603. },
  57604. sitting: {
  57605. height: math.unit(13.4, "meters"),
  57606. weight: math.unit(114, "tonnes"),
  57607. name: "Sitting",
  57608. image: {
  57609. source: "./media/characters/eldkveikir/sitting.svg",
  57610. extra: 1108/963,
  57611. bottom: 610/1718
  57612. }
  57613. },
  57614. maw: {
  57615. height: math.unit(8.36, "meters"),
  57616. name: "Maw",
  57617. image: {
  57618. source: "./media/characters/eldkveikir/maw.svg"
  57619. }
  57620. },
  57621. hand: {
  57622. height: math.unit(4.84, "meters"),
  57623. name: "Hand",
  57624. image: {
  57625. source: "./media/characters/eldkveikir/hand.svg"
  57626. }
  57627. },
  57628. foot: {
  57629. height: math.unit(6.9, "meters"),
  57630. name: "Foot",
  57631. image: {
  57632. source: "./media/characters/eldkveikir/foot.svg"
  57633. }
  57634. },
  57635. genitals: {
  57636. height: math.unit(9.6, "meters"),
  57637. name: "Genitals",
  57638. image: {
  57639. source: "./media/characters/eldkveikir/genitals.svg"
  57640. }
  57641. },
  57642. },
  57643. [
  57644. {
  57645. name: "Normal",
  57646. height: math.unit(9, "meters"),
  57647. default: true
  57648. },
  57649. ]
  57650. ))
  57651. characterMakers.push(() => makeCharacter(
  57652. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57653. {
  57654. front: {
  57655. height: math.unit(14, "feet"),
  57656. weight: math.unit(4100, "lb"),
  57657. name: "Front",
  57658. image: {
  57659. source: "./media/characters/arrow/front.svg",
  57660. extra: 330/318,
  57661. bottom: 56/386
  57662. }
  57663. },
  57664. },
  57665. [
  57666. {
  57667. name: "Normal",
  57668. height: math.unit(14, "feet"),
  57669. default: true
  57670. },
  57671. {
  57672. name: "Minimacro",
  57673. height: math.unit(63, "feet")
  57674. },
  57675. {
  57676. name: "Macro",
  57677. height: math.unit(630, "feet")
  57678. },
  57679. {
  57680. name: "Megamacro",
  57681. height: math.unit(12600, "feet")
  57682. },
  57683. {
  57684. name: "Gigamacro",
  57685. height: math.unit(18000, "miles")
  57686. },
  57687. ]
  57688. ))
  57689. characterMakers.push(() => makeCharacter(
  57690. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57691. {
  57692. front: {
  57693. height: math.unit(10, "feet"),
  57694. weight: math.unit(2.4, "tons"),
  57695. name: "Front",
  57696. image: {
  57697. source: "./media/characters/3yk-k0-unit/front.svg",
  57698. extra: 573/561,
  57699. bottom: 33/606
  57700. }
  57701. },
  57702. back: {
  57703. height: math.unit(10, "feet"),
  57704. weight: math.unit(2.4, "tons"),
  57705. name: "Back",
  57706. image: {
  57707. source: "./media/characters/3yk-k0-unit/back.svg",
  57708. extra: 614/573,
  57709. bottom: 32/646
  57710. }
  57711. },
  57712. maw: {
  57713. height: math.unit(2.15, "feet"),
  57714. name: "Maw",
  57715. image: {
  57716. source: "./media/characters/3yk-k0-unit/maw.svg"
  57717. }
  57718. },
  57719. },
  57720. [
  57721. {
  57722. name: "Normal",
  57723. height: math.unit(10, "feet"),
  57724. default: true
  57725. },
  57726. ]
  57727. ))
  57728. characterMakers.push(() => makeCharacter(
  57729. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57730. {
  57731. front: {
  57732. height: math.unit(8 + 8/12, "feet"),
  57733. name: "Front",
  57734. image: {
  57735. source: "./media/characters/nemo/front.svg",
  57736. extra: 1308/1217,
  57737. bottom: 57/1365
  57738. }
  57739. },
  57740. },
  57741. [
  57742. {
  57743. name: "Normal",
  57744. height: math.unit(8 + 8/12, "feet"),
  57745. default: true
  57746. },
  57747. ]
  57748. ))
  57749. characterMakers.push(() => makeCharacter(
  57750. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57751. {
  57752. front: {
  57753. height: math.unit(8, "feet"),
  57754. weight: math.unit(760, "lb"),
  57755. name: "Front",
  57756. image: {
  57757. source: "./media/characters/rexx/front.svg",
  57758. extra: 786/750,
  57759. bottom: 17/803
  57760. },
  57761. extraAttributes: {
  57762. "pawLength": {
  57763. name: "Paw Length",
  57764. power: 1,
  57765. type: "length",
  57766. base: math.unit(27, "inches")
  57767. },
  57768. }
  57769. },
  57770. },
  57771. [
  57772. {
  57773. name: "Micro",
  57774. height: math.unit(2, "inches")
  57775. },
  57776. {
  57777. name: "Normal",
  57778. height: math.unit(8, "feet"),
  57779. default: true
  57780. },
  57781. {
  57782. name: "Macro",
  57783. height: math.unit(150, "feet")
  57784. },
  57785. ]
  57786. ))
  57787. characterMakers.push(() => makeCharacter(
  57788. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57789. {
  57790. front: {
  57791. height: math.unit(18, "feet"),
  57792. weight: math.unit(1975, "lb"),
  57793. name: "Front",
  57794. image: {
  57795. source: "./media/characters/draco/front.svg",
  57796. extra: 1325/1241,
  57797. bottom: 83/1408
  57798. }
  57799. },
  57800. back: {
  57801. height: math.unit(18, "feet"),
  57802. weight: math.unit(1975, "lb"),
  57803. name: "Back",
  57804. image: {
  57805. source: "./media/characters/draco/back.svg",
  57806. extra: 1332/1250,
  57807. bottom: 43/1375
  57808. }
  57809. },
  57810. dick: {
  57811. height: math.unit(7.5, "feet"),
  57812. name: "Dick",
  57813. image: {
  57814. source: "./media/characters/draco/dick.svg"
  57815. }
  57816. },
  57817. },
  57818. [
  57819. {
  57820. name: "Normal",
  57821. height: math.unit(18, "feet"),
  57822. default: true
  57823. },
  57824. ]
  57825. ))
  57826. characterMakers.push(() => makeCharacter(
  57827. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57828. {
  57829. front: {
  57830. height: math.unit(3.2, "meters"),
  57831. name: "Front",
  57832. image: {
  57833. source: "./media/characters/harriett/front.svg",
  57834. extra: 1966/1915,
  57835. bottom: 9/1975
  57836. }
  57837. },
  57838. },
  57839. [
  57840. {
  57841. name: "Normal",
  57842. height: math.unit(3.2, "meters"),
  57843. default: true
  57844. },
  57845. ]
  57846. ))
  57847. characterMakers.push(() => makeCharacter(
  57848. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57849. {
  57850. sitting: {
  57851. height: math.unit(0.8, "meter"),
  57852. name: "Sitting",
  57853. image: {
  57854. source: "./media/characters/serpentus/sitting.svg",
  57855. extra: 293/290,
  57856. bottom: 140/433
  57857. }
  57858. },
  57859. },
  57860. [
  57861. {
  57862. name: "Normal",
  57863. height: math.unit(0.8, "meter"),
  57864. default: true
  57865. },
  57866. ]
  57867. ))
  57868. characterMakers.push(() => makeCharacter(
  57869. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57870. {
  57871. front: {
  57872. height: math.unit(5.7174385736, "feet"),
  57873. name: "Front",
  57874. image: {
  57875. source: "./media/characters/nova-polecat/front.svg",
  57876. extra: 1317/1216,
  57877. bottom: 92/1409
  57878. }
  57879. },
  57880. },
  57881. [
  57882. {
  57883. name: "Normal",
  57884. height: math.unit(5.7174385736, "feet"),
  57885. default: true
  57886. },
  57887. ]
  57888. ))
  57889. characterMakers.push(() => makeCharacter(
  57890. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57891. {
  57892. front: {
  57893. height: math.unit(5 + 4/12, "feet"),
  57894. weight: math.unit(250, "lb"),
  57895. name: "Front",
  57896. image: {
  57897. source: "./media/characters/mook/front.svg",
  57898. extra: 1088/1037,
  57899. bottom: 132/1220
  57900. }
  57901. },
  57902. back: {
  57903. height: math.unit(5 + 1/12, "feet"),
  57904. weight: math.unit(250, "lb"),
  57905. name: "Back",
  57906. image: {
  57907. source: "./media/characters/mook/back.svg",
  57908. extra: 1184/905,
  57909. bottom: 96/1280
  57910. }
  57911. },
  57912. head: {
  57913. height: math.unit(1.85, "feet"),
  57914. name: "Head",
  57915. image: {
  57916. source: "./media/characters/mook/head.svg"
  57917. }
  57918. },
  57919. hand: {
  57920. height: math.unit(1.9, "feet"),
  57921. name: "Hand",
  57922. image: {
  57923. source: "./media/characters/mook/hand.svg"
  57924. }
  57925. },
  57926. palm: {
  57927. height: math.unit(1.84, "feet"),
  57928. name: "Palm",
  57929. image: {
  57930. source: "./media/characters/mook/palm.svg"
  57931. }
  57932. },
  57933. foot: {
  57934. height: math.unit(1.44, "feet"),
  57935. name: "Foot",
  57936. image: {
  57937. source: "./media/characters/mook/foot.svg"
  57938. }
  57939. },
  57940. sole: {
  57941. height: math.unit(1.44, "feet"),
  57942. name: "Sole",
  57943. image: {
  57944. source: "./media/characters/mook/sole.svg"
  57945. }
  57946. },
  57947. },
  57948. [
  57949. {
  57950. name: "Normal",
  57951. height: math.unit(5 + 4/12, "feet"),
  57952. default: true
  57953. },
  57954. {
  57955. name: "Big",
  57956. height: math.unit(12, "feet")
  57957. },
  57958. ]
  57959. ))
  57960. characterMakers.push(() => makeCharacter(
  57961. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57962. {
  57963. front: {
  57964. height: math.unit(6 + 10/12, "feet"),
  57965. weight: math.unit(233, "lb"),
  57966. name: "Front",
  57967. image: {
  57968. source: "./media/characters/kayla/front.svg",
  57969. extra: 1850/1775,
  57970. bottom: 65/1915
  57971. }
  57972. },
  57973. },
  57974. [
  57975. {
  57976. name: "Normal",
  57977. height: math.unit(6 + 10/12, "feet"),
  57978. default: true
  57979. },
  57980. {
  57981. name: "Amazonian",
  57982. height: math.unit(12 + 5/12, "feet")
  57983. },
  57984. {
  57985. name: "Mini Giantess",
  57986. height: math.unit(26, "feet")
  57987. },
  57988. {
  57989. name: "Giantess",
  57990. height: math.unit(200, "feet")
  57991. },
  57992. {
  57993. name: "Mega Giantess",
  57994. height: math.unit(2500, "feet")
  57995. },
  57996. {
  57997. name: "City Sized",
  57998. height: math.unit(50, "miles")
  57999. },
  58000. {
  58001. name: "Country Sized",
  58002. height: math.unit(500, "miles")
  58003. },
  58004. {
  58005. name: "Continent Sized",
  58006. height: math.unit(2500, "miles")
  58007. },
  58008. {
  58009. name: "Planet Sized",
  58010. height: math.unit(10000, "miles")
  58011. },
  58012. {
  58013. name: "Star Sized",
  58014. height: math.unit(5e6, "miles")
  58015. },
  58016. {
  58017. name: "Solar System Sized",
  58018. height: math.unit(125, "AU")
  58019. },
  58020. {
  58021. name: "Galaxy Sized",
  58022. height: math.unit(300e3, "lightyears")
  58023. },
  58024. {
  58025. name: "Universe Sized",
  58026. height: math.unit(200e9, "lightyears")
  58027. },
  58028. {
  58029. name: "Multiverse Sized",
  58030. height: math.unit(20, "exauniverses")
  58031. },
  58032. {
  58033. name: "Mother of Existence",
  58034. height: math.unit(1e6, "yottauniverses")
  58035. },
  58036. ]
  58037. ))
  58038. characterMakers.push(() => makeCharacter(
  58039. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58040. {
  58041. side: {
  58042. height: math.unit(9.5, "meters"),
  58043. name: "Side",
  58044. image: {
  58045. source: "./media/characters/kulve-ragnarok/side.svg",
  58046. extra: 364/326,
  58047. bottom: 50/414
  58048. }
  58049. },
  58050. },
  58051. [
  58052. {
  58053. name: "Normal",
  58054. height: math.unit(9.5, "meters"),
  58055. default: true
  58056. },
  58057. ]
  58058. ))
  58059. characterMakers.push(() => makeCharacter(
  58060. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58061. {
  58062. front: {
  58063. height: math.unit(8 + 9/12, "feet"),
  58064. name: "Front",
  58065. image: {
  58066. source: "./media/characters/atlas-goat/front.svg",
  58067. extra: 1462/1323,
  58068. bottom: 12/1474
  58069. }
  58070. },
  58071. },
  58072. [
  58073. {
  58074. name: "Normal",
  58075. height: math.unit(8 + 9/12, "feet"),
  58076. default: true
  58077. },
  58078. {
  58079. name: "Skyline",
  58080. height: math.unit(845, "feet")
  58081. },
  58082. {
  58083. name: "Orbital",
  58084. height: math.unit(93000, "miles")
  58085. },
  58086. {
  58087. name: "Constellation",
  58088. height: math.unit(27000, "lightyears")
  58089. },
  58090. ]
  58091. ))
  58092. characterMakers.push(() => makeCharacter(
  58093. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58094. {
  58095. side: {
  58096. height: math.unit(1.8, "meters"),
  58097. weight: math.unit(120, "kg"),
  58098. name: "Side",
  58099. image: {
  58100. source: "./media/characters/xie-ling/side.svg",
  58101. extra: 646/574,
  58102. bottom: 44/690
  58103. }
  58104. },
  58105. },
  58106. [
  58107. {
  58108. name: "Tiny",
  58109. height: math.unit(1.80, "meters")
  58110. },
  58111. {
  58112. name: "Small",
  58113. height: math.unit(6, "meters")
  58114. },
  58115. {
  58116. name: "Medium",
  58117. height: math.unit(15, "meters")
  58118. },
  58119. {
  58120. name: "Normal",
  58121. height: math.unit(30, "meters"),
  58122. default: true
  58123. },
  58124. {
  58125. name: "Above Normal",
  58126. height: math.unit(60, "meters")
  58127. },
  58128. {
  58129. name: "Big",
  58130. height: math.unit(220, "meters")
  58131. },
  58132. {
  58133. name: "Giant",
  58134. height: math.unit(2.2, "km")
  58135. },
  58136. {
  58137. name: "Macro",
  58138. height: math.unit(25, "km")
  58139. },
  58140. {
  58141. name: "Mega Macro",
  58142. height: math.unit(350, "km")
  58143. },
  58144. {
  58145. name: "Mega Macro+",
  58146. height: math.unit(5000, "km")
  58147. },
  58148. {
  58149. name: "Goddess",
  58150. height: math.unit(3, "multiverses")
  58151. },
  58152. ]
  58153. ))
  58154. characterMakers.push(() => makeCharacter(
  58155. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58156. {
  58157. frontSfw: {
  58158. height: math.unit(5 + 11/12, "feet"),
  58159. weight: math.unit(210, "lb"),
  58160. name: "Front",
  58161. image: {
  58162. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58163. extra: 1928/1821,
  58164. bottom: 45/1973
  58165. }
  58166. },
  58167. backSfw: {
  58168. height: math.unit(5 + 11/12, "feet"),
  58169. weight: math.unit(210, "lb"),
  58170. name: "Back",
  58171. image: {
  58172. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58173. extra: 1920/1813,
  58174. bottom: 34/1954
  58175. }
  58176. },
  58177. frontNsfw: {
  58178. height: math.unit(5 + 11/12, "feet"),
  58179. weight: math.unit(210, "lb"),
  58180. name: "Front (NSFW)",
  58181. image: {
  58182. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58183. extra: 1928/1821,
  58184. bottom: 45/1973
  58185. }
  58186. },
  58187. backNsfw: {
  58188. height: math.unit(5 + 11/12, "feet"),
  58189. weight: math.unit(210, "lb"),
  58190. name: "Back (NSFW)",
  58191. image: {
  58192. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58193. extra: 1920/1813,
  58194. bottom: 34/1954
  58195. }
  58196. },
  58197. },
  58198. [
  58199. {
  58200. name: "Normal",
  58201. height: math.unit(5 + 11/12, "feet"),
  58202. default: true
  58203. },
  58204. {
  58205. name: "Goddess",
  58206. height: math.unit(20 + 3/12, "feet")
  58207. },
  58208. {
  58209. name: "Breaker of Man",
  58210. height: math.unit(329 + 9/12, "feet")
  58211. },
  58212. {
  58213. name: "Solar Justice",
  58214. height: math.unit(0.6, "solarradii")
  58215. },
  58216. {
  58217. name: "She Who Judges",
  58218. height: math.unit(1, "universe")
  58219. },
  58220. ]
  58221. ))
  58222. characterMakers.push(() => makeCharacter(
  58223. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58224. {
  58225. casual_front: {
  58226. height: math.unit(6 + 1/12, "feet"),
  58227. weight: math.unit(190, "lb"),
  58228. preyCapacity: math.unit(1, "people"),
  58229. name: "Front",
  58230. image: {
  58231. source: "./media/characters/managarmr/casual-front.svg",
  58232. extra: 411/381,
  58233. bottom: 15/426
  58234. },
  58235. extraAttributes: {
  58236. "pawSize": {
  58237. name: "Paw Size",
  58238. power: 1,
  58239. type: "length",
  58240. base: math.unit(0.2, "meters")
  58241. },
  58242. },
  58243. form: "casual",
  58244. },
  58245. casual_back: {
  58246. height: math.unit(6 + 1/12, "feet"),
  58247. weight: math.unit(190, "lb"),
  58248. preyCapacity: math.unit(1, "people"),
  58249. name: "Back",
  58250. image: {
  58251. source: "./media/characters/managarmr/casual-back.svg",
  58252. extra: 413/383,
  58253. bottom: 13/426
  58254. },
  58255. extraAttributes: {
  58256. "pawSize": {
  58257. name: "Paw Size",
  58258. power: 1,
  58259. type: "length",
  58260. base: math.unit(0.2, "meters")
  58261. },
  58262. },
  58263. form: "casual",
  58264. },
  58265. base_front: {
  58266. height: math.unit(7, "feet"),
  58267. weight: math.unit(210, "lb"),
  58268. preyCapacity: math.unit(2, "people"),
  58269. name: "Front",
  58270. image: {
  58271. source: "./media/characters/managarmr/base-front.svg",
  58272. extra: 580/485,
  58273. bottom: 32/612
  58274. },
  58275. extraAttributes: {
  58276. "wingspan": {
  58277. name: "Wingspan",
  58278. power: 1,
  58279. type: "length",
  58280. base: math.unit(4, "meters")
  58281. },
  58282. "pawSize": {
  58283. name: "Paw Size",
  58284. power: 1,
  58285. type: "length",
  58286. base: math.unit(0.2, "meters")
  58287. },
  58288. },
  58289. form: "base",
  58290. },
  58291. "true-divine_front": {
  58292. height: math.unit(40, "feet"),
  58293. weight: math.unit(39000, "lb"),
  58294. preyCapacity: math.unit(375, "people"),
  58295. name: "Front",
  58296. image: {
  58297. source: "./media/characters/managarmr/true-divine-front.svg",
  58298. extra: 725/573,
  58299. bottom: 120/845
  58300. },
  58301. extraAttributes: {
  58302. "wingspan": {
  58303. name: "Wingspan",
  58304. power: 1,
  58305. type: "length",
  58306. base: math.unit(20, "meters")
  58307. },
  58308. "pawSize": {
  58309. name: "Paw Size",
  58310. power: 1,
  58311. type: "length",
  58312. base: math.unit(1.5, "meters")
  58313. },
  58314. },
  58315. form: "true-divine",
  58316. },
  58317. },
  58318. [
  58319. {
  58320. name: "Normal",
  58321. height: math.unit(6 + 1/12, "feet"),
  58322. form: "casual",
  58323. default: true
  58324. },
  58325. {
  58326. name: "Normal",
  58327. height: math.unit(7, "feet"),
  58328. form: "base",
  58329. default: true
  58330. },
  58331. ],
  58332. {
  58333. "casual": {
  58334. name: "Casual",
  58335. default: true
  58336. },
  58337. "base": {
  58338. name: "Base",
  58339. },
  58340. "true-divine": {
  58341. name: "True Divine",
  58342. },
  58343. }
  58344. ))
  58345. characterMakers.push(() => makeCharacter(
  58346. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58347. {
  58348. front: {
  58349. height: math.unit(1.8, "meters"),
  58350. weight: math.unit(110, "kg"),
  58351. name: "Front",
  58352. image: {
  58353. source: "./media/characters/mystra/front.svg",
  58354. extra: 529/442,
  58355. bottom: 31/560
  58356. }
  58357. },
  58358. frontLewd: {
  58359. height: math.unit(1.8, "meters"),
  58360. weight: math.unit(110, "kg"),
  58361. name: "Front (Lewd)",
  58362. image: {
  58363. source: "./media/characters/mystra/front-lewd.svg",
  58364. extra: 529/442,
  58365. bottom: 31/560
  58366. }
  58367. },
  58368. head: {
  58369. height: math.unit(1.63, "feet"),
  58370. name: "Head",
  58371. image: {
  58372. source: "./media/characters/mystra/head.svg"
  58373. }
  58374. },
  58375. paw: {
  58376. height: math.unit(1.9, "feet"),
  58377. name: "Paw",
  58378. image: {
  58379. source: "./media/characters/mystra/paw.svg"
  58380. }
  58381. },
  58382. },
  58383. [
  58384. {
  58385. name: "Incognito",
  58386. height: math.unit(2.3, "meters")
  58387. },
  58388. {
  58389. name: "Small Macro",
  58390. height: math.unit(300, "meters")
  58391. },
  58392. {
  58393. name: "Small Mega",
  58394. height: math.unit(2, "km")
  58395. },
  58396. {
  58397. name: "Mega",
  58398. height: math.unit(30, "km")
  58399. },
  58400. {
  58401. name: "Small Giga",
  58402. height: math.unit(100, "km")
  58403. },
  58404. {
  58405. name: "Giga",
  58406. height: math.unit(1000, "km"),
  58407. default: true
  58408. },
  58409. {
  58410. name: "Continental",
  58411. height: math.unit(5000, "km")
  58412. },
  58413. {
  58414. name: "Terra",
  58415. height: math.unit(20000, "km")
  58416. },
  58417. {
  58418. name: "Solar",
  58419. height: math.unit(2e6, "km")
  58420. },
  58421. {
  58422. name: "Galactic",
  58423. height: math.unit(528502, "lightyears")
  58424. },
  58425. {
  58426. name: "Universal",
  58427. height: math.unit(20, "universes")
  58428. },
  58429. ]
  58430. ))
  58431. characterMakers.push(() => makeCharacter(
  58432. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58433. {
  58434. front: {
  58435. height: math.unit(2, "meters"),
  58436. weight: math.unit(140, "kg"),
  58437. name: "Front",
  58438. image: {
  58439. source: "./media/characters/caleb/front.svg",
  58440. extra: 873/817,
  58441. bottom: 47/920
  58442. }
  58443. },
  58444. back: {
  58445. height: math.unit(2, "meters"),
  58446. weight: math.unit(140, "kg"),
  58447. name: "Back",
  58448. image: {
  58449. source: "./media/characters/caleb/back.svg",
  58450. extra: 877/828,
  58451. bottom: 24/901
  58452. }
  58453. },
  58454. snakeTail: {
  58455. height: math.unit(1.44, "feet"),
  58456. name: "Snake Tail",
  58457. image: {
  58458. source: "./media/characters/caleb/snake-tail.svg"
  58459. }
  58460. },
  58461. dick: {
  58462. height: math.unit(2.6, "feet"),
  58463. name: "Dick",
  58464. image: {
  58465. source: "./media/characters/caleb/dick.svg"
  58466. }
  58467. },
  58468. },
  58469. [
  58470. {
  58471. name: "Incognito",
  58472. height: math.unit(3, "meters")
  58473. },
  58474. {
  58475. name: "Home Size",
  58476. height: math.unit(200, "meters"),
  58477. default: true
  58478. },
  58479. {
  58480. name: "Macro",
  58481. height: math.unit(500, "meters")
  58482. },
  58483. {
  58484. name: "Big Macro",
  58485. height: math.unit(5, "km")
  58486. },
  58487. {
  58488. name: "Giga",
  58489. height: math.unit(250, "km")
  58490. },
  58491. {
  58492. name: "Giga+",
  58493. height: math.unit(5000, "km")
  58494. },
  58495. {
  58496. name: "Small Terra",
  58497. height: math.unit(35e3, "km")
  58498. },
  58499. {
  58500. name: "Terra",
  58501. height: math.unit(2e6, "km")
  58502. },
  58503. {
  58504. name: "Terra+",
  58505. height: math.unit(1.5e6, "km")
  58506. },
  58507. ]
  58508. ))
  58509. characterMakers.push(() => makeCharacter(
  58510. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58511. {
  58512. front: {
  58513. height: math.unit(2, "meters"),
  58514. weight: math.unit(120, "kg"),
  58515. name: "Front",
  58516. image: {
  58517. source: "./media/characters/gilirian/front.svg",
  58518. extra: 805/737,
  58519. bottom: 13/818
  58520. }
  58521. },
  58522. side: {
  58523. height: math.unit(2, "meters"),
  58524. weight: math.unit(120, "kg"),
  58525. name: "Side",
  58526. image: {
  58527. source: "./media/characters/gilirian/side.svg",
  58528. extra: 810/746,
  58529. bottom: 6/816
  58530. }
  58531. },
  58532. back: {
  58533. height: math.unit(2, "meters"),
  58534. weight: math.unit(120, "kg"),
  58535. name: "Back",
  58536. image: {
  58537. source: "./media/characters/gilirian/back.svg",
  58538. extra: 815/745,
  58539. bottom: 15/830
  58540. }
  58541. },
  58542. frontNsfw: {
  58543. height: math.unit(2, "meters"),
  58544. weight: math.unit(120, "kg"),
  58545. name: "Front (NSFW)",
  58546. image: {
  58547. source: "./media/characters/gilirian/front-nsfw.svg",
  58548. extra: 805/737,
  58549. bottom: 13/818
  58550. }
  58551. },
  58552. sideNsfw: {
  58553. height: math.unit(2, "meters"),
  58554. weight: math.unit(120, "kg"),
  58555. name: "Side (NSFW)",
  58556. image: {
  58557. source: "./media/characters/gilirian/side-nsfw.svg",
  58558. extra: 810/746,
  58559. bottom: 6/816
  58560. }
  58561. },
  58562. },
  58563. [
  58564. {
  58565. name: "Incognito",
  58566. height: math.unit(2, "meters"),
  58567. default: true
  58568. },
  58569. {
  58570. name: "Macro",
  58571. height: math.unit(250, "meters")
  58572. },
  58573. {
  58574. name: "Big Macro",
  58575. height: math.unit(1500, "meters")
  58576. },
  58577. {
  58578. name: "Mega",
  58579. height: math.unit(40, "km")
  58580. },
  58581. {
  58582. name: "Giga",
  58583. height: math.unit(300, "km")
  58584. },
  58585. {
  58586. name: "Extra Giga",
  58587. height: math.unit(5000, "km")
  58588. },
  58589. {
  58590. name: "Small Terra",
  58591. height: math.unit(10e3, "km")
  58592. },
  58593. {
  58594. name: "Terra",
  58595. height: math.unit(3e5, "km")
  58596. },
  58597. {
  58598. name: "Galactic",
  58599. height: math.unit(369950, "lightyears")
  58600. },
  58601. ]
  58602. ))
  58603. characterMakers.push(() => makeCharacter(
  58604. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58605. {
  58606. front: {
  58607. height: math.unit(2.5, "meters"),
  58608. weight: math.unit(230, "lb"),
  58609. name: "Front",
  58610. image: {
  58611. source: "./media/characters/tarken/front.svg",
  58612. extra: 764/720,
  58613. bottom: 49/813
  58614. }
  58615. },
  58616. back: {
  58617. height: math.unit(2.5, "meters"),
  58618. weight: math.unit(230, "lb"),
  58619. name: "Back",
  58620. image: {
  58621. source: "./media/characters/tarken/back.svg",
  58622. extra: 756/720,
  58623. bottom: 35/791
  58624. }
  58625. },
  58626. frontNsfw: {
  58627. height: math.unit(2.5, "meters"),
  58628. weight: math.unit(230, "lb"),
  58629. name: "Front (NSFW)",
  58630. image: {
  58631. source: "./media/characters/tarken/front-nsfw.svg",
  58632. extra: 764/720,
  58633. bottom: 49/813
  58634. }
  58635. },
  58636. backNsfw: {
  58637. height: math.unit(2.5, "meters"),
  58638. weight: math.unit(230, "lb"),
  58639. name: "Back (NSFW)",
  58640. image: {
  58641. source: "./media/characters/tarken/back-nsfw.svg",
  58642. extra: 756/720,
  58643. bottom: 35/791
  58644. }
  58645. },
  58646. head: {
  58647. height: math.unit(2.22, "feet"),
  58648. name: "Head",
  58649. image: {
  58650. source: "./media/characters/tarken/head.svg"
  58651. }
  58652. },
  58653. tail: {
  58654. height: math.unit(5.25, "feet"),
  58655. name: "Tail",
  58656. image: {
  58657. source: "./media/characters/tarken/tail.svg"
  58658. }
  58659. },
  58660. dick: {
  58661. height: math.unit(1.95, "feet"),
  58662. name: "Dick",
  58663. image: {
  58664. source: "./media/characters/tarken/dick.svg"
  58665. }
  58666. },
  58667. hand: {
  58668. height: math.unit(1.78, "feet"),
  58669. name: "Hand",
  58670. image: {
  58671. source: "./media/characters/tarken/hand.svg"
  58672. }
  58673. },
  58674. beam: {
  58675. height: math.unit(1.5, "feet"),
  58676. name: "Beam",
  58677. image: {
  58678. source: "./media/characters/tarken/beam.svg"
  58679. }
  58680. },
  58681. },
  58682. [
  58683. {
  58684. name: "Original Size",
  58685. height: math.unit(2.5, "meters")
  58686. },
  58687. {
  58688. name: "Macro",
  58689. height: math.unit(150, "meters"),
  58690. default: true
  58691. },
  58692. {
  58693. name: "Macro+",
  58694. height: math.unit(300, "meters")
  58695. },
  58696. {
  58697. name: "Mega",
  58698. height: math.unit(2, "km")
  58699. },
  58700. {
  58701. name: "Mega+",
  58702. height: math.unit(35, "km")
  58703. },
  58704.  {
  58705. name: "Mega++",
  58706. height: math.unit(60, "km")
  58707. },
  58708. {
  58709. name: "Giga",
  58710. height: math.unit(200, "km")
  58711. },
  58712. {
  58713. name: "Giga+",
  58714. height: math.unit(2500, "km")
  58715. },
  58716. {
  58717. name: "Giga++",
  58718. height: math.unit(6600, "km")
  58719. },
  58720. {
  58721. name: "Terra",
  58722. height: math.unit(20000, "km")
  58723. },
  58724. {
  58725. name: "Terra+",
  58726. height: math.unit(300000, "km")
  58727. },
  58728. ]
  58729. ))
  58730. characterMakers.push(() => makeCharacter(
  58731. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58732. {
  58733. magpie_dressed: {
  58734. height: math.unit(1.7, "meters"),
  58735. weight: math.unit(70, "kg"),
  58736. name: "Dressed",
  58737. image: {
  58738. source: "./media/characters/otreus/magpie-dressed.svg",
  58739. extra: 691/672,
  58740. bottom: 116/807
  58741. },
  58742. form: "magpie",
  58743. default: true
  58744. },
  58745. magpie_nude: {
  58746. height: math.unit(1.7, "meters"),
  58747. weight: math.unit(70, "kg"),
  58748. name: "Nude",
  58749. image: {
  58750. source: "./media/characters/otreus/magpie-nude.svg",
  58751. extra: 691/672,
  58752. bottom: 116/807
  58753. },
  58754. form: "magpie",
  58755. },
  58756. magpie_dressedLewd: {
  58757. height: math.unit(1.7, "meters"),
  58758. weight: math.unit(70, "kg"),
  58759. name: "Dressed (Lewd)",
  58760. image: {
  58761. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58762. extra: 691/672,
  58763. bottom: 116/807
  58764. },
  58765. form: "magpie",
  58766. },
  58767. magpie_nudeLewd: {
  58768. height: math.unit(1.7, "meters"),
  58769. weight: math.unit(70, "kg"),
  58770. name: "Nude (Lewd)",
  58771. image: {
  58772. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58773. extra: 691/672,
  58774. bottom: 116/807
  58775. },
  58776. form: "magpie",
  58777. },
  58778. magpie_leftFoot: {
  58779. height: math.unit(1.58, "feet"),
  58780. name: "Left Foot",
  58781. image: {
  58782. source: "./media/characters/otreus/magpie-left-foot.svg"
  58783. },
  58784. form: "magpie",
  58785. },
  58786. magpie_rightFoot: {
  58787. height: math.unit(1.58, "feet"),
  58788. name: "Right Foot",
  58789. image: {
  58790. source: "./media/characters/otreus/magpie-right-foot.svg"
  58791. },
  58792. form: "magpie",
  58793. },
  58794. magpie_wingspan: {
  58795. height: math.unit(2, "meters"),
  58796. weight: math.unit(70, "kg"),
  58797. name: "Wingspan",
  58798. image: {
  58799. source: "./media/characters/otreus/magpie-wingspan.svg"
  58800. },
  58801. extraAttributes: {
  58802. "wingspan": {
  58803. name: "Wingspan",
  58804. power: 1,
  58805. type: "length",
  58806. base: math.unit(3.35, "meters")
  58807. },
  58808. },
  58809. form: "magpie",
  58810. },
  58811. hippogriff_dressed: {
  58812. height: math.unit(1.7, "meters"),
  58813. weight: math.unit(70, "kg"),
  58814. name: "Dressed",
  58815. image: {
  58816. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58817. extra: 710/689,
  58818. bottom: 67/777
  58819. },
  58820. form: "hippogriff",
  58821. default: true
  58822. },
  58823. hippogriff_nude: {
  58824. height: math.unit(1.7, "meters"),
  58825. weight: math.unit(70, "kg"),
  58826. name: "Nude",
  58827. image: {
  58828. source: "./media/characters/otreus/hippogriff-nude.svg",
  58829. extra: 710/689,
  58830. bottom: 67/777
  58831. },
  58832. form: "hippogriff",
  58833. },
  58834. hippogriff_dressedLewd: {
  58835. height: math.unit(1.7, "meters"),
  58836. weight: math.unit(70, "kg"),
  58837. name: "Dressed (Lewd)",
  58838. image: {
  58839. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58840. extra: 710/689,
  58841. bottom: 67/777
  58842. },
  58843. form: "hippogriff",
  58844. },
  58845. hippogriff_nudeLewd: {
  58846. height: math.unit(1.7, "meters"),
  58847. weight: math.unit(70, "kg"),
  58848. name: "Nude (Lewd)",
  58849. image: {
  58850. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58851. extra: 710/689,
  58852. bottom: 67/777
  58853. },
  58854. form: "hippogriff",
  58855. },
  58856. },
  58857. [
  58858. {
  58859. name: "Original Size",
  58860. height: math.unit(1.7, "meters"),
  58861. allForms: true
  58862. },
  58863. {
  58864. name: "Incognito Size",
  58865. height: math.unit(2, "meters"),
  58866. allForms: true
  58867. },
  58868. {
  58869. name: "Mega",
  58870. height: math.unit(2, "km"),
  58871. allForms: true
  58872. },
  58873. {
  58874. name: "Mega+",
  58875. height: math.unit(40, "km"),
  58876. allForms: true
  58877. },
  58878. {
  58879. name: "Giga",
  58880. height: math.unit(250, "km"),
  58881. allForms: true
  58882. },
  58883. {
  58884. name: "Giga+",
  58885. height: math.unit(3000, "km"),
  58886. allForms: true
  58887. },
  58888. {
  58889. name: "Terra",
  58890. height: math.unit(20000, "km"),
  58891. allForms: true
  58892. },
  58893. {
  58894. name: "Solar (Home Size)",
  58895. height: math.unit(3e6, "km"),
  58896. allForms: true,
  58897. default: true
  58898. },
  58899. ],
  58900. {
  58901. "magpie": {
  58902. name: "Magpie",
  58903. default: true
  58904. },
  58905. "hippogriff": {
  58906. name: "Hippogriff",
  58907. },
  58908. }
  58909. ))
  58910. characterMakers.push(() => makeCharacter(
  58911. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58912. {
  58913. frontDressed: {
  58914. height: math.unit(1.8, "meters"),
  58915. weight: math.unit(90, "kg"),
  58916. name: "Front (Dressed)",
  58917. image: {
  58918. source: "./media/characters/thalia/front-dressed.svg",
  58919. extra: 478/402,
  58920. bottom: 55/533
  58921. }
  58922. },
  58923. backDressed: {
  58924. height: math.unit(1.8, "meters"),
  58925. weight: math.unit(90, "kg"),
  58926. name: "Back (Dressed)",
  58927. image: {
  58928. source: "./media/characters/thalia/back-dressed.svg",
  58929. extra: 500/424,
  58930. bottom: 15/515
  58931. }
  58932. },
  58933. frontNude: {
  58934. height: math.unit(1.8, "meters"),
  58935. weight: math.unit(90, "kg"),
  58936. name: "Front (Nude)",
  58937. image: {
  58938. source: "./media/characters/thalia/front-nude.svg",
  58939. extra: 478/402,
  58940. bottom: 55/533
  58941. }
  58942. },
  58943. backNude: {
  58944. height: math.unit(1.8, "meters"),
  58945. weight: math.unit(90, "kg"),
  58946. name: "Back (Nude)",
  58947. image: {
  58948. source: "./media/characters/thalia/back-nude.svg",
  58949. extra: 500/424,
  58950. bottom: 15/515
  58951. }
  58952. },
  58953. },
  58954. [
  58955. {
  58956. name: "Incognito",
  58957. height: math.unit(3, "meters")
  58958. },
  58959. {
  58960. name: "Macro",
  58961. height: math.unit(500, "meters")
  58962. },
  58963. {
  58964. name: "Mega",
  58965. height: math.unit(5, "km")
  58966. },
  58967. {
  58968. name: "Mega+",
  58969. height: math.unit(30, "km")
  58970. },
  58971. {
  58972. name: "Giga",
  58973. height: math.unit(350, "km")
  58974. },
  58975. {
  58976. name: "Giga+",
  58977. height: math.unit(4000, "km")
  58978. },
  58979. {
  58980. name: "Terra",
  58981. height: math.unit(35000, "km")
  58982. },
  58983. {
  58984. name: "Original Size",
  58985. height: math.unit(130000, "km")
  58986. },
  58987. {
  58988. name: "Solar (Home Size)",
  58989. height: math.unit(4e6, "km"),
  58990. default: true
  58991. },
  58992. ]
  58993. ))
  58994. characterMakers.push(() => makeCharacter(
  58995. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58996. {
  58997. front: {
  58998. height: math.unit(1.8, "meters"),
  58999. weight: math.unit(95, "kg"),
  59000. name: "Front",
  59001. image: {
  59002. source: "./media/characters/shango/front.svg",
  59003. extra: 1925/1774,
  59004. bottom: 67/1992
  59005. }
  59006. },
  59007. back: {
  59008. height: math.unit(1.8, "meters"),
  59009. weight: math.unit(95, "kg"),
  59010. name: "Back",
  59011. image: {
  59012. source: "./media/characters/shango/back.svg",
  59013. extra: 1915/1766,
  59014. bottom: 52/1967
  59015. }
  59016. },
  59017. frontLewd: {
  59018. height: math.unit(1.8, "meters"),
  59019. weight: math.unit(95, "kg"),
  59020. name: "Front (Lewd)",
  59021. image: {
  59022. source: "./media/characters/shango/front-lewd.svg",
  59023. extra: 1925/1774,
  59024. bottom: 67/1992
  59025. }
  59026. },
  59027. backLewd: {
  59028. height: math.unit(1.8, "meters"),
  59029. weight: math.unit(95, "kg"),
  59030. name: "Back (Lewd)",
  59031. image: {
  59032. source: "./media/characters/shango/back-lewd.svg",
  59033. extra: 1915/1766,
  59034. bottom: 52/1967
  59035. }
  59036. },
  59037. maw: {
  59038. height: math.unit(1.64, "feet"),
  59039. name: "Maw",
  59040. image: {
  59041. source: "./media/characters/shango/maw.svg"
  59042. }
  59043. },
  59044. dick: {
  59045. height: math.unit(2.14, "feet"),
  59046. name: "Dick",
  59047. image: {
  59048. source: "./media/characters/shango/dick.svg"
  59049. }
  59050. },
  59051. },
  59052. [
  59053. {
  59054. name: "Incognito",
  59055. height: math.unit(1.8, "meters")
  59056. },
  59057. {
  59058. name: "Home Size",
  59059. height: math.unit(60, "meters"),
  59060. default: true
  59061. },
  59062. {
  59063. name: "Macro",
  59064. height: math.unit(450, "meters")
  59065. },
  59066. {
  59067. name: "Mega",
  59068. height: math.unit(6, "km")
  59069. },
  59070. {
  59071. name: "Mega+",
  59072. height: math.unit(35, "km")
  59073. },
  59074. {
  59075. name: "Giga",
  59076. height: math.unit(500, "km")
  59077. },
  59078. {
  59079. name: "Giga+",
  59080. height: math.unit(5000, "km")
  59081. },
  59082. {
  59083. name: "Terra",
  59084. height: math.unit(60000, "km")
  59085. },
  59086. {
  59087. name: "Terra+",
  59088. height: math.unit(400000, "km")
  59089. },
  59090. ]
  59091. ))
  59092. characterMakers.push(() => makeCharacter(
  59093. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59094. {
  59095. front: {
  59096. height: math.unit(2, "meters"),
  59097. weight: math.unit(95, "kg"),
  59098. name: "Front",
  59099. image: {
  59100. source: "./media/characters/osiris-gryphon/front.svg",
  59101. extra: 1508/1313,
  59102. bottom: 87/1595
  59103. }
  59104. },
  59105. back: {
  59106. height: math.unit(2, "meters"),
  59107. weight: math.unit(95, "kg"),
  59108. name: "Back",
  59109. image: {
  59110. source: "./media/characters/osiris-gryphon/back.svg",
  59111. extra: 1436/1309,
  59112. bottom: 64/1500
  59113. }
  59114. },
  59115. frontLewd: {
  59116. height: math.unit(2, "meters"),
  59117. weight: math.unit(95, "kg"),
  59118. name: "Front-lewd",
  59119. image: {
  59120. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59121. extra: 1508/1313,
  59122. bottom: 87/1595
  59123. }
  59124. },
  59125. wing: {
  59126. height: math.unit(6.3333, "feet"),
  59127. name: "Wing",
  59128. image: {
  59129. source: "./media/characters/osiris-gryphon/wing.svg"
  59130. }
  59131. },
  59132. },
  59133. [
  59134. {
  59135. name: "Incognito",
  59136. height: math.unit(2, "meters")
  59137. },
  59138. {
  59139. name: "Home Size",
  59140. height: math.unit(30, "meters"),
  59141. default: true
  59142. },
  59143. {
  59144. name: "Macro",
  59145. height: math.unit(100, "meters")
  59146. },
  59147. {
  59148. name: "Macro+",
  59149. height: math.unit(350, "meters")
  59150. },
  59151. {
  59152. name: "Mega",
  59153. height: math.unit(40, "km")
  59154. },
  59155. {
  59156. name: "Giga",
  59157. height: math.unit(300, "km")
  59158. },
  59159. {
  59160. name: "Giga+",
  59161. height: math.unit(2000, "km")
  59162. },
  59163. {
  59164. name: "Terra",
  59165. height: math.unit(30000, "km")
  59166. },
  59167. ]
  59168. ))
  59169. characterMakers.push(() => makeCharacter(
  59170. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59171. {
  59172. front: {
  59173. height: math.unit(2.5, "meters"),
  59174. weight: math.unit(200, "kg"),
  59175. name: "Front",
  59176. image: {
  59177. source: "./media/characters/atlas-dragon/front.svg",
  59178. extra: 745/462,
  59179. bottom: 36/781
  59180. }
  59181. },
  59182. back: {
  59183. height: math.unit(2.5, "meters"),
  59184. weight: math.unit(200, "kg"),
  59185. name: "Back",
  59186. image: {
  59187. source: "./media/characters/atlas-dragon/back.svg",
  59188. extra: 848/822,
  59189. bottom: 57/905
  59190. }
  59191. },
  59192. frontLewd: {
  59193. height: math.unit(2.5, "meters"),
  59194. weight: math.unit(200, "kg"),
  59195. name: "Front (Lewd)",
  59196. image: {
  59197. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59198. extra: 745/462,
  59199. bottom: 36/781
  59200. }
  59201. },
  59202. backLewd: {
  59203. height: math.unit(2.5, "meters"),
  59204. weight: math.unit(200, "kg"),
  59205. name: "Back (Lewd)",
  59206. image: {
  59207. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59208. extra: 848/822,
  59209. bottom: 57/905
  59210. }
  59211. },
  59212. },
  59213. [
  59214. {
  59215. name: "Incognito",
  59216. height: math.unit(2.5, "meters")
  59217. },
  59218. {
  59219. name: "Small Macro",
  59220. height: math.unit(50, "meters")
  59221. },
  59222. {
  59223. name: "Macro",
  59224. height: math.unit(350, "meters")
  59225. },
  59226. {
  59227. name: "Mega",
  59228. height: math.unit(5.5, "kilometers")
  59229. },
  59230. {
  59231. name: "Mega+",
  59232. height: math.unit(50, "km")
  59233. },
  59234. {
  59235. name: "Giga",
  59236. height: math.unit(350, "km")
  59237. },
  59238. {
  59239. name: "Giga+",
  59240. height: math.unit(2000, "km")
  59241. },
  59242. {
  59243. name: "Giga++",
  59244. height: math.unit(6500, "km")
  59245. },
  59246. {
  59247. name: "Terra",
  59248. height: math.unit(30000, "km")
  59249. },
  59250. {
  59251. name: "Terra+",
  59252. height: math.unit(250000, "km")
  59253. },
  59254. {
  59255. name: "True Size",
  59256. height: math.unit(100, "multiverses"),
  59257. default: true
  59258. },
  59259. ]
  59260. ))
  59261. characterMakers.push(() => makeCharacter(
  59262. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59263. {
  59264. front: {
  59265. height: math.unit(1.8, "m"),
  59266. weight: math.unit(120, "kg"),
  59267. name: "Front",
  59268. image: {
  59269. source: "./media/characters/chey/front.svg",
  59270. extra: 1359/1270,
  59271. bottom: 18/1377
  59272. }
  59273. },
  59274. arm: {
  59275. height: math.unit(2.05, "feet"),
  59276. name: "Arm",
  59277. image: {
  59278. source: "./media/characters/chey/arm.svg"
  59279. }
  59280. },
  59281. head: {
  59282. height: math.unit(1.89, "feet"),
  59283. name: "Head",
  59284. image: {
  59285. source: "./media/characters/chey/head.svg"
  59286. }
  59287. },
  59288. },
  59289. [
  59290. {
  59291. name: "Original Size",
  59292. height: math.unit(5, "cm")
  59293. },
  59294. {
  59295. name: "Incognito Size",
  59296. height: math.unit(2.4, "m")
  59297. },
  59298. {
  59299. name: "Home Size",
  59300. height: math.unit(200, "meters"),
  59301. default: true
  59302. },
  59303. {
  59304. name: "Mega",
  59305. height: math.unit(2, "km")
  59306. },
  59307. {
  59308. name: "Giga (Preferred Size)",
  59309. height: math.unit(2000, "km")
  59310. },
  59311. {
  59312. name: "Giga+",
  59313. height: math.unit(6000, "km")
  59314. },
  59315. {
  59316. name: "Terra",
  59317. height: math.unit(17000, "km")
  59318. },
  59319. {
  59320. name: "Terra+",
  59321. height: math.unit(75000, "km")
  59322. },
  59323. {
  59324. name: "Terra++",
  59325. height: math.unit(225000, "km")
  59326. },
  59327. ]
  59328. ))
  59329. characterMakers.push(() => makeCharacter(
  59330. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59331. {
  59332. side: {
  59333. height: math.unit(7.8, "meters"),
  59334. name: "Side",
  59335. image: {
  59336. source: "./media/characters/ragnarok/side.svg",
  59337. extra: 725/621,
  59338. bottom: 72/797
  59339. }
  59340. },
  59341. },
  59342. [
  59343. {
  59344. name: "Normal",
  59345. height: math.unit(7.8, "meters"),
  59346. default: true
  59347. },
  59348. ]
  59349. ))
  59350. characterMakers.push(() => makeCharacter(
  59351. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59352. {
  59353. hyena_front: {
  59354. height: math.unit(2.1, "meters"),
  59355. weight: math.unit(110, "kg"),
  59356. name: "Front",
  59357. image: {
  59358. source: "./media/characters/nima/hyena-front.svg",
  59359. extra: 1904/1796,
  59360. bottom: 67/1971
  59361. },
  59362. form: "hyena",
  59363. },
  59364. hyena_back: {
  59365. height: math.unit(2.1, "meters"),
  59366. weight: math.unit(110, "kg"),
  59367. name: "Back",
  59368. image: {
  59369. source: "./media/characters/nima/hyena-back.svg",
  59370. extra: 1964/1884,
  59371. bottom: 35/1999
  59372. },
  59373. form: "hyena",
  59374. },
  59375. shark_front: {
  59376. height: math.unit(1.95, "meters"),
  59377. weight: math.unit(110, "kg"),
  59378. name: "Front",
  59379. image: {
  59380. source: "./media/characters/nima/shark-front.svg",
  59381. extra: 2238/2013,
  59382. bottom: 0/223
  59383. },
  59384. form: "shark",
  59385. },
  59386. paw: {
  59387. height: math.unit(1, "feet"),
  59388. name: "Paw",
  59389. image: {
  59390. source: "./media/characters/nima/paw.svg"
  59391. }
  59392. },
  59393. circlet: {
  59394. height: math.unit(0.3, "feet"),
  59395. name: "Circlet",
  59396. image: {
  59397. source: "./media/characters/nima/circlet.svg"
  59398. }
  59399. },
  59400. necklace: {
  59401. height: math.unit(1.2, "feet"),
  59402. name: "Necklace",
  59403. image: {
  59404. source: "./media/characters/nima/necklace.svg"
  59405. }
  59406. },
  59407. bracelet: {
  59408. height: math.unit(0.51, "feet"),
  59409. name: "Bracelet",
  59410. image: {
  59411. source: "./media/characters/nima/bracelet.svg"
  59412. }
  59413. },
  59414. armband: {
  59415. height: math.unit(1.3, "feet"),
  59416. name: "Armband",
  59417. image: {
  59418. source: "./media/characters/nima/armband.svg"
  59419. }
  59420. },
  59421. },
  59422. [
  59423. {
  59424. name: "Incognito",
  59425. height: math.unit(2.1, "meters"),
  59426. allForms: true
  59427. },
  59428. {
  59429. name: "Small Macro",
  59430. height: math.unit(50, "meters"),
  59431. allForms: true
  59432. },
  59433. {
  59434. name: "Macro",
  59435. height: math.unit(200, "meters"),
  59436. allForms: true
  59437. },
  59438. {
  59439. name: "Mega",
  59440. height: math.unit(2.5, "km"),
  59441. allForms: true
  59442. },
  59443. {
  59444. name: "Mega+",
  59445. height: math.unit(30, "km"),
  59446. allForms: true
  59447. },
  59448. {
  59449. name: "Giga (Home Size)",
  59450. height: math.unit(400, "km"),
  59451. allForms: true,
  59452. default: true
  59453. },
  59454. {
  59455. name: "Giga+",
  59456. height: math.unit(2500, "km"),
  59457. allForms: true
  59458. },
  59459. {
  59460. name: "Giga++",
  59461. height: math.unit(8000, "km"),
  59462. allForms: true
  59463. },
  59464. {
  59465. name: "Terra",
  59466. height: math.unit(20000, "km"),
  59467. allForms: true
  59468. },
  59469. {
  59470. name: "Terra+",
  59471. height: math.unit(70000, "km"),
  59472. allForms: true
  59473. },
  59474. {
  59475. name: "Terra++",
  59476. height: math.unit(600000, "km"),
  59477. allForms: true
  59478. },
  59479. {
  59480. name: "Galactic",
  59481. height: math.unit(40, "galaxies"),
  59482. allForms: true
  59483. },
  59484. {
  59485. name: "Universal",
  59486. height: math.unit(40, "universes"),
  59487. allForms: true
  59488. },
  59489. ],
  59490. {
  59491. "hyena": {
  59492. name: "Hyena",
  59493. default: true
  59494. },
  59495. "shark": {
  59496. name: "Shark",
  59497. },
  59498. }
  59499. ))
  59500. characterMakers.push(() => makeCharacter(
  59501. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59502. {
  59503. anthro_front: {
  59504. height: math.unit(1.5, "meters"),
  59505. name: "Front",
  59506. image: {
  59507. source: "./media/characters/adelaide/anthro-front.svg",
  59508. extra: 860/783,
  59509. bottom: 60/920
  59510. },
  59511. form: "anthro",
  59512. default: true
  59513. },
  59514. hand: {
  59515. height: math.unit(0.65, "feet"),
  59516. name: "Hand",
  59517. image: {
  59518. source: "./media/characters/adelaide/hand.svg"
  59519. },
  59520. form: "anthro"
  59521. },
  59522. foot: {
  59523. height: math.unit(1.38 * 259 / 314, "feet"),
  59524. name: "Foot",
  59525. image: {
  59526. source: "./media/characters/adelaide/foot.svg",
  59527. extra: 259/259,
  59528. bottom: 55/314
  59529. },
  59530. form: "anthro"
  59531. },
  59532. feather: {
  59533. height: math.unit(0.85, "feet"),
  59534. name: "Feather",
  59535. image: {
  59536. source: "./media/characters/adelaide/feather.svg"
  59537. },
  59538. form: "anthro"
  59539. },
  59540. feral_side: {
  59541. height: math.unit(1, "meters"),
  59542. name: "Side",
  59543. image: {
  59544. source: "./media/characters/adelaide/feral-side.svg",
  59545. extra: 550/467,
  59546. bottom: 37/587
  59547. },
  59548. form: "feral",
  59549. default: true
  59550. },
  59551. feral_hand: {
  59552. height: math.unit(0.58, "feet"),
  59553. name: "Hand",
  59554. image: {
  59555. source: "./media/characters/adelaide/hand.svg"
  59556. },
  59557. form: "feral"
  59558. },
  59559. feral_foot: {
  59560. height: math.unit(1.2 * 259 / 314, "feet"),
  59561. name: "Foot",
  59562. image: {
  59563. source: "./media/characters/adelaide/foot.svg",
  59564. extra: 259/259,
  59565. bottom: 55/314
  59566. },
  59567. form: "feral"
  59568. },
  59569. feral_feather: {
  59570. height: math.unit(0.63, "feet"),
  59571. name: "Feather",
  59572. image: {
  59573. source: "./media/characters/adelaide/feather.svg"
  59574. },
  59575. form: "feral"
  59576. },
  59577. },
  59578. [
  59579. {
  59580. name: "Normal",
  59581. height: math.unit(1.5, "meters"),
  59582. form: "anthro",
  59583. default: true
  59584. },
  59585. {
  59586. name: "Normal",
  59587. height: math.unit(1, "meters"),
  59588. form: "feral",
  59589. default: true
  59590. },
  59591. ],
  59592. {
  59593. "anthro": {
  59594. name: "Anthro",
  59595. default: true
  59596. },
  59597. "feral": {
  59598. name: "Feral",
  59599. },
  59600. }
  59601. ))
  59602. characterMakers.push(() => makeCharacter(
  59603. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59604. {
  59605. front: {
  59606. height: math.unit(2.5, "meters"),
  59607. name: "Front",
  59608. image: {
  59609. source: "./media/characters/goa/front.svg",
  59610. extra: 1109/1013,
  59611. bottom: 150/1259
  59612. }
  59613. },
  59614. },
  59615. [
  59616. {
  59617. name: "Normal",
  59618. height: math.unit(2.5, "meters"),
  59619. default: true
  59620. },
  59621. ]
  59622. ))
  59623. characterMakers.push(() => makeCharacter(
  59624. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59625. {
  59626. front: {
  59627. height: math.unit(2, "meters"),
  59628. weight: math.unit(100, "kg"),
  59629. name: "Front",
  59630. image: {
  59631. source: "./media/characters/kiki-weavile/front.svg",
  59632. extra: 357/332,
  59633. bottom: 60/417
  59634. }
  59635. },
  59636. },
  59637. [
  59638. {
  59639. name: "Normal",
  59640. height: math.unit(2, "meters"),
  59641. default: true
  59642. },
  59643. ]
  59644. ))
  59645. characterMakers.push(() => makeCharacter(
  59646. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59647. {
  59648. side: {
  59649. height: math.unit(1.6, "meters"),
  59650. name: "Side",
  59651. image: {
  59652. source: "./media/characters/liza/side.svg",
  59653. extra: 943/915,
  59654. bottom: 72/1015
  59655. }
  59656. },
  59657. },
  59658. [
  59659. {
  59660. name: "Normal",
  59661. height: math.unit(1.6, "meters"),
  59662. default: true
  59663. },
  59664. ]
  59665. ))
  59666. characterMakers.push(() => makeCharacter(
  59667. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59668. {
  59669. side: {
  59670. height: math.unit(2.5, "meters"),
  59671. preyCapacity: math.unit(1, "people"),
  59672. name: "Side",
  59673. image: {
  59674. source: "./media/characters/persephone-sweetbreath/side.svg",
  59675. extra: 796/700,
  59676. bottom: 44/840
  59677. }
  59678. },
  59679. sideVore: {
  59680. height: math.unit(2.5, "meters"),
  59681. preyCapacity: math.unit(1, "people"),
  59682. name: "Side (Full)",
  59683. image: {
  59684. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  59685. extra: 796/700,
  59686. bottom: 44/840
  59687. }
  59688. },
  59689. },
  59690. [
  59691. {
  59692. name: "Normal",
  59693. height: math.unit(2.5, "meters"),
  59694. default: true
  59695. },
  59696. ]
  59697. ))
  59698. characterMakers.push(() => makeCharacter(
  59699. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59700. {
  59701. front: {
  59702. height: math.unit(32, "meters"),
  59703. name: "Front",
  59704. image: {
  59705. source: "./media/characters/pierce/front.svg",
  59706. extra: 1695/1475,
  59707. bottom: 185/1880
  59708. }
  59709. },
  59710. side: {
  59711. height: math.unit(32, "meters"),
  59712. name: "Side",
  59713. image: {
  59714. source: "./media/characters/pierce/side.svg",
  59715. extra: 974/859,
  59716. bottom: 43/1017
  59717. }
  59718. },
  59719. frontWingless: {
  59720. height: math.unit(32, "meters"),
  59721. name: "Front (Wingless)",
  59722. image: {
  59723. source: "./media/characters/pierce/front-wingless.svg",
  59724. extra: 1695/1475,
  59725. bottom: 185/1880
  59726. }
  59727. },
  59728. sideWingless: {
  59729. height: math.unit(32, "meters"),
  59730. name: "Side (Wingless)",
  59731. image: {
  59732. source: "./media/characters/pierce/side-wingless.svg",
  59733. extra: 974/859,
  59734. bottom: 43/1017
  59735. }
  59736. },
  59737. maw: {
  59738. height: math.unit(19.3, "meters"),
  59739. name: "Maw",
  59740. image: {
  59741. source: "./media/characters/pierce/maw.svg"
  59742. }
  59743. },
  59744. },
  59745. [
  59746. {
  59747. name: "Small",
  59748. height: math.unit(8.5, "meters")
  59749. },
  59750. {
  59751. name: "Normal",
  59752. height: math.unit(32, "meters"),
  59753. default: true
  59754. },
  59755. ]
  59756. ))
  59757. characterMakers.push(() => makeCharacter(
  59758. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59759. {
  59760. front: {
  59761. height: math.unit(2.3, "meters"),
  59762. weight: math.unit(165, "kg"),
  59763. name: "Front",
  59764. image: {
  59765. source: "./media/characters/shira/front.svg",
  59766. extra: 924/919,
  59767. bottom: 17/941
  59768. },
  59769. form: "cobra",
  59770. default: true
  59771. },
  59772. back: {
  59773. height: math.unit(2.3, "meters"),
  59774. weight: math.unit(165, "kg"),
  59775. name: "Back",
  59776. image: {
  59777. source: "./media/characters/shira/back.svg",
  59778. extra: 928/922,
  59779. bottom: 18/946
  59780. },
  59781. form: "cobra"
  59782. },
  59783. frontLewd: {
  59784. height: math.unit(2.3, "meters"),
  59785. weight: math.unit(165, "kg"),
  59786. name: "Front (Lewd)",
  59787. image: {
  59788. source: "./media/characters/shira/front-lewd.svg",
  59789. extra: 924/919,
  59790. bottom: 17/941
  59791. },
  59792. form: "cobra"
  59793. },
  59794. backLewd: {
  59795. height: math.unit(2.3, "meters"),
  59796. weight: math.unit(165, "kg"),
  59797. name: "Back (Lewd)",
  59798. image: {
  59799. source: "./media/characters/shira/back-lewd.svg",
  59800. extra: 928/922,
  59801. bottom: 18/946
  59802. },
  59803. form: "cobra"
  59804. },
  59805. maw: {
  59806. height: math.unit(1.14, "feet"),
  59807. name: "Maw",
  59808. image: {
  59809. source: "./media/characters/shira/maw.svg"
  59810. },
  59811. form: "cobra"
  59812. },
  59813. magma_front: {
  59814. height: math.unit(2.3, "meters"),
  59815. weight: math.unit(165, "kg"),
  59816. name: "Front",
  59817. image: {
  59818. source: "./media/characters/shira/magma-front.svg",
  59819. extra: 1870/1693,
  59820. bottom: 24/1894
  59821. },
  59822. form: "magma",
  59823. },
  59824. magma_back: {
  59825. height: math.unit(2.3, "meters"),
  59826. weight: math.unit(165, "kg"),
  59827. name: "Back",
  59828. image: {
  59829. source: "./media/characters/shira/magma-back.svg",
  59830. extra: 1918/1756,
  59831. bottom: 46/1964
  59832. },
  59833. form: "magma",
  59834. },
  59835. },
  59836. [
  59837. {
  59838. name: "Incognito",
  59839. height: math.unit(2.3, "meters"),
  59840. allForms: true
  59841. },
  59842. {
  59843. name: "Home Size",
  59844. height: math.unit(150, "meters"),
  59845. default: true,
  59846. allForms: true
  59847. },
  59848. {
  59849. name: "Macro",
  59850. height: math.unit(2, "km"),
  59851. allForms: true
  59852. },
  59853. {
  59854. name: "Mega",
  59855. height: math.unit(30, "km"),
  59856. allForms: true
  59857. },
  59858. {
  59859. name: "Giga",
  59860. height: math.unit(450, "km"),
  59861. allForms: true
  59862. },
  59863. {
  59864. name: "Giga+",
  59865. height: math.unit(3000, "km"),
  59866. allForms: true
  59867. },
  59868. {
  59869. name: "Giga++",
  59870. height: math.unit(6000, "km"),
  59871. allForms: true
  59872. },
  59873. {
  59874. name: "Terra",
  59875. height: math.unit(80000, "km"),
  59876. allForms: true
  59877. },
  59878. {
  59879. name: "Terra+",
  59880. height: math.unit(350000, "km"),
  59881. allForms: true
  59882. },
  59883. {
  59884. name: "Solar",
  59885. height: math.unit(1e6, "km"),
  59886. allForms: true
  59887. },
  59888. ],
  59889. {
  59890. "cobra": {
  59891. name: "Cobra",
  59892. default: true
  59893. },
  59894. "magma": {
  59895. name: "Magma Dragon",
  59896. },
  59897. }
  59898. ))
  59899. characterMakers.push(() => makeCharacter(
  59900. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  59901. {
  59902. front: {
  59903. height: math.unit(2, "meters"),
  59904. weight: math.unit(160, "kg"),
  59905. name: "Front",
  59906. image: {
  59907. source: "./media/characters/daxerios/front.svg",
  59908. extra: 1334/1277,
  59909. bottom: 45/1379
  59910. }
  59911. },
  59912. frontLewd: {
  59913. height: math.unit(2, "meters"),
  59914. weight: math.unit(160, "kg"),
  59915. name: "Front (Lewd)",
  59916. image: {
  59917. source: "./media/characters/daxerios/front-lewd.svg",
  59918. extra: 1334/1277,
  59919. bottom: 45/1379
  59920. }
  59921. },
  59922. dick: {
  59923. height: math.unit(2.35, "feet"),
  59924. name: "Dick",
  59925. image: {
  59926. source: "./media/characters/daxerios/dick.svg"
  59927. }
  59928. },
  59929. },
  59930. [
  59931. {
  59932. name: "\"Small\"",
  59933. height: math.unit(5, "meters")
  59934. },
  59935. {
  59936. name: "Original Size",
  59937. height: math.unit(500, "meters"),
  59938. default: true
  59939. },
  59940. {
  59941. name: "Mega",
  59942. height: math.unit(2, "km")
  59943. },
  59944. {
  59945. name: "Mega+",
  59946. height: math.unit(35, "km")
  59947. },
  59948. {
  59949. name: "Giga",
  59950. height: math.unit(250, "km")
  59951. },
  59952. {
  59953. name: "Giga+",
  59954. height: math.unit(3000, "km")
  59955. },
  59956. {
  59957. name: "Terra",
  59958. height: math.unit(25000, "km")
  59959. },
  59960. {
  59961. name: "Terra+",
  59962. height: math.unit(300000, "km")
  59963. },
  59964. {
  59965. name: "Solar",
  59966. height: math.unit(1e6, "km")
  59967. },
  59968. ]
  59969. ))
  59970. characterMakers.push(() => makeCharacter(
  59971. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  59972. {
  59973. front: {
  59974. height: math.unit(8 + 4/12, "feet"),
  59975. weight: math.unit(464, "lb"),
  59976. name: "Front",
  59977. image: {
  59978. source: "./media/characters/caveat/front.svg",
  59979. extra: 1861/1678,
  59980. bottom: 40/1901
  59981. }
  59982. },
  59983. },
  59984. [
  59985. {
  59986. name: "Normal",
  59987. height: math.unit(8 + 4/12, "feet"),
  59988. default: true
  59989. },
  59990. ]
  59991. ))
  59992. characterMakers.push(() => makeCharacter(
  59993. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  59994. {
  59995. front: {
  59996. height: math.unit(12, "feet"),
  59997. weight: math.unit(1800, "lb"),
  59998. name: "Front",
  59999. image: {
  60000. source: "./media/characters/centbair/front.svg",
  60001. extra: 781/663,
  60002. bottom: 25/806
  60003. }
  60004. },
  60005. frontNsfw: {
  60006. height: math.unit(12, "feet"),
  60007. weight: math.unit(1800, "lb"),
  60008. name: "Front (NSFW)",
  60009. image: {
  60010. source: "./media/characters/centbair/front-nsfw.svg",
  60011. extra: 781/663,
  60012. bottom: 25/806
  60013. }
  60014. },
  60015. back: {
  60016. height: math.unit(12, "feet"),
  60017. weight: math.unit(1800, "lb"),
  60018. name: "Back",
  60019. image: {
  60020. source: "./media/characters/centbair/back.svg",
  60021. extra: 808/761,
  60022. bottom: 19/827
  60023. }
  60024. },
  60025. dick: {
  60026. height: math.unit(6.5, "feet"),
  60027. name: "Dick",
  60028. image: {
  60029. source: "./media/characters/centbair/dick.svg"
  60030. }
  60031. },
  60032. slit: {
  60033. height: math.unit(3.25, "feet"),
  60034. name: "Slit",
  60035. image: {
  60036. source: "./media/characters/centbair/slit.svg"
  60037. }
  60038. },
  60039. },
  60040. [
  60041. {
  60042. name: "Normal",
  60043. height: math.unit(12, "feet"),
  60044. default: true
  60045. },
  60046. ]
  60047. ))
  60048. characterMakers.push(() => makeCharacter(
  60049. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60050. {
  60051. front: {
  60052. height: math.unit(5 + 7/12, "feet"),
  60053. name: "Front",
  60054. image: {
  60055. source: "./media/characters/andy/front.svg",
  60056. extra: 634/588,
  60057. bottom: 36/670
  60058. },
  60059. extraAttributes: {
  60060. "pawLength": {
  60061. name: "Paw Length",
  60062. power: 1,
  60063. type: "length",
  60064. base: math.unit(1, "feet")
  60065. },
  60066. }
  60067. },
  60068. side: {
  60069. height: math.unit(5 + 7/12, "feet"),
  60070. name: "Side",
  60071. image: {
  60072. source: "./media/characters/andy/side.svg",
  60073. extra: 641/596,
  60074. bottom: 34/675
  60075. },
  60076. extraAttributes: {
  60077. "pawLength": {
  60078. name: "Paw Length",
  60079. power: 1,
  60080. type: "length",
  60081. base: math.unit(1, "feet")
  60082. },
  60083. }
  60084. },
  60085. back: {
  60086. height: math.unit(5 + 7/12, "feet"),
  60087. name: "Back",
  60088. image: {
  60089. source: "./media/characters/andy/back.svg",
  60090. extra: 618/583,
  60091. bottom: 39/657
  60092. },
  60093. extraAttributes: {
  60094. "pawLength": {
  60095. name: "Paw Length",
  60096. power: 1,
  60097. type: "length",
  60098. base: math.unit(1, "feet")
  60099. },
  60100. }
  60101. },
  60102. paw: {
  60103. height: math.unit(1.13, "feet"),
  60104. name: "Paw",
  60105. image: {
  60106. source: "./media/characters/andy/paw.svg"
  60107. }
  60108. },
  60109. },
  60110. [
  60111. {
  60112. name: "Micro",
  60113. height: math.unit(4, "inches")
  60114. },
  60115. {
  60116. name: "Normal",
  60117. height: math.unit(5 + 7/12, "feet"),
  60118. default: true
  60119. },
  60120. {
  60121. name: "Macro",
  60122. height: math.unit(390.42, "feet")
  60123. },
  60124. ]
  60125. ))
  60126. characterMakers.push(() => makeCharacter(
  60127. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60128. {
  60129. front: {
  60130. height: math.unit(7, "feet"),
  60131. weight: math.unit(250, "lb"),
  60132. name: "Front",
  60133. image: {
  60134. source: "./media/characters/vix-titan/front.svg",
  60135. extra: 460/428,
  60136. bottom: 15/475
  60137. },
  60138. extraAttributes: {
  60139. "pawWidth": {
  60140. name: "Paw Width",
  60141. power: 1,
  60142. type: "length",
  60143. base: math.unit(0.75, "feet")
  60144. },
  60145. }
  60146. },
  60147. },
  60148. [
  60149. {
  60150. name: "Normal",
  60151. height: math.unit(7, "feet"),
  60152. default: true
  60153. },
  60154. {
  60155. name: "Giant",
  60156. height: math.unit(1500, "feet")
  60157. },
  60158. {
  60159. name: "Mega",
  60160. height: math.unit(10, "miles")
  60161. },
  60162. {
  60163. name: "Giga",
  60164. height: math.unit(150, "miles")
  60165. },
  60166. {
  60167. name: "Tera",
  60168. height: math.unit(144000, "miles")
  60169. },
  60170. ]
  60171. ))
  60172. characterMakers.push(() => makeCharacter(
  60173. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60174. {
  60175. front: {
  60176. height: math.unit(6 + 2/12, "feet"),
  60177. name: "Front",
  60178. image: {
  60179. source: "./media/characters/reiku/front.svg",
  60180. extra: 1910/1757,
  60181. bottom: 103/2013
  60182. },
  60183. extraAttributes: {
  60184. "thighThickness": {
  60185. name: "Thigh Thickness",
  60186. power: 1,
  60187. type: "length",
  60188. base: math.unit(1.12, "feet")
  60189. },
  60190. "assThickness": {
  60191. name: "Ass Thickness",
  60192. power: 1,
  60193. type: "length",
  60194. base: math.unit(1.12*2, "feet")
  60195. },
  60196. }
  60197. },
  60198. side: {
  60199. height: math.unit(6 + 2/12, "feet"),
  60200. name: "Side",
  60201. image: {
  60202. source: "./media/characters/reiku/side.svg",
  60203. extra: 1846/1748,
  60204. bottom: 99/1945
  60205. },
  60206. extraAttributes: {
  60207. "thighThickness": {
  60208. name: "Thigh Thickness",
  60209. power: 1,
  60210. type: "length",
  60211. base: math.unit(1.12, "feet")
  60212. },
  60213. "assThickness": {
  60214. name: "Ass Thickness",
  60215. power: 1,
  60216. type: "length",
  60217. base: math.unit(1.12*2, "feet")
  60218. },
  60219. }
  60220. },
  60221. back: {
  60222. height: math.unit(6 + 2/12, "feet"),
  60223. name: "Back",
  60224. image: {
  60225. source: "./media/characters/reiku/back.svg",
  60226. extra: 1941/1786,
  60227. bottom: 34/1975
  60228. },
  60229. extraAttributes: {
  60230. "thighThickness": {
  60231. name: "Thigh Thickness",
  60232. power: 1,
  60233. type: "length",
  60234. base: math.unit(1.12, "feet")
  60235. },
  60236. "assThickness": {
  60237. name: "Ass Thickness",
  60238. power: 1,
  60239. type: "length",
  60240. base: math.unit(1.12*2, "feet")
  60241. },
  60242. }
  60243. },
  60244. head: {
  60245. height: math.unit(1.8, "feet"),
  60246. name: "Head",
  60247. image: {
  60248. source: "./media/characters/reiku/head.svg"
  60249. }
  60250. },
  60251. tailTop: {
  60252. height: math.unit(8.4, "feet"),
  60253. name: "Tail (Top)",
  60254. image: {
  60255. source: "./media/characters/reiku/tail-top.svg"
  60256. }
  60257. },
  60258. tailBottom: {
  60259. height: math.unit(8.4, "feet"),
  60260. name: "Tail (Bottom)",
  60261. image: {
  60262. source: "./media/characters/reiku/tail-bottom.svg"
  60263. }
  60264. },
  60265. foot: {
  60266. height: math.unit(2.6, "feet"),
  60267. name: "Foot",
  60268. image: {
  60269. source: "./media/characters/reiku/foot.svg"
  60270. }
  60271. },
  60272. footCurled: {
  60273. height: math.unit(2.3, "feet"),
  60274. name: "Foot (Curled)",
  60275. image: {
  60276. source: "./media/characters/reiku/foot-curled.svg"
  60277. }
  60278. },
  60279. footSide: {
  60280. height: math.unit(1.26, "feet"),
  60281. name: "Foot (Side)",
  60282. image: {
  60283. source: "./media/characters/reiku/foot-side.svg"
  60284. }
  60285. },
  60286. },
  60287. [
  60288. {
  60289. name: "Normal",
  60290. height: math.unit(6 + 2/12, "feet"),
  60291. default: true
  60292. },
  60293. ]
  60294. ))
  60295. characterMakers.push(() => makeCharacter(
  60296. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60297. {
  60298. front: {
  60299. height: math.unit(7, "feet"),
  60300. weight: math.unit(500, "kg"),
  60301. name: "Front",
  60302. image: {
  60303. source: "./media/characters/cialda/front.svg",
  60304. extra: 912/745,
  60305. bottom: 55/967
  60306. }
  60307. },
  60308. },
  60309. [
  60310. {
  60311. name: "Normal",
  60312. height: math.unit(7, "feet"),
  60313. default: true
  60314. },
  60315. ]
  60316. ))
  60317. characterMakers.push(() => makeCharacter(
  60318. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60319. {
  60320. side: {
  60321. height: math.unit(6, "feet"),
  60322. weight: math.unit(600, "lb"),
  60323. preyCapacity: math.unit(25, "liters"),
  60324. name: "Side",
  60325. image: {
  60326. source: "./media/characters/darkkin/side.svg",
  60327. extra: 1597/1447,
  60328. bottom: 101/1698
  60329. }
  60330. },
  60331. },
  60332. [
  60333. {
  60334. name: "Canon Height",
  60335. height: math.unit(568, "feet"),
  60336. default: true
  60337. },
  60338. ]
  60339. ))
  60340. characterMakers.push(() => makeCharacter(
  60341. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60342. {
  60343. front: {
  60344. height: math.unit(6, "feet"),
  60345. weight: math.unit(1500, "lb"),
  60346. preyCapacity: math.unit(3, "people"),
  60347. name: "Front",
  60348. image: {
  60349. source: "./media/characters/livnia/front.svg",
  60350. extra: 934/932,
  60351. bottom: 83/1017
  60352. }
  60353. },
  60354. back: {
  60355. height: math.unit(6, "feet"),
  60356. weight: math.unit(1500, "lb"),
  60357. preyCapacity: math.unit(3, "people"),
  60358. name: "Back",
  60359. image: {
  60360. source: "./media/characters/livnia/back.svg",
  60361. extra: 916/915,
  60362. bottom: 58/974
  60363. }
  60364. },
  60365. head: {
  60366. height: math.unit(1.53, "feet"),
  60367. name: "Head",
  60368. image: {
  60369. source: "./media/characters/livnia/head.svg"
  60370. }
  60371. },
  60372. maw: {
  60373. height: math.unit(0.78, "feet"),
  60374. name: "Maw",
  60375. image: {
  60376. source: "./media/characters/livnia/maw.svg"
  60377. }
  60378. },
  60379. genitals: {
  60380. height: math.unit(0.35, "feet"),
  60381. name: "Genitals",
  60382. image: {
  60383. source: "./media/characters/livnia/genitals.svg"
  60384. }
  60385. },
  60386. },
  60387. [
  60388. {
  60389. name: "Normal",
  60390. height: math.unit(1000, "feet"),
  60391. default: true
  60392. },
  60393. ]
  60394. ))
  60395. characterMakers.push(() => makeCharacter(
  60396. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60397. {
  60398. front: {
  60399. height: math.unit(4, "feet"),
  60400. weight: math.unit(73, "lb"),
  60401. name: "Front",
  60402. image: {
  60403. source: "./media/characters/hayaku/front.svg",
  60404. extra: 1011/888,
  60405. bottom: 33/1044
  60406. }
  60407. },
  60408. back: {
  60409. height: math.unit(4, "feet"),
  60410. weight: math.unit(73, "lb"),
  60411. name: "Back",
  60412. image: {
  60413. source: "./media/characters/hayaku/back.svg",
  60414. extra: 1040/930,
  60415. bottom: 20/1060
  60416. }
  60417. },
  60418. },
  60419. [
  60420. {
  60421. name: "Normal",
  60422. height: math.unit(4, "feet"),
  60423. default: true
  60424. },
  60425. ]
  60426. ))
  60427. characterMakers.push(() => makeCharacter(
  60428. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60429. {
  60430. front: {
  60431. height: math.unit(6 + 7/12, "feet"),
  60432. weight: math.unit(300, "lb"),
  60433. name: "Front",
  60434. image: {
  60435. source: "./media/characters/athena-bryzant/front.svg",
  60436. extra: 870/835,
  60437. bottom: 33/903
  60438. }
  60439. },
  60440. back: {
  60441. height: math.unit(6 + 7/12, "feet"),
  60442. weight: math.unit(300, "lb"),
  60443. name: "Back",
  60444. image: {
  60445. source: "./media/characters/athena-bryzant/back.svg",
  60446. extra: 858/823,
  60447. bottom: 30/888
  60448. }
  60449. },
  60450. head: {
  60451. height: math.unit(2.38, "feet"),
  60452. name: "Head",
  60453. image: {
  60454. source: "./media/characters/athena-bryzant/head.svg"
  60455. }
  60456. },
  60457. wings: {
  60458. height: math.unit(2.85, "feet"),
  60459. name: "Wings",
  60460. image: {
  60461. source: "./media/characters/athena-bryzant/wings.svg"
  60462. }
  60463. },
  60464. },
  60465. [
  60466. {
  60467. name: "Normal",
  60468. height: math.unit(6 + 7/12, "feet"),
  60469. default: true
  60470. },
  60471. {
  60472. name: "Big",
  60473. height: math.unit(8, "feet")
  60474. },
  60475. {
  60476. name: "Very Big",
  60477. height: math.unit(11, "feet")
  60478. },
  60479. ]
  60480. ))
  60481. characterMakers.push(() => makeCharacter(
  60482. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60483. {
  60484. side: {
  60485. height: math.unit(3, "meters"),
  60486. weight: math.unit(7500, "kg"),
  60487. preyCapacity: math.unit(1e12, "people"),
  60488. name: "Side",
  60489. image: {
  60490. source: "./media/characters/zel-kesh/side.svg",
  60491. extra: 910/407,
  60492. bottom: 147/1057
  60493. }
  60494. },
  60495. },
  60496. [
  60497. {
  60498. name: "Normal",
  60499. height: math.unit(3, "meters"),
  60500. default: true
  60501. },
  60502. ]
  60503. ))
  60504. characterMakers.push(() => makeCharacter(
  60505. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60506. {
  60507. front: {
  60508. height: math.unit(2, "meters"),
  60509. weight: math.unit(95, "kg"),
  60510. name: "Front",
  60511. image: {
  60512. source: "./media/characters/kane-fox/front.svg",
  60513. extra: 945/888,
  60514. bottom: 27/972
  60515. }
  60516. },
  60517. back: {
  60518. height: math.unit(2, "meters"),
  60519. weight: math.unit(95, "kg"),
  60520. name: "Back",
  60521. image: {
  60522. source: "./media/characters/kane-fox/back.svg",
  60523. extra: 959/914,
  60524. bottom: 15/974
  60525. }
  60526. },
  60527. frontLewd: {
  60528. height: math.unit(2, "meters"),
  60529. weight: math.unit(95, "kg"),
  60530. name: "Front (Lewd)",
  60531. image: {
  60532. source: "./media/characters/kane-fox/front-lewd.svg",
  60533. extra: 945/888,
  60534. bottom: 27/972
  60535. }
  60536. },
  60537. },
  60538. [
  60539. {
  60540. name: "Home Size",
  60541. height: math.unit(2, "meters"),
  60542. default: true
  60543. },
  60544. {
  60545. name: "Macro",
  60546. height: math.unit(200, "meters")
  60547. },
  60548. {
  60549. name: "Small Mega",
  60550. height: math.unit(3, "km")
  60551. },
  60552. {
  60553. name: "Mega",
  60554. height: math.unit(50, "km")
  60555. },
  60556. {
  60557. name: "Giga",
  60558. height: math.unit(200, "km")
  60559. },
  60560. {
  60561. name: "Giga+",
  60562. height: math.unit(2500, "km")
  60563. },
  60564. {
  60565. name: "Terra",
  60566. height: math.unit(70000, "km")
  60567. },
  60568. {
  60569. name: "Terra+",
  60570. height: math.unit(150000, "km")
  60571. },
  60572. {
  60573. name: "Terra++",
  60574. height: math.unit(400000, "km")
  60575. },
  60576. ]
  60577. ))
  60578. characterMakers.push(() => makeCharacter(
  60579. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60580. {
  60581. otter_front: {
  60582. height: math.unit(1.8, "meters"),
  60583. weight: math.unit(90, "kg"),
  60584. name: "Front",
  60585. image: {
  60586. source: "./media/characters/ayranus/otter-front.svg",
  60587. extra: 468/452,
  60588. bottom: 43/511
  60589. },
  60590. form: "otter",
  60591. },
  60592. otter_frontLewd: {
  60593. height: math.unit(1.8, "meters"),
  60594. weight: math.unit(90, "kg"),
  60595. name: "Front (Lewd)",
  60596. image: {
  60597. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60598. extra: 468/452,
  60599. bottom: 43/511
  60600. },
  60601. form: "otter",
  60602. },
  60603. lionbat_front: {
  60604. height: math.unit(1.8, "meters"),
  60605. weight: math.unit(90, "kg"),
  60606. name: "Front (Lewd)",
  60607. image: {
  60608. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60609. extra: 797/740,
  60610. bottom: 78/875
  60611. },
  60612. form: "lionbat",
  60613. },
  60614. paw: {
  60615. height: math.unit(1.5, "feet"),
  60616. name: "Paw",
  60617. image: {
  60618. source: "./media/characters/ayranus/paw.svg"
  60619. },
  60620. },
  60621. },
  60622. [
  60623. {
  60624. name: "Incognito",
  60625. height: math.unit(1.8, "meters"),
  60626. allForms: true
  60627. },
  60628. {
  60629. name: "Macro",
  60630. height: math.unit(60, "meters"),
  60631. allForms: true
  60632. },
  60633. {
  60634. name: "Macro+",
  60635. height: math.unit(200, "meters"),
  60636. allForms: true
  60637. },
  60638. {
  60639. name: "Mega",
  60640. height: math.unit(35, "km"),
  60641. allForms: true
  60642. },
  60643. {
  60644. name: "Giga",
  60645. height: math.unit(220, "km"),
  60646. allForms: true
  60647. },
  60648. {
  60649. name: "Giga+",
  60650. height: math.unit(1500, "km"),
  60651. allForms: true
  60652. },
  60653. {
  60654. name: "Terra",
  60655. height: math.unit(13000, "km"),
  60656. allForms: true
  60657. },
  60658. {
  60659. name: "Terra+",
  60660. height: math.unit(500000, "km"),
  60661. allForms: true
  60662. },
  60663. {
  60664. name: "Galactic",
  60665. height: math.unit(486080, "parsecs"),
  60666. default: true,
  60667. allForms: true
  60668. },
  60669. ],
  60670. {
  60671. "otter": {
  60672. name: "Otter",
  60673. default: true
  60674. },
  60675. "lionbat": {
  60676. name: "Lionbat",
  60677. },
  60678. }
  60679. ))
  60680. characterMakers.push(() => makeCharacter(
  60681. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  60682. {
  60683. front: {
  60684. height: math.unit(7 + 4/12, "feet"),
  60685. weight: math.unit(400, "lb"),
  60686. name: "Front",
  60687. image: {
  60688. source: "./media/characters/proxy/front.svg",
  60689. extra: 1605/1542,
  60690. bottom: 55/1660
  60691. }
  60692. },
  60693. side: {
  60694. height: math.unit(7 + 4/12, "feet"),
  60695. weight: math.unit(400, "lb"),
  60696. name: "Side",
  60697. image: {
  60698. source: "./media/characters/proxy/side.svg",
  60699. extra: 794/759,
  60700. bottom: 6/800
  60701. }
  60702. },
  60703. hand: {
  60704. height: math.unit(1.54, "feet"),
  60705. name: "Hand",
  60706. image: {
  60707. source: "./media/characters/proxy/hand.svg"
  60708. }
  60709. },
  60710. paw: {
  60711. height: math.unit(1.53, "feet"),
  60712. name: "Paw",
  60713. image: {
  60714. source: "./media/characters/proxy/paw.svg"
  60715. }
  60716. },
  60717. maw: {
  60718. height: math.unit(1.9, "feet"),
  60719. name: "Maw",
  60720. image: {
  60721. source: "./media/characters/proxy/maw.svg"
  60722. }
  60723. },
  60724. },
  60725. [
  60726. {
  60727. name: "Normal",
  60728. height: math.unit(7 + 4/12, "feet"),
  60729. default: true
  60730. },
  60731. ]
  60732. ))
  60733. characterMakers.push(() => makeCharacter(
  60734. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  60735. {
  60736. front: {
  60737. height: math.unit(4, "meters"),
  60738. name: "Front",
  60739. image: {
  60740. source: "./media/characters/crocozilla/front.svg",
  60741. extra: 1790/1742,
  60742. bottom: 78/1868
  60743. }
  60744. },
  60745. },
  60746. [
  60747. {
  60748. name: "Normal",
  60749. height: math.unit(4, "meters"),
  60750. default: true
  60751. },
  60752. ]
  60753. ))
  60754. characterMakers.push(() => makeCharacter(
  60755. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  60756. {
  60757. front: {
  60758. height: math.unit(1.8, "meters"),
  60759. weight: math.unit(120, "kg"),
  60760. name: "Front",
  60761. image: {
  60762. source: "./media/characters/kurz/front.svg",
  60763. extra: 1960/1824,
  60764. bottom: 41/2001
  60765. }
  60766. },
  60767. back: {
  60768. height: math.unit(1.8, "meters"),
  60769. weight: math.unit(120, "kg"),
  60770. name: "Back",
  60771. image: {
  60772. source: "./media/characters/kurz/back.svg",
  60773. extra: 1906/1787,
  60774. bottom: 60/1966
  60775. }
  60776. },
  60777. frontLewd: {
  60778. height: math.unit(1.8, "meters"),
  60779. weight: math.unit(120, "kg"),
  60780. name: "Front (Lewd)",
  60781. image: {
  60782. source: "./media/characters/kurz/front-lewd.svg",
  60783. extra: 1960/1824,
  60784. bottom: 41/2001
  60785. }
  60786. },
  60787. maw: {
  60788. height: math.unit(0.69, "meters"),
  60789. name: "Maw",
  60790. image: {
  60791. source: "./media/characters/kurz/maw.svg"
  60792. }
  60793. },
  60794. },
  60795. [
  60796. {
  60797. name: "Original Size",
  60798. height: math.unit(1.8, "meters")
  60799. },
  60800. {
  60801. name: "Incognito Size",
  60802. height: math.unit(2.4, "meters"),
  60803. default: true
  60804. },
  60805. {
  60806. name: "Macro",
  60807. height: math.unit(30, "meters")
  60808. },
  60809. {
  60810. name: "Macro+",
  60811. height: math.unit(250, "meters")
  60812. },
  60813. {
  60814. name: "Mega",
  60815. height: math.unit(2, "km")
  60816. },
  60817. {
  60818. name: "Mega+",
  60819. height: math.unit(35, "km")
  60820. },
  60821. {
  60822. name: "Mega++",
  60823. height: math.unit(75, "km")
  60824. },
  60825. {
  60826. name: "Giga",
  60827. height: math.unit(250, "km")
  60828. },
  60829. {
  60830. name: "Terra",
  60831. height: math.unit(15000, "km")
  60832. },
  60833. {
  60834. name: "Terra+",
  60835. height: math.unit(2250000, "km")
  60836. },
  60837. ]
  60838. ))
  60839. characterMakers.push(() => makeCharacter(
  60840. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  60841. {
  60842. front: {
  60843. height: math.unit(16 + 3/12, "feet"),
  60844. weight: math.unit(3575, "lb"),
  60845. name: "Front",
  60846. image: {
  60847. source: "./media/characters/nikita/front.svg",
  60848. extra: 1064/955,
  60849. bottom: 47/1111
  60850. }
  60851. },
  60852. },
  60853. [
  60854. {
  60855. name: "Normal",
  60856. height: math.unit(16 + 3/12, "feet"),
  60857. default: true
  60858. },
  60859. {
  60860. name: "Big",
  60861. height: math.unit(21, "feet")
  60862. },
  60863. {
  60864. name: "Biggest",
  60865. height: math.unit(50, "feet")
  60866. },
  60867. ]
  60868. ))
  60869. characterMakers.push(() => makeCharacter(
  60870. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  60871. {
  60872. front: {
  60873. height: math.unit(1.92, "m"),
  60874. weight: math.unit(76, "kg"),
  60875. name: "Front",
  60876. image: {
  60877. source: "./media/characters/kyara/front.svg",
  60878. extra: 1550/1438,
  60879. bottom: 139/1689
  60880. }
  60881. },
  60882. back: {
  60883. height: math.unit(1.92, "m"),
  60884. weight: math.unit(76, "kg"),
  60885. name: "Back",
  60886. image: {
  60887. source: "./media/characters/kyara/back.svg",
  60888. extra: 1523/1427,
  60889. bottom: 83/1606
  60890. }
  60891. },
  60892. head: {
  60893. height: math.unit(1.22, "feet"),
  60894. name: "Head",
  60895. image: {
  60896. source: "./media/characters/kyara/head.svg"
  60897. }
  60898. },
  60899. maw: {
  60900. height: math.unit(0.73, "feet"),
  60901. name: "Maw",
  60902. image: {
  60903. source: "./media/characters/kyara/maw.svg"
  60904. }
  60905. },
  60906. paws: {
  60907. height: math.unit(0.95, "feet"),
  60908. name: "Paws",
  60909. image: {
  60910. source: "./media/characters/kyara/paws.svg"
  60911. }
  60912. },
  60913. },
  60914. [
  60915. {
  60916. name: "Normal",
  60917. height: math.unit(1.92, "meters"),
  60918. default: true
  60919. },
  60920. {
  60921. name: "Mini Macro",
  60922. height: math.unit(192, "meters")
  60923. },
  60924. {
  60925. name: "Macro",
  60926. height: math.unit(480, "meters")
  60927. },
  60928. {
  60929. name: "Mega Macro",
  60930. height: math.unit(1440, "meters")
  60931. },
  60932. ]
  60933. ))
  60934. characterMakers.push(() => makeCharacter(
  60935. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  60936. {
  60937. front: {
  60938. height: math.unit(6, "feet"),
  60939. weight: math.unit(160, "lbs"),
  60940. preyCapacity: math.unit(0.05, "people"),
  60941. name: "Front",
  60942. image: {
  60943. source: "./media/characters/layla-amari/front.svg",
  60944. extra: 1922/1723,
  60945. bottom: 90/2012
  60946. }
  60947. },
  60948. back: {
  60949. height: math.unit(6, "feet"),
  60950. weight: math.unit(160, "lbs"),
  60951. preyCapacity: math.unit(0.05, "people"),
  60952. name: "Back",
  60953. image: {
  60954. source: "./media/characters/layla-amari/back.svg",
  60955. extra: 1917/1718,
  60956. bottom: 50/1967
  60957. }
  60958. },
  60959. frontDressed: {
  60960. height: math.unit(6, "feet"),
  60961. weight: math.unit(160, "lbs"),
  60962. preyCapacity: math.unit(0.05, "people"),
  60963. name: "Front (Dressed)",
  60964. image: {
  60965. source: "./media/characters/layla-amari/front-dressed.svg",
  60966. extra: 1922/1723,
  60967. bottom: 90/2012
  60968. }
  60969. },
  60970. face: {
  60971. height: math.unit(0.93, "feet"),
  60972. name: "Face",
  60973. image: {
  60974. source: "./media/characters/layla-amari/face.svg"
  60975. }
  60976. },
  60977. hand: {
  60978. height: math.unit(0.66 , "feet"),
  60979. name: "Hand",
  60980. image: {
  60981. source: "./media/characters/layla-amari/hand.svg"
  60982. }
  60983. },
  60984. foot: {
  60985. height: math.unit(1, "feet"),
  60986. name: "Foot",
  60987. image: {
  60988. source: "./media/characters/layla-amari/foot.svg"
  60989. }
  60990. },
  60991. necklace: {
  60992. height: math.unit(0.32, "feet"),
  60993. name: "Necklace",
  60994. image: {
  60995. source: "./media/characters/layla-amari/necklace.svg"
  60996. }
  60997. },
  60998. nipple: {
  60999. height: math.unit(0.2, "feet"),
  61000. name: "Nipple",
  61001. image: {
  61002. source: "./media/characters/layla-amari/nipple.svg"
  61003. }
  61004. },
  61005. slit: {
  61006. height: math.unit(0.26, "feet"),
  61007. name: "Slit",
  61008. image: {
  61009. source: "./media/characters/layla-amari/slit.svg"
  61010. }
  61011. },
  61012. },
  61013. [
  61014. {
  61015. name: "Natural",
  61016. height: math.unit(825, "feet"),
  61017. default: true
  61018. },
  61019. {
  61020. name: "Enhanced",
  61021. height: math.unit(8250, "feet")
  61022. },
  61023. {
  61024. name: "Apparent Size",
  61025. height: math.unit(9.04363e+8, "meters")
  61026. },
  61027. ]
  61028. ))
  61029. characterMakers.push(() => makeCharacter(
  61030. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61031. {
  61032. front: {
  61033. height: math.unit(1.3, "meters"),
  61034. name: "Front",
  61035. image: {
  61036. source: "./media/characters/percy/front.svg",
  61037. extra: 1444/1289,
  61038. bottom: 54/1498
  61039. }
  61040. },
  61041. },
  61042. [
  61043. {
  61044. name: "Normal",
  61045. height: math.unit(1.3, "meters"),
  61046. default: true
  61047. },
  61048. ]
  61049. ))
  61050. characterMakers.push(() => makeCharacter(
  61051. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61052. {
  61053. side: {
  61054. height: math.unit(10, "meters"),
  61055. name: "Side",
  61056. image: {
  61057. source: "./media/characters/grev/side.svg",
  61058. extra: 653/266,
  61059. bottom: 77/730
  61060. }
  61061. },
  61062. head: {
  61063. height: math.unit(16.2, "m"),
  61064. name: "Head",
  61065. image: {
  61066. source: "./media/characters/grev/head.svg"
  61067. }
  61068. },
  61069. dick: {
  61070. height: math.unit(2.8135932034, "m"),
  61071. name: "Dick",
  61072. image: {
  61073. source: "./media/characters/grev/dick.svg"
  61074. }
  61075. },
  61076. },
  61077. [
  61078. {
  61079. name: "Friend-Sized",
  61080. height: math.unit(80, "cm")
  61081. },
  61082. {
  61083. name: "Normal",
  61084. height: math.unit(10, "meters"),
  61085. default: true
  61086. },
  61087. {
  61088. name: "Macro",
  61089. height: math.unit(200, "meters")
  61090. },
  61091. ]
  61092. ))
  61093. characterMakers.push(() => makeCharacter(
  61094. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61095. {
  61096. front: {
  61097. height: math.unit(19.75, "feet"),
  61098. weight: math.unit(20000, "lb"),
  61099. name: "Front",
  61100. image: {
  61101. source: "./media/characters/azuuca/front.svg",
  61102. extra: 1593/1511,
  61103. bottom: 55/1648
  61104. }
  61105. },
  61106. },
  61107. [
  61108. {
  61109. name: "Normal",
  61110. height: math.unit(19.75, "feet"),
  61111. default: true
  61112. },
  61113. ]
  61114. ))
  61115. characterMakers.push(() => makeCharacter(
  61116. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61117. {
  61118. front: {
  61119. height: math.unit(15, "feet"),
  61120. weight: math.unit(1500, "lb"),
  61121. name: "Front",
  61122. image: {
  61123. source: "./media/characters/valuria/front.svg",
  61124. extra: 1588/1486,
  61125. bottom: 31/1619
  61126. }
  61127. },
  61128. },
  61129. [
  61130. {
  61131. name: "Normal",
  61132. height: math.unit(15, "feet"),
  61133. default: true
  61134. },
  61135. {
  61136. name: "Small",
  61137. height: math.unit(500, "feet")
  61138. },
  61139. {
  61140. name: "Macro",
  61141. height: math.unit(4000, "feet")
  61142. },
  61143. {
  61144. name: "Mega Macro",
  61145. height: math.unit(2000, "miles")
  61146. },
  61147. {
  61148. name: "Giga Macro",
  61149. height: math.unit(3e6, "miles")
  61150. },
  61151. ]
  61152. ))
  61153. characterMakers.push(() => makeCharacter(
  61154. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61155. {
  61156. front: {
  61157. height: math.unit(3500, "solarradii"),
  61158. name: "Front",
  61159. image: {
  61160. source: "./media/characters/terigaia/front.svg",
  61161. extra: 1531/1451,
  61162. bottom: 98/1629
  61163. }
  61164. },
  61165. },
  61166. [
  61167. {
  61168. name: "Normal",
  61169. height: math.unit(3500, "solarradii"),
  61170. default: true
  61171. },
  61172. ]
  61173. ))
  61174. characterMakers.push(() => makeCharacter(
  61175. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61176. {
  61177. front: {
  61178. height: math.unit(9.34, "feet"),
  61179. weight: math.unit(600, "lb"),
  61180. name: "Front",
  61181. image: {
  61182. source: "./media/characters/blair-blaziken/front.svg",
  61183. extra: 1557/1462,
  61184. bottom: 55/1612
  61185. }
  61186. },
  61187. },
  61188. [
  61189. {
  61190. name: "Normal",
  61191. height: math.unit(9.34, "feet"),
  61192. default: true
  61193. },
  61194. ]
  61195. ))
  61196. characterMakers.push(() => makeCharacter(
  61197. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61198. {
  61199. pistrogre_front: {
  61200. height: math.unit(10, "feet"),
  61201. weight: math.unit(10, "tons"),
  61202. name: "Front",
  61203. image: {
  61204. source: "./media/characters/braxia/pistrogre-front.svg",
  61205. extra: 1531/1334,
  61206. bottom: 114/1645
  61207. },
  61208. form: "pistrogre",
  61209. default: true
  61210. },
  61211. human_front: {
  61212. height: math.unit(10, "feet"),
  61213. weight: math.unit(10, "tons"),
  61214. name: "Front",
  61215. image: {
  61216. source: "./media/characters/braxia/human-front.svg",
  61217. extra: 1574/1501,
  61218. bottom: 37/1611
  61219. },
  61220. form: "human",
  61221. default: true
  61222. },
  61223. },
  61224. [
  61225. {
  61226. name: "Normal",
  61227. height: math.unit(10, "feet"),
  61228. default: true,
  61229. allForms: true
  61230. },
  61231. {
  61232. name: "Macro",
  61233. height: math.unit(1000, "feet"),
  61234. allForms: true
  61235. },
  61236. {
  61237. name: "Mega Macro",
  61238. height: math.unit(100, "miles"),
  61239. allForms: true
  61240. },
  61241. {
  61242. name: "Cosmic",
  61243. height: math.unit(1000000, "lightyears"),
  61244. allForms: true
  61245. },
  61246. {
  61247. name: "ϐѮԆԬӁꭍϞԢ",
  61248. height: math.unit(1000, "multiverses"),
  61249. allForms: true
  61250. },
  61251. ],
  61252. {
  61253. "pistrogre": {
  61254. name: "Pistrogre",
  61255. default: true
  61256. },
  61257. "human": {
  61258. name: "Human",
  61259. },
  61260. }
  61261. ))
  61262. characterMakers.push(() => makeCharacter(
  61263. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61264. {
  61265. front: {
  61266. height: math.unit(6 + 1/12, "feet"),
  61267. weight: math.unit(280, "lb"),
  61268. name: "Front",
  61269. image: {
  61270. source: "./media/characters/kiriga-yato/front.svg",
  61271. extra: 445/394,
  61272. bottom: 11/456
  61273. }
  61274. },
  61275. },
  61276. [
  61277. {
  61278. name: "Descended",
  61279. height: math.unit(3, "feet")
  61280. },
  61281. {
  61282. name: "Average",
  61283. height: math.unit(6 + 1/12, "feet"),
  61284. default: true
  61285. },
  61286. {
  61287. name: "Ascended",
  61288. height: math.unit(9 + 2/12, "feet")
  61289. },
  61290. ]
  61291. ))
  61292. characterMakers.push(() => makeCharacter(
  61293. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61294. {
  61295. front: {
  61296. height: math.unit(6, "feet"),
  61297. weight: math.unit(150, "lb"),
  61298. name: "Front",
  61299. image: {
  61300. source: "./media/characters/kylie/front.svg",
  61301. extra: 1114/1046,
  61302. bottom: 65/1179
  61303. },
  61304. extraAttributes: {
  61305. "hoofSize": {
  61306. name: "Hoof Size",
  61307. power: 2,
  61308. type: "area",
  61309. base: math.unit(0.034, "m^2")
  61310. },
  61311. "footSize": {
  61312. name: "Foot Size",
  61313. power: 2,
  61314. type: "area",
  61315. base: math.unit(0.75, "m^2")
  61316. },
  61317. }
  61318. },
  61319. side: {
  61320. height: math.unit(6, "feet"),
  61321. weight: math.unit(150, "lb"),
  61322. name: "Side",
  61323. image: {
  61324. source: "./media/characters/kylie/side.svg",
  61325. extra: 1178/1110,
  61326. bottom: 21/1199
  61327. },
  61328. extraAttributes: {
  61329. "hoofSize": {
  61330. name: "Hoof Size",
  61331. power: 2,
  61332. type: "area",
  61333. base: math.unit(0.034, "m^2")
  61334. },
  61335. "footSize": {
  61336. name: "Foot Size",
  61337. power: 2,
  61338. type: "area",
  61339. base: math.unit(0.75, "m^2")
  61340. },
  61341. }
  61342. },
  61343. back: {
  61344. height: math.unit(6, "feet"),
  61345. weight: math.unit(150, "lb"),
  61346. name: "Back",
  61347. image: {
  61348. source: "./media/characters/kylie/back.svg",
  61349. extra: 1115/1047,
  61350. bottom: 66/1181
  61351. },
  61352. extraAttributes: {
  61353. "hoofSize": {
  61354. name: "Hoof Size",
  61355. power: 2,
  61356. type: "area",
  61357. base: math.unit(0.034, "m^2")
  61358. },
  61359. "footSize": {
  61360. name: "Foot Size",
  61361. power: 2,
  61362. type: "area",
  61363. base: math.unit(0.75, "m^2")
  61364. },
  61365. }
  61366. },
  61367. head: {
  61368. height: math.unit(1.85, "feet"),
  61369. name: "Head",
  61370. image: {
  61371. source: "./media/characters/kylie/head.svg"
  61372. }
  61373. },
  61374. },
  61375. [
  61376. {
  61377. name: "Normal",
  61378. height: math.unit(90, "meters"),
  61379. default: true
  61380. },
  61381. ]
  61382. ))
  61383. characterMakers.push(() => makeCharacter(
  61384. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61385. {
  61386. front: {
  61387. height: math.unit(245, "feet"),
  61388. weight: math.unit(400000, "lb"),
  61389. name: "Front",
  61390. image: {
  61391. source: "./media/characters/sabado/front.svg",
  61392. extra: 1309/1164,
  61393. bottom: 29/1338
  61394. }
  61395. },
  61396. },
  61397. [
  61398. {
  61399. name: "Normal",
  61400. height: math.unit(245, "feet"),
  61401. default: true
  61402. },
  61403. ]
  61404. ))
  61405. characterMakers.push(() => makeCharacter(
  61406. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  61407. {
  61408. shark_front: {
  61409. height: math.unit(2, "meters"),
  61410. weight: math.unit(200, "kg"),
  61411. name: "Front",
  61412. image: {
  61413. source: "./media/characters/zechal/shark-front.svg",
  61414. extra: 969/925,
  61415. bottom: 74/1043
  61416. },
  61417. form: "shark",
  61418. },
  61419. shark_back: {
  61420. height: math.unit(2, "meters"),
  61421. weight: math.unit(200, "kg"),
  61422. name: "Back",
  61423. image: {
  61424. source: "./media/characters/zechal/shark-back.svg",
  61425. extra: 994/949,
  61426. bottom: 176/1170
  61427. },
  61428. form: "shark",
  61429. },
  61430. shark_frontLewd: {
  61431. height: math.unit(2, "meters"),
  61432. weight: math.unit(200, "kg"),
  61433. name: "Front (Lewd)",
  61434. image: {
  61435. source: "./media/characters/zechal/shark-front-lewd.svg",
  61436. extra: 969/925,
  61437. bottom: 74/1043
  61438. },
  61439. form: "shark",
  61440. },
  61441. shark_side: {
  61442. height: math.unit(1.56, "meters"),
  61443. weight: math.unit(200, "kg"),
  61444. name: "Side",
  61445. image: {
  61446. source: "./media/characters/zechal/shark-side.svg"
  61447. },
  61448. form: "shark",
  61449. },
  61450. dragon_front: {
  61451. height: math.unit(2, "meters"),
  61452. weight: math.unit(200, "kg"),
  61453. name: "Front",
  61454. image: {
  61455. source: "./media/characters/zechal/dragon-front.svg",
  61456. extra: 1041/925,
  61457. bottom: 74/1115
  61458. },
  61459. form: "dragon",
  61460. },
  61461. dragon_back: {
  61462. height: math.unit(2, "meters"),
  61463. weight: math.unit(200, "kg"),
  61464. name: "Back",
  61465. image: {
  61466. source: "./media/characters/zechal/dragon-back.svg",
  61467. extra: 1061/949,
  61468. bottom: 176/1237
  61469. },
  61470. form: "dragon",
  61471. },
  61472. dragon_frontLewd: {
  61473. height: math.unit(2, "meters"),
  61474. weight: math.unit(200, "kg"),
  61475. name: "Front (Lewd)",
  61476. image: {
  61477. source: "./media/characters/zechal/dragon-front-lewd.svg",
  61478. extra: 1041/925,
  61479. bottom: 74/1115
  61480. },
  61481. form: "dragon",
  61482. },
  61483. dragon_side: {
  61484. height: math.unit(1.56, "meters"),
  61485. weight: math.unit(200, "kg"),
  61486. name: "Side",
  61487. image: {
  61488. source: "./media/characters/zechal/dragon-side.svg"
  61489. },
  61490. form: "dragon",
  61491. },
  61492. foot: {
  61493. height: math.unit(0.5, "meters"),
  61494. name: "Foot",
  61495. image: {
  61496. source: "./media/characters/zechal/foot.svg"
  61497. }
  61498. },
  61499. sheathFront: {
  61500. height: math.unit(0.45, "meters"),
  61501. name: "Sheath (Front)",
  61502. image: {
  61503. source: "./media/characters/zechal/sheath-front.svg"
  61504. }
  61505. },
  61506. sheathSide: {
  61507. height: math.unit(0.45, "meters"),
  61508. name: "Sheath (Side)",
  61509. image: {
  61510. source: "./media/characters/zechal/sheath-side.svg"
  61511. }
  61512. },
  61513. },
  61514. [
  61515. {
  61516. name: "Incognito",
  61517. height: math.unit(2, "meters"),
  61518. allForms: true
  61519. },
  61520. {
  61521. name: "Small Rampage",
  61522. height: math.unit(25, "meters"),
  61523. allForms: true
  61524. },
  61525. {
  61526. name: "Home Size",
  61527. height: math.unit(250, "meters"),
  61528. allForms: true,
  61529. default: true
  61530. },
  61531. {
  61532. name: "Macro+",
  61533. height: math.unit(700, "meters"),
  61534. allForms: true
  61535. },
  61536. {
  61537. name: "Small Mega",
  61538. height: math.unit(3, "km"),
  61539. allForms: true
  61540. },
  61541. {
  61542. name: "Mega",
  61543. height: math.unit(15, "km"),
  61544. allForms: true
  61545. },
  61546. {
  61547. name: "Giga",
  61548. height: math.unit(300, "km"),
  61549. allForms: true
  61550. },
  61551. {
  61552. name: "Giga+",
  61553. height: math.unit(1750, "km"),
  61554. allForms: true
  61555. },
  61556. {
  61557. name: "Continental",
  61558. height: math.unit(5000, "km"),
  61559. allForms: true
  61560. },
  61561. {
  61562. name: "Terra",
  61563. height: math.unit(20000, "km"),
  61564. allForms: true
  61565. },
  61566. {
  61567. name: "Terra+",
  61568. height: math.unit(300000, "km"),
  61569. allForms: true
  61570. },
  61571. {
  61572. name: "Solar",
  61573. height: math.unit(40000000, "km"),
  61574. allForms: true
  61575. },
  61576. {
  61577. name: "Galactic",
  61578. height: math.unit(810133, "parsecs"),
  61579. allForms: true
  61580. },
  61581. {
  61582. name: "Universal",
  61583. height: math.unit(25, "universes"),
  61584. allForms: true
  61585. },
  61586. ],
  61587. {
  61588. "shark": {
  61589. name: "Shark",
  61590. default: true
  61591. },
  61592. "dragon": {
  61593. name: "Dragon",
  61594. },
  61595. }
  61596. ))
  61597. characterMakers.push(() => makeCharacter(
  61598. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  61599. {
  61600. front: {
  61601. height: math.unit(2.2, "meters"),
  61602. weight: math.unit(150, "kg"),
  61603. name: "Front",
  61604. image: {
  61605. source: "./media/characters/sergis/front.svg",
  61606. extra: 1314/1312,
  61607. bottom: 112/1426
  61608. }
  61609. },
  61610. back: {
  61611. height: math.unit(2.2, "meters"),
  61612. weight: math.unit(150, "kg"),
  61613. name: "Back",
  61614. image: {
  61615. source: "./media/characters/sergis/back.svg",
  61616. extra: 1335/1333,
  61617. bottom: 19/1354
  61618. }
  61619. },
  61620. frontLewd: {
  61621. height: math.unit(2.2, "meters"),
  61622. weight: math.unit(150, "kg"),
  61623. name: "Front (Lewd)",
  61624. image: {
  61625. source: "./media/characters/sergis/front-lewd.svg",
  61626. extra: 1314/1312,
  61627. bottom: 112/1426
  61628. }
  61629. },
  61630. frontDressed: {
  61631. height: math.unit(2.2, "meters"),
  61632. weight: math.unit(150, "kg"),
  61633. name: "Front (Dressed)",
  61634. image: {
  61635. source: "./media/characters/sergis/front-dressed.svg",
  61636. extra: 1330/1328,
  61637. bottom: 95/1425
  61638. }
  61639. },
  61640. frontDressedLewd: {
  61641. height: math.unit(2.2, "meters"),
  61642. weight: math.unit(150, "kg"),
  61643. name: "Front (Dressed, Lewd)",
  61644. image: {
  61645. source: "./media/characters/sergis/front-dressed-lewd.svg",
  61646. extra: 1330/1328,
  61647. bottom: 95/1425
  61648. }
  61649. },
  61650. maw: {
  61651. height: math.unit(0.48, "meters"),
  61652. name: "Maw",
  61653. image: {
  61654. source: "./media/characters/sergis/maw.svg"
  61655. }
  61656. },
  61657. sheath: {
  61658. height: math.unit(0.38, "meters"),
  61659. name: "Sheath",
  61660. image: {
  61661. source: "./media/characters/sergis/sheath.svg"
  61662. }
  61663. },
  61664. },
  61665. [
  61666. {
  61667. name: "Incognito Size",
  61668. height: math.unit(2.2, "meters")
  61669. },
  61670. {
  61671. name: "Small Macro",
  61672. height: math.unit(40, "meters")
  61673. },
  61674. {
  61675. name: "Macro",
  61676. height: math.unit(150, "meters")
  61677. },
  61678. {
  61679. name: "Macro+",
  61680. height: math.unit(300, "meters")
  61681. },
  61682. {
  61683. name: "Mega",
  61684. height: math.unit(2.5, "km")
  61685. },
  61686. {
  61687. name: "Mega+",
  61688. height: math.unit(30, "km")
  61689. },
  61690. {
  61691. name: "Home Size",
  61692. height: math.unit(300, "km"),
  61693. default: true
  61694. },
  61695. {
  61696. name: "Giga+",
  61697. height: math.unit(1000, "km")
  61698. },
  61699. {
  61700. name: "Giga++",
  61701. height: math.unit(6000, "km")
  61702. },
  61703. {
  61704. name: "Terra",
  61705. height: math.unit(70000, "km")
  61706. },
  61707. {
  61708. name: "Terra+",
  61709. height: math.unit(200000, "km")
  61710. },
  61711. {
  61712. name: "Galactic",
  61713. height: math.unit(634200, "lightyears")
  61714. },
  61715. ]
  61716. ))
  61717. characterMakers.push(() => makeCharacter(
  61718. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  61719. {
  61720. standard: {
  61721. height: math.unit(1 + 5/12, "feet"),
  61722. name: "Standard",
  61723. image: {
  61724. source: "./media/characters/spade/standard.svg",
  61725. extra: 1794/1703,
  61726. bottom: 115/1909
  61727. }
  61728. },
  61729. disguised: {
  61730. height: math.unit(1 + 5/12, "feet"),
  61731. name: "Disguised",
  61732. image: {
  61733. source: "./media/characters/spade/disguised.svg",
  61734. extra: 1794/1700,
  61735. bottom: 98/1892
  61736. }
  61737. },
  61738. },
  61739. [
  61740. {
  61741. name: "Normal",
  61742. height: math.unit(1 + 5/12, "feet"),
  61743. default: true
  61744. },
  61745. ]
  61746. ))
  61747. characterMakers.push(() => makeCharacter(
  61748. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  61749. {
  61750. frontNsfw: {
  61751. height: math.unit(5, "meters"),
  61752. weight: math.unit(2000, "kg"),
  61753. preyCapacity: math.unit(5, "people"),
  61754. name: "Front (NSFW)",
  61755. image: {
  61756. source: "./media/characters/zeanlain/front-nsfw.svg",
  61757. extra: 1087/938,
  61758. bottom: 93/1180
  61759. },
  61760. extraAttributes: {
  61761. "wingspan": {
  61762. name: "Wingspan",
  61763. power: 1,
  61764. type: "length",
  61765. base: math.unit(10, "meters")
  61766. },
  61767. "footSize": {
  61768. name: "Foot Size",
  61769. power: 1,
  61770. type: "length",
  61771. base: math.unit(0.68, "meters")
  61772. },
  61773. "cockLength": {
  61774. name: "Cock Length",
  61775. power: 1,
  61776. type: "length",
  61777. base: math.unit(1.69, "meters")
  61778. },
  61779. "ballVolume": {
  61780. name: "Ball Volume",
  61781. power: 3,
  61782. type: "volume",
  61783. base: math.unit(0.028, "m^3")
  61784. },
  61785. }
  61786. },
  61787. front: {
  61788. height: math.unit(5, "meters"),
  61789. weight: math.unit(2000, "kg"),
  61790. preyCapacity: math.unit(3, "people"),
  61791. name: "Front",
  61792. image: {
  61793. source: "./media/characters/zeanlain/front.svg",
  61794. extra: 1087/938,
  61795. bottom: 93/1180
  61796. },
  61797. extraAttributes: {
  61798. "wingspan": {
  61799. name: "Wingspan",
  61800. power: 1,
  61801. type: "length",
  61802. base: math.unit(10, "meters")
  61803. },
  61804. "footSize": {
  61805. name: "Foot Size",
  61806. power: 1,
  61807. type: "length",
  61808. base: math.unit(0.68, "meters")
  61809. },
  61810. }
  61811. },
  61812. },
  61813. [
  61814. {
  61815. name: "Normal",
  61816. height: math.unit(5, "meters"),
  61817. default: true
  61818. },
  61819. ]
  61820. ))
  61821. characterMakers.push(() => makeCharacter(
  61822. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  61823. {
  61824. front: {
  61825. height: math.unit(10, "meters"),
  61826. weight: math.unit(250000, "kg"),
  61827. name: "Front",
  61828. image: {
  61829. source: "./media/characters/airamis/front.svg",
  61830. extra: 865/835,
  61831. bottom: 13/878
  61832. }
  61833. },
  61834. },
  61835. [
  61836. {
  61837. name: "Normal",
  61838. height: math.unit(10, "meters"),
  61839. default: true
  61840. },
  61841. ]
  61842. ))
  61843. characterMakers.push(() => makeCharacter(
  61844. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  61845. {
  61846. front: {
  61847. height: math.unit(3 + 3/12, "feet"),
  61848. weight: math.unit(75, "lb"),
  61849. name: "Front",
  61850. image: {
  61851. source: "./media/characters/corra-tourmaline/front.svg",
  61852. extra: 1037/864,
  61853. bottom: 39/1076
  61854. }
  61855. },
  61856. back: {
  61857. height: math.unit(3 + 3/12, "feet"),
  61858. weight: math.unit(75, "lb"),
  61859. name: "Back",
  61860. image: {
  61861. source: "./media/characters/corra-tourmaline/back.svg",
  61862. extra: 1022/849,
  61863. bottom: 26/1048
  61864. }
  61865. },
  61866. dressed: {
  61867. height: math.unit(3 + 3/12, "feet"),
  61868. weight: math.unit(75, "lb"),
  61869. name: "Dressed",
  61870. image: {
  61871. source: "./media/characters/corra-tourmaline/dressed.svg",
  61872. extra: 1037/864,
  61873. bottom: 39/1076
  61874. }
  61875. },
  61876. beans: {
  61877. height: math.unit(0.37, "feet"),
  61878. name: "Beans",
  61879. image: {
  61880. source: "./media/characters/corra-tourmaline/beans.svg"
  61881. }
  61882. },
  61883. },
  61884. [
  61885. {
  61886. name: "Normal",
  61887. height: math.unit(3 + 3/12, "feet"),
  61888. default: true
  61889. },
  61890. {
  61891. name: "Macro",
  61892. height: math.unit(32, "feet")
  61893. },
  61894. ]
  61895. ))
  61896. characterMakers.push(() => makeCharacter(
  61897. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  61898. {
  61899. front: {
  61900. height: math.unit(6 + 2/12, "feet"),
  61901. weight: math.unit(203, "lb"),
  61902. name: "Front",
  61903. image: {
  61904. source: "./media/characters/maki-kawa/front.svg",
  61905. extra: 950/890,
  61906. bottom: 62/1012
  61907. }
  61908. },
  61909. back: {
  61910. height: math.unit(6 + 2/12, "feet"),
  61911. weight: math.unit(203, "lb"),
  61912. name: "Back",
  61913. image: {
  61914. source: "./media/characters/maki-kawa/back.svg",
  61915. extra: 953/878,
  61916. bottom: 49/1002
  61917. }
  61918. },
  61919. frontBarista: {
  61920. height: math.unit(6 + 2/12, "feet"),
  61921. weight: math.unit(203, "lb"),
  61922. name: "Front (Barista)",
  61923. image: {
  61924. source: "./media/characters/maki-kawa/front-barista.svg",
  61925. extra: 943/883,
  61926. bottom: 69/1012
  61927. }
  61928. },
  61929. backBarista: {
  61930. height: math.unit(6 + 2/12, "feet"),
  61931. weight: math.unit(203, "lb"),
  61932. name: "Back (Barista)",
  61933. image: {
  61934. source: "./media/characters/maki-kawa/back-barista.svg",
  61935. extra: 953/878,
  61936. bottom: 49/1002
  61937. }
  61938. },
  61939. frontWrestler: {
  61940. height: math.unit(6 + 2/12, "feet"),
  61941. weight: math.unit(203, "lb"),
  61942. name: "Front (Wrestler)",
  61943. image: {
  61944. source: "./media/characters/maki-kawa/front-wrestler.svg",
  61945. extra: 950/890,
  61946. bottom: 62/1012
  61947. }
  61948. },
  61949. backWrestler: {
  61950. height: math.unit(6 + 2/12, "feet"),
  61951. weight: math.unit(203, "lb"),
  61952. name: "Back (Wrestler)",
  61953. image: {
  61954. source: "./media/characters/maki-kawa/back-wrestler.svg",
  61955. extra: 953/878,
  61956. bottom: 49/1002
  61957. }
  61958. },
  61959. headFront: {
  61960. height: math.unit(1.64, "feet"),
  61961. name: "Head (Front)",
  61962. image: {
  61963. source: "./media/characters/maki-kawa/head-front.svg"
  61964. }
  61965. },
  61966. headSide: {
  61967. height: math.unit(1.59, "feet"),
  61968. name: "Head (Side)",
  61969. image: {
  61970. source: "./media/characters/maki-kawa/head-side.svg"
  61971. }
  61972. },
  61973. paw: {
  61974. height: math.unit(0.9, "feet"),
  61975. name: "Paw",
  61976. image: {
  61977. source: "./media/characters/maki-kawa/paw.svg"
  61978. }
  61979. },
  61980. },
  61981. [
  61982. {
  61983. name: "Normal",
  61984. height: math.unit(6 + 2/12, "feet"),
  61985. default: true
  61986. },
  61987. {
  61988. name: "Macro",
  61989. height: math.unit(617, "feet")
  61990. },
  61991. ]
  61992. ))
  61993. characterMakers.push(() => makeCharacter(
  61994. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  61995. {
  61996. front: {
  61997. height: math.unit(10, "feet"),
  61998. weight: math.unit(1500, "lb"),
  61999. name: "Front",
  62000. image: {
  62001. source: "./media/characters/lennox/front.svg",
  62002. extra: 1623/1496,
  62003. bottom: 18/1641
  62004. }
  62005. },
  62006. back: {
  62007. height: math.unit(10, "feet"),
  62008. weight: math.unit(1500, "lb"),
  62009. name: "Back",
  62010. image: {
  62011. source: "./media/characters/lennox/back.svg",
  62012. extra: 1641/1481,
  62013. bottom: 13/1654
  62014. }
  62015. },
  62016. maw: {
  62017. height: math.unit(2.94, "feet"),
  62018. name: "Maw",
  62019. image: {
  62020. source: "./media/characters/lennox/maw.svg"
  62021. }
  62022. },
  62023. },
  62024. [
  62025. {
  62026. name: "Micro",
  62027. height: math.unit(1, "inch")
  62028. },
  62029. {
  62030. name: "Normal",
  62031. height: math.unit(10, "feet"),
  62032. default: true
  62033. },
  62034. {
  62035. name: "Macro",
  62036. height: math.unit(200, "feet")
  62037. },
  62038. ]
  62039. ))
  62040. characterMakers.push(() => makeCharacter(
  62041. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62042. {
  62043. frontDressed: {
  62044. height: math.unit(15 + 7/12, "feet"),
  62045. weight: math.unit(5000, "lb"),
  62046. name: "Front (Dressed)",
  62047. image: {
  62048. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62049. extra: 1136/1023,
  62050. bottom: 51/1187
  62051. }
  62052. },
  62053. backDressed: {
  62054. height: math.unit(15 + 7/12, "feet"),
  62055. weight: math.unit(5000, "lb"),
  62056. name: "Back (Dressed)",
  62057. image: {
  62058. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62059. extra: 2359/2143,
  62060. bottom: 103/2462
  62061. }
  62062. },
  62063. front: {
  62064. height: math.unit(15 + 7/12, "feet"),
  62065. weight: math.unit(5000, "lb"),
  62066. name: "Front",
  62067. image: {
  62068. source: "./media/characters/vyse-iron-thunder/front.svg",
  62069. extra: 1136/1023,
  62070. bottom: 51/1187
  62071. }
  62072. },
  62073. hand: {
  62074. height: math.unit(2.36, "feet"),
  62075. name: "Hand",
  62076. image: {
  62077. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62078. }
  62079. },
  62080. foot: {
  62081. height: math.unit(1.72, "feet"),
  62082. name: "Foot",
  62083. image: {
  62084. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62085. }
  62086. },
  62087. mouth: {
  62088. height: math.unit(2, "feet"),
  62089. name: "Mouth",
  62090. image: {
  62091. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62092. }
  62093. },
  62094. eye: {
  62095. height: math.unit(0.58, "feet"),
  62096. name: "Eye",
  62097. image: {
  62098. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62099. }
  62100. },
  62101. },
  62102. [
  62103. {
  62104. name: "Normal",
  62105. height: math.unit(15 + 7/12, "feet"),
  62106. default: true
  62107. },
  62108. {
  62109. name: "Macro",
  62110. height: math.unit(157, "feet")
  62111. },
  62112. {
  62113. name: "Macro+",
  62114. height: math.unit(1570, "feet")
  62115. },
  62116. {
  62117. name: "Macro++",
  62118. height: math.unit(15700, "feet")
  62119. },
  62120. {
  62121. name: "Macro+++",
  62122. height: math.unit(157000, "feet")
  62123. },
  62124. {
  62125. name: "Macro++++",
  62126. height: math.unit(1570000, "feet")
  62127. },
  62128. ]
  62129. ))
  62130. characterMakers.push(() => makeCharacter(
  62131. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62132. {
  62133. side: {
  62134. height: math.unit(6, "feet"),
  62135. weight: math.unit(115, "lb"),
  62136. name: "Side",
  62137. image: {
  62138. source: "./media/characters/moonbeam/side.svg",
  62139. extra: 839/485,
  62140. bottom: 60/899
  62141. }
  62142. },
  62143. },
  62144. [
  62145. {
  62146. name: "Normal",
  62147. height: math.unit(6, "feet"),
  62148. default: true
  62149. },
  62150. ]
  62151. ))
  62152. characterMakers.push(() => makeCharacter(
  62153. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62154. {
  62155. front: {
  62156. height: math.unit(3500, "miles"),
  62157. weight: math.unit(1659, "petatonnes"),
  62158. name: "Front",
  62159. image: {
  62160. source: "./media/characters/baltica/front.svg",
  62161. extra: 429/428,
  62162. bottom: 41/470
  62163. }
  62164. },
  62165. back: {
  62166. height: math.unit(3500, "miles"),
  62167. weight: math.unit(1659, "petatonnes"),
  62168. name: "Back",
  62169. image: {
  62170. source: "./media/characters/baltica/back.svg",
  62171. extra: 452/451,
  62172. bottom: 8/460
  62173. }
  62174. },
  62175. },
  62176. [
  62177. {
  62178. name: "Gigamacro",
  62179. height: math.unit(3500, "miles"),
  62180. default: true
  62181. },
  62182. ]
  62183. ))
  62184. characterMakers.push(() => makeCharacter(
  62185. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62186. {
  62187. front: {
  62188. height: math.unit(6 + 10/12, "feet"),
  62189. weight: math.unit(200, "lb"),
  62190. name: "Front",
  62191. image: {
  62192. source: "./media/characters/shadow-wolf/front.svg",
  62193. extra: 1931/1760,
  62194. bottom: 88/2019
  62195. }
  62196. },
  62197. },
  62198. [
  62199. {
  62200. name: "Normal",
  62201. height: math.unit(6 + 10/12, "feet"),
  62202. default: true
  62203. },
  62204. ]
  62205. ))
  62206. characterMakers.push(() => makeCharacter(
  62207. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62208. {
  62209. front: {
  62210. height: math.unit(5 + 10/12, "feet"),
  62211. name: "Front",
  62212. image: {
  62213. source: "./media/characters/quincy-praying-mantis/front.svg",
  62214. extra: 1055/891,
  62215. bottom: 92/1147
  62216. }
  62217. },
  62218. soles: {
  62219. height: math.unit(0.85, "feet"),
  62220. name: "Soles",
  62221. image: {
  62222. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62223. extra: 429/324,
  62224. bottom: 89/518
  62225. },
  62226. extraAttributes: {
  62227. "shoeSize": {
  62228. name: "Shoe Size",
  62229. power: 1,
  62230. type: "length",
  62231. base: math.unit(23, "ShoeSizeMensUS"),
  62232. defaultUnit: "ShoeSizeMensUS"
  62233. },
  62234. }
  62235. },
  62236. foot: {
  62237. height: math.unit(0.72, "feet"),
  62238. name: "Foot",
  62239. image: {
  62240. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62241. extra: 349/349,
  62242. bottom: 76/425
  62243. }
  62244. },
  62245. },
  62246. [
  62247. {
  62248. name: "Normal",
  62249. height: math.unit(5 + 10/12, "feet"),
  62250. default: true
  62251. },
  62252. ]
  62253. ))
  62254. //characters
  62255. function makeCharacters() {
  62256. const results = [];
  62257. characterMakers.forEach(character => {
  62258. results.push(character());
  62259. });
  62260. return results;
  62261. }